@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400&family=Noto+Serif+JP:wght@500&display=swap');
*{
	padding: 0;
	margin: 0;
	border:0;
	vertical-align:top;
}
html, body {
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
	height: auto;
}
body {
	font-size: 1.6rem;
	font-family: 'Noto Serif JP','游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
    font-weight: 500;
	padding: 0;
	margin: 0;
	width:100%;
	color:#000;
	line-height:1.6;
	letter-spacing: 0.04rem;
}
img{
	width: 100%;
    -webkit-backface-visibility: hidden;
}
.gothic{
	font-family: 'Noto Sans JP', sans-serif;
}
h1,h2,h3,h4,h5{
	font-weight: 500;
}
/*----------------------------------------


 link
 
 
----------------------------------------*/	
a {
  color: #000;
  text-decoration:none;
  border:none;
    transition: all .5s;
}
a:hover {
    color: #000;
    text-decoration:none;
}
a.opacity:hover {
    opacity: 0.7;
}
a img.hover {
transition: opacity 1s ease-out;
}
/*----------------------------------------


header


----------------------------------------*/
body header{
	position: fixed;
	padding:15px 0;
	width: 100%;
	z-index: 10;
	transition: 0.2s;

}
body:not(.top) header,
body.top.fixed header{
	background: #000;
}
body header .en_logo {
	position: absolute;
	max-width: 250px;
	width: 25%;
	top:25px;
	left: 50%;
	transform: translateX(-50%);
}
body header .logo{
	max-width: 40px;
	margin-left: 5%;
	transition: 0.2s;
	padding-top: 5px;
}
body.top header .logo{
	opacity: 0;
}
body.top.fixed header .logo{
	opacity: 1;
}
/*----------------------------------------


nav


----------------------------------------*/
nav.gNav{
    position:absolute;
    display: none;
    top:0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 90px 5%;
    background:rgba(59,50,46,0.9);
    z-index: 100;
    overflow-y: auto;
}
nav.gNav ul{
    display: flex;
	justify-content: center;
	max-width: 1000px;
	margin: 0 auto;
}
nav.gNav ul li{
    min-width: 80px;
	width: calc((100% - 80px) / 6);
}
nav.gNav ul li:first-child{
    width: 80px;
}
nav.gNav ul li.logo{
    min-width: 40px;
	width: 40px;
}
nav.gNav ul li a{
    display: block;
    padding: 10px 20px;
    color: #fff;
	text-align: center;
    font-size:2.0rem;
}
nav.gNav ul li.logo a{
    padding: 0;
}
.navBtnArea{
    width: 100%;
    position: sticky;
	top:0;
    right:0;
    text-align:center;
	z-index: 105;
}
.navBtn{
    position:absolute;
	top:15px;
    right:5%;
    cursor:pointer;
    width: 35px;
    height: 45px;
    border-radius: 50%;
	z-index: 105;
}
.icon-animation span {
    width: 26px;
    height: 2px;
    display: block;
    background: #727171;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -1px;
    margin-left: 0;
    transition: all 0.3s;
    transform: rotate(0deg);
}
.icon-animation .top {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
}
.icon-animation .bottom {
    transform: translateY(8px);
}
.is-open .middle {
    background: rgba(51, 51, 51, 0);
}
.is-open .top {
    transform: rotate(-45deg) translateY(0px);
    background: #727171 !important;
    margin-left: 0px;
}
.is-open .bottom {
  transform: rotate(45deg) translateY(0px);
  background: #727171 !important;
  width: 26px;
  margin-left: 0px;
}
.close_btn{
    display: block;
    width: 50px;
    height: 50px;
    position: relative;
	cursor: pointer;
}

.close_btn::before,
.close_btn::after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    transform: rotate(45deg);
    transform-origin:0% 50%;
    position: absolute;
    top: calc(14% - 5px);
    left: 14%;
}
.close_btn::after{
    transform: rotate(-45deg);
    transform-origin:100% 50%;
    left: auto;
    right: 14%;
}
/*----------------------------------------


wrap


----------------------------------------*/
body main {
	position: relative;
}
body article {
	position: relative;
	z-index: 1;
}
section {
	background: #fff;
	padding: 60px 0;
}
article .inner {
	max-width: 1400px;
	width: 90%;
	margin: 0 auto;
}
body.open .fv_area{
	top:0;
	opacity: 1;
}
.col{
	display: flex;
}
.col_between{
	justify-content: space-between;
}
.col_center{
	justify-content: center;
}
.col_v_start{
	align-items: flex-start;
}
.col_v_center{
	align-items: center;
}
.col_wrap{
	flex-wrap: wrap;
}
.title{
	margin-bottom: 40px;
}
/*----------------------------------------


.footer


----------------------------------------*/
footer {
	position: relative;
	width: 100%;
	color: #fff;
	text-align: center;
	background: #000;
	padding: 15px 5%;
	box-sizing: border-box;
	font-size: 1.3rem;
	}
