/* ==============================
  base
============================== */
@import url("https://fonts.googleapis.com/css?family=EB+Garamond:400,400i");
@import url("https://fonts.googleapis.com/css2?family=Julee&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
body{
      font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;

    margin: 0;
    scroll-behavior: smooth;
}
img{
    width: 100%;
    vertical-align: bottom;
}
p {
    margin: 0;
}
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}:where([hidden]:not([hidden='until-found'])){display:none!important}:where(html){-webkit-text-size-adjust:none;tab-size:2}@media (prefers-reduced-motion:no-preference){:where(html:focus-within){scroll-behavior:smooth}}:where(body){line-height:1.5;font-family:system-ui,sans-serif;-webkit-font-smoothing:antialiased}:where(button){all:unset}:where(input,button,textarea,select){font:inherit;color:inherit}:where(textarea){resize:vertical;resize:block}:where(button,label,select,summary,[role='button'],[role='option']){cursor:pointer}:where(:disabled){cursor:not-allowed}:where(label:has(>input:disabled),label:has(+input:disabled)){cursor:not-allowed}:where(a){color:inherit;text-underline-offset:.2ex}:where(ul,ol){list-style:none}:where(img,svg,video,canvas,audio,iframe,embed,object){display:block}:where(img,picture,svg,video){max-inline-size:100%;block-size:auto}:where(p,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}:where(h1,h2,h3){line-height:calc(1em + 0.5rem);text-wrap:balance}:where(hr){border:none;border-block-start:1px solid;color:inherit;block-size:0;overflow:visible}:where(:focus-visible){outline:3px solid CanvasText;box-shadow:0 0 0 5px Canvas;outline-offset:1px}:where(:focus-visible,:target){scroll-margin-block:8vh}:where(.visually-hidden:not(:focus-within,:active)){clip-path:inset(50%)!important;height:1px!important;width:1px!important;overflow:hidden!important;position:absolute!important;white-space:nowrap!important;border:0!important}

body.fixed {
  overflow: hidden;
  height: 100vh;
  touch-action: none; /* モバイルでの慣性スクロール防止（任意） */
}

/* ハンバーガーメニュー（左上＆白色） */
.drawer-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 2001;
  display: flex;
  justify-content: center;
  align-items: center;
}

.drawer-toggle span {
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--burger-color, #fff); /* 初期白 */
  border-radius: 2px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* ハンバーガー（2本）通常状態 */
.drawer-toggle span:first-child {
  transform: translateY(-4px); /* ← 以前は -6px */
}

.drawer-toggle span:last-child {
  transform: translateY(4px);  /* ← 以前は 6px */
}
body.theme-dark .drawer-toggle span {
  --burger-color: #fff;
}
body.theme-light .drawer-toggle span {
  --burger-color: #000;
}

/* ×に変形する時は中央にピッタリ */
.drawer-toggle.active span:first-child {
  transform: rotate(45deg) translateY(0);
}

.drawer-toggle.active span:last-child {
  transform: rotate(-45deg) translateY(0);
}
/* 全画面のドロワーメニュー */
.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all 0.4s ease;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.drawer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.drawer-menu li {
  margin: 15px 0;
    font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;
}

.drawer-menu a {
    color: #000;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.drawer-menu a:hover {
  opacity: 0.7;
}


/*-- PHONE --*/
#fullpage {
  scroll-snap-type: y proximity;
  overflow-y: hidden;
  height: 100vh;
}
.full_box {
    height: 100vh;
    scroll-snap-align: start;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
    position: relative;
    justify-content: space-between;
}

 #fullpage {
    scroll-snap-type: none;
    height: auto;
  }

.full_box {
    height: 100vh;
    scroll-snap-align: none;
}
  .full_box.topfv {
    padding: 0;
}
  /* オーバーレイの暗いレイヤー */
.full_box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* 透明度40%の黒 */
  z-index: 0;
}

/* 中のテキストを前面に */
.full_box > * {
  position: relative;
  z-index: 1;
}
.normal-scroll {
  
}

/* 背景設定（すでに記述済み） */
.bg-location {
  background-image: url('../img/full/bg-location.jpg');
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

/* テキストブロック全体 */
.full_dl,
.full_txt {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0;
}
.full_dl {
    margin-top: 5rem;
}



.full_dt h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}


.full_dd {
    font-size: 1.2rem;
    line-height: 1.8;
}
.full_txt {
    font-size: 1rem;
    line-height: 2;
}


