@charset "utf-8";
/* CSS Document */

a{
  opacity: 1;
  transition: 0.3s;
}

a:hover{
  opacity: 0.8;
  transition: 0.3s;
}
.container{
  max-width: 940px;
  margin: 0 auto;
  padding: 6rem 2rem 8rem;
}
header {
  position: fixed;
  width: 100%;
  top:0;
  left:0;
  z-index: 1000;
  background-color: #fff;
}
header .container{
  max-width: 1147px;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

header .logo{
  width: 19rem;
}
header .business_hours{
  text-align: right;
  font-size: 1.8rem;
}
header .business_hours small{
  font-size: 1.6rem;
}
header .business_hours strong{
  font-size: 2.8rem;
  padding: 0 10px;
}
header .business_hours span{
  background-color: #283C64;
  color: #fff;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 0.2rem;
  margin-left: 2rem;
}
.menu_box ul.menu{
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}
.menu_box ul.menu li{
  background: url("../images/common/dotline.svg") no-repeat right 1px center;
  padding: 0 1rem;
}
.menu_box ul.menu a{
  position: relative;
  display: block;
  padding: 0 2rem 0.5rem;
  transition: 0.3s;
}
.menu_box ul.menu a:hover{
  color: #006AB7;
  transition: 0.3s;
  opacity: 1;
}
.menu_box ul.menu a::after{
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  left:50%;
  bottom:0;
  background-color: #006AB7;
  transition: 0.3s;
}
.menu_box ul.menu a:hover::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  left:0;
  bottom:0;
  background-color: #006AB7;
  transition: 0.3s;
}

.drawer_open span{
  display: none;
}

.drawer_hidden {
  display: none;
}

.q-menu{
  position: fixed;
  right:2rem;
  margin-top: 2rem;
  z-index: 100;
}
.q-menu li img{
  width: 108px;
}


.q-menu a.btn_login{
  display: block;
}
.q-menu a.btn_logout{
  display: none;
}
.logged-in .q-menu a.btn_login{
  display: none;
}
.logged-in .q-menu a.btn_logout{
  display: block;
}


.um-field-label-icon i::before{
  color: #283C64;
}
.um-register .um-field-label label{
  color: #283C64;
}
.um-register .um-field-label label::after{
  content: "（必須）";
  margin-left: 2rem;
  color: #FF6146;
}
.um-register .um-field-first_name .um-field-label label::after,
.um-register .um-field-zip .um-field-label label::after{
  content: "" !important;
}

.um-page-register{
  background-color: #EEEEEE;
}
.um-form{
  padding: 3rem;
  background-color: #fff;
  box-shadow: 1px 0 7px rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
}

footer{
  background: url("../images/common/bg-footer.jpg") no-repeat top center/cover;
}

footer .site-info{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6rem;
  border-bottom: 1px solid #283C64;
}
footer .site-info .map iframe{
  width: 395px;
  aspect-ratio: 5 / 3;
}
footer .site-info .site-info_txt{
  margin-left: 4rem;
  width: 100%;
}
footer .site-info h1{
  font-size:3rem;
}
footer .site-info .site-info_txt p{
  font-size:1.2rem;
  margin-top: 3rem;
  font-weight: 500;
}
footer .footer_menu{
  display: flex;
  text-align: center;
  justify-content: space-between;
  margin-top: 6rem;
}
footer .footer_menu li{
  width: 23%;
}
footer .footer_menu li img{
  width: 100%;
  margin-bottom: 2rem;
}
footer .footer_logo{
  max-width: 345px;
  margin: 6rem auto 2rem;
	/*240726*/
	display:flex;
	gap: 40px;
}
footer .copy{
  font-size: 1.2rem;
  margin-top: 2rem;
}



.top_about .step_list li .step_no,
.top_nagare .step_list li .step_no,
.plan_details_list li .step_no{
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
}


.sub_title{
  height: 20rem;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
}
.page_nav{
  max-width: 1147px;
  margin: 0 auto;
  padding: 1rem;
  font-size: 1.4rem;
}

.plan .sub_title{
  background: url("../images/plan/sub_title_bg.jpg") no-repeat top center/cover;
}
.store .sub_title{
  background: url("../images/store/sub_title_bg.jpg") no-repeat top center/cover;
}
.reservation .sub_title,
.booking-form .sub_title,
.booking-thanks .sub_title{
  background: url("../images/reservation/sub_title_bg.jpg") no-repeat top center/cover;
}
.facilities .sub_title{
  background: url("../images/facilities/sub_title_bg.jpg") no-repeat top center/cover;
}
.news .sub_title,
.single .sub_title{
  background: url("../images/news/sub_title_bg.jpg") no-repeat top center/cover;
}


.login_header{
  text-align: center;
  margin-top: 6rem;
}
.login_header img{
  width: 34.5rem;
}

.pc{
  display: block;
}
.sp{
  display: none;
}

