@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Sans:wght@300;400&display=swap');

body{
  font-family: 'Noto Sans', sans-serif;
  font-family: 'Noto Sans JP', sans-serif;
}

body.fix{
  /* overflow: hidden; */
  /* 原因解決後下に修正 */
  position: fixed;
  width: 100%;
}

.info-wp>div>a>span{
  font-weight: 300;
  font-style: normal;
}

.usage-wp h2,
.usage-wp a,
.price-wp h2,
.store-info-wp h2,
.store-info-inr h3,
.address p,
.opening-house p,
.crofun-wp h2,
.footer-wp > p{
  font-weight: 400;
  font-style: normal;
}

.top-wp h2,
.info-wp>h2,
.info-wp>p,
.h2-ja,
.usage-text
{
  font-weight: 400;
  font-style: normal;
}

/* 共通項目 */
header{
  position: fixed;
  right: 80px;
  top: 40px;
  z-index: 3;
}

a{
  text-decoration: none;
}

.shadow{
  box-shadow: 15px 15px 30px #808080;
}


.fade-in-element-top {
  opacity: 0; /* 初期状態は非表示 */
  transition: opacity 3s ease-in-out, transform 0.8s ease-in-out;
}

.fade-in-element-middle {
  opacity: 0; /* 初期状態は非表示 */
  transition: opacity 3s ease-in-out, transform 0.8s ease-in-out;
}

.fade-in-element02 {
  opacity: 0; /* 初期状態は非表示 */
  transition: opacity 1s ease-in-out, transform 0.8s ease-in-out;
}

.fade-in-active-top {
  opacity: 1; /* フェードイン時に表示 */
  transform: translateY(30px);
  transition: 6s;
  
}

.fade-in-active-middle {
  opacity: 1; /* フェードイン時に表示 */
  transform: translateY(0px);
  
}


.fade-in-active02 {
  opacity: 1; /* フェードイン時に表示 */
  transform: translateY(-20px);
}

/* 背景固定のcss */
.sp{
  display: none;
}

.pc{
  display: block;
}

@media screen and (max-width: 768px){
  header{
    position: fixed;
    right: 80px;
    top: 40px;
    z-index: 3;
  }

  .sp{
    display: block;
  }

  .pc{
    display: none;
  }
}

/* ハンバーガーメニューのCSS */
.hamburger{
  width: 55px;
  height: fit-content;
  background: none;
  border: none;
  z-index: 5;
  position: fixed;
  right: 80px;
  top: 40px;
  cursor: pointer;
}

.hamburger span{
  width: 100%;
  height: 1px;
  background: #E4E4E4;
  position: relative;
  transition: ease .4s;
  display: block;
  border: 1px solid #E4E4E4;
  border-radius: 50px;
}


/* ハンバーガーメニューアイコン(クリック前) */
.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin-top: 13px;
}

.hamburger span:nth-child(3){
  margin-top: 13px;
}

/* ハンバーガーメニューアイコン(クリック後) */
.nav.active{
  transform: translateX(0);
}

.hamburger.active span:nth-child(1){
  top: 16px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2){
  opacity: 0;
}

.hamburger.active span:nth-child(3){
  top: -16px;
  transform: rotate(-45deg);
}

/* ハンバーガーメニュー内部の動き */
.header-menu{
  position: fixed;
  transition: ease .8s;
  top: 0;
  right: -600px;
  background: #555453;
  height: 100vh;
  z-index: 3;
  opacity: 0;
}

.header-menu02{
  position: fixed;
  transition: ease .8s;
  top: 0;
  right: -600px;
  background: #C0C0C0;
  height: 100vh;
  z-index: 4;
  opacity: 0;
}



.header-menu.active{
  right: 0px;
  width: 600px;
  opacity: 1;
}

/* ハンバーガーメニューを開いた時の背景色変化 */
.back-curtain{
  height: 100vh;
  width: 100%;
  z-index: 2;
  position: fixed;
  top: 0;
  left: -100%;
  transition: ease .8s;
}

.back-curtain.active{
  left: 0;
}

.back-curtain01{
  background:rgba(116, 112, 112, 0.5);
}

.back-curtain02{
  background:rgba(232, 232, 232, 0.5);
}

/* ハンバーガーメニュー内部のCSS */
.header-menu>nav{
  width: 100%;
  text-align: left;
  margin-top: 130px;
}

.header-menu>nav>ul>li{
  margin: 50px;
}

.header-menu>nav>ul>li>a{
  font-size: 20px;
  display: inline-block;
  transition: 0.8s;
}

.header-menu>nav>ul>li>a>span{
  font-size: 12px;
  margin-left: 15px;
}

.nav-item01 a{
  color: #E4E4E4;
}

.nav-item02 a{
  color: #4D4D4D;
}

.nav-item01 a:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 100%;
	height: 1px;
	background: #E4E4E4;
	transform: scale(0, 1);
	transform-origin: left;
	transition: 0.8s;
  border-radius: 40px;
}

.nav-item02 a:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 100%;
	height: 1px;
	background: #4D4D4D;
	transform: scale(0, 1);
	transform-origin: left;
	transition: 0.8s;
  border-radius: 40px;
}

.header-menu>nav>ul>li>a:hover:before {
	transform: scale(1);
}

.header-menu>nav>ul>li>a:hover{
  transform: scale(1.1,1.1);
  transition: 0.8s;
}

.nav-item01:last-of-type a{
  width: 218px;
  font-size: 15px;
  line-height: 2.5;
  border: solid 1px #E4E4E4;
  display: inline-block;
  text-align: center;
  transition: 0.8s;
}

.nav-item02:last-of-type a{
  width: 218px;
  font-size: 15px;
  line-height: 2.5;
  border: solid 1px #4D4D4D;
  display: inline-block;
  text-align: center;
  transition: 0.8s;
}

.header-menu>nav>ul>li:last-of-type a:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 100%;
	height: 0px;
	background: #E4E4E4;
	transform: scale(0, 1);
	transform-origin: left;
	transition: 0.8s;
  border-radius: 40px;
}

.header-menu>nav>ul>li:last-of-type a:hover{
  transform: scale(1.1,1.1);
  transition: 0.8s;
  color: #fff;
}


.header-menu>nav>ul>li:last-of-type a:hover{
  border: solid 1px #E4E4E4;
  color: #313333;
  background-color: #E4E4E4;
  transition: 0.8s;
} 


