/* === リセットと共通 === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Lato', sans-serif;
  font-weight: 400; 
  background: #fff;
  color: #000;
}
.fw-normal { font-weight: 400 }
.fw-semibold { font-weight: 600 }
.fw-bold { font-weight: 700 }
.kristi { font-family: 'Kristi', cursive }

.text-center{ text-align:center } .text-end{ text-align:right }
.text-uppercase { text-transform: uppercase !important }

@media (min-width: 1200px) {
    .fs-1 { font-size: 2.5rem !important }
    .fs-2 { font-size: 2rem !important }
    .fs-3 { font-size: 1.75rem !important }
    .fs-4 { font-size: 1.5rem !important }
}
.fs-0 { font-size: calc(2rem + 2vw) !important }
.fs-1 { font-size: calc(1.375rem + 1.5vw) !important }
.fs-2 { font-size: calc(1.325rem + .9vw) !important }
.fs-3 { font-size: calc(1.3rem + .6vw)!important }
.fs-4 { font-size: calc(1.275rem + .3vw)!important }
.fs-5 { font-size: 1.25rem!important }
.fs-6 { font-size: 1rem!important }
.fs-7 { font-size: 0.9rem!important }
.fs-8 { font-size: 0.7rem!important }

.mt-1{ margin-top:1rem!important }.mt-2{ margin-top:1.5rem!important }.mt-3{ margin-top:1.75rem!important }.mt-4{ margin-top:2rem!important }.mt-5{ margin-top:2.5rem!important }.mt-10{ margin-top:5rem!important }
.mb-1{ margin-bottom:1rem }.mb-2{ margin-bottom:1.5rem }.mb-3{ margin-bottom:1.75rem }.mb-4{ margin-bottom:2rem }.mb-5{ margin-bottom:2.5rem }
.p-0{ padding: 0 !important; }.p-1{ padding:1rem }.p-2{ padding:1.5rem }.p-3{ padding:1.75rem }.p-4{ padding:2rem }.p-5{ padding:2.5rem }.p-10{ padding:5rem }
ul.locations{margin-left:2em}
ul.locations li{margin-bottom:0.5em}
.py-5{ padding-top:2.5rem; padding-bottom:2.5rem } .py-10{ padding-top:5rem; padding-bottom:5rem }
.lh-base { line-height: 1.5 !important; } .lh-lg { line-height: 2 !important; }
.bg-dark{background-color:#25252f}
.text-shadow { text-shadow: 0px 0px 2px black; }
.shadow { box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important}
.position-relative{ position: relative }
.border-bottom { border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important }
.border-gray { border-color:rgba(0, 0, 0, 0.05)!important}

/* ==== 簡易グリッド ==== */

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}
.col-12 {
  width: 100%;
  padding: 0.5rem;
}
.col-6 {
  width: 50%;
  padding: 0.5rem;
}
.col-4 {
  width: 33.3333%;
  padding: 0.5rem;
}
.col-md-4,
.col-md-6 {
  width: 100%;
  padding: 0.5rem;
}

@media (min-width: 768px) {
    .col-md-3 {
        width: 25%;
    }
     .col-md-4 {
        width: 33.33333%;
    }
    .col-md-6 {
        width: 50%;
    }
    .text-md-start {
      text-align: left!important;
    }
    .text-md-end {
      text-align: right!important;
    }
    .py-md-10{
      padding-top:5rem; padding-bottom:5rem
    }
    .order-md-1 {
      order: 1;
    }
    .order-md-2 {
      order: 2;
    }
}

/* ==== 1:1比率ボックス ==== */
.ratio {
  position: relative;
  width: 100%;
}
.ratio.ratio-1x1::before {
  content: "";
  display: block;
  padding-top: 100%; /* 1:1 比率 */
}
.ratio img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==== アニメーション用スタイル ==== */
.scroll-fade-up {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.6s ease-out, transform 3s ease-out;
}
.scroll-fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==== ゆっくり目の fade-slow（動きも控えめ）==== */
.scroll-fade-slow {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s ease-out, transform 2s ease-out;
}
.scroll-fade-slow.active {
  opacity: 1;
  transform: translateY(0);
}