@media screen and (max-width: 768px) {
  
  
  .q-menu{
    position: fixed;
    right: 2rem;
    top: auto;
    bottom: 1rem;
    margin-top: 0;
  }
  .q-menu ul{
    display: flex;
    justify-content: flex-end;
  }
  .q-menu li img{
    width: 65px;
  }
  
  
  .menu_box ul.menu {
    flex-flow: column;
    padding: 0 2rem;
  }
  .menu_box ul.menu li{
    text-align: center;
    border-bottom: 2px dotted #fff;
  }
  .menu_box ul.menu li a{
    display: block;
    padding: 2rem 0;
  }
  .menu_box ul.menu li:last-child{
    border-bottom: 0;
  }
  
  .nav-info{
    text-align: center;
  }
  .nav-info h1{
    font-size:1.6rem;
    margin-top: 3rem;
  }
  .nav-info p{
    font-size:1.2rem;
    margin-top: 2rem;
  }
  
  .nav{
    padding-top: 1rem;
  }
  /* ハンバーガーアイコンの設置スペース */
  .drawer_open {
    display: flex;
    height: 40px;
    width: 60px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;/* 重なり順を一番上にする */
    cursor: pointer;
  }

  /* ハンバーガーメニューのアイコン */
  .drawer_open span{
    display: block;
    font-size: 1.2rem;
    font-family: "Oswald", sans-serif;
    width: 36px;
    text-align: center;
    color: #006AB7;
    transition: 0.3s;
    padding-top: 2rem;
  }
  .drawer_open span:before,
  .drawer_open span:after {
    content: '';
    display: block;
    height: 2px;
    width: 36px;
    border-radius: 3px;
    background: #006AB7;
    transition: 0.5s;
    position: absolute;
  }

  /* 三本線の一番上の棒の位置調整 */
  .drawer_open span:before {
    top: 16px;
  }

  /* 三本線の一番下の棒の位置調整 */
  .drawer_open span:after {
    top: 8px;
  }

  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer_input:checked ~ .drawer_open span {
    color: rgba(255, 255, 255, 0);
    transition: 0.3s;
  }

  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }

  #drawer_input:checked ~ .drawer_open span::after {
    top: 16px;
    transform: rotate(-45deg);
  }

  /* メニューのデザイン*/
  .nav_content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 7rem;
    left: 100%; /* メニューを画面の外に飛ばす */
    z-index: 99;
    background: #283C64;
    color: #fff;
    transition: .5s;
  }

  /* メニュー黒ポチを消す */
  .nav_list {
    list-style: none;
  }

  /* アイコンがクリックされたらメニューを表示 */
  #drawer_input:checked ~ .nav_content {
    left: 0;/* メニューを画面に入れる */
  }

  
  header .logo {
    width: 11.4rem;
  }
  
  .container{
    max-width: 940px;
    margin: 0 auto;
    padding: 4rem 2rem;
  }
  
  footer{
    padding-bottom: 4rem;
  }
  footer .site-info{
    flex-flow: column;
    padding-bottom: 4rem;
  }
  footer .site-info .map iframe{
    width: 100%;
  }
  footer .site-info .site-info_txt{
    margin-top: 2rem;
    margin-left: 0;
  }
  footer .site-info h1{
    text-align: center !important;
    margin-bottom: 2rem;
    font-size: 2.4rem;
  }
  footer .site-info .site-info_txt p{
    margin-top: 1rem;
  }
  footer .footer_menu{
    margin-top: 0;
    flex-wrap: wrap;
  }
  footer .footer_menu li{
    width: 45%;
    font-size: 1.4rem;
    margin-top: 3rem;
    font-weight: 500;
  }
  footer .footer_menu li img{
    margin-bottom: 1rem;
  }
  footer .footer_logo{
    max-width: 200px;
    margin: 4rem auto 2rem;
	  /*240726*/
	display:flex;
	  gap: 10px;
  }
  
  .plan .sub_title{
    background: url("../images/plan/sub_title_bg_sp.jpg") no-repeat top center/cover;
  }
  .store .sub_title{
    background: url("../images/store/sub_title_bg_sp.jpg") no-repeat top center/cover;
  }
  .reservation .sub_title,
  .booking-form .sub_title,
  .booking-thanks .sub_title{
    background: url("../images/reservation/sub_title_bg_sp.jpg") no-repeat top center/cover;
  }
  .facilities .sub_title{
    background: url("../images/facilities/sub_title_bg_sp.jpg") no-repeat top center/cover;
  }
  .news .sub_title,
  .single .sub_title{
    background: url("../images/news/sub_title_bg_sp.jpg") no-repeat top center/cover;
  }
  
  .sub_title {
    height: 12rem;
  }
  .sub_title h1{
    width: 100%;
    margin-left: 50%;
    font-size: 2.4rem;
  }
  
  .page_nav {
    font-size: 1.2rem;
  }
  
  .login_header img{
    width: 80%;
  }

  
  .sp{
    display: block;
  }
  .pc{
    display: none;
  }
  
  
  
}