@media screen and (max-width: 768px){
  .hamburger{
    width: 55px;
    height: fit-content;
    background: none;
    border: none;
    z-index:99;
    position: fixed;
    right: 30px;
    top: 40px;
    cursor: pointer;
  }
  
  .hamburger span{
    width: 100%;
    height: 1px;
    background: #E4E4E4;
    position: relative;
    transition: ease .4s;
    display: block;
    border: 1px solid #E4E4E4;
    border-radius: 50px;
  }
  
  
  /* ハンバーガーメニューアイコン(クリック前) */
  .hamburger span:nth-child(1) {
    top: 0;
  }
  
  .hamburger span:nth-child(2) {
    margin-top: 13px;
  }
  
  .hamburger span:nth-child(3){
    margin-top: 13px;
  }
  
  /* ハンバーガーメニューアイコン(クリック後) */
  .nav.active{
    transform: translateX(0);
  }
  
  .hamburger.active span:nth-child(1){
    top: 16px;
    transform: rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2){
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3){
    top: -16px;
    transform: rotate(-45deg);
  }
  
  /* ハンバーガーメニュー内部の動き */
  .header-menu{
    position: fixed;
    transition: ease .8s;
    top: 0;
    right: -600px;
    height: 100vh;
    z-index: 98;
    opacity: 0;
  }
  
  
  
  .header-menu.active{
    right: 0px;
    width: 100%;
    opacity: 1;
  }
  
  /* ハンバーガーメニューを開いた時の背景色変化 */
  .back-curtain{
    height: 100vh;
    width: 100%;
    z-index: 2;
    position: fixed;
    top: 0;
    left: -100%;
    transition: ease .8s;
  
  }
  
  .back-curtain.active{
    left: 0;
  }
  
  /* ハンバーガーメニュー内部のCSS */
  .header-menu>nav{
    width: 100%;
    text-align: left;
    margin-top: 100px;
  }
  
  .header-menu>nav>ul>li{
    margin: 50px;
  }
  
  .header-menu>nav>ul>li>a{
    font-size: 20px;
    display: inline-block;
    transition: 0.8s;
  }

  .header-menu>nav>ul>li>a>span{
    line-height: 2;
  }
  
  .header-menu>nav>ul>li>a:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 0px;
    transform: scale(0, 1);
    transform-origin: left;
    transition: 0.8s;
    border-radius: 40px;
  }
  
  .header-menu>nav>ul>li>a:hover:before {
    transform: scale(1);
  }
  
  .header-menu>nav>ul>li>a:hover{
    transform: scale(1,1);
    transition: 0.8s;
  }
  
  .header-menu>nav>ul>li:last-of-type a{
    width: 218px;
    font-size: 20px;
    line-height: 2.5;
    display: inline-block;
    text-align: center;
    transition: 0.8s;
  }
  
  .header-menu>nav>ul>li:last-of-type a:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 0px;
    transform: scale(0, 1);
    transform-origin: left;
    transition: 0.8s;
    border-radius: 40px;
  }
  
  .header-menu>nav>ul>li:last-of-type a:hover{
    transform: scale(1,1);
    transition: 0.8s;
  }
  
  
  .header-menu>nav>ul>li:last-of-type a:hover{
    border: solid 1px #E4E4E4;
    color: #313333;
    background-color: #E4E4E4;
    transition: 0.8s;
  } 
}

/* top */
#top{
  width: 100%;
  height: 100vh;
  background: url(../images/header_back.jpg)no-repeat;
  background-size: cover;
  background-position-y: bottom;
}

.top-wp{
  position: relative;
}

.sns-wp{
  position: absolute;
    top: 30px;  
    left: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80px;
    z-index: 1;
}

.sns-wp a img{
  width: 38px;
}

.underlayer-sns-wp{
  position: absolute;
  top: 30px;
  left: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 78px;
  z-index: 1;
}

.underlayer-sns-wp a img{
  width: 36px;
}

.top-wp > a{
  position: absolute;
  top: 40px;
  right: 164px;
  font-size: 16px;
  width: 150px;
  text-align: center;
  line-height: 2.4;
  color: #4D4D4D;
  background: #fff;
  transition-duration: 0.8s;
  font-weight: bold;
}

.top-reservation-button:hover{
  color: #FFFFFF;
  background: #4D4D4D;
  transform: scale(1.2,1.2); 
  transition-duration: 0.8s;
}

.middlelogo-inr{
  padding-top: 150px;
}

.middlelogo-inr>h2{
  writing-mode: vertical-rl;
  font-size: 41px;
  color: #E4E4E4;
  line-height: 1.3;
  display: block;
  margin: 0 auto;
}

.middlelogo-inr>h1>img{
  width: 118px;
  height: auto;
  display: block;
  margin: 43px auto 0;
}

@media screen and (max-width: 768px){
  #top{
    width: 100%;
    height: 100vh;
    background: url(../images/header_back.jpg)no-repeat;
    background-size: cover;
    background-position: left;
    animation: moveRight 15s forwards;
  }

  @keyframes moveRight {
    0% {
      background-position: left; /* 初期位置は左 */
    }
    100% {
      background-position: 62%;
    }
  }
  
  .top-wp{
    position: relative;
    padding-bottom: 100px;
  }
  
  .top-wp > a{
    position: absolute;
    top: 40px;
    right: calc(50% - 100px);
    font-size: 12px;
    width: 150px;
    text-align: center;
    line-height: 3.1;
    color: #4D4D4D;
    background: #fff;
    transition-duration: unset;
  }

  .sns-wp{
    position: absolute;
    top: 40px;
    left: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100px;
    z-index: 1;
  }
  
  .sns-wp a img{
    width: 40px;
  }
  
  .underlayer-sns-wp{
    position: absolute;
    top: 40px;
    left: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 87px;
    z-index: 1;
  }
  
  .underlayer-sns-wp a img{
    width: 40px;
  }

  .top-reservation-button:hover{
    color: #4D4D4D;
    background: #FFFFFF;
    transform: none; 
    transition-duration: unset;
  }
  
  .middlelogo-inr{
    padding-top: 150px;
  }
  
  .middlelogo-inr>h2{
    writing-mode: vertical-rl;
    font-size: 31px;
    color: #E4E4E4;
    line-height: 1.3;
    display: block;
    margin: 0 auto;
  }
  
  .middlelogo-inr>h1>img{
    width: 80px;
    height: auto;
    display: block;
    margin: 43px auto 0;
  }
}

/* info */
#info{
  background: url(../images/aboutsauna_back.jpg) no-repeat;
  background-size: cover;
  height: 644px;
  overflow: auto;
}

.info-wp{
  text-align: center;
}

.info-wp>h2{
  font-size: 26px;
  line-height: 1.6;
  padding-top: 90px;
  color: #4D4D4D;
}



.info-wp>p{
  display: block;
  padding-top: 44px;
  font-size: 18px;
  line-height: 2.5;
  color: #4D4D4D;

}

.info-wp>div>a{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  gap: 35px;
  transition: 0.8s;
}