/* === 共通コンテナ === */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.font-gold { color: #cfa670 }
.font-white { color: #FFF }
.section-shape-bottom {
    transform: rotate(180deg);
}
.section-shape-top { top: -1px }
.section-shape-bottom { bottom: -1px }
.section-shape {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
}

.section-shape-bottom svg {
    width: calc(100% + 1.3px);
    height: 20px;
}

.section-shape svg {
    display: block;
    width: calc(100% + 1.3px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.section-shape .section-shape-fill {
    fill: #fff;
    transform-origin: center;
    transform: rotateY(0deg);
}

/* === ナビゲーション（共通） === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: transparent;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* === メインナビ（PC） === */
@media (min-width: 769px) {
  .main-nav {
    min-height: 20px;
  }
}
.main-nav {
  display: block;
}
.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-list li {
  position: relative;
}

.main-nav a {
  position: relative;
  display: inline-block;
  color: #fff;
  transition: color 0.3s ease;
  text-decoration: none;
  font-weight: bold;
}

a.links,
.wpcf7-form input[type=submit] {
  position: relative;
  display: inline-block;
  color: #cfa670;
  transition: color 0.3s ease;
  text-decoration: none;
  font-weight: bold;
}

.main-nav a::after,
a.links::after,
.wpcf7-form input[type=submit]::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #cfa670;
  transition: width 0.3s ease;
}
.location-grid a::after {
  content: none;
}
.main-nav a:hover,
.nav-item.locations:hover .nav-link {
  color: #cfa670!important;
}

.main-nav a:hover::after,
a.links:hover::after,
.wpcf7-form input[type=submit]:hover::after,
.nav-item.locations:hover .nav-link::after {
  width: 100%;
}
.dropdown-icon {
  margin-left: 0.1em;
  vertical-align: middle;
}

/* === ハンバーガーアイコン === */
.hamburger {
  display: none;
  width: 24px;
  height: 20px;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #FFF;
  margin-bottom: 5px;
  transition: 0.3s ease;
}
.hamburger span:last-child {
  margin-bottom: 0;
}

.site-header.scrolled .hamburger span {
  background: #000;
}

#menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
#menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

/* === メガメニュー（PC & 共通） === */
.nav-item.locations {
  position: static;
}

.location-menu-container {
  display: none;
  position: absolute;
  top: 80%;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 999;
}

.location-menu {
  margin-top: 1rem;
  background: #fff;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.location-menu .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}

.location-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.location-grid a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease;
}
.location-grid a:hover {
  transform: translateY(-4px);
}

.location-grid img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.location-grid img:hover {
  transform: scale(1.05);
}

.location-grid span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-item.locations:hover .location-menu-container,
.location-menu-container:hover {
  display: block;
}

/* === ナビ スクロール後の切り替え === */
.site-header.scrolled .main-nav a {
  color: #333;
}

/* === スマホ（ドロワー） === */
@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: #000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    padding: 2rem 1rem;
    overflow: auto;
  }

  #menu-toggle:checked + .hamburger + .main-nav {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 2rem;
  }

  .nav-label {
    display: block;
    font-weight: bold;
    padding: 1rem 0;
    cursor: pointer;
  }

  .locations .location-menu-container {
    display: block;
    position: static;
    padding-top: 1rem;
    background: transparent;
  }

  .location-menu {
    padding: 0;
    box-shadow: none;
    background-color:#000;
  }

  .location-menu .container{
    padding: 0;
  }

  .location-grid {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 1rem;
}

  .main-nav a {
    color: #FFF!important;
    text-align: left;
  }

  .location-grid span {
    margin-top: 0.25rem;
    font-size: 0.75rem;
  }

  .hamburger {
    display: block;
  }

  #menu-toggle:checked + .hamburger span {
    background: #FFF;
  }
}

