@charset"utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&display=swap');

@font-face {
	font-family: 'kaku_300';
	src: url('../font/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Regular.ttf') format('truetype');
}
@font-face {
	font-family: 'kaku_500';
	src: url('../font/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Medium.ttf') format('truetype');
}

/* ===================================
*
　★リセットCSS
*
===================================-*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}
html {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
caption, th, td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}
q, blockquote {
    quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none;
}
a img {
    border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html, body {
    height: 100%;
}
html {
    overflow: auto;
    font-size: 62.5%;
}
body {
    color: black;
    background-color: #fff;
    font-size: 1.6rem;
    line-height: 1.8;
    -webkit-text-size-adjust: none;
    position: relative;
    font-family:'kaku_500', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    font-weight: 500;
    letter-spacing:  0.06em;
}
a {
    color: black;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
a:hover {
    text-decoration: none;
    opacity: 0.6;
}
body p,body ul li a{
    font-weight: 500;
}
button, input[type=button], input[type=reset], input[type=submit] {
    touch-action: manipulation;
    transition: border .15s linear, color .15s linear, background-color .15s linear;
}
img {
    vertical-align: bottom;
}
@media screen and (max-width: 767px) {
	img {
	  width: 100%;
	  height: auto;
	}
}
/*===================================
max-width: 767px - SPここまで
===================================*/





/* ===================================
*
　共通
*
===================================-*/
.pc{
	display: block;
}
.sp{
	display: none;
}
.flex{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
.mt5{
	margin-top: 5px;
}
.mt10{
	margin-top: 10px;
}
.mt20{
	margin-top: 20px;
}
.mt30{
	margin-top: 30px;
}
.mt40{
	margin-top: 40px;
}
.mt50{
	margin-top: 50px;
}
.mt60{
	margin-top: 60px;
}
.mt70{
	margin-top: 70px;
}
.mt80{
	margin-top: 80px;
}
.mr5{
	margin-right: 5px;
}
.mr10{
	margin-right: 10px;
}
.mr20{
	margin-right: 20px;
}
.mr30{
	margin-right: 30px;
}
.mr40{
	margin-right: 40px;
}
.mr50{
	margin-right: 50px;
}
.mr60{
	margin-right: 60px;
}
.mr70{
	margin-right: 70px;
}
.mr80{
	margin-right: 80px;
}
.ml5{
	margin-left: 5px;
}
.ml10{
	margin-left: 10px;
}
.ml20{
	margin-left: 20px;
}
.ml30{
	margin-left: 30px;
}
.ml40{
	margin-left: 40px;
}
.ml50{
	margin-left: 50px;
}
.ml60{
	margin-left: 60px;
}
.ml70{
	margin-left: 70px;
}
.ml80{
	margin-left: 80px;
}
.mb5{
	margin-bottom: 5px;
}
.mb10{
	margin-bottom: 10px;
}
.mb20{
	margin-bottom: 20px;
}
.mb30{
	margin-bottom: 30px;
}
.mb40{
	margin-bottom: 40px;
}
.mb50{
	margin-bottom: 50px;
}
.mb60{
	margin-bottom: 60px;
}
.mb70{
	margin-bottom: 70px;
}
.mb80{
	margin-bottom: 80px;
}
main{
	margin-top: 78px;
}
main .inner{
	width: 900px;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
	.flex{
		display: block;
	}
	.pc.flex{
		display: none;
	}
	main{
		margin-top: 70px;
	}
	main .inner{
		width: 100%;
		margin: 0 auto;
		padding: 0 5%;
	}
}
/*===================================
max-width: 767px - SPここまで
===================================*/





/* ===================================
*
　★header 
*
===================================-*/
body #top_header{
	position: fixed;
	z-index: 1000;
	top: 0;
	width: 100%;
	background: #fff;
	padding-left: 20px;
}
body #top_header .flex{
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
}
body #top_header a,
body #top_header {
    text-decoration: none;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	color: #000;
}
body #top_header .logo{
	width: 216px;
}
body #top_header .logo img{
    width:100%;
    display: block;
}
body #global_nav{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}
body #global_nav ul {
    list-style: none;
    font-size: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 0;
    justify-content: space-between;
}
body #global_nav a.tel{
    pointer-events: none;
}
body #global_nav ul li a{
    position: relative;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    font-size: 1.5rem;
	height: 78px;
    padding: 24px 15px 40px;
	box-sizing: border-box;
}
body #global_nav ul li a:hover{
	background: #e8e3da;
	color: #000;
	opacity: 1;
}
body #global_nav ul li a:after{
    position: absolute;
    background-image: url(../img/gnav_arrow.png);
    width: 19px;
    height: 12px;
    content: "";
    bottom: 0;
    left: 46%;
    background-size: 80%;
    background-repeat: no-repeat;
}