.info-wp>div>a:hover{
  transform: scale(1.2,1.2); 
  transition: 0.8s;
}


.info-wp>div>a>span{
  display: inline-block;
  font-size: 20px;
  color: #4D4D4D;
  width: 100%;
  position: relative;
}

.info-wp>div>a>span:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 1px;
	background: #555;
	transform: scale(0, 1);
	transform-origin: left;
	transition: 0.8s;
  border-radius: 40px;
}

.info-wp>div>a>span:hover:before {
	transform: scale(1);
}


.info-wp>div>a>img{
  width: 51px;
  height: 51px;
}

@media screen and (max-width: 768px){
  #info{
    background: url(../images/aboutsauna_back.jpg) no-repeat;
    background-size: cover;
    height: 644px;
    overflow: auto;
  }
  
  .info-wp{
    text-align: center;
    width: 90%;
    margin: 0 auto;
  }
  
  .info-wp>h2{
    font-size: 16px;
    line-height: 1.6;
    padding-top: 90px;
    color: #4D4D4D;
  }
  
  .info-wp>div>a:hover{
    transform: none; 
    transition: unset;
  }
  
  .info-wp>p{
    text-align: left;
    display: block;
    padding-top: 44px;
    font-size: 14px;
    line-height: 2.5;
    color: #4D4D4D;
  
  }
  
  .info-wp>div>a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    gap: 15px;
    transition: unset;
  }
  
  
  .info-wp>div>a>span{
    display: inline-block;
    font-size: 20px;
    color: #4D4D4D;
    width: 100%;
    position: relative;
  }
  
  .info-wp>div>a>span:before{
    content: "";
    position: none;
    left: 0;
    bottom: -15px;
    width: 0;
    height: 0px;
    background: none;
    transform: none;
    transform-origin: left;
    transition: unset;
    border-radius: 40px;
  }
  
  .info-wp>div>a>span:hover:before {
    transform: none;
  }
  
  
  .info-wp>div>a>img{
    width: 40px;
    height: 40px;
  }
}


/* usage */
#usage{
  background: url(../images/how_to_use_back.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 130vh;
}

.usage-wp{
  text-align: center;
  padding: 103px 0 72.1px;
}

.usage-wp h2{
  font-size: 43px;
  color: #E4E4E4;
}

.h2-ja{
  font-size: 19px;
  color: #E4E4E4;
  padding-top: 22px;
}

.usage-text{
  font-size: 19px;
  color: #E4E4E4;
  line-height: 2.8;
  margin: 50px 0 108px;
}

.usage-wp a{
  font-size: 21px;
  color:#4D4D4D;
  margin: 100px 0 0 ;
  padding: 0 62px;
  line-height: 3.5;
  display: inline-block;
  background: #FFFFFF;
  border-radius: 40px;
  transition: 0.8s;
}

.usage-wp > a:hover{
  font-size: 21px;
  color:#FFFFFF;
  background: #4D4D4D;
  border-radius: 40px;
  transition: 0.8s;
  transform: scale(1.2,1.2);
}


.slider li{
  width: 449px ;
  height:288px ;
  margin: 0 90px;
}

.slider li img{
  width: 100% ;
  height:100% ;
}

@media screen and (max-width: 768px){
  #usage{
    background: url(../images/how_to_use_back.jpg) no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
  }
  
  .usage-wp{
    text-align: center;
    padding: 100px 0;
  }
  
  .usage-wp h2{
    font-size: 26px;
    color: #E4E4E4;
    letter-spacing: 0.2rem;
  }
  
  .h2-ja{
    font-size: 14px;
    color: #E4E4E4;
    padding-top: 22px;
  }
  
  .usage-text{
    text-align: left;
    font-size: 16px;
    color: #E4E4E4;
    line-height: 2.8;
    margin: 50px auto ;
    width: 90%;
  }
  
  .usage-wp a{
    font-size: 12px;
    color:#4D4D4D;
    margin: 100px 0 0 ;
    padding: 0 62px;
    line-height: 3.5;
    display: inline-block;
    background: #FFFFFF;
    border-radius: 40px;
    transition: unset;
  }
  
  .usage-wp > a:hover{
    font-size: 21px;
    color:#4D4D4D;
    background: #FFFFFF;
    border-radius: 40px;
    transition: unset;
    transform: none!important;
  }

  body{
    transform: none!important;
    transition: unset;
  }
  
  
  .slider li{
    width: 158px ;
    height:101px ;
    margin: 0 45px;
  }
  
  .slider li img{
    width: 100% ;
    height:100% ;
  }
}

/* price */
#price{
  background: url(../images/price-back.jpg);
  
}

.price-wp{
  padding: 125px 0 88px;
}

.price-wp h2{
  font-size: 44px;
  color: #4D4D4D;
  text-align: center;
  letter-spacing: 0.2rem;
}

.price-wp>p{
  font-size: 19px;
  color: #4D4D4D;
  margin: 21px 0 102px;
  text-align: center;
}

.plan-about-wp{
  display: flex;
  gap: 200px;
  justify-content: center;
  align-items: center;
}

.plan-about-wp>img{
  width: 466px;
  height: auto;
}

.plan-text{
  width: 316px;
}

.plan-text>h3{
  font-size: 21px;
  text-align: center;
  color: #4D4D4D;
}

.plan-text>span{
  font-size: 14px;
  text-align: center;
  margin:14px 0 28px 0;
  color: #4D4D4D;
  display: block;
}

table{
  width: 100%;
}



table tr td{
  font-size: 17px;
  border-top: #B1B1B1 solid 1px;
  color: #4D4D4D;
}

table  tr:last-of-type{
  border-bottom: #B1B1B1 solid 1px;
}

table tr td:first-of-type {
  padding:15px 0 15px 11px;
}

table tr td:last-of-type {
  padding:15px 0 15px 182px;
}

.holiday-plan{
  margin: 149px;
}

@media screen and (max-width: 768px){
  #price{
    background: url(../images/price-back.jpg);
    
  }
  
  .price-wp{
    padding: 98px 0 23px;
    width: 90%;
    margin: 0 auto;
  }
  
  .price-wp h2{
    font-size: 26px;
    color: #4D4D4D;
    text-align: center;
  }
  
  .price-wp>p{
    font-size: 14px;
    color: #4D4D4D;
    margin: 21px 0 50px;
    text-align: center;
  }
  
  .plan-about-wp{
    display: block;
    
  }
  
  .plan-about-wp>img{
    width: 300px;
    height: auto;
    margin: 0 auto 50px;
    display: block;
  }
  
  .plan-text{
    width: 316px;
    margin: 0 auto;
  }
  
  .plan-text>h3{
    font-size: 21px;
    text-align: center;
  }

  .plan-text>span{
    font-size: 14px;
    text-align: center;
    margin:7px 0 21px 0;
  }
  
  table{
    width: 100%;
  }
  
  
  table tr td{
    font-size: 17px;
    border-top: #B1B1B1 solid 1px;
  }
  
  table  tr:last-of-type{
    border-bottom: #B1B1B1 solid 1px;
  }
  
  table tr td:first-of-type {
    padding:15px 0 15px 11px;
  }
  
  table tr td:last-of-type {
    padding:15px 0 15px 182px;
  }
  
  .holiday-plan{
    margin: 75px 0 ;
  }
}

