@charset "utf-8";

/* reset CSS */
*,*::before,*::after{box-sizing:border-box}*{margin:0}html,body{height:100%}body{line-height:1.5;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}#root,#__next{isolation:isolate}
dl,ol,ul{margin-bottom:0;}
figure{margin-bottom:0;}

/**
  複数ページに共通する要素
**/
html {
  scroll-padding-top: 88px;
}

@media screen and (max-width: 1199px){
  html {
    scroll-padding-top: 50px;
  }
}

body{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #424242;
}
body.overflowHidden {
  overflow: hidden;
}

.--sp, .--pc {
  display: block;
}
.--sp-inline, .--pc-inline {
  display: inline;
}

@media screen and (min-width: 750.1px){
  .--sp, .--sp-inline {
    display: none!important;
  }
}
@media screen and (max-width: 750px){
  .--pc, .--pc-inline {
    display: none!important;
  }
}

/*-------------------------------
             Header
-------------------------------*/
.header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  background: #FFF;
}
.header-title {
  width: 190px;
  margin-bottom: 0;
}
.header-title a:hover {
  opacity: 0.8;
}
.header-title span {
  display: block;
  letter-spacing: 0.06em;
}
.header-title span:nth-child(1) {
  font-size: 16px;
  line-height: 20px;
}
.header-title span:nth-child(2) {
  font-size: 28px;
}
.header-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  list-style: none;
}
.header-links li {
  line-height: 60px;
}
.header-links li a,
.header-links li span {
  font-size: 15px;
  color: #424242;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}
.header-links li a:hover,
.header-links li span:hover {
  opacity: 0.4;
}
.header-links li.has-child {
  position: relative;
}
.header-links li.has-child div {
  position: absolute;
  z-index: 100;
  left: 50%;
  top: 60px;
  display: grid;
  width: 250px;
  transform: translateX(-50%);
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: all .4s;
}
.header-links li.has-child div.active {
  grid-template-rows: 1fr;
  padding: 30px 0;
  background-color: #FFF;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 0 0 10px 10px;
}
.header-links li.has-child:has(div.active)::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  width: 12px;
  height: 13px;
  margin: auto;
  background-color: #57B0D6;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.header-links li.has-child ul {
  display: grid;
  gap: 14px;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  overflow: hidden;
}
.header-links li.has-child ul li {
  line-height: 1;
  text-align: center;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 30px;
  padding: 8px 20px;
  color: #FFF;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(to right, #57B0D6, #007ACC);
  border-radius: 50px;
}
.header-contact span {
  position: relative;
  width: 18px;
  height: 18px;
  background-color: #FFF;
  border-radius: 50%;
}
.header-contact span::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "→";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 14px;
  color: #57B0D6;
  transform-origin: center;
  transform: rotate(-45deg);
}
.header-contact:hover {
  color: #FFF;
  opacity: 0.8;
}

@media screen and (max-width: 1199px){
  .header{
    height: 46px;
  }
  .header-links {
    display: none;
  }
  .header-contact {
    display: none;
  }
  .header-toggle {
    position: relative;
    width: 24px;
    height: 17px;
    margin-left: auto;
  }
  .header-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #57B0D6;
    border-radius: 3px;
    transition: all .6s;
  }
  .header-toggle span:nth-child(1) {
    top: 0;
  }
  .header-toggle.active span:nth-child(1) {
    top: 7px;
    transform: rotate(-45deg);
  }
  .header-toggle span:nth-child(2) {
    top: 7px;
  }
  .header-toggle.active span:nth-child(2) {
    transform: rotate(45deg);
  }
  .header-toggle span:nth-child(3) {
    top: 14px;
  }
  .header-toggle.active span:nth-child(3) {
    display: none;
  }
}

