@charset "utf-8";

/*==========================
common
==========================*/
:root {
    --primary-orange: #E94A1A;
    --primary-whitebeige: #F8F1EE;
    --primary-beige: #EBE0DB;
    --primary-pinkbeige: #F1CEC0;
    --primary-pinkorange: #FF8769;
    --primary-brownbeige: #BCADA8;
    --primary-brown: #A87A67;
    --primary-black: #4F4F4F;
    --contentWidth: 80.56%;
    --contentPadding: 9.72%;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        "Zen Maru Gothic",
        Arial,
        sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--primary-black, #4F4F4F);
    background-color: var(--primary-whitebeige, #F8F1EE);
    line-height: 1.5;
}




/*==========================
header
==========================*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: all 0.3s ease; 
  z-index: 5;
}


/* global navi */

.globalNav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 40px;
  z-index: 3;
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

/* スクロール後に帯背景が出る */
.globalNav.scrolled {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.globalNav__list {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.globalNav__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--primary-brown);
  font-size: 1.4rem;
  transition: color 0.3s, opacity 0.3s;
}

/* ホバー時の軽いエフェクト */
.globalNav__item a:hover {
  opacity: 0.7;
}

/* アイコン共通ラップ */
.globalNav__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  margin-bottom: 4px;
}

/* ===============================
   SVGアイコン用設定
================================= */

/* SVGアイコン */

.nav__icon {
  width: 25px;
  height: 25px;
  fill: currentColor;
  transform: scale(var(--icon-scale, 1));
  transition: fill 0.3s, transform 0.3s;
}

.plan__icon { --icon-scale: 1.5; }
.play__icon { --icon-scale: 1.3; }
.event__icon { --icon-scale: 0.9; }