/* --------------------------------------
　Toggle Button
--------------------------------------*/
body #nav_toggle{
    display: none;
    position: absolute;
    right: 12px;
    top: 21px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
body #nav_toggle div {
    position: relative;
}
body #nav_toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #bc282e;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
body #nav_toggle span:nth-child(1) {
    top: 0;
}
body #nav_toggle span:nth-child(2) {
    top: 11px;
}
body #nav_toggle span:nth-child(3) {
    top: 22px;
}
@media only screen and (max-width: 767px){
    body #top_header{
        height: 70px;
    }
    body #top_header,
    body #top_header .inner{
        width: 100%;
        padding: 0;
    }
    body #top_header{
        top: 0;
        position: fixed;
        margin-top: 0;
        z-index: +1;
        box-shadow: 0px 1px 7px 1px rgba(0, 0, 0, 0.11) ;
        -webkit-box-shadow: 0px 1px 7px 1px rgba(0, 0, 0, 0.11) ;
        -moz-box-shadow: 0px 1px 7px 1px rgba(0, 0, 0, 0.11) ;
        -o-box-shadow: 0px 1px 7px 1px rgba(0, 0, 0, 0.11) ;
        -ms-box-shadow: 0px 1px 7px 1px rgba(0, 0, 0, 0.11) ;
        z-index: 1000000;
    }
    body #top_header .logo img{
        width: 80%;
    }
    body #top_header .tel img{
        display: block;
        margin: 0px auto 2%;
        width: 210px;
    }
    body #global_nav{
        display: block;
    }
    /* --------------------------------------
    　 Fixed reset
    --------------------------------------*/
    body #top_header.fixed {
        padding-top: 0;
        background: transparent;
    }
    body #mobile_head{
        background: #fff;
        width: 100%;
        height: 70px;
        z-index: 999;
        position: relative;
    }
    body #top_header.fixed .logo,
    body #top_header .logo {
        position: absolute;
        left: 13px;
        top: 18px;
        color: #333;
        font-size: 26px;
    }
    body #global_nav{
        position: absolute;
        top: -487px;
        background: #0197d7;
        width: 100%;
        text-align: center;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }
    body #global_nav ul {
        list-style: none;
        font-size: 14px;
        display: block;
        width: 100%;
        padding: 5%;
		border-left: 2px solid #b81c22;
		border-top: 1px solid #e2ded3;
    }
    body #global_nav ul li:first-child{
        border-top: 1px solid #d5d5d5;
    }
    body #global_nav ul li{
        float: none;
        position: static;
        padding: 0px;
        width: 100%;
        border-left: 0px solid #e2ded3;
        color: #fff;
		background: #fff;
    }
    body #top_header #global_nav ul li a,
    body #top_header.fixed #global_nav ul li a {
        width: 100%;
        display: block;
        color: #000;
		padding: 4vw 5.33333vw;
		border-bottom: 1px solid #e2ded3;
        text-align: left;
		font-weight: normal;
    }
    body #top_header #nav_toggle{
        display: block;
    }
    body #global_nav ul{
		padding: 0;
    }
    /* --------------------------------------
    　 切り替えアニメーション
    --------------------------------------*/
    body .open #nav_toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    body .open #nav_toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    body .open #nav_toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* --------------------------------------
    　 スライドアニメーション
    --------------------------------------*/
    body .open #global_nav {
        -moz-transform: translateY(556px);
        -webkit-transform: translateY(556px);
        transform: translateY(556px);
    }
    /* --------------------------------------
    OFF:グロナビ_a_下線
    --------------------------------------*/
    body #global_nav ul li a{
        position: relative;
        display: inline-block;
        text-decoration: none;
        white-space: nowrap;
		height: auto;
    }
    body #global_nav ul li a:after{
        position: absolute;
        bottom: 0px;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background:none;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
    }
    body #global_nav ul li a:hover{
        opacity: 1;
    }
    body #global_nav ul li a:hover:after {
        bottom: -4px;
        opacity: 1;
        visibility: visible;
    }
    /* --------------------------------------
    ON:グロナビ_a_下線
    --------------------------------------*/
    body #global_nav ul li.on a{
        position: relative;
        display: inline-block;
        text-decoration: none;
        white-space: nowrap;
    }
    body #global_nav ul li.on a:after{
        position: absolute;
        bottom: 0px;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: none;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        bottom: -4px;
        opacity: 1;
        visibility: visible;
    }
    body #global_nav ul li.on a:hover{
        opacity: 1;
    }
    body #global_nav ul li.on a:hover:after {
        opacity: 1;
    }
}
/*===================================
max-width: 767px - SPここまで
===================================*/