/*-------------------------------
        ハンバーガーメニュー
-------------------------------*/
.drawer-menu {
  position: fixed;
  z-index: 1000!important;
  top: -100vh;
  left: 0;
  display: flex;
  align-items: center;
  width: 100vw;
  height: 100dvh;
  padding: 0 1rem;
  transition: all 0.8s 0s ease;
  background: linear-gradient(to right, #57B0D6, #007ACC);
}
.drawer-menu__inner {
  width: 100%;
  max-height: calc(100dvh - 80px);
  overflow-y: scroll;
}
.drawer-menu.open {
  top: 0;
}
.drawer-menu__nav {
  margin-bottom: 40px;
}
.drawer-menu__nav--links {
  display: grid;
  gap: 30px;
  padding-left: 0;
  list-style: none;
}
.drawer-menu__nav--links li {
  text-align: center;
}
.drawer-menu__nav--links li a {
  color: #FFF;
  font-weight: 700;
  text-decoration: none;
}
.drawer-menu__nav--links li a:hover {
  color: #FFF;
  opacity: 0.8;
}
.drawer-menu__nav--links li.has-child span {
  position: relative;
  padding-right: 21px;
  color: #FFF;
  font-weight: 700;
}
.drawer-menu__nav--links li.has-child span::before {
  position: absolute;
  content: "";
  bottom: 2px;
  right: 0;
  width: 14px;
  height: 14px;
  background-color: #FFF;
  clip-path: polygon(0% 0%, 50% 100%, 100% 0);
  transform-origin: center;
  transition: all .4s;
}
.drawer-menu__nav--links li.has-child:has(.active) span::before {
  transform: rotate(-180deg);
}
.drawer-menu__nav--links li .child {
  display: grid;
  grid-template-rows: 0fr;
  transition: all .5s;
  max-width: 250px;
  margin: auto;
  padding-top: 0;
  padding-bottom: 0;
}
.drawer-menu__nav--links li .child.active {
  position: relative;
  grid-template-rows: 1fr;
  padding-top: 45px;
  padding-bottom: 25px;
  padding-left: 10px;
  padding-right: 10px;
}
.drawer-menu__nav--links li .child.active::before {
  position: absolute;
  content: "";
  z-index: -1;
  left: 0;
  top: 15px;
  width: 100%;
  height: calc(100% - 15px);
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.drawer-menu__nav--links li .child ul {
  list-style: none;
  overflow: hidden;
}
.drawer-menu__nav--links li .child.active ul {
  display: grid;
  gap: 12px;
  margin-bottom: 0;
  padding-left: 0;
}
.drawer-menu__nav--links li .child.active ul li {
  text-align: center;
}
.drawer-menu__nav--links li .child ul li a {
  color: #007ACC;
}
.drawer-menu__contact {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 162px;
  margin: auto;
  padding: 8px 20px;
  color: #007ACC;
  font-weight: 700;
  text-decoration: none;
  background: #FFF;
  border-radius: 50px;
}
.drawer-menu__contact:hover {
  color: #007ACC;
  opacity: 0.8;
}
.drawer-menu__contact span {
  position: relative;
  width: 18px;
  height: 18px;
  background-color: #007ACC;
  border-radius: 50%;
}
.drawer-menu__contact span::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "→";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 14px;
  color: #FFF;
  transform-origin: center;
  transform: rotate(-45deg);
}


.drawer-menu__cta {
  display: grid;
  gap: 16px;
}
.drawer-menu__cta--item {
  position: relative;
  display: block;
  width: 170px;
  height: 40px;
  margin: auto;
  padding: 10px 0 10px 24px;
  background-color: #D72853;
  color: #FFF;
  text-align: center;
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
}
.drawer-menu__cta--item::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  width: 24px;
  height: 24px;
  margin: auto;
  background-size: cover;
  background-position: center;
}
.drawer-menu__cta--item:nth-child(1)::before {
  background-image: url("../img/tel.png");
  left: 24px;
}
.drawer-menu__cta--item:nth-child(2)::before {
  background-image: url("../img/contact.png");
  left: 30px;
}
.drawer-menu__cta--item:nth-child(3)::before {
  background-image: url("../img/reservation.png");
  left: 30px;
}
.drawer-menu__cta--item:hover {
  opacity: 0.8;
  color: #FFF;
}
.drawer-menu__toggle {
  position: absolute;
  content: "";
  right: 10px;
  top: 15px;
  width: 24px;
  height: 17px;
}
.drawer-menu__toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #FFF;
  border-radius: 3px;
  transition: all .6s;
}
.drawer-menu__toggle span:nth-child(1) {
  top: 7px;
  transform: rotate(-45deg);
}
.drawer-menu__toggle span:nth-child(2) {
  top: 7px;
  transform: rotate(45deg);
}
.drawer-menu__toggle span:nth-child(3) {
  display: none;
}