/* store-info */
#store-info{
  background: #555453;
  color: #E4E4E4;
  text-align: center;
}

.store-info-wp{
  padding: 137px 0 102px;
}

.store-info-wp h2{
  font-size: 44px;
  letter-spacing: 0.2rem;
}

.store-info-wp>p{
  font-size: 19px;
  margin: 21px 0 67px;
}

.store-info-inr{
  width: 526px;
  padding: 29px 0 32px;
  margin: 0 auto;
  border-top: #E4E4E4 solid 1px;
  border-bottom: #E4E4E4 solid 1px;
}

.store-info-inr h3{
  font-size: 25px;
}

.opening-house p{
  font-size: 18px;
  margin: 25px 0 47px;
}

.address p{
  font-size: 25px;
  margin: 25px 0 32px;
}

.address span{
  font-size: 19px;
  margin-left: 39px;
}

iframe{
  width: 100%;
  height: 339px;
  transition: unset;
}

iframe:hover{
  transition: unset;
  transform:none;
}


@media screen and (max-width: 768px){
  #store-info{
    background: #555453;
    color: #E4E4E4;
    text-align: center;
  }
  
  .store-info-wp{
    padding: 98px 0 102px;
    width: 90%;
    margin: 0 auto;
  }
  
  .store-info-wp h2{
    font-size: 26px;
  }
  
  .store-info-wp>p{
    font-size: 14px;
    margin: 21px 0 67px;
  }
  
  .store-info-inr{
    width: 100%;
    padding: 29px 0 32px;
    margin: 0 auto;
    border-top: #E4E4E4 solid 1px;
    border-bottom: #E4E4E4 solid 1px;
  }
  
  .store-info-inr h3{
    font-size: 18px;
  }
  
  .opening-house p{
    font-size: 18px;
    margin: 25px 0 47px;
  }
  
  .address p{
    font-size: 20px;
    margin: 25px 0 32px;
  }
  
  .address span{
    font-size: 18px;
    margin-left: 0px;
    line-height: 1.5;
  }
  
  iframe{
    width: 100%;
    height: 339px;
    transition: 0.8s;
  }
  
  iframe:hover{
    transition: unset;
    transform:none;
  }
  
}
/* crofun */
#crofun{
  background: url(../images/crohun_back.jpg) no-repeat;
  background-size: cover;
}

.crofun-wp{
  padding: 141px 0 123px;
}

.crofun-wp h2{
  font-size: 44px;
  text-align: center;
  letter-spacing: 0.2rem;
  color: #4D4D4D;
}

.crofun-wp > p{
  font-size: 19px;
  text-align: center;
  margin: 21px 0 53px;
  color: #4D4D4D;
}

.crofun-thanks figure img{
  width: 531px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.crofun-thanks > p{
  font-size: 19px;
  text-align: center;
  margin: 125px 0 145px;
  line-height: 2.8;
  color: #4D4D4D;
}

.crofun-wp > div > h3{
  font-size: 52px;
  text-align: center;
}

.company{
  margin-bottom:50px;
}

.individual{
  margin: 178px 0 122px;
}

.crofun-com{
  display: flex;
  flex-wrap: wrap;
  gap: 39px;
  justify-content: center;
  width: 938px;
  margin:  0 auto;
}


.crofun-com li img{
  width: 155px;
  height: auto;
  
}

.crofun-indi{
  display: flex;
  flex-wrap: wrap;
  gap:48px 112px;
  justify-content: center;
  width: 938px;
  margin:  0 auto;
}

.crofun-indi li p{
  font-size: 19px;
  
}


@media screen and (max-width: 768px){
  #crofun{
    background: url(../images/crohun_back.jpg) no-repeat;
    background-size: cover;
  }
  
  .crofun-wp{
    padding: 98px 0 0px;
    width: 90%;
    margin: 0 auto;
  }
  
  .crofun-wp h2{
    font-size: 26px;
    text-align: center;
  }
  
  .crofun-wp > p{
    font-size: 14px;
    text-align: center;
    margin: 21px 0 53px;
  }
  
  .crofun-thanks figure img{
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  
  .crofun-thanks > p{
    font-size: 13px;
    text-align: left;
    margin: 75px 0 50px;
    line-height: 2.8;
  }
  
  .crofun-wp > div > h3{
    font-size: 27px;
    text-align: center;
  }
  
  .company{
    margin-bottom: 50px;
  }
  
  .individual{
    margin: 100px 0 50px;
  }
  
  .crofun-com{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 39px;
    justify-content: center;
    width: 100%;
    margin:  0 auto;
  }

  .crofun-com li{
    text-align: center;
  }
  
  
  .crofun-com li img{
    width: 150px;
    height: auto;
    
  }
  
  .crofun-indi{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:48px 50px;
    justify-content: center;
    width: 100%;
    margin:  0 auto;
    text-align: center;
  }
  
  .crofun-indi li p{
    font-size: 19px;
    
  }
}
/* footer */
footer{
  background: #313333;
}

.footer-wp{
  padding: 78px 0 35px;
  width: 938px;
  margin: 0 auto;
  position: relative;
}

.ft-sns-wp{
  position: absolute;
  bottom: 90px;
  right: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100px;
}

.ft-sns-wp a img{
  width: 40px;
}

.footer-wp ul {
  padding-left: 49px;
  border-left: solid 1px #E4E4E4;
}

.footer-wp ul li{
  margin-bottom: 28px;
}

.footer-wp ul li:nth-last-of-type(2){
  margin-bottom: 0px;
}

.footer-wp ul li:last-of-type{
  margin: 25px 0;
}

.footer-wp ul li a{
  color: #E4E4E4;
  font-size: 14px;
  display: inline-block;
  transition: 0.8s;
}

.footer-wp ul li a span{
  font-size: 11px;
  margin-left: 15px;
}

.footer-wp > ul > li > a:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 100%;
	height: 1px;
	background: #E4E4E4;
	transform: scale(0, 1);
	transform-origin: left;
	transition: 0.8s;
  border-radius: 40px;
}

.footer-wp > ul > li:last-of-type  a:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 100%;
	height: 0px;
	background: #E4E4E4;
	transform: scale(0, 1);
	transform-origin: left;
	transition: 0.8s;
  border-radius: 40px;
}