/*----------------------------------------


list


----------------------------------------*/
ul{
	margin-left:35px; 
}
ol{
	margin-left:20px;
}
ul.non_style{
	margin-left:0; 
	list-style: none;
}

/*----------------------------------------


color / border / align


----------------------------------------*/	
.co_white{
	color: #fff;
}
.line_bottom{
	border-bottom:1px solid #000;
}
/*----------------------------------------


btn


----------------------------------------*/
.btn{
	clear: both;
	margin-left:auto;
	margin-right: auto;
	margin-top: 30px;
}
.btn a{
	position: relative;
	display: block;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
	max-width: 240px;
	padding: 10px 0;
	font-size: 1.6rem;
}
.btn .line_btn{
	border:1px solid #000;
}
.btn .line_btn_b{
	background: #000;
}
.btn .line_btn::before{
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top:0;
	left: 0;
	transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.btn .line_btn_w::before{
	background: #000;
}
.btn .line_btn_b::before{
	background: #fff;
}
.btn .line_btn:hover:before{
	width: 100%;
}
.btn .line_btn span{
	position: relative;
	z-index: 2;
}
.btn .line_btn_b span{
	color: #fff;
}
.btn .line_btn_w:hover span{
	color: #fff;
}
.btn .line_btn_b:hover span{
	color: #000;
}
/*----------------------------------------


font


----------------------------------------*/
.fo13{
    font-size: 1.3rem !important;
}
.fo14{
	font-size: 1.4rem !important;
}
.fo16{
	font-size: 1.6rem !important;
}
.fo17{
	font-size: 1.7rem !important;
}
.fo18{
	font-size: 1.8rem !important;
}
.fo20{
	font-size: 2.0rem !important;
}
.fo22{
	font-size: 2.2rem !important;
	line-height: 1.5;
}
.fo24{
	font-size: 2.4rem !important;
	line-height: 1.5;
}
.fo26{
	font-size: 2.6rem !important;
	line-height: 1.5;
}
.fo28{
	font-size: 2.8rem !important;
	line-height: 1.5;
}
.fo30{
	font-size: 3.0rem !important;
	line-height: 1.5;
}
.fo38{
	font-size: 3.8rem !important;
	line-height: 1.5;
}
.fo_bold{
	font-weight: bold !important;
}
.fo_normal{
	font-weight: normal!important;
}

@media only screen and (min-width:751px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}
@media only screen and (min-width:901px) {
    .sp , .tablet{
        display:none !important;
    }
    .pc{
        display:block !important;
    }
}
@media only screen and (max-width:1050px) {
    /*----------------------------------------


    fv_area


    ----------------------------------------*/
    body:not(.top).open .fv_area{
        top:80px;
        opacity: 1;
    }
}
@media only screen and (max-width:900px) {
    .pc{
        display:none !important;
    }
    .sp{
        display:none !important;
    }
    .tablet{
        display:block !important;
    }
    article .inner {
        max-width: 780px;
        width: 90%;
        margin: 0 auto;
    }
    nav.gNav ul li a{
        padding: 10px 0;
        font-size:2.3vw;
    }
 }
@media only screen and (max-width:750px) {
    .pc{
        display:none !important;
    }
     .tablet{
        display:none !important;
    }
    .sp{
        display:block !important;
    }
	body{
		min-width: auto;
		font-size: 1.6rem;
	}
    /*----------------------------------------


    header


    ----------------------------------------*/
    body header{
        padding:10px 0;
    }
    body header .en_logo{
		top:15px;
        width: 50%;
    }
    body header .logo{
        max-width: 25px;
    }
    /*----------------------------------------


    nav


    ----------------------------------------*/
    nav.gNav{
		height: 100vh;
        padding: 5% 0;
		box-sizing: border-box;
    }
    nav.gNav .logo{
		width: 50px;
		margin: 0 auto;
		padding-top: 40px;
    }
    nav.gNav ul{
		position: relative;
        display: block;
		padding-top: 30px;
    }
    nav.gNav ul li{
        width: 100%;
    }
    nav.gNav ul li:first-child{
		position: absolute;
        width: 100%;
    }
    nav.gNav ul li a{
        padding: 10px 0;
        font-size:1.8rem;
    }
    .navBtnArea{
        width: 100%;
        position: sticky;
        top:0;
        right:0;
        text-align:center;
        z-index: 100;
    }
    .navBtn {
        top: 7px;
        right: 5%;
    }
    .close_btn{
        width: 30px;
        height: 30px;
        position: absolute;
		right: 3%;
		top:-120px;
    }
    /*----------------------------------------


    article


    ----------------------------------------*/
    .col{
        display: block;
    }
    /*----------------------------------------


    fv_area


    ----------------------------------------*/
    body:not(.top).open .fv_area{
        top:50px;
    }
    /*----------------------------------------


    wrap


    ----------------------------------------*/
    body article {
        position: relative;
        z-index: 1;
    }
    body.top article {

    }
    article .inner {
        width: 84%;
    }
    section {
        padding: 30px 0;
    }
    .title {
        margin-bottom: 10px;
    }
    /*----------------------------------------


    .footer


    ----------------------------------------*/
    footer {
        font-size: 1.1rem;
        }
    /*-------------------------------------------

    accordion

    ------------------------------------------*/
    .js_accordion{
        cursor: pointer;
    }
    .js_accordion + .js_accordion_contents{
        display: none;
    }
    .fo13{
        font-size: 1.1rem !important;
    }
    .fo14{
        font-size: 1.2rem !important;
    }
    .fo16{
        font-size: 1.6rem !important;
    }
    .fo17{
        font-size: 1.6rem !important;
    }
    .fo18{
        font-size: 1.7rem !important;
    }
    .fo20{
        font-size: 1.8rem !important;
    }
    .fo22{
        font-size: 1.8rem !important;
        line-height: 1.5;
    }
    .fo24{
        font-size: 2.0rem !important;
    }
    .fo26{
        font-size: 2.2rem !important;
        line-height: 1.5;
    }
    .fo28{
        font-size: 2.2rem !important;
        line-height: 1.5;
    }
    .fo30{
        font-size: 2.4rem !important;
        line-height: 1.5;
    }
    .fo34{
        font-size: 2.4rem !important;
        line-height: 1.5;
    }
    /*----------------------------------------


    btn


    ----------------------------------------*/
    .btn a{
        max-width: 100%;
		width: 100%;
    }
}
/*----------------------------------------


animation


----------------------------------------*/
/*----------------------------------------
scroll action
----------------------------------------*/
.parallax {
    width: 100%;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
} 
@media screen { 
    .fadein{
        opacity : 0;
        transform : translate(0, 80px);
        transition : all 2.5s cubic-bezier(0.19, 1, 0.22, 1);
        }
    .fade{
        opacity : 0;
        transform : translate(0, 0);
        transition : all 2.5s cubic-bezier(0.19, 1, 0.22, 1);
        }
    .fadein_l{
        transform : translate(50px , 0);
        }
    .fadein_r{
        transform : translate(-50px , 0);
        }
    .on.fadein,
	.on.fade{
        opacity : 1;
        transform : translate(0, 0);
        }
    .fadein_list .fade_list {
        opacity : 0;
        transform : translate(0, 50px) ;
        transition : all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
        }
    .fadein_list .fade_list_zoom {
        opacity : 0;
        transform :scale(1.2);
        transition : all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
        }
    .on.fadein_list .fade_list:nth-of-type(1) { animation:on_ac 0.5s ease-in-out 0.40s forwards; }
    .on.fadein_list .fade_list:nth-child(2) { animation:on_ac 0.5s ease-in-out 0.60s forwards; }
    .on.fadein_list .fade_list:nth-child(3) { animation:on_ac 0.5s ease-in-out 0.80s forwards; }
    .on.fadein_list .fade_list:nth-child(4) { animation:on_ac 0.5s ease-in-out 1.0s forwards; }
	.on.fadein_list .fade_list_zoom:nth-of-type(1) { animation:on_zoom 0.5s ease-in-out 0.40s forwards; }
    .on.fadein_list .fade_list_zoom:nth-child(2) { animation:on_zoom 0.5s ease-in-out 0.60s forwards; }
    .on.fadein_list .fade_list_zoom:nth-child(3) { animation:on_zoom 0.5s ease-in-out 0.80s forwards; }
    .on.fadein_list .fade_list_zoom:nth-child(4) { animation:on_zoom 0.5s ease-in-out 1.0s forwards; }

    .fade_txt,
	.fade_ph{
        opacity : 0;
        }
    .on .fade_txt{
        animation:fade_txt 2.0s cubic-bezier(0.19, 1, 0.22, 1)  0.65s forwards;
        }
    .on .fade_ph{
        animation:fade_ph 2.0s cubic-bezier(0.19, 1, 0.22, 1)  1.0s forwards;
        }
    .on .fade_txt.fade_txt01{
        animation-delay: 0.2s;
        }
    .on .fade_txt.fade_txt02{
        animation-delay: 0.4s;
        }
    .on .fade_txt.fade_txt03{
        animation-delay: 0.6s;
        }
    .on .fade_txt.fade_txt04{
        animation-delay: 0.8s;
        }
    .on .fade_txt.fade_txt05{
        animation-delay: 1.0s;
        }
    .on.ac_zoom {
        overflow: hidden;
    }
    .on.ac_zoom img {
        animation:ef-zoom 0.55s cubic-bezier(0.76, 0.09, 0.215, 1) forwards;
    }
}
@keyframes on_ac {
	0% { transform:translate(0,50px); opacity:0; }
	100% { transform:translate(0,0); opacity:1; }
}
@keyframes on_zoom {
	0% { transform: scale(1.2); opacity:0; }
	100% { transform:scale(1); opacity:1; }
}
@keyframes fade_txt {
	0% { transform:translate(0, 30px); opacity:0; }
	100% { transform:translate(0,0); opacity:1; }
}
@keyframes fade_ph {
	0% { opacity:0; }
	100% { opacity:1; }
}