.bg-private {
  background-image: url('../img/full/bg-private.jpg');
    background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.bg-cuisine {
  background-image: url('../img/full/bg-cuisine.jpg');
    background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
dt.full_dt h2 {
    font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0;
}

/* Swiperを背景に配置 */
.swiper-fv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
z-index: -1 !important;
transition: transform 0.1s linear;
  will-change: transform;
  transform-origin: center center;
  backface-visibility: hidden;
}

/* 背景画像っぽくするためにオーバーレイ追加もOK */
.swiper-fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* ここで暗くして文字が読みやすくなる */
  z-index: 1;
}
.swiper-fv .swiper-slide {
  width: 100%;
  height: 100%;
 object-fit: cover;
}

.swiper-fv .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}
.swiper-fv .swiper-slide-active img {
  animation: slowZoomOut 6s linear forwards;
}

@keyframes slowZoomOut {
  0% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1.0);
  }
}

#top-section {
  position: relative;
  height: 100vh; /* セクション1画面分 */
  overflow: hidden;
}
.swiper-fv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.top-section-content {
  position: relative;
  width: 100%;
  height: 200vh; /* スクロール可能にする（後述） */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* テキストコンテンツは前面に */
.full_inner {
  height: 100%;
  overflow-y: auto;
  scroll-behavior: smooth;
  padding: 0;
  position: absolute;
  color: white;
  z-index: 2;
  width: 100%;
  /* 既存スタイルに追加でOK */
  scrollbar-width: none;         /* Firefox */
  -ms-overflow-style: none;      /* IE/Edge */
}

.full_inner::-webkit-scrollbar {
  display: none;                 /* Chrome, Safari */
}

.inner_intro {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* 画面の高さ分だけh2を中央に配置 */
  flex-shrink: 0;
}
.inner_content {
    padding: 1rem;
    height: 90vh;
    width: 90%;
    margin: 3% auto 7%;
    /*background: rgba(0, 0, 0, 0.4);*/
    display: flex
;
    justify-content: center;
    align-items: center;
    text-align: center;
}
dt.inner_dt {
    font-size: 1.2rem;
    margin-bottom: 1em;
}

dd.inner_dd {
      font-size: 1rem;
    line-height: 3em;
}
dt.inner_intro_dt {
    width: 50%;
    margin: 0 auto 5px;
}
dd.inner_intro_dd {
    text-align: center;
    font-size: 22px;
    font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;
}

section#space {
    padding: 10% 0;
}
h2.section_head2 {
    text-align: center;
    font-size: 32px;
    font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 1%;
}
h2.section_head2.spacehead {
    margin-bottom: 5%;
}
p.head2_subtxt {
    text-align: center;
    font-size: 14px;
    margin-bottom: 5%;
}

ul.space_ul {
    width: 90%;
    margin: 0 auto 15%;
    display: flex;
    justify-content: space-between;
    gap: 5px;
}

li.space_li {
    width: 32%;
    position: relative;
  overflow: hidden;
}
.space_li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 黒のオーバーレイ */
.space_li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);  /* 40%の黒レイヤー */
  z-index: 1;
  pointer-events: none; /* ←これが重要 */
}

/* テキストを中央に配置 */
.space_litxt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    pointer-events: none;
    font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;
}

.swiper.swiper-space {
    margin-bottom: 3%;
}
.space_box_ttl {
    max-width: 1200px;
    width: 92%;
    display: flex
;
    flex-wrap: wrap;
    margin: 0 auto 3%;
    justify-content: space-between;
    align-items: center;
}


dl.space_box_dl {
    width: 15%;
    text-align: center;
/*    font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;*/
}
dd.space_box_dd {
    font-size: 27px;
}
p.space_box_txt {
    width: 70%;
    font-size: 12px;
    line-height: 1.8em;
}

dd.space_box_dd {
    font-size: 24px;
}
li.space_spec_li {
    font-size: 12px;
    width: 30%;
}

.ttl_line {
  width: 1px;
  height: 90px;
  background-color: #000;
  margin: 0 auto 2rem;
}
p.plan_txt, p.option_txt {
    text-align: center;
    line-height: 3em;
    font-size: 14px;
    margin-bottom: 9%;
}
p.contact_txt
 {
    text-align: center;
    line-height: 3em;
    font-size: 14px;
    margin-bottom: 9%;
}
footer#footer {
    padding: 3rem 0;
    background: #1b3659;
    color: #fff;
    text-align: center;
}
p.footer {
    margin-bottom: 1%;
    line-height: 1.8em;
}
p.footer a {
    text-decoration: none;
    display: inline-block;
    padding: 0 0.5em;
}
.access_box {
    display: flex
;
    flex-wrap: wrap;
    align-items: center;
    background: #f8f8f8;
    flex-direction: column;
}
.ggmap {
    width: 100%;
    height: inherit;
    position: relative;
    flex-shrink: 0;
}
.ggmap iframe {
    width: 100%;
}
.access_infobox {
    display: inherit;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    width: 100%;
    padding: 3em 0;
}