.footer-wp > ul > li > a:hover:before {
	transform: scale(1);
}

.footer-wp > ul > li > a:hover{
  transform: scale(1.1,1.1);
  color:#fff;
  transition: 0.8s;
}

.footer-wp > ul > li:last-of-type a{
  width: 218px;
  font-size: 11px;
  line-height: 2.5;
  border: solid 1px #E4E4E4;
  display: inline-block;
  text-align: center;
  transition: 0.8s;
}

.footer-wp > ul > li:last-of-type a:hover{
  border: solid 1px #E4E4E4;
  color: #313333;
  background-color: #E4E4E4;
  transition: 0.8s;
}

.footer-wp > p{
  text-align: center;
  font-size: 15px;
  color: #E4E4E4;
}

@media screen and (max-width: 768px){
  footer{
    background: #313333;
  }
  
  .footer-wp{
    padding: 78px 0 35px;
    width: 90%;
    margin: 0 auto;
  }

  .ft-sns-wp{
    position: absolute;
    bottom: 75px;
    left: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100px;
  }
  
  .footer-wp ul {
    padding-left: 49px;
    border-left: solid 1px #E4E4E4;
  }
  
  .footer-wp ul li{
    margin-bottom: 28px;
  }
  
  .footer-wp ul li:nth-last-of-type(2){
    margin-bottom: 0px;
  }
  
  .footer-wp ul li:last-of-type{
    margin: 25px 0;
  }
  
  .footer-wp ul li a{
    color: #E4E4E4;
    font-size: 14px;
    display: inline-block;
    transition: 0.8s;
  }
  
  .footer-wp > ul > li > a:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: #E4E4E4;
    transform: scale(0, 1);
    transform-origin: left;
    transition: 0.8s;
    border-radius: 40px;
  }
  
  .footer-wp > ul > li:last-of-type  a:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 0px;
    background: none;
    transform: scale(0, 1);
    transform-origin: left;
    transition: 0.8s;
    border-radius: 40px;
  }
  
  .footer-wp > ul > li > a:hover:before {
    transform: scale(1);
  }
  
  .footer-wp > ul > li > a:hover{
    transform: none;
    
    transition: 0.8s;
  }
  
  .footer-wp > ul > li:last-of-type a{
    width: 218px;
    font-size: 11px;
    line-height: 2.5;
    border: solid 1px #E4E4E4;
    display: inline-block;
    text-align: center;
    transition: unset;
  }
  
  .footer-wp > ul > li:last-of-type a:hover{
    border: solid 1px #E4E4E4;
    color: #E4E4E4;
    background-color: transparent ;
    transition: unset;
  }
  
  .footer-wp > p{
    text-align: center;
    font-size: 15px;
    color: #E4E4E4;
    margin-top: 100px;
  }
}



/* houtouse.html */
.hamburger_bar02 span{
  background: #4D4D4D;
  border-color: #4D4D4D;
}


.houtouse-top{
  background: url(../images/header02_back.jpg);
  height: 100px;
  width: 100%;
  position: relative;
}

.yoyaku-button-top{
  line-height: 2.25;
  width: 150px;
  background: none;
  border: 2px solid #4D4D4D;
  text-align: center;
  position: absolute;
  right: 180px;
  top: 40px;
  transition: 0.8s;
}

.yoyaku-button-top:hover{
  background: #FFFFFF;
  transition: 0.8s;
  transform: scale(1.2,1.2);
}

.yoyaku-button-top > a{
  color: #4D4D4D;
  font-size: 16px;
  width: 100%;
  height: 100%;
  display: block;
  font-weight: bold;
}

.title{
  width: 100%;
  line-height: 12;
  text-align: center;
  font-size: 25px;
  color: #FFFFFF;
  letter-spacing: .1em;
}

.houtouse-title{
  background: url(../images/houtouse.jpg) no-repeat;
  background-size: cover;
}

.houtouse-wp > p{
  font-size: 16px;
  text-align: center;
  margin:104px 0 101px;
  line-height: 2.8;
  color: #4D4D4D;
}

.houtouse-slider{
  width: 1015px;
  margin:  0 auto;
}

.houtouse-slider li p{
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
  color: #4D4D4D;
}

.houtouse-slider li figure img{
  width: 451px;
  height: auto;
  margin: 0 0 0 auto;
}


.houtouse-slider li{
  width: 885px ;
  height:100% ;
  margin: 0 90px 45px;
  display: table-cell;
    text-align: center;
}

.slick-initialized .slick-slide{
  display: flex;
  flex-direction: row-reverse;
  gap: 70px;
  align-items: center;
  justify-content: space-between;
}


.slick-prev, 
.slick-next {
  position: absolute;
  z-index: 1;
  top: 42%;
  cursor: pointer;/*マウスカーソルを指マークに*/
  outline: none;/*クリックをしたら出てくる枠線を消す*/
  border-top: 4px solid #4D4D4D;/*矢印の色*/
  border-right: 4px solid #4D4D4D;/*矢印の色*/
  height: 20px;
  width: 20px;
}


.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

.slick-dots {
  width: 100%;
  background: #313333;
  border-radius: 20px;
  margin-top: 50px;
}
.slick-dots li img {
  width: 125px;
  height: auto;
  margin: 10px;
  border-radius: 20px;
  transition: 0.3s;
}

.slick-dots li img:hover{
  transform: scale(1.1,1.1);
  transition: 0.3s;
}

.houtouse-yoyaku-button{
  width: 300px;
  line-height: 4.6;
  background: #313333;
  text-align: center;
  margin: 118px auto 87px;
  border: #313333 1px solid;
}

.houtouse-yoyaku-button > a{
  font-size:15px;
  color: #FFFFFF;
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.8s;
}

.houtouse-yoyaku-button:hover{
  background: #FFFFFF;
  border: #313333 1px solid;
  transition: 0.8s;
}

.houtouse-yoyaku-button > a:hover{
  color: #313333;
  transition: 0.8s;
}