/*-------------------------------
           Footer
-------------------------------*/

/* フッターメニュー */
.sub-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: clamp(30px, 6vw, 60px) 0;
  background-color: #EEF7FB;
}
.sub-footer__youtube {
  width: 520px;
  height: 270px;
}
.sub-footer__links {
  display: grid;
  gap: 20px;
  width: 400px;
}
.sub-footer__links a {
  display: block;
}
.sub-footer__links a:hover {
  opacity: 0.8;
}
.sub-footer__links a img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 960px) {
  .sub-footer {
    flex-direction: column;
    padding: 2rem;
  }
  .sub-footer__youtube {
    width: 100%;
    height: calc(50vw - 2rem);
  }
  .sub-footer__links {
    width: 100%;
    max-width: 400px;
  }
}


.footer {
  padding-top: clamp(20px, 4vw, 40px);
}
.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: calc(100% - 2rem);
  max-width: 1080px;
  margin: auto;
}
.footer-main__left {
  display: grid;
  max-width: 430px;
}

.footer-main__logo {
  display: block;
  width: clamp(200px, 30vw, 334px);
  height: auto;
  margin-bottom: 20px;
}
.footer-main__logo:hover {
  opacity: 0.7;
}
.footer-main__sns {
  display: flex;
  gap: 20px;
  padding-left: 0;
  margin-bottom: clamp(20px, 4vw, 40px);
  list-style: none;
}
.footer-main__sns li {
  width: 51px;
  height: 51px;
}
.footer-main__sns li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  background-color: #FFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  overflow: hidden;
}
.footer-main__sns li a:hover {
  opacity: 0.8;
}
.footer-main__sns li a img {
  width: auto;
  height: 29px;
}
.footer-main__contact {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 162px;
  padding: 8px 20px;
  color: #FFF;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(to right, #57B0D6, #007ACC);
  border-radius: 50px;
}
.footer-main__contact span {
  position: relative;
  width: 18px;
  height: 18px;
  background-color: #FFF;
  border-radius: 50%;
}
.footer-main__contact span::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "→";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 14px;
  color: #57B0D6;
  transform-origin: center;
  transform: rotate(-45deg);
}
.footer-main__contact:hover {
  color: #FFF;
  opacity: 0.8;
}
.footer-main__right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  width: 430px;
}
.footer-main__right ul {
  display: grid;
  gap: 16px;
  padding-left: 0;
  list-style: none;
}
.footer-main__right ul li {
  font-size: 14px;
  line-height: 1;
}
.footer-main__right ul li:has(.footer-main__contact) {
  width: 162px;
}
.footer-main__right ul li:has(.footer-main__contact) span {
  margin-left: auto;
}
.footer-main__right ul li .footer-main__contact {
  color: #FFF;
}
.footer-main__right ul li.mt4 {
  margin-top: 4px;
}
.footer-main__right ul li span,
.footer-main__right ul li a {
  color: #424242;
  font-weight: 700;
  text-decoration: none;
}
.footer-main__right ul li a:hover {
  text-decoration: underline;
}
.footer-main__right ul li ul {
  margin-top: 16px;
}
.footer-main__right ul li ul li a {
  font-size: 12px;
  font-weight: 500;
}

@media screen and (max-width: 960px) {
  .footer-main {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .footer-main__left {
    width: 100%;
    max-width: 100%;
  }
  .footer-main__logo {
    margin: auto;
    order: 2;
  }
  .footer-main__sns {
    justify-content: center;
    order: 1;
    gap: 16px;
  }
  .footer-main__sns li {
    width: 44px;
    height: 44px;
  }
  .footer-main__sns li a {
    width: 44px;
    height: 44px;
  }
  .footer-main__right {
    width: 100%;
    max-width: 480px;
    margin: auto;
  }
}

.footer-bottom {
  display: flex;
  gap: 20px;
  width: calc(100% - 2rem);
  max-width: 1080px;
  margin: 20px auto 0;
  font-size: 10px;
}
.footer-bottom__links {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.footer-bottom__links li a {
  color: #424242;
  text-decoration: underline
}
.footer-bottom__links li a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 960px) {
  .footer-bottom {
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
  }
}