/* 通常カラー */
.top__icon   { color: #A87A67; }
.plan__icon  { color: #BCADA8; }
.play__icon  { color: #A87A67; }
.relax__icon { color: #BCADA8; }
.event__icon { color: #A87A67; }
.insta__icon { color: #BCADA8; }

/* active時 */
.globalNav__item.active a,
.globalNav__item.active .nav__icon {
  color: #E94A1A;
}

/* hover時 */
.globalNav__item a:hover .nav__icon {
  animation: furu 1s ease-in-out infinite;
}
@keyframes furu {
  0%, 100% {
    transform: scale(var(--icon-scale, 1)) translateY(0) rotate(0deg);
  }
  20% {
    transform: scale(var(--icon-scale, 1)) translateY(-2px) rotate(-5deg);
  }
  40% {
    transform: scale(var(--icon-scale, 1)) translateY(-2px) rotate(5deg);
  }
  60% {
    transform: scale(var(--icon-scale, 1)) translateY(-2px) rotate(-4deg);
  }
  80% {
    transform: scale(var(--icon-scale, 1)) translateY(-2px) rotate(4deg);
  }
}


@media (max-width: 767px) {

.header {
  position: fixed;
  padding-left: 1%;
}    

.globalNav {
    display: none;
}

}

/* nav */

.nav,
.header__btn {
    display: none;
}



@media (max-width: 767px) {


    .header__btn {
        position: fixed;
        display: block;
        width: 35px;
        height: 35px;
        cursor: pointer;
        top: 20px;
        right: 5%;
        z-index: 999;
    }


    .nav {
        display: block;
        background: #FFF;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.4s;

    }

    .nav.active {
        transform: translateX(0);
    }


    .nav__logo img {
        width: 100px;
        height: auto;
        margin-top: 6px;
        margin-left: 5%;
        transition: none;
    }

    .nav__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav__list {
        margin-top: 30px;
        text-align: center;

    }

    .nav__item a {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-orange);
        font-size: 2rem;
        font-weight: 500;
        line-height: 4;
        gap: 10px;
        text-decoration: none;

    }

    .nav__item img {
        vertical-align: middle;
    }

    .home__navicon,
    .relax__navicon,
    .event__navicon {
        width: 20px;
        height: auto;
    }

    .plan__navicon {
        width: 30px;
        height: auto;
    }

    .play__navicon {
        width: 25px;
        height: auto;
    }

    .insta__navicon {
        width: 24px;
        height: auto;
    }

    .nav__btn {
        display: block;
        width: 35px;
        height: 35px;
        cursor: pointer;
        position: absolute;
        top:20px;
        right: 5%;
    }


     .nav__btnReserve {
        bottom: 0;
        right: auto;
        width: 50%;
        left: 50%;
        transform: translateX(-50%);
        height: 40px;
        border-radius: 20px 20px 0 0;
        font-size: 1.6rem;
        font-weight: 500;
        text-align: center;
        color: #fff;
        background-color: var(--primary-orange);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }


}

/* section title */

.inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;   
  box-sizing: border-box;
}

.section__title-main {
    margin-bottom: 10px;
    color: #A87A67;
    /* font-family: "brooklyn-heritage-script"; */
    /* font-family:"Alan Sans", sans-serif;*/
    font-weight: 300; 
      font-family: "Playwrite NO", cursive;
  /* font-optical-sizing: auto; */
    font-size: 6rem;
    line-height: 1.0;
}

.section__title-sub {
    color: #A87A67;
    font-size: 1.6rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 999;
}

.section__title-icon {
    width: 20px;
    height: auto;
    display: block;
}

.section__txt {
    margin-top: 28px;
    color: #4F4F4F;
    font-size: 2rem;
    line-height: 1.8;

}

@media (max-width: 1110px) and (min-width: 768px) {

.section__title-main {
     font-size: 5rem;
}

}



@media (max-width: 767px) {


 .section__title-main {
        font-size: 3.5rem;
        margin-bottom: 5px;
            /* line-height: 0.8; */
                font-weight: 400;
    }

    .section__title-sub {
        font-size: 1.6rem;
        gap: 1px;
    }

    .section__title-icon {
        width: 12px;
        height: auto;

    }

}




/* footer */

.footer {
    background-color: white;
    color: var(--primary-brown);
    padding: 80px 20px 20px;
    position: relative;
}

.custom-shape-divider-top-1760021289 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    transform: scaleY(-1);

}

.custom-shape-divider-top-1760021289 svg {
    position: relative;
    display: block;
    width: calc(169% + 1.3px);
    height: 90px;
    transform: rotateY(180deg);
}

.custom-shape-divider-top-1760021289 .shape-fill {
    fill: var(--primary-whitebeige);
}



@media (max-width: 767px) {

  .custom-shape-divider-top-1760021289 svg {
    position: relative;
    display: block;
    width: calc(169% + 1.3px);
    height: 60px;
    transform: rotateY(180deg);
}
  
}


.footer__inner {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    gap: 20px;
        padding-top: 30px;
            margin-bottom: 30px;
}

.footer__logo {
    width: 150px;
    height: auto;
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__item {
    display: flex;
    gap: 8px;
  align-items: flex-start
}

.footer__label {
    width: 90px;
    color: #A87A67;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    margin-right: -18px;
}

.footer__text {
    flex: 1;
    color: #A87A67;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
}

.footer__copy {
    position: absolute;
    right: 30px;
    bottom: 5px;
    font-size: 1.2rem;
}

.footer__twinkle {
  width:3% ;
  height: auto;
  transform: translateY(4px);
  
}

.footer__item {
    margin-bottom: 16px; 
  }


@media (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    padding: 20px;
  }

  .footer__logo {
    width: 120px;
  }

  .footer__info {
    width: 100%;
  }

  .footer__item {
    min-height: 28px; 
  }

  .footer__label,
  .footer__text {
    font-size: 1.4rem;
  }

  .footer__copy {
    position: static;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .footer__item {
    margin-bottom: 0px; 
  }
 .footer__info {
    margin-left: 0;
    margin-right: 0;
    align-items: center; 
  }
  
  .footer__info {
    margin: 0 auto;
    align-items: flex-start; 
    width: auto; 
  }

  .footer__twinkle {
    width: 10px;   
    height: auto;
    transform: translateY(4px);
  }


}



/* TOPボタン */

.topBtn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-brown);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: 600;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 260px;
    padding: 8px;
    transition: 0.3s;
}

.topBtn:hover {
    opacity: 0.8;
}

.topBtn__icon {
    font-size: 1.8rem;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
    transform: rotate(-90deg)translateY(-3px);
}

.topBtn__txt {
    font-size: 1.2rem;
}

@media (max-width: 767px) {
    .topBtn {
        left: auto;
        right: 5%;
        bottom: 410px;
    }
}

/* 改行 */

.br-pc{
  display: block;
}

.br-sp{
 display: none;
}

.br-flex{
 display: none;
}

@media (max-width: 1220px) {

   .br-pc{
display: none;
}

.br-sp{
display: block;
}

.br-flex {
  display: block;
  width: 100%;
}

} 

/*======================
modal
======================*/

/* ===== モーダル全体 ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal.active {
  display: flex;
}

/* ===== モーダルボックス ===== */
.modal__content {
  background: #fff;
  padding: 60px 50px;
  border-radius: 20px;
  max-width: 650px;
  width: 90%;
  text-align: center; 
  position: relative;
  animation: fadeIn 0.3s ease;
}

/* ===== 閉じるボタン ===== */
.modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* ===== テキスト ===== */
.modal__lead {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--primary-black);
}

.modal__lead-main {
  color: var(--primary-orange);
  font-size: 2.2rem;
  display: block;
}

.modal__title {
   font-size: 1.8rem;
  margin-bottom: 16px;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--primary-brown);
  color: var(--primary-brown);
  margin-top: 10px;
}

.modal__note {
  font-size: 1.6rem;
  margin-top: 24px;
  color:#4F4F4F;
}



/* ===== 画像2枚横並び ===== */
.modal__images {
  display: flex;
  justify-content: center; 
  gap: 40px;
    align-items: center;
  margin-bottom: 40px;
  margin-top: 40px;
}

.modal__icon{
      height: 100px; 
  width: auto;
  object-fit: contain;
}


.modal__qr {
  height: 120px; 
  width: auto;
  object-fit: contain;
}



/* ===== アニメーション ===== */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.95);}
  to {opacity: 1; transform: scale(1);}
}


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   SP対応
================================= */
@media (max-width: 767px) {


.modal__icon{
      height: 80px; 
  width: auto;
}


.modal__qr {
  height: 100px;
  width: auto;
}

.modal__lead {
  line-height: 1.4;
}

  .modal__lead-main {
    font-size: 1.8rem;
    line-height: 1.6;
    display: block;
    margin-bottom: 6px;
  }

  .modal__lead-sub {
    font-size: 1.6rem;
    color: #666;
  }



}