@media screen and (max-width: 768px){
  .hamburger_bar02 span{
    background: #4D4D4D;
    border-color: #4D4D4D;
  }
  
  
  .houtouse-top{
    background: url(../images/header02_back.jpg);
    height: 100px;
    width: 100%;
    position: relative;
  }
  
  .yoyaku-button-top{
    line-height: 3;
    width: 150px;
    background: none;
    border: 1px solid #4D4D4D;
    text-align: center;
    position: absolute;
    right: 100px;
    top: 40px;
    transition: unset;
  }
  
  .yoyaku-button-top:hover{
    background: #FFFFFF;
    transition: unset;
    transform: none;
  }
  
  .yoyaku-button-top > a{
    color: #4D4D4D;
    font-size: 12px;
    width: 100%;
    height: 100%;
    display: block;
    background: #FFFFFF;
  }
  
  .title{
    width: 100%;
    line-height: 5.5;
    text-align: center;
    font-size: 25px;
    color: #FFFFFF;
  }
  
  .houtouse-title{
    background: url(../images/houtouse.jpg) no-repeat;
    background-size: cover;
    background-position: left;
  }
  
  .houtouse-wp > p{
    font-size: 19px;
    text-align: left;
    margin:50px auto 50px;
    line-height: 2;
    width: 90%;
  }
  
  .houtouse-slider{
    width: 100%;
    margin:  0 auto;
  }
  
  .houtouse-slider li p{
    font-size: 20px;
    line-height: 1.5;
    text-align: left;
    width: 70%;
    margin: 60px auto 0;
  }
  
  .houtouse-slider li figure img{
    width: 70%;
    height: auto;
    margin: 0 auto;
  }
  
  
  .houtouse-slider li{
    width: 100% ;
    height:100% ;
    margin: 45px 0 ;
    display: table-cell;
    text-align: center;
  }
  
  .slick-initialized .slick-slide{
    display: block;
    gap: 0px;
    align-items: center;
    justify-content: space-between;
  }
  
  
  .slick-prev, 
  .slick-next {
    position: absolute;
    z-index: 1;
    top: 47%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 4px solid #4D4D4D;/*矢印の色*/
    border-right: 4px solid #4D4D4D;/*矢印の色*/
    height: 20px;
    width: 20px;
  }

  
  .slick-prev {/*戻る矢印の位置と形状*/
      left:5.5%;
      transform: rotate(-135deg);
  }
  
  .slick-next {/*次へ矢印の位置と形状*/
      right:5.5%;
      transform: rotate(45deg);
  }
  
  .slick-dots {
    overflow: scroll;
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
    background: none;

  }

  .slick-dots li img {
    width: 150px;
    height: auto;
    margin: 10px;
    border-radius: 20px;
  }
  
  .houtouse-yoyaku-button{
    width: 300px;
    line-height: 4.6;
    background: #313333;
    text-align: center;
    margin: 100px auto 50px;
    border: #313333 1px solid;
  }
  
  .houtouse-yoyaku-button > a{
    font-size: 15px;
    color: #FFFFFF;
    width: 100%;
    height: 100%;
    display: block;
    transition: unset;
  }
  
  .houtouse-yoyaku-button:hover{
    background: #313333;
    border: #313333 1px solid;
    transition: unset;
  }
  
  .houtouse-yoyaku-button > a:hover{
    color: #FFFFFF;
    transition: unset;
  }
}






















/* guid.html */
.hamburger_bar02 span{
  background: #4D4D4D;
  border-color: #4D4D4D;
}


.guid-top{
  background: url(../images/header02_back.jpg);
  height: 100px;
  width: 100%;
  position: relative;
}

.guid-title{
  background: url(../images/guid_top.jpg) no-repeat;
  background-size: cover;
}

