@charset "UTF-8";
/* CSS Document */

html{
	font-size: 62.5%;
	/*16pxx62.5%=10px*/
  	margin: 0!important;
	scroll-behavior: smooth;
	font-family: sans-serif;
}
p, span, li{
	font-size: 1.6rem;
	text-align: justify;
	letter-spacing: 0.1em;
	line-height: 1.5;
}
a{
  text-decoration: none;
  color:#000;
}
.pc-view{
	display: block;
}
.sp-view{
	display: none;
}
.serif{
    font-family: "Shippori Mincho", serif;
}
.contents-wrapper{
  max-width: 1240px;
  margin: 0px auto;
}

/*-----------------------------------------------
*	header
*-----------------------------------------------*/
.header-wrapper{
    background-color: #51A098;
    padding-top: 20px;
    padding: 40px 0 60px;
}
@media screen and (max-width: 1400px) {
    .header-wrapper{
        padding: 40px 20px 40px;
    }
}
.header-wrapper_sub{
    background-color: #51A098;
    height: 82px;
    display: flex;
}
@media screen and (max-width: 1026px) {
    .header-wrapper_sub{
        padding: 0 20px;
    }
}
.contents-wrapper{
    max-width: 80%;
    margin: 0px auto;
}
.header {
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px; 
    max-width: 1088px;
    width: 100%;
    margin: 0 auto;
}
.logo{
    width: 100%;
}
@media screen and (max-width: 500px) {
    .logo{
        width: 200px;
    }
}
.logo_sub{
    width: 170px;
}
.burger-btn{
    display: block;
    width: 50px;
    height: 42px;
    position: relative;
    z-index: 3;
    background-color:transparent;
    border:none;
  }
/*	Humburger menu bar*/
.bar{
    height: 4px;
    border-radius: 2px;
    display: block;
    transform: translateX(-50%);
    position: absolute;
    background-color: #fff;
}
.bar_top{
    top: 10px;
    width: 50px;
}
.bar_mid{
    top: 26px;
    width: 35px;
    transform: translate(-25px, -50%);
}
.bar_bottom{
    width: 8px;
    top: 42px;
    transform: translate(-25px, -50%);
}
.burger-txt{
    color: #fff;
    font-size: 1rem;
    position: absolute;
    top: 33px;
    left: 0px;
    font-weight: 600;
}
.bar_top_sub{
    top: 0;
    width: 50px;
}
.bar_mid_sub{
    top: 17px;
    width: 35px;
    transform: translate(-25px, -50%);
}
.bar_bottom_sub{
    width: 8px;
    top: 32px;
    transform: translate(-25px, -50%);
}
.burger-txt_sub{
    color: #fff;
    font-size: 1rem;
    position: absolute;
    top: 30px;
    left: 0px;
    font-weight: 600;
}
  .burger-btn.close .bar_top, .burger-btn.close .bar_top_sub{
	  	transform: translate(-50%,10px) rotate(45deg);
	  	transition: transform .3s;
  }
  .burger-btn.close .bar_mid, .burger-btn.close .bar_mid_sub{
	  	opacity: 0;
	  	transition: opacity .3s;
  }
  .burger-btn.close .bar_bottom, .burger-btn.close .bar_bottom_sub{
	  	transform: translate(-50%,-22px) rotate(-45deg);
	  	transition: transform .3s;
        width: 50px;
  }
   .burger-btn.close .burger-txt, .burger-btn.close .burger-txt_sub{
        display: none;
    }
  .nav-wrapper{
		display: none;/*これがないと、SP版になった瞬間ハンバーガーメニューが開いた状態になる*/
		width: 100vw;
		height: 100vh;
		position: fixed;
 		top: 0;
		left: 0;
		z-index: 2;/*キービジュアルと.btn_triggerとの重なりの前後関係を調整*/
   }
   .header-nav{
		width: 100%;
		height: 100%;
		background: #26716A;
		z-index: 2;
       background-image: url("../img/header-nav__bg.png");
       background-size: cover;
       background-repeat: no-repeat;
  }
   .header-nav .nav-list{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		text-align: center;
       width: 100%;
        display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header-nav .nav-item{
		margin-right: 0;
		margin-bottom: 40px;
  }
.nav-item a{
    color: #fff;
    text-align: center;
    font-size: 2rem;
    border-bottom: solid;
    padding-bottom: 10px;

}.nav-item a:hover{
    opacity: 0.5;
    transition: 0.3s;
}
  .active{
        color: #010917!important;
        border-bottom: none;
    }

/*-----------------------------------------------
*	footer
*-----------------------------------------------*/
.footer-wrapper{
    margin-top: 200px;
    display: flex;
}
.footer-container{
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 44px;
}
@media screen and (max-width: 1220px) {
    .footer-container{
        max-width: auto;
        width: 90%;
    }
}
.footer-logo{
    width: 98px;
    margin-right: 58px;
}
@media screen and (max-width: 880px) {
    .footer-logo{
        margin-right: 30px;
    }
}
.footer-border{
    border-right: solid 1px #666666;
    height: 47px;
    margin-right: 58px;
}
@media screen and (max-width: 880px) {
    .footer-border{
        margin-right: 30px;
    }
}
.footer-list{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 700px) {
    .footer-list {
        align-items: flex-start;
        flex-direction: column;
    }
}
.footer-item{
    font-family: "Shippori Mincho", serif;
    margin-right: 50px;
    font-size: 1.5rem;
    color: #666;
}
@media screen and (max-width: 880px) {
    .footer-item{
        margin-right: 30px;
    }
}
@media screen and (max-width: 700px) {
    .footer-item{
        margin: 0 0 30px;
    }
}
.footer-item:hover{
    color: #A39574;
    transition: 0.4s;
}
.footer-active{
    color: #A39574!important;
    border-bottom: solid 1px #A39574;
    padding-bottom: 8px;
    margin-top: 8px;
    display: block;
}
.sns_wrapper{
    width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 120px;
}
@media screen and (max-width: 1220px) {
    .sns_wrapper{
        width: 90%;
    }
}
.sns_container{
    display: flex;
    margin-bottom: 18px;
}
.sns_box{
    width: 26px;
    height: 26px;
    margin-left: 20px;
}
.sns_box:hover{
    opacity: 0.5;
    transition: 0.4s;
}
.cr_txt{
    font-size: 1.2rem;
}
@media screen and (max-width: 350px) {
    .cr_txt{
        font-size: 1rem;
    }
}

/*-----------------------------------------------
*	footer
*-----------------------------------------------*/
.footer{
    width: 100%;
    background-color: #585858;
    padding: 30px 0 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}
.footer__txt{
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.footer__privacy{
    color: #fff;
    font-size: 1.3rem;
}