ul.space_spec_ul {
    background: #f8f8f8;
    width: 85%;
    margin: 0 auto 10%;
    padding: 1em;
    display: flex
;
    justify-content: center;
    gap: 1em;
    text-align: center;
    flex-wrap: wrap;
}
.access_infobox {
  display: flex;
  justify-content: center;   /* 横方向中央 */
  align-items: center;       /* 縦方向中央 */
  height: 100%;              /* 高さを指定（重要） */
  text-align: center;        /* テキストも中央揃え */
}
.access_txt {
    line-height: 2.8em;
}


.form_box {
    display: block;
    flex-wrap: wrap;
    border-bottom: solid 1px #ddd;
    padding: 3% 0;
    justify-content: space-around;
}
.contact_box {
    width: 90%;
    margin: 0 auto 10%;
}
.form_box.formlasted {
    border: none;
}
.form_box div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 3%;
}
.form_box p {
    width: 100%;
}.form_box input[type="text"] {
    width: 100%;
    padding: 10px;
    margin: 0px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    background: #f8f8f8;
}
.form_box textarea {
    width: 100%;
    padding: 10px;
    margin: 0px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    background: #f8f8f8;
}
input[type="text"]:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}
dd.form_name_dd {
    font-size: 13px;
    font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;
}
p.form_required span {
    background: #e9e9e9;
    padding: 2px 1em;
    border-radius: 5px;
}
dl.form_name_dl {
    width: 55%;
}
    p.form_required {
        width: 20%;
        margin-left: 1em;
    }
    button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 300px;
    display: block;
    margin: 0 auto;
}
.submit-button {
    display: block;
    width: 50%;
    padding: 10px 0;
    font-size: 16px;
    border: 1px solid #333;
    background-color: #fff;
    color: #333;
    text-align: center;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
    font-family: "Arial", "Helvetica", sans-serif;
    margin: 0 auto;
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

/* アイコンを疑似要素で追加 */
.submit-button::before {
  content: "✉️";
  display: inline-block;
  margin-right: 8px;
  font-size: 18px;
  vertical-align: middle;
}
.submit-button:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

dt.space_box_dt {
    font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;
}
dd.space_box_dd {
    font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;
}
p.fixed_contact a {
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.3);
    display: inline-block;
    font-size: 11px;
    /* font-size: 1.2rem; */
    line-height: 2;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1;
    padding: 13px 0;
    position: relative;
    text-decoration: none;
    transition: 0.2s;
    text-align: center;
    min-width: 140px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 20;
}


.only-sp{
    display: block;
}
/*-- PC --*/
@media screen and (min-width: 769px) {
#fullpage {
  height: 100vh;
  overflow-y: auto; /* または scroll */
  scroll-snap-type: y mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE・Edge */
}