.guid-inr{
  background: url(../images/guid_back.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
  

.guid-inr > p{
  font-size: 20px;
  text-align: center;
  margin:148px 0 144px;
  line-height: 2.8;
  color: #4D4D4D;
}

.guid-list-inr{
  width: 1110px;
  height: 100%;
  margin:  0 auto;
}

.guid-list{
  margin-bottom: 120px;
}

.guid-list:last-of-type{
  margin-bottom: 0px;
}

.guid-list01{
  display: flex;
  gap: 64px;
  justify-content: center;
  align-items: center;
}

.guid-list02{
  display: flex;
  flex-direction: row-reverse; 
  gap: 64px;
  justify-content: center;
  align-items: center;
}

.guid-list > figure > img{
  width: 465px;
  height: auto;
}

.guid-text > h2{
  font-size:49px;
  color:#808080 ;
  letter-spacing: .1em;
}

.guid-text > span{
  font-size:18px;
  color:#808080 ;
  margin: 10px 0 15px;
  display: block;
}

.guid-text > p{
  font-size: 15px;
  line-height: 2.25;
  color:#4D4D4D ;
}

.guid-yoyaku-button{
  width: 300px;
  line-height: 4.6;
  background: #313333;
  text-align: center;
  margin: 128px auto 128px;
}

.guid-yoyaku-button > a{
  font-size: 15px;
  color: #FFFFFF;
  width: 100%;
  height: 100%;
  display: block;
}

.guid-yoyaku-button:hover{
  background: #FFFFFF;
  border: #313333 1px solid;
  transition: 0.8s;
}

.guid-yoyaku-button > a:hover{
  color: #313333;
  transition: 0.8s;
}

.yoyaku-button-under{
  transition: 0.8s;
  border: 1px solid #313333;
  letter-spacing: .1em;
}

.yoyaku-button-under:hover{
  transform: scale(1.1,1.1);
  transition: 0.8s;
}

@media screen and (max-width: 768px){
  .hamburger_bar02 span{
    background: #4D4D4D;
    border-color: #4D4D4D;
  }

  .title{
    width: 100%;
    line-height: 5.5;
    text-align: center;
    font-size: 30px;
    color: #FFFFFF;
  }
  
  
  .guid-top{
    background: url(../images/header02_back.jpg);
    height: 100px;
    width: 100%;
    position: relative;
  }
  
  
  
  .guid-title{
    background: url(../images/guid_top.jpg) no-repeat;
    background-size: cover;
  }
  
  .guid-inr{
    background: url(../images/guid_back.jpg) no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
  }
    
  
  .guid-inr > p{
    font-size: 19px;
    text-align: left;
    margin: 50px auto 70px;
    line-height: 2;
    width: 90%;
    font-weight: bold;
  }
  
  .guid-list-inr{
    width: 90%;
    height: 100%;
    margin:  0 auto;
  }
  
  .guid-list{
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #4D4D4D;
  }
  
  .guid-list:last-of-type{
    margin-bottom: 0px;
    padding-bottom: 0px;
    border: none;
  }
  
  .guid-list01{
    display: block;
    gap: 0px;
    justify-content: center;
    align-items: center;
  }
  
  .guid-list02{
    display: block;
    text-align: left;
  }
  
  .guid-list > figure > img{
    width: 300px;
    height: auto;
    margin-bottom: 30px;
  }
  
  .guid-text > h2{
    font-size:28px;
    color:#808080 ;
  }
  
  .guid-text > span{
    font-size:13px;
    color:#808080 ;
    margin: 10px 0 15px;
    display: block;
  }
  
  .guid-text > p{
    font-size: 18px;
    line-height: 1.9;
    color:#4D4D4D ;
  }
  
  .guid-yoyaku-button{
    width: 300px;
    line-height: 4.6;
    background: #313333;
    text-align: center;
    margin: 100px auto 50px;
  }
  
  .guid-yoyaku-button > a{
    font-size: 15px;
    color: #FFFFFF;
    width: 100%;
    height: 100%;
    display: block;
  }
  
  .guid-yoyaku-button:hover{
    background: #313333;
    border: #313333 1px solid;
    transition: 0.8s;
  }
  
  .guid-yoyaku-button > a:hover{
    color: #FFFFFF;
    transition: 0.8s;
  }
  
  .yoyaku-button-under{
    transition: 0.8s;
  }
  
  .yoyaku-button-under:hover{
    transform: scale(1.2,1.2);
    transition: 0.8s;
  }
}

















/* faq.html */
/* .hamburger_bar02 span{
  background: #4D4D4D;
  border-color: #4D4D4D;
}


.faq-top{
  background: url(../images/header02_back.jpg);
  height: 100px;
  width: 100%;
  position: relative;
}

.faq-title{
  background: url(../images/guid_top.jpg) no-repeat;
  background-size: cover;
}

.faq-inr{
  background: url(../images/faq_back.jpg) no-repeat;
  background-size: cover;
  width: 1110px;
  height: 100%;
  margin: 0 auto;
  padding: 52px 0;
  background: #F0ECEC;
  border-radius: 25px;
}

.top-faq-inr{
  margin-top: 259px;
}

.next-faq-inr{
  margin-top: 55px;
}

.faq-list,
.answer{
  display: none;
  margin-top: 50px;
}

.faq-list li{
  border-radius: 20px;
  background: #ffffff;
  width: 956px;
  margin: 0 auto 31px;
  padding: 45px 0;
}

.faq-list li:last-of-type{
  margin-bottom: 0;
}

.faq-h2-title{
  cursor: pointer;
  position: relative;
  font-size: 50px;
  margin: 0 auto;
  width: 956px;
  text-align: left;
  color: #4d4d4d;
}

.faq-h2-title::after{
  border-right: solid 3px #333333;
  border-top: solid 3px #333333;
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 5px;
  top: 5px;
  transform: rotate(135deg);
  transition: transform .3s ease-in-out, top .3s ease-in-out;
}

.faq-h2-title.open::after {
  transform: rotate(-45deg);
}

.question{
  width: 821px;
  font-size: 31px;
  line-height: 1.7;
  margin:0 auto ;
  color: #333333;
  cursor: pointer;
  position: relative;
}

.question:last-of-type{
  margin-bottom: 0;
}

.question::before{
  content: "Q.";
  color: #333333;
  font-weight: bold;
  display: block;
  width: fit-content;
  position: absolute;
  top: 0;
  left: -37px;
}

.question::after{
  border-right: solid 3px #333333;
  border-top: solid 3px #333333;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  right: -23px;
  top: 10px;
  transform: rotate(135deg);
  transition: transform .3s ease-in-out, top .3s ease-in-out;
}

.question.open::after {
  transform: rotate(-45deg);
}

.answer{
  width: 821px;
  font-size: 23px;
  line-height: 2;
  position: relative;
  padding-left: 3.1em;
  text-indent: -1.8em;
  color: #333333;
}

.answer a{
  color: red;
  
}

.answer-span{
  margin-left: 0;
  font-weight: bold;
  font-size: 31px;
  color: #932e44;
}

.faq-yoyaku-button{
  width: 392px;
  line-height: 3.5;
  background: #313333;
  text-align: center;
  margin: 211px auto 60px;
}

.faq-yoyaku-button > a{
  font-size: 21px;
  color: #FFFFFF;
  width: 100%;
  height: 100%;
  display: block;
}

.faq-yoyaku-button:hover{
  background: #FFFFFF;
  border: #313333 1px solid;
  transition: 0.8s;
}

.faq-yoyaku-button > a:hover{
  color: #313333;
  transition: 0.8s;
}

.yoyaku-button-under{
  transition: 0.8s;
}

.yoyaku-button-under:hover{
  transform: scale(1.2,1.2);
  transition: 0.8s;
} */











.underlayer-top{
  position: relative;
}

.hamburger_bar02 span{
  background: #4D4D4D;
  border-color: #4D4D4D;
}


.faq-top{
  background: url(../images/header02_back.jpg);
  height: 100px;
  width: 100%;
  position: relative;
}

.faq-title{
  background: url(../images/faq_top.jpg) no-repeat;
  background-size: cover;
}

.faq-inr{
  background: url(../images/faq_back.jpg) no-repeat;
  background-size: cover;
  width: 1000px;
  height: 100%;
  margin: 0 auto;
  padding: 15px 0;
  background: #F0ECEC;
  border-radius: 10px;
}

.top-faq-inr{
  margin-top: 120px;
}

.next-faq-inr{
  margin-top: 15px;
}

.faq-list,
.answer{
  display: none;
  margin-top: 15px;
}

.faq-list li{
  border-radius: 10px;
  background: #ffffff;
  width: 956px;
  margin: 0 auto 22px;
  padding: 15px 0;
}

.faq-list li:last-of-type{
  margin-bottom: 0;
}

.faq-h2-title{
  cursor: pointer;
  position: relative;
  font-size: 17px;
  margin: 0 auto;
  width: 877px;
  text-align: left;
  color: #4d4d4d;
  font-weight: bold;
}

.faq-h2-title::after{
  border-right: solid 3px #333333;
  border-top: solid 3px #333333;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 15.5px;
  top: 5px;
  transform: rotate(-45deg);
  transition: transform .3s ease-in-out, top .3s ease-in-out;
}

.faq-h2-title.open::after {
  transform: rotate(135deg);
}

.question{
  width: 800px;
  font-size: 15px;
  line-height: 1.7;
  margin:0 auto ;
  color: #4D4D4D;
  cursor: pointer;
  position: relative;
}

.question:last-of-type{
  margin-bottom: 0;
}

.question::before{
  content: "Q.";
  color: #213a70;
  font-weight: bold;
  display: block;
  width: fit-content;
  position: absolute;
  top: 0;
  left: -37px;
}

.question::after{
  border-right: solid 3px #333333;
  border-top: solid 3px #333333;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  right: -23px;
  top: 5px;
  transform: rotate(-45deg);
  transition: transform .3s ease-in-out, top .3s ease-in-out;
}

.question.open::after {
  transform: rotate(135deg);
}

.answer{
  width: 800px;
    font-size: 14px;
    line-height: 2;
    position: relative;
    padding-left: 5.55em;
    text-indent: -2.6em;
    color: #4D4D4D;
}

.answer a{
  color: red;
  
}

.answer-span{
  margin-left: 0;
  font-weight: bold;
  font-size: 15px;
  color: #932e44;
  margin-right: 18px;
}

.faq-yoyaku-button{
  width: 300px;
  line-height: 4.6;
  background: #313333;
  text-align: center;
  margin: 90px auto;
}

.faq-yoyaku-button > a{
  font-size: 15px;
  color: #FFFFFF;
  width: 100%;
  height: 100%;
  display: block;
}

.faq-yoyaku-button:hover{
  background: #FFFFFF;
  border: #313333 1px solid;
  transition: 0.8s;
}

.faq-yoyaku-button > a:hover{
  color: #313333;
  transition: 0.8s;
}

.yoyaku-button-under{
  transition: 0.8s;
}

.yoyaku-button-under:hover{
  transform: scale(1.1,1.1);
  transition: 0.8s;
}

.answer-img span{
  position: absolute;
  left: 78px;
}

.parkingーtext{
  margin-left: 37px;
}

.answer-img img{
  width: 442px;
    padding-left: 38px;
    padding-top: 38px;
}

@media screen and (max-width: 768px){
  .hamburger_bar02 span{
    background: #4D4D4D;
    border-color: #4D4D4D;
  }
  
  
  .faq-top{
    background: url(../images/header02_back.jpg);
    height: 100px;
    width: 100%;
    position: relative;
  }
  
  .faq-title{
    background: url(../images/faq_top.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
  
  .faq-inr{
    background: url(../images/faq_back.jpg) no-repeat;
    background-size: cover;
    width: 92%;
    height: 100%;
    margin: 0 auto;
    padding: 15px 0;
    background: #F0ECEC;
    border-radius: 10px;
  }
  
  .top-faq-inr{
    margin-top: 100px;
  }
  
  .next-faq-inr{
    margin-top: 10px;
  }
  
  .faq-list,
  .answer{
    display: none;
    margin-top: 15px;
  }
  
  .faq-list li{
    border-radius: 10px;
    background: #ffffff;
    width: 92%;
    margin: 0 auto 22px;
    padding: 15px 0;
  }
  
  .faq-list li:last-of-type{
    margin-bottom: 0;
  }
  
  .faq-h2-title{
    cursor: pointer;
    position: relative;
    font-size: 14px;
    margin: 0 auto;
    width: 85%;
    text-align: left;
    color: #4d4d4d;
    margin-left: ;
  }
  
  .faq-h2-title::after{
    border-right: solid 2px #333333;
    border-top: solid 2px #333333;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    right: 0.5px;
    top: 5px;
    transform: rotate(-45deg);
    transition: transform .3s ease-in-out, top .3s ease-in-out;
  }
  
  .faq-h2-title.open::after {
    transform: rotate(135deg);
  }
  
  .question{
    width: 80%;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 auto;
    color: #333333;
    cursor: pointer;
    position: relative;
  }
  
  .question:last-of-type{
    margin-bottom: 0;
  }
  
  .question::before{
    content: "Q.";
    color: #213a70;
    font-weight: bold;
    display: block;
    width: fit-content;
    position: absolute;
    top: 0;
    left: -20px;
  }
  
  .question::after{
    border-right: solid 2px #333333;
    border-top: solid 2px #333333;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    right:-20px;
    top:5px;
    transform: rotate(-45deg);
    transition: transform .3s ease-in-out, top .3s ease-in-out;
  }
  
  .question.open::after {
    transform: rotate(135deg);
  }
  
  .answer{
    width: 80%;
    font-size: 14px;
    line-height: 2;
    position: relative;
    text-indent: -1.4em;
    color: #333333;
    margin-left: 33px;
    padding: 0;
  }
  
  .answer a{
    color: red;
    
  }
  
  .answer-span{
    margin-left: 0;
    font-weight: bold;
    font-size: 14px;
    color: #932e44;
    margin-right: 3px;
  }
  
  .faq-yoyaku-button{
    width: 300px;
    line-height: 4.6;
    background: #313333;
    text-align: center;
    margin: 100px auto 60px;
  }
  
  .faq-yoyaku-button > a{
    font-size: 15px;
    color: #FFFFFF;
    width: 100%;
    height: 100%;
    display: block;
  }
  
  .faq-yoyaku-button:hover{
    background: #313333;
    border: #313333 1px solid;
    transition: 0.8s;
  }
  
  .faq-yoyaku-button > a:hover{
    color: #FFFFFF;
    transition: unset;
  }
  
  .yoyaku-button-under{
    transition: unset;
  }
  
  .yoyaku-button-under:hover{
    transform: none;
    transition: unset;
  }

  .answer-img span{
    position: absolute;
    left: 0px;
  }
  
  .parkingーtext{
    margin-left: -2px;
    text-indent: initial;
  }
  
  .answer-img img{
    width: 281px;
    padding-left: 18px;
    padding-top: 65px;
  }
}







/* media */

#media{
  background: #FFFFFF;
  border-top: #666666 solid 1px;
}

.media-wp{
  padding: 80px 0;
}

.media-wp>h2{
  font-size: 44px;
    color: #4D4D4D;
    text-align: center;
    letter-spacing: 0.2rem;
}


.media-wp>p {
  font-size: 19px;
  color: #4D4D4D;
  margin: 21px 0 102px;
  text-align: center;
}

.media_list{
  width: 1000px;
  margin: 0 auto;
}

.media_list li{
  display: flex;
  gap: 175px;
  padding: 45px 0 30px;
  border-bottom: #808080 solid 1px;
}

.date{
  font-size: 18px;
  color: #4D4D4D;
  font-weight: 400;
}

.media_list li a{
  font-size: 18px;
  color: #000000;
  font-weight: 400;
}

.media_list li a:hover{
  opacity: 0.7;
}

@media screen and (max-width:768px) {
  #media{
    background: #FFFFFF;
    border-top: #666666 solid 1px;
  }
  
  .media-wp{
    padding: 80px 0;
  }
  
  .media-wp>h2{
    font-size: 44px;
      color: #4D4D4D;
      text-align: center;
      letter-spacing: 0.2rem;
  }
  
  
  .media-wp>p {
    font-size: 19px;
    color: #4D4D4D;
    margin: 21px 0 102px;
    text-align: center;
  }
  
  .media_list{
    width: 90%;
    margin: 0 auto;
  }
  
  .media_list li{
    display: block;
    gap: 175px;
    padding: 45px 0 30px;
    border-bottom: #808080 solid 1px;
  }
  
  .date{
    font-size: 18px;
    color: #4D4D4D;
    font-weight: 400;
    margin-bottom: 20px;
    display: block;
  }
  
  .media_list li a{
    font-size: 18px;
    color: #000000;
    font-weight: 400;
    line-height: 1.6;
  }

  .media_list li a:hover{
    opacity: unset;
  }
}
  