/* === ロゴ === */
.logo-img {
  height: auto;
  max-height: 30px;
  width: auto;
  transition: opacity 0.3s ease;
}
.logo-black {
  display: none;
}
.site-header.scrolled .logo-white {
  display: none;
}
.site-header.scrolled .logo-black {
  display: inline;
}

/* === Heroセクション === */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-half {
  position: relative;
  height: 50vh;
  overflow: hidden;
  z-index: 1;
}
.hero-location-detail {
  position: relative;
  height: 65vh;
  overflow: hidden;
  z-index: 1;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-half .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250%;
  object-fit: cover;
  z-index: -1;
  transform: translateY(0);
  transition: transform 0.1s linear;
}
.hero-location-detail .hero-bg {
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 150%;
  object-fit: cover;
  z-index: -1;
  transform: translateY(0);
  transition: transform 0.1s linear;
}
.hero-black-cover {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgba(0,0,0,0.4);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  top: 50%;
  transform: translateY(-50%);
}

footer {
  background-color: #262626;
  color: #CCC;
}

footer a{ color: #CCC; text-decoration: none;}
footer a:hover{text-decoration: underline;}
footer .copyright { background-color: #1b1b1b; border-top: #444 1px solid;}
footer .copyright a{display:inline-block; margin:0.25em 1em 0.25em 0;}

/** Front Page **/
.welcome {
  font-size: 5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .main-logo { max-width:200px; height:auto }
}

/** Locations / Details **/
.map iframe{
  max-width: 100%; width: 100%; height: 450px; border:0;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0) hue-rotate(100deg);
}
.map-detail iframe{
  max-width: 100%; width: 100%; height: 450px; border:0;
}

.detail-icon {
  vertical-align:baseline;
  width: 20px;
  height: 20px;
}

.reservation-recommendation {
  background-color: #C00;
  color: #FFF;
  display: inline-block;
  padding: 3px 10px;
  letter-spacing: 1px;
}

details summary { color:#cfa670; cursor: pointer; }

.youtube-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 = 9 ÷ 16 = 0.5625 = 56.25% */
  overflow: hidden;
  height: 0;
}

.youtube-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/** Reviews **/
p.total_review_con {
  font-size: 1.5em;
  font-size: 1.5em;
  font-weight: bold;
  text-align: left !important;
  color: #333;
}
p.total_review_con i {
  margin-right: 1em;
  margin: 0 0.5em;
  font-size: 1em;
}
[data-star]::after
{
  color: #cfa670!important;
}
.zpt_top_right_sec {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.zpt_review_stars { margin-left: 0 }
.zpt_review_date { display: none }
#zpt_custom_slider_review {
  height: 200px !important;
}
.zpt_container .zpt_top_review_sec {
    height: auto !important;
}
.zpt_container .zpt_top_review_sec .zpt_user_name {
    font-size: 1em !important;
}
.zpt_container .zpt_review_content {
    padding-top: 10px !important;
    padding-left: 0 !important;
}

/** CF7 **/
.wpcf7-form input[type=text], 
.wpcf7-form input[type=password], 
.wpcf7-form input[type=email], 
.wpcf7-form input[type=url], 
.wpcf7-form input[type=tel],
.wpcf7-form input[type=file], 
.wpcf7-form textarea, 
.wpcf7-form select {
    background-color: #fff;
    color: #444;
    border-color: #e1e1e1;
    width: 100%;
    padding: 13px 10px;
    margin: 0;
    background: #fff;
    border: 1px solid #e1e1e1;
    outline: none;
    margin-top: 0.5em;
}
.wpcf7-form input[type=submit]{
  border: 0;
  background: transparent;
  font-size: 1.2em;
}
.wpcf7-form p{
  margin-top: 1em;
}