/* ===================================
*
　footer 
*
===================================-*/
body footer #page-top{
	width: 60px;
    height: 60px;
    background: #817664;
    position: fixed;
    right: 0px;
    z-index: 2;
    opacity: 0;
    transform: translateY(100px);
    bottom: 10px;
    margin-bottom: -10px;
}
body footer #btn1{
	width: 60px;
    height: 60px;
    background: #817664;
    position: fixed;
    left: 0px;
    z-index: 2;
    opacity: 0;
    transform: translateY(100px);
    bottom: 10px;
    margin-bottom: -10px;
}
body footer #btn2{
	width: 60px;
    height: 60px;
    background: #817664;
    position: fixed;
    left: 60px;
    z-index: 2;
    opacity: 0;
    transform: translateY(100px);
    bottom: 10px;
    margin-bottom: -10px;
}
body footer #btn3{
	width: 60px;
    height: 60px;
    background: #817664;
    position: fixed;
    left: 120px;
    z-index: 2;
    opacity: 0;
    transform: translateY(100px);
    bottom: 10px;
    margin-bottom: -10px;
}
body footer #page-top a{
	display: block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 8px 21px;
}
body footer #page-top.UpMove,
body footer #btn1.UpMove,
body footer #btn2.UpMove,
body footer #btn3.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
body footer #page-top.DownMove,
body footer #btn1.DownMove,
body footer #btn2.DownMove,
body footer #btn3.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}
body footer ul{
	width: 1000px;
	margin: 0 auto;
	justify-content: space-between;
	align-items: center;
	height: 42px;
}
body footer .sns_area{
	background: #f0ece5;
	padding: 15px 0 13px;
}
body footer .sns_area ul li{
	list-style: none;
	text-align: center;
	margin: 0;
	width: 20%;
	border-left: #ccc2c2 1px solid;
	padding: 5px 0;
}
body footer .sns_area ul li:last-child{
	border-right: #ccc2c2 1px solid;
}
body footer .sns_area ul li a{
	padding-left: 52px;
	position: relative;
	font-weight: normal;
	text-align: center;
	color: #161616;
	letter-spacing: 0;
	font-family: 'Noto Sans JP', sans-serif;
}
body footer .sns_area ul li a:before{
	position: absolute;
	left: 0;
	width: 38px;
	height: 38px;
	content: "";
	top: -8px;
	background-repeat: no-repeat;
	background-size: 100%;
}
body footer .sns_area ul li:first-child a:before{
	background-image: url(../img/icon-twitter.svg);
}
body footer .sns_area ul li:nth-child(2) a:before{
	background-image: url(../img/icon-facebook.svg);
}
body footer .sns_area ul li:nth-child(3) a:before{
	background-image: url(../img/icon-line.svg);
}
body footer .sns_area ul li:nth-child(4) a:before{
	background-image: url(../img/icon-instagram.svg);
}
body footer .sns_area ul li:nth-child(5) a:before{
	background-image: url(../img/icon-youtube.svg);
	top: -3px;
}
body footer .link_area{
	padding: 27px 10px 0;
	border-bottom: 1px solid #e1dbcf;
	margin-bottom: 22px;
} 
body footer .link_area ul{
	margin: 0 auto;
}
body footer .link_area li{
	padding: 0 20px 0 0;
	list-style: none;
	margin: 0;
	border-right: 2px solid #f7f6f3;
	line-height: 1;
} 
body footer .link_area li:first-child{
	border-left: 2px solid #f7f6f3;
}
body footer .link_area li a{
	font-size: 1.3rem;
	color: #161616;
	letter-spacing: 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	padding-right: 20px;
	position: relative;
} 
body footer .link_area li a:after{
	background-image: url(../img/icon-external.svg);
	width: 13px;
	height: 13px;
	right: 0;
	content: "";
	position: absolute;
}
body footer .link_area li a:hover{
	text-decoration: underline!important;
	opacity: 1;
} 
body footer p.copy{
	display: block;
    text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
	line-height: 1;
	padding-bottom: 30px;
}
@media only screen and (max-width: 767px){
	body footer ul{
		width: 100%;
		padding: 0% 8%;
		box-sizing: border-box;
		height: auto;
	}
	body footer .sns_area ul.flex{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	body footer .sns_area ul li{
		border:none;
	}
	body footer .sns_area ul li:first-child{
		border:none;
	}
	body footer .sns_area ul li:first-child a:before{
		display: none;
	}
	body footer .sns_area ul li:nth-child(2) a:before{
		display: none;
	}
	body footer .sns_area ul li:nth-child(3) a:before{
		display: none;
	}
	body footer .sns_area ul li:nth-child(4) a:before{
		display: none;
	}
	body footer .sns_area ul li:nth-child(5) a:before{
		display: none;
	}
	body footer .sns_area ul li:last-child{
		border: none;
	}
	body footer .sns_area ul li {
		width: 36px;
		height: 36px;
	}
	body footer .sns_area ul li a{
		padding-left: 0;
		position: relative;
		font-weight: normal;
		text-align: center;
		color: #161616;
		letter-spacing: 0;
		font-family: 'Noto Sans JP', sans-serif;
		width: 100%;
		height: 100%;
	}
	body footer .sns_area ul li a img{
		width: 100%;
	}
	body footer .sns_area{
		background: #f0ece5;
		padding: 3% 0 5%;
	}
	body footer .link_area{
		margin: 0;
		padding: 0;
	}
	body footer .link_area ul{
		margin: 0;
		padding: 0;
	}
	body footer .link_area li{
		padding: 0;
		line-height: 1.5;
		border-right: none;
		border-bottom: 2px solid #f7f6f3;
		padding: 3.2vw 6.4vw;
	}
	body footer .link_area li a:after{
		top: 2px;
	}
	body footer p.copy{
		display: block;
		text-align: center;
		font-family: 'Noto Sans JP', sans-serif;
		font-size: 2.66667vw;
		font-weight: 300;
		line-height: 1;
		padding: 30px 0;
	}
}