#fullpage::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.full_box {
  height: 100vh;
  scroll-snap-align: start;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  color: #fff; /* 文字が見えづらい場合は調整 */
  position: relative;
}
.full_dl {
    margin-bottom: 2rem;
    position: absolute;
    top: 20%;
    left: 6%
}
.full_txt {
    font-size: 1.2rem;
    line-height: 2;
    position: absolute;
    bottom: 10%;
    right: 5%;
}
ul.space_ul {
    width: 65%;
    margin: 0 auto 5%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.inner_content {
padding: 5rem;
    height: 90vh;
    width: 90%;
    margin: 3% auto 3%;
    /*background: rgba(0, 0, 0, 0.4);*/
    display: flex
;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.full_dl {
  margin-bottom: 2rem;
}
.full_txt {
  font-size: 1.2rem;
  line-height: 2;
}
dt.inner_dt {
    font-size: 28px;
    margin-bottom: 1em;
}
dd.inner_dd {
    font-size: 22px;
    line-height: 3em;
}
.full_dd {
  font-size: 1.5rem;
  line-height: 1.8;
}
h2.section_head2 {
    text-align: center;
    font-size: 50px;
    font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 1%;
}

ul.space_ul {
    width: 65%;
    margin: 0 auto 5%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.space_box_ttl {
    max-width: 1200px;
    width: 85%;
    display: flex
;
    flex-wrap: wrap;
    margin: 0 auto 3%;
    justify-content: space-between;
}
dl.space_box_dl {
    width: 20%;
    text-align: center;
}
dt.space_box_dt {
    font-size: 18px;
}
    dd.inner_dd {
        font-size: 16px;
        line-height: 3em;
    }
ul.space_spec_ul {
 background: #f8f8f8;
  width: 65%;
  margin: 0 auto 10%;
  padding: 3em;
  display: flex;
  justify-content: center;  /* 子要素（li）を中央に寄せる */
  gap: 2em;                 /* li 同士の余白（必要に応じて調整） */
  text-align: center;       /* テキスト自体も中央に寄せる */
}
dd.space_box_dd {
    font-size: 41px;
}
h2.section_head2 {
    text-align: center;
    font-size: 50px;
    font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0%;
}
p.head2_subtxt {
    text-align: center;
    font-size: 20px;
    margin-bottom: 1%;
}
p.space_box_txt {
    width: 80%;
    font-size: 18px;
    line-height: 1.8em;
}

p.plan_txt,
p.option_txt
 {
    text-align: center;
    line-height: 3em;
    font-size: 18px;
    margin-bottom: 9%;
}
p.contact_txt
 {
    text-align: center;
    line-height: 3em;
    font-size: 18px;
    margin-bottom: 3%;
}
    .access_box {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        background: #f8f8f8;
        flex-direction: row;
    }
.ggmap {
  width: 50%;
  height: 50vh;
  position: relative;
  flex-shrink: 0;
}

.ggmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.access_infobox {
  width: 45%;
  display: flex;
  align-items: center;
}
.space_litxt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  pointer-events: none;
      font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;
}
p.fixed_contact a {
    border: 1px solid rgba(0, 0, 0, 0.3);
    /* display: block; */
    font-size: 12px;
    /* font-size: 1.2rem; */
    line-height: 2;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1;
    padding: 13px 0;
    position: relative;
    text-decoration: none;
    transition: 0.2s;
    text-align: center;
    min-width: 170px;
    position: fixed;
    top: 1%;
    right: 1%;
    z-index: 5;
}
.form_box {
    display: flex
;
    flex-wrap: wrap;
    border-bottom: solid 1px #ddd;
    padding: 2%;
    justify-content: space-around;
}
.contact_box {
    width: 60%;
    margin: 0 auto 10%;
}
.form_box.formlasted {
    border: none;
}
    .form_box div {
        width: 45%;
        display: flex;
        justify-content: flex-end;
    }
    .form_box p {
    width: 53%;
}
.form_box input[type="text"] {
    width: 100%;
    padding: 10px;
    margin: 0px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    background: #f8f8f8;
}
.form_box textarea {
    width: 100%;
    padding: 10px;
    margin: 0px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    background: #f8f8f8;
}
input[type="text"]:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}
dd.form_name_dd {
    font-size: 13px;
    font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;
}
p.form_required span {
    background: #e9e9e9;
    padding: 2px 1em;
    border-radius: 5px;
}
dl.form_name_dl {
    width: 55%;
}
        p.form_required {
        width: 28%;
        margin-left: 1em;
    }
    button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 300px;
    display: block;
    margin: 0 auto;
}
    .submit-button {
        display: block;
        width: 35%;
        padding: 15px 0;
        font-size: 16px;
        border: 1px solid #333;
        background-color: #fff;
        color: #333;
        text-align: center;
        cursor: pointer;
        position: relative;
        box-sizing: border-box;
        font-family: "Arial", "Helvetica", sans-serif;
        margin: 0 auto;
        transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
    }

/* アイコンを疑似要素で追加 */
.submit-button::before {
  content: "✉️";
  display: inline-block;
  margin-right: 8px;
  font-size: 18px;
  vertical-align: middle;
}
.submit-button:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}
p.fixed_contact a {
        display: block;
        border: 1px solid rgba(0, 0, 0, 0.3);
        display: inline-block;
        font-size: 12px;
        /* font-size: 1.2rem; */
        line-height: 2;
        font-weight: 500;
        letter-spacing: 0.06em;
        line-height: 1;
        padding: 13px 0;
        position: relative;
        text-decoration: none;
        transition: 0.2s;
        text-align: center;
        min-width: 170px;
        position: fixed;
        top: 20px;
        right: 20px;
    }
    li.space_spec_li {
    font-size: 14px;
    width: 14%;
}
.only-sp{
    display: none;
}
}