@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Shippori+Mincho+B1:wght@400;500;600;700&family=Zen+Old+Mincho:wght@400;500;600;700&display=swap");
:root {
  --bg-ivory: #fffcf5;
  --accent-marine: #004b6c;
  --accent-marine-light: #39a6d6;
  --text-main: #041117;
  --accent-sun: #f3b05a;
  --grad-blue-yellow: linear-gradient(135deg, #87ceeb 0%, #fffacd 100%);
  --grad-gold-orange: linear-gradient(135deg, #fffcf5 0%, #9e845c 100%);
  --accent-gold: #543e0c;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0px;
  padding: 0px;
  top: 0px !important;
  background-color: var(--bg-ivory);
  color: var(--text-main);
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  line-height: 1.5;
  overflow-x: hidden;
}
p {
  margin: 1rem 0 1rem;
  line-height: 1.5;
}
ul {
  list-style: none;
  margin: 0 0 1em;
  padding: 0 1em;
}

ul li {
  display: list-item;
  list-style-type: disc;
  padding-left: 0em;
}

ul li::marker {
  color: var(--accent-marine-light);
}

footer ul {
  list-style: none;
  margin: 2em auto;
  padding: 0 1em;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em 1em;
  font-size: 0.8em;
  width: 90%;
  justify-content: center;
}

footer ul li {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding-left: 0;
}

footer ul li:not(:last-child)::after {
  content: "|";
  margin-left: 1em;
  color: var(--bg-ivory);
  opacity: 0.5;
  font-size: 0.9em;
}

footer a {
  color: var(--bg-ivory);
  text-decoration: none;
  transition: opacity 0.3s;
}

footer a:hover {
  opacity: 0.7;
}
a {
  text-decoration: none;
  color: var(--accent-marine-light);
}
a:hover {
  text-decoration: underline;
  color: var(--accent-sun);
}
main {
  background: var(--bg-ivory);
  width: 100%;
  margin: 0px auto;
  overflow: hidden;
}
.page-without-mv main {
  padding-top: 150px;
}

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

.header {
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100px;
  background: linear-gradient(
    to bottom,
    rgb(223 172 40 / 50%) 0%,
    rgb(201 147 57 / 0%) 100%
  );
  z-index: 1000;
  display: flex;
  align-items: stretch;
  border-bottom: 0px solid rgba(0, 75, 108, 0.1);
  transition: all 0.4s ease;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.header.scrolled {
  background: rgb(138 104 16 / 53%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.header-inner {
  width: 98%;
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
h1 {
  text-decoration: none;
  color: #756b55;
  font-weight: normal;
  font-size: 0.8rem;
  margin: 0.5em 0 2em;
}
.logo a {
  text-decoration: none;
  color: var(--bg-ivory);
  font-size: 1.3rem;
  display: block;
  white-space: wrap;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 1em;
  align-items: center;
  margin: 0px 0 0 10px;
  padding: 0px;
  letter-spacing: 1.5px;
  font-family: sans-serif;
  font-size: 0.9rem;
}

.nav ul li {
  list-style: none;
}

.nav a {
  text-decoration: none;
  color: var(--bg-ivory);
  font-weight: normal;
  transition: 0.3s;
  text-shadow: 1px 1px 2px rgb(160 110 35 / 64%);
}

.nav a:hover {
  color: var(--accent-marine);
}

.ticket-button {
  background: var(--grad-blue-yellow);
  border-radius: 10px 0 0 0;
  padding: 10px 10px 8px;
  display: inline-block;
  text-decoration: none;
  border: 0px solid #fff;
  font-family: sans-serif;
  font-size: 0.9rem;
}
.ticket-button a::after {
  content: "";
  width: 1.2em;
  height: 1.2em;
  background-color: var(--accent-marine);
  -webkit-mask: url("/common/img/sun-icon.svg") no-repeat center / contain;
  mask: url("/common/img/sun-icon.svg") no-repeat center / contain;
  margin-right: 0;
}
.ticket-button a {
  text-decoration: none;
  color: var(--accent-marine) !important;
  border-top: 1px solid rgb(255, 255, 255);
  border-left: 1px solid rgb(255, 255, 255);
  padding: 0.3em 0.5em 0.3em 1em;
  text-shadow: 2px 2px 8px rgb(211 187 152 / 0%);
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
  text-shadow: 1px 1px 2px rgb(160 110 35 / 64%);
}

.nav-toggle span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--bg-ivory);
  left: 0px;
  transition: 0.3s;
}

.nav-toggle span:nth-child(1) {
  top: 0px;
}

.nav-toggle span:nth-child(2) {
  top: 11px;
}

.nav-toggle span:nth-child(3) {
  bottom: 0px;
}

.main-visual {
  position: relative;
  width: 100%;
  height: 100dvh;
  background: rgb(0, 0, 0);
}

.main-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.mv-text {
  color: rgb(255, 255, 255);
  text-align: left;
  text-shadow: rgba(0, 0, 0, 0.4) 0px 2px 15px;
  margin: 0px 0px 0px 2em;
  font-size: 2em;
  font-family: sans-serif;
}

.mv-text h2 {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  line-height: 1.4;
  margin: 0px 0px 20px -2px;
  font-weight: normal;
  font-family: "Zen Old Mincho";
}

h3 {
  font-weight: normal;
  color: var(--accent-marine);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  width: 100%;
  font-size: 1.1em;
  margin: 1rem 0 1rem;
}

h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0; /* 最初は0 */
  height: 3px;
  background: var(--grad-blue-yellow);
  opacity: 1;
  transition: width 0.9s ease-out;
}

h3.line-active::after {
  width: 100%;
}

#experience h3 {
  font-weight: normal;
  color: #543e0c;
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  width: 100%;
  font-size: 1.2em;
  margin: 2rem 0 1rem;
  background: linear-gradient(135deg, #fffcf5 0%, #9e845c00 100%) !important;
  box-sizing: border-box;
}

.discount-tag {
  background: #c0392b;
  color: #fff;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 3px;
  font-weight: bold;
  margin-right: 12px;
  font-family: sans-serif;
  line-height: 1.2;
  flex-shrink: 0;
}

#experience h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--grad-gold-orange);
  opacity: 1;
  transition: width 0.9s ease-out;
}

#experience h3.line-active::after {
  width: 100%;
}
.index-section {
  padding: 100px 0px 100px;
}
#about.index-section {
  padding: 30px 0px 100px;
}
.bg-gradient {
  background: var(--grad-blue-yellow);
}

.bg-tyle {
  background: url(/common/img/bg-tyle.png);
  background-size: 50%;
  background-repeat: repeat;
}

/* --- セクション全体のベース --- */
.bg-beauty {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  z-index: 0;
  min-height: 600px;
  /* iPhone/Safariでの描画安定化 */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* --- 背景画像レイヤー (after) --- */
.bg-beauty {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  z-index: 0;
  min-height: 600px;
}

.bg-beauty::after {
  content: "";
  position: absolute;
  top: 0;
  /* --- 左右中央寄せの指定 --- */
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  height: 100%;
  background: url("/common/img/bg-beauty02.jpg") no-repeat center / cover;
  opacity: 0.15;
  transition:
    opacity 3s ease-in-out,
    transform 3s ease-in-out;
  z-index: -2;
  border-radius: 10px;
}

.bg-beauty:hover::after {
  opacity: 0.8;
  transform: translateX(-50%) scale(1.1);
}

/* 光の層（グラデーション） */
.bg-beauty::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(255, 250, 230, 0.8),
    transparent 80%
  );
  opacity: 0.2;
  transform: scale(1);
  transition:
    opacity 1.5s ease-in-out,
    transform 2s ease-in-out;
  z-index: -1;
  pointer-events: none;
}

/* マウスが乗った時（ホバー）の演出 */
.bg-beauty:hover::after {
  opacity: 0.8;
}

.bg-beauty:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

@media (max-width: 1024px) {
  .bg-beauty::before {
    opacity: 0.8 !important;
    transform: scale(1.1) !important;
    background: radial-gradient(
      circle at top right,
      rgba(255, 250, 230, 0.5),
      transparent 100%
    ) !important;
  }
  .bg-beauty::after {
    opacity: 0.9 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}
@media (max-width: 768px) {
  .header-inner {
    width: 96%;
  }
  .bg-beauty::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/common/img/bg-beauty03.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.9 !important;
    transition: opacity 0.8s ease-in-out;
    z-index: -2;
    transform: none;
  }

  .bg-beauty::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff !important;
    opacity: var(--light-opacity, 0.9) !important;
    transition: opacity 0.4s ease-out;
    z-index: -1;
    pointer-events: none;
    will-change: opacity;
  }
}
.lead-h2 {
  text-align: left;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

.lead-h2 h2 {
  font-size: 2.2rem;
  color: var(--accent-marine);
  display: inline-block;
  padding-bottom: 10px;
  margin: 0px 0px 0px 0px;
  font-weight: normal;
  letter-spacing: 1.5px;
}

.lead-h2::after {
  content: "";
  position: absolute;
  left: -40px;
  bottom: 17px;
  width: 120%;
  height: 45%;
  background: var(--grad-blue-yellow);
  opacity: 0.3;
  z-index: -1;
}

#experience .lead-h2 h2 {
  font-size: clamp(1rem, 6.5vw, 1.6rem);
  color: var(--accent-gold);
  display: inline-block;
  padding-bottom: 10px;
  margin: 0px 0px 0px 0px;
  font-weight: normal;
  letter-spacing: 1.5px;
  white-space: wrap;
}

#experience .lead-h2::after {
  content: "";
  position: absolute;
  left: -29px;
  bottom: 17px;
  height: 45%;
  background: var(--grad-gold-orange);
  opacity: 0.3;
  z-index: -1;
  width: calc(100% + 54px);
}

.description {
  font-family: sans-serif;
  margin: 0 0 0;
}

.flex-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.flex-container.inverse {
  flex-direction: row-reverse;
}

.item {
  flex: 1 1 0%;
}
iframe {
  width: 100%;
  height: 450px;
}

.item img {
  width: 100%;
  height: auto;
  border-radius: 0px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px;
}
.prof-img {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50% !important;
  display: block;
  margin: 0 auto;
}
.profile-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px 0 40px 20px; /* 太陽と写真の間の余白 */
}

.profile-img-wrap::before {
  content: "";
  position: absolute;
  top: 50px;
  left: -70px;
  width: 70%;
  height: 70%;
  z-index: -1;
  background-color: var(--accent-sun);
  -webkit-mask: url("/common/img/sun-icon.svg") no-repeat center / contain;
  mask: url("/common/img/sun-icon.svg") no-repeat center / contain;
}
.fixed-reserve-button {
  position: fixed;
  right: 0px;
  top: 55%;
  transform: translateY(-50%);
  z-index: 999;
  background: var(--grad-blue-yellow);
  padding: 10px 0px 10px 10px;
  border-radius: 8px 0px 0px;
  writing-mode: vertical-rl;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.2) -2px 2px 10px;
  visibility: hidden;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    visibility 0.6s;
}

/* 表示時 */
.fixed-reserve-button.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.fixed-reserve-button span {
  color: var(--accent-marine);
  font-weight: normal;
  letter-spacing: 0.2em;
  font-family: sans-serif;
  border-top: 1px solid rgb(255, 255, 255);
  border-left: 1px solid rgb(255, 255, 255);
  padding: 0.7em 0.7em 0.7em 0.3em;
  border-radius: 8px 0px 0px;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

.fixed-reserve-button span::after {
  content: "";
  width: 1.2em;
  height: 1.2em;
  background-color: var(--accent-marine);
  -webkit-mask: url("/common/img/sun-icon.svg") no-repeat center / contain;
  mask: url("/common/img/sun-icon.svg") no-repeat center / contain;
  margin-right: 0;
}

.fixed-reserve-button:hover {
  padding-right: 15px;
}

.footer {
  background: rgb(79 47 7);
  color: rgb(255, 255, 255);
  padding: 60px 0px;
  margin: 60px 0 0;
  text-align: center;
}

/* --- 回転アニメーションの定義 --- */
@keyframes rotate-sun {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* --- トップへ戻るボタン本体 --- */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 40px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 900;
  opacity: 0;
  transition:
    opacity 0.6s ease 0.3s,
    transform 0.6s ease 0.3s,
    visibility 0.6s 0.3s;
  position: fixed;
}

/* 太陽アイコン（背面で回転） */
.sun-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* 背面 */

  /* マスク設定 */
  background-color: var(--accent-sun);
  -webkit-mask-image: url("/common/img/sun-icon.svg");
  mask-image: url("/common/img/sun-icon.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  animation: rotate-sun 15s linear infinite;
}

/* テキスト */
.top-text {
  position: relative;
  z-index: 2;
  color: var(--accent-sun);
  font-family: "Zen Old Mincho";
  font-weight: bold;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  /* テキストは回転させない */
}

/* 表示・非表示の制御 */
.to-top.is-visible {
  opacity: 1;
}

.to-top:hover .sun-icon {
  background-color: var(--accent-marine-light);
}

.to-top:hover .top-text {
  color: var(--accent-marine-light);
  transition: color 0.3s;
}

@media screen and (max-width: 980px) {
  .logo a {
    text-decoration: none;
    color: var(--bg-ivory);
    font-size: 1rem;
    font-weight: normal;
    line-height: 0.9;
    text-shadow: 1px 1px 2px rgb(160 110 35 / 64%);
    z-index: 1;
  }

  .nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
    margin: 0px;
    padding: 0px;
    letter-spacing: 1.5px;
    font-family: sans-serif;
    font-size: 0.8rem;
  }

  .nav ul li {
    list-style: none;
  }

  .nav a {
    text-decoration: none;
    color: var(--bg-ivory);
    font-weight: normal;
    transition: 0.3s;
    text-shadow: 1px 1px 2px rgb(160 110 35 / 64%);
  }

  .nav a:hover {
    color: var(--accent-marine-light);
  }

  .ticket-button {
    background: var(--grad-blue-yellow);
    border-radius: 10px 0 0 0;
    padding: 10px 10px 8px;
    display: inline-block;
    text-decoration: none;
    border: 0px solid #fff;
    font-family: sans-serif;
    font-size: 0.8rem;
  }
  .ticket-button a::after {
    content: "";
    width: 1.2em;
    height: 1.2em;
    background-color: var(--accent-marine);
    -webkit-mask: url("/common/img/sun-icon.svg") no-repeat center / contain;
    mask: url("/common/img/sun-icon.svg") no-repeat center / contain;
    margin-right: 0;
  }
  .ticket-button a {
    text-decoration: none;
    color: var(--accent-marine) !important;
    border-top: 1px solid rgb(255, 255, 255);
    border-left: 1px solid rgb(255, 255, 255);
    padding: 0.3em 0.5em 0.3em 1em;
    text-shadow: 2px 2px 8px rgb(211 187 152 / 0%);
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
  }
}

@media screen and (max-width: 768px) {
  .page-without-mv main {
    padding-top: 80px;
  }

  .header {
    height: 60px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: calc(0px + 100vh);
    background-color: var(--accent-marine);
    transition: 0.3s;
    box-shadow: rgba(0, 0, 0, 0.1) -2px 0px 10px;
    opacity: 0.9;
    z-index: 0;
    overscroll-behavior: contain;
  }

  .nav.is-active {
    right: 0px;
  }

  body.nav-open {
    overflow: hidden;
  }
  .nav ul {
    flex-direction: column;
    padding-top: 100px;
    gap: 40px;
  }
  .logo a {
    text-decoration: none;
    color: var(--bg-ivory);
    font-weight: normal;
    text-shadow: 1px 1px 2px rgb(160 110 35 / 64%);
    z-index: 1;
  }
  .lead-h2 h2 {
    font-size: 1.6rem;
    margin: 0;
    line-height: 1.3em;
  }

  .lead-h2::after {
    content: "";
    position: absolute;
    left: -30px;
    bottom: 17px;
    width: 120%;
    height: 60%;
    background: var(--grad-blue-yellow);
    opacity: 0.3;
    z-index: -1;
  }
  .lead-h2 h2[data-type="nowrap"] {
    white-space: nowrap;
    margin-left: -0.4em;
    margin-right: -1em;
    font-size: clamp(1rem, 6.5vw, 1.6rem);
  }
  .description {
    font-family: sans-serif;
    display: block;
  }
  .flex-container,
  .flex-container.inverse {
    flex-direction: column;
    gap: 30px;
    display: flex;
    width: 100%;
  }
  .flex-container > div,
  .flex-container > section,
  .flex-container > .text-box,
  .flex-container > .image-box {
    width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  iframe {
    width: 100%;
  }

  .index-section {
    padding: 60px 0px 60px;
  }

  #about.index-section {
    padding: 10px 0px 60px;
  }

  .fixed-reserve-button {
    padding: 8px;
    top: 55%;
    right: -8px;
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
  .mv-text {
    color: rgb(255, 255, 255);
    text-align: left;
    text-shadow: rgba(0, 0, 0, 0.4) 0px 2px 15px;
    margin: 0px 0px 0px 1em;
    font-size: 1.3em;
    font-family: sans-serif;
  }
  .footer {
    background: rgb(79 47 7);
    color: rgb(255, 255, 255);
    padding: 60px 0px;
    margin: 40px 0 0;
    text-align: center;
  }
  .bg-tyle {
    background: url(/common/img/bg-tyle.png);
    background-size: 100%;
    background-repeat: repeat;
  }

  .discount-tag {
    background: #c0392b;
    color: #fff;
    font-size: 0.6rem;
    padding: 4px 4px;
    border-radius: 3px;
    font-weight: bold;
    margin: 5px 2px 5px 8px;
    font-family: sans-serif;
    line-height: 1.2;
    flex-shrink: 1;
    max-width: 5em;
    display: inline-block;
    white-space: normal;
    text-align: center;
  }

  #experience h3 {
    font-weight: normal;
    color: #543e0c;
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 5px;
    width: 100%;
    font-size: 1.1rem;
    margin: 1rem 0 1.5rem;
    background: linear-gradient(135deg, #fffcf5 0%, #9e845c00 100%) !important;
    box-sizing: border-box;
    gap: 8px;
  }
}

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

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0px);
}

.slider-container {
  position: relative;
  width: 100%;
  margin: 30px auto 0px;
  padding-bottom: 40px;
  overflow: hidden;
}

.slider-container-inner {
  overflow: hidden;
  border-radius: 8px;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0px 5px;
}
.lead-h2 {
  text-align: left;
  margin: 0px 0 20px;
  position: relative;
  padding-bottom: 15px;
}

.prof-img {
  max-width: 300px;
  max-height: 300px;
  border-radius: 70% !important;
}

@media screen and (min-width: 769px) {
  .slider-slide {
    min-width: 33.333%;
  }
}

.slider-slide img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  border-radius: 0px;
}

.slider-btn {
  position: absolute;
  top: calc(50% - 20px);
  transform: translateY(-50%);
  background: rgba(0, 75, 108, 0.5);
  color: rgb(255, 255, 255);
  border: none;
  padding: 15px 10px;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  transition: 0.3s;
}

.slider-btn:hover {
  background: var(--accent-marine);
}

.prev-btn {
  left: 0px;
  border-radius: 0px 4px 4px 0px;
}

.next-btn {
  right: 0px;
  border-radius: 4px 0px 0px 4px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 20px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgb(204, 204, 204);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.is-active {
  background: var(--accent-marine);
  transform: scale(1.2);
}

@media screen and (max-width: 768px) {
  .slider-btn {
    padding: 10px 5px;
    font-size: 1rem;
  }

  .slider-container {
    padding-bottom: 30px;
  }
}

/* --- Guest Voices Section --- */
#customer .flex-container.inverse {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  margin-top: 40px;
}

/* 左側：Airbnb埋め込みエリア */
#customer .embed-area {
  flex: 1.2;
  min-width: 320px;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Airbnbが生成するiframeや内側の要素を強制拡大 */
#customer .airbnb-embed-frame,
#customer .airbnb-embed-frame iframe {
  width: 100% !important;
  min-width: 400px;
  max-width: 100%;
  border: none;
}

/* 右側：レビューテキストエリア */
#customer .review-content-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 各レビューカード */
.review-card {
  border-bottom: 1px solid rgba(0, 75, 108, 0.1);
  padding-bottom: 25px;
  background: var(--bg-ivory);
  padding: 1em;
}

.review-card:last-of-type {
  border-bottom: none; /* 最後の線の除去 */
}

/* 星マーク */
.stars {
  color: #fbc02d;
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.review-meta {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 10px;
  font-family: sans-serif;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-main);
  text-align: justify;
}

/* --- もっと見るボタン　右寄せ (1px solid / 角丸なし / 矢印付き) --- */
.btn-wrapper-right {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 20px;
}

/* --- もっと見るボタン　センター (1px solid / 角丸なし / 矢印付き) --- */
.btn-wrapper-center {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.btn-outline-arrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 15px 45px;
  border: 1px solid var(--accent-marine);
  border-radius: 0;
  color: var(--accent-marine);
  text-decoration: none;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  margin-top: 10px;
  align-self: flex-end;
}

.btn-outline-arrow::after {
  content: "→";
  margin-left: 20px;
  font-family: sans-serif;
  transition: transform 0.3s ease;
}

.btn-outline-arrow:hover {
  background-color: var(--accent-marine);
  color: #fff;
}

.btn-outline-arrow:hover::after {
  transform: translateX(10px);
}

#experience .btn-outline-arrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 15px 45px;
  border: 1px solid var(--accent-gold);
  border-radius: 0;
  color: var(--accent-gold);
  text-decoration: none;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  margin-top: 10px;
  align-self: flex-end;
}

#experience .btn-outline-arrow::after {
  content: "→";
  margin-left: 20px;
  font-family: sans-serif;
  transition: transform 0.3s ease;
}

#experience .btn-outline-arrow:hover {
  background-color: var(--accent-gold);
  color: #fff;
}

/* スマホ対応：縦並びに切り替え */
@media screen and (max-width: 992px) {
  #customer .flex-container.inverse {
    flex-direction: column-reverse;
  }
  #customer .embed-area,
  #customer .review-content-area {
    width: 100%;
  }
}

/* フォトタイルギャラリー */
.photo-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PC: 3列 */
  gap: 0;
  margin-top: 40px;
  width: 100%;
}

.tile {
  width: 100%;
  aspect-ratio: 1 / 1; /* 正方形を維持 */
  overflow: hidden;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 中央でトリミング */
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.tile:hover img {
  transform: scale(1.05);
}

/* スマートフォン対応 (SP: 2列) */
@media screen and (max-width: 768px) {
  .photo-tile-grid {
    grid-template-columns: repeat(2, 1fr); /* SP: 2列 */
  }
}

.column-container {
  width: 100%;
  margin: 30px auto 0px;
  padding-bottom: 40px;
}
.column-container h3 {
  margin: 50px auto 0px;
  text-align: center;
}

/* --- モーダル本体 --- */
.modal {
  display: none; /* 初期状態は非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(31 0 0 / 74%);
  backdrop-filter: blur(0.5px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* 表示中クラス */
.modal.is-visible {
  display: flex !important; /* 強制表示 */
  opacity: 1;
}

/* 画像コンテナ */
.modal-content-wrapper {
  position: relative;
  width: 90%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

#modal-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  pointer-events: auto; /* 画像へのスワイプは有効 */
  box-shadow: 0 0 20px rgb(37 0 0 / 68%);
  transition: opacity 0.2s ease;
}

/* ボタン共通 */
.modal-close,
.modal-prev,
.modal-next {
  position: absolute;
  z-index: 10001; /* 画像よりさらに上に */
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  user-select: none;
}

.modal-close {
  top: 20px;
  right: 20px;
  font-size: 50px;
  line-height: 1;
}

.modal-prev,
.modal-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  padding: 30px 20px;
}

.modal-prev {
  left: 10px;
}
.modal-next {
  right: 10px;
}

.modal-close:hover,
.modal-prev:hover,
.modal-next:hover {
  color: var(--accent-sun);
}

/* スマホ調整 */
@media screen and (max-width: 768px) {
  #modal-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    pointer-events: auto; /* 画像へのスワイプは有効 */
    box-shadow: 0 0 10px rgb(37 0 0 / 68%);
    transition: opacity 0.2s ease;
  }
  .modal-prev,
  .modal-next {
    font-size: 35px;
    padding: 20px 0px;
  }
  .modal-close {
    top: 10px;
    right: 10px;
    font-size: 40px;
  }
}

/* インデックス全体の調整 */
.policy-nav {
  margin: 20px 0 40px;
}

.policy-nav ul {
  list-style: none;
  display: block;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.policy-nav ul li {
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
  display: block;
  list-style: none;
}

.policy-nav ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;

  background-color: var(--accent-sun);
  -webkit-mask-image: url("/common/img/sun-icon.svg");
  mask-image: url("/common/img/sun-icon.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.policy-nav ul li a {
  color: var(--accent-marine);
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s;
}

.policy-nav ul li a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* -------------------------------------------
  リスト（Definition List）
------------------------------------------- */
.definition-list-style {
  max-width: 1000px;
  margin: 40px auto;
}

.definition-list-style dt {
  font-weight: bold;

  border-bottom: 1px solid var(--accent-marine-light);
  padding-bottom: 8px;
  margin-top: 2.5em;
  color: var(--text-main);
}

.definition-list-style dd {
  margin-left: 0;
  padding: 15px 5px 0 5px;
  line-height: 1.8;
}

.definition-list-style ul {
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
}

.definition-list-style ul li {
  display: list-item;
  :root {
    --bg-ivory: #fffcf5;
    --accent-marine: #004b6c;
    --accent-marine-light: #39a6d6;
    --text-main: #041117;
    --accent-sun: #f3b05a;
    --grad-blue-yellow: linear-gradient(135deg, #87ceeb 0%, #fffacd 100%);
    --accent-gold: #543e0d;
  }

  body {
    margin: 0px;
    padding: 0px;
    background-color: var(--bg-ivory);
    color: var(--text-main);
    font-family: "Zen Old Mincho", "Noto Serif JP", serif;
    line-height: 1.5;
    overflow-x: hidden;
  }

  ul {
    list-style: none;
    margin: 0 1em 1em;
    padding: 0 1em;
  }

  ul li {
    display: list-item;
    list-style-type: disc;
    padding-left: 0em;
  }

  ul li::marker {
    color: var(--accent-marine-light);
  }

  footer ul {
    list-style: none;
    margin: 2em auto;
    padding: 0 1em;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5em 1em;
    font-size: 0.8em;
    width: 90%;
    justify-content: center;
  }

  footer ul li {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding-left: 0;
  }

  footer ul li:not(:last-child)::after {
    content: "|";
    margin-left: 1em;
    color: var(--bg-ivory);
    opacity: 0.5;
    font-size: 0.9em;
  }

  footer a {
    color: var(--bg-ivory);
    text-decoration: none;
    transition: opacity 0.3s;
  }

  footer a:hover {
    opacity: 0.7;
  }
  a {
    text-decoration: none;
    color: var(--accent-marine-light);
  }
  a:hover {
    text-decoration: underline;
    color: var(--accent-sun);
  }
  main {
    background: var(--bg-ivory);
    width: 100%;
    margin: 0px auto;
    overflow: hidden;
  }
  .page-without-mv main {
    padding-top: 150px;
  }

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

  .header {
    position: fixed;
    top: 0px;
    width: 100%;
    height: 80px;
    background: linear-gradient(
      to bottom,
      rgb(223 172 40 / 72%) 0%,
      rgb(201 147 57 / 0%) 100%
    );
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 0px solid rgba(0, 75, 108, 0.1);
  }

  .header-inner {
    width: 95%;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo a {
    text-decoration: none;
    color: var(--bg-ivory);
    font-size: 1.5rem;
    font-weight: normal;
    text-shadow: 1px 1px 2px rgb(160 110 35 / 64%);
    z-index: 1;
  }

  .nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0px;
    padding: 0px;
    letter-spacing: 1.5px;
    font-family: sans-serif;
    font-size: 0.9rem;
  }

  .nav ul li {
    list-style: none;
  }

  .nav a {
    text-decoration: none;
    color: var(--bg-ivory);
    font-weight: normal;
    transition: 0.3s;
    text-shadow: 1px 1px 2px rgb(160 110 35 / 64%);
  }

  .nav a:hover {
    color: var(--accent-marine-light);
  }

  .ticket-button {
    background: var(--grad-blue-yellow);
    border-radius: 10px 0 0 0;
    padding: 10px 10px 8px;
    display: inline-block;
    text-decoration: none;
    border: 0px solid #fff;
    font-family: sans-serif;
    font-size: 0.9rem;
  }
  .ticket-button a::after {
    content: "";
    width: 1.2em;
    height: 1.2em;
    background-color: var(--accent-marine);
    -webkit-mask: url("/common/img/sun-icon.svg") no-repeat center / contain;
    mask: url("/common/img/sun-icon.svg") no-repeat center / contain;
    margin-right: 0;
  }
  .ticket-button a {
    text-decoration: none;
    color: var(--accent-marine) !important;
    border-top: 1px solid rgb(255, 255, 255);
    border-left: 1px solid rgb(255, 255, 255);
    padding: 0.3em 0.5em 0.3em 1em;
    text-shadow: 2px 2px 8px rgb(211 187 152 / 0%);
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
  }

  .nav-toggle {
    display: none;
    position: relative;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    text-shadow: 1px 1px 2px rgb(160 110 35 / 64%);
  }

  .nav-toggle span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--bg-ivory);
    left: 0px;
    transition: 0.3s;
  }

  .nav-toggle span:nth-child(1) {
    top: 0px;
  }

  .nav-toggle span:nth-child(2) {
    top: 11px;
  }

  .nav-toggle span:nth-child(3) {
    bottom: 0px;
  }

  .main-visual {
    position: relative;
    width: 100%;
    height: 100dvh;
    background: rgb(0, 0, 0);
  }

  .main-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mv-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .mv-text {
    color: rgb(255, 255, 255);
    text-align: left;
    text-shadow: rgba(0, 0, 0, 0.4) 0px 2px 15px;
    margin: 0px 0px 0px 2em;
    font-size: 2em;
    font-family: sans-serif;
  }

  .mv-text h2 {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    line-height: 1.4;
    margin: 0px 0px 20px -2px;
    font-weight: normal;
    font-family: "Zen Old Mincho";
  }

  h3 {
    font-weight: normal;
    color: var(--accent-marine);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    width: 100%;
    font-size: 1.1em;
    margin: 1rem 0 1rem;
  }

  h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0; /* 最初は0 */
    height: 3px;
    background: var(--grad-blue-yellow);
    opacity: 1;
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.3s;
  }

  h3.line-active::after {
    width: 100%;
  }
  .index-section {
    padding: 100px 0px;
  }
  #about.index-section {
    padding: 10px 0px 100px;
  }
  .bg-gradient {
    background: var(--grad-blue-yellow);
  }

  .bg-tyle {
    background: url(/common/img/bg-tyle.png);
    background-size: 50%;
    background-repeat: repeat;
  }

  .lead-h2 {
    text-align: left;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
  }

  .lead-h2 h2 {
    font-size: 2.2rem;
    color: var(--accent-marine);
    display: inline-block;
    padding-bottom: 10px;
    margin: 0px 0 0px 0px;
    font-weight: normal;
    letter-spacing: 1.5px;
  }

  .lead-h2::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 17px;
    width: 100%;
    height: 40px;
    background: var(--grad-blue-yellow);
    opacity: 0.3;
    z-index: -1;
  }

  .description {
    font-family: sans-serif;
    margin: 0 0 0 1em;
  }

  .flex-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
  }

  .flex-container.inverse {
    flex-direction: row-reverse;
  }

  .item {
    flex: 1 1 0%;
  }

  .item img {
    width: 100%;
    height: auto;
    border-radius: 0px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px;
  }
  .prof-img {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50% !important;
    display: block;
    margin: 0 auto;
  }
  .profile-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 40px;
  }

  .profile-img-wrap::before {
    content: "";
    position: absolute;
    top: 50px;
    left: -70px;
    width: 70%;
    height: 70%;
    z-index: -1;
    background-color: var(--accent-sun);
    -webkit-mask: url("/common/img/sun-icon.svg") no-repeat center / contain;
    mask: url("/common/img/sun-icon.svg") no-repeat center / contain;
  }
  .fixed-reserve-button {
    position: fixed;
    right: 0px;
    top: 70%;
    transform: translateY(-50%);
    z-index: 999;
    background: var(--grad-blue-yellow);
    padding: 20px 10px;
    border-radius: 8px 0px 0px;
    writing-mode: vertical-rl;
    text-decoration: none;
    box-shadow: rgba(0, 0, 0, 0.2) -2px 2px 10px;
    transition: 0.3s;
  }

  .fixed-reserve-button span {
    color: var(--accent-marine);
    font-weight: normal;
    letter-spacing: 0.2em;
    font-family: sans-serif;
    border-top: 1px solid rgb(255, 255, 255);
    border-left: 1px solid rgb(255, 255, 255);
    padding: 0.7em 0.7em 0.7em 0.3em;
    border-radius: 8px 0px 0px;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
  }

  .fixed-reserve-button span::after {
    content: "";
    width: 1.2em;
    height: 1.2em;
    background-color: var(--accent-marine);
    -webkit-mask: url("/common/img/sun-icon.svg") no-repeat center / contain;
    mask: url("/common/img/sun-icon.svg") no-repeat center / contain;
    margin-right: 0;
  }

  .fixed-reserve-button:hover {
    padding-right: 15px;
  }

  .footer {
    background: rgb(79 47 7);
    color: rgb(255, 255, 255);
    padding: 60px 0px;
    margin: 60px 0 0;
    text-align: center;
  }

  /* --- 回転アニメーションの定義 --- */
  @keyframes rotate-sun {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  /* --- トップへ戻るボタン本体 --- */
  .to-top {
    position: fixed;
    right: 20px;
    bottom: 40px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 900;
    opacity: 0;
    transition: opacity 0.3s;
    position: fixed;
  }

  /* 太陽アイコン（背面で回転） */
  .sun-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* 背面 */

    /* マスク設定 */
    background-color: var(--accent-sun);
    -webkit-mask-image: url("/common/img/sun-icon.svg");
    mask-image: url("/common/img/sun-icon.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    animation: rotate-sun 15s linear infinite;
  }

  /* テキスト */
  .top-text {
    position: relative;
    z-index: 2;
    color: var(--accent-sun);
    font-family: "Zen Old Mincho";
    font-weight: bold;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }

  /* 表示・非表示の制御 */
  .to-top.is-visible {
    opacity: 1;
  }

  .to-top:hover .sun-icon {
    background-color: var(--accent-marine-light);
  }

  .to-top:hover .top-text {
    color: var(--accent-marine-light);
    transition: color 0.3s;
  }

  @media screen and (max-width: 768px) {
    .page-without-mv main {
      padding-top: 80px;
    }

    .header {
      height: 60px;
    }

    .nav-toggle {
      display: block;
    }

    .nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: calc(0px + 100vh);
      background-color: var(--accent-marine);
      transition: 0.3s;
      box-shadow: rgba(0, 0, 0, 0.1) -2px 0px 10px;
      opacity: 0.9;
      z-index: 0;
      overscroll-behavior: contain;
    }

    .nav.is-active {
      right: 0px;
    }
    body.nav-open {
      overflow: hidden;
    }
    .nav ul {
      flex-direction: column;
      padding-top: 100px;
      gap: 40px;
    }

    .logo a {
      text-decoration: none;
      color: var(--bg-ivory);
      font-weight: normal;
      text-shadow: 1px 1px 2px rgb(160 110 35 / 64%);
      z-index: 1;
    }
    .lead-h2 h2 {
      font-size: 1.6rem;
      margin: 0;
      line-height: 1.3em;
    }
    .lead-h2 h2[data-type="nowrap"] {
      white-space: nowrap;
      margin-left: -0.4em;
      margin-right: -1em;
      font-size: clamp(1rem, 6.5vw, 1.6rem);
    }
    .description {
      font-family: sans-serif;
      display: block;
    }
    .flex-container,
    .flex-container.inverse {
      flex-direction: column;
      gap: 30px;
      display: flex;
    }

    .fixed-reserve-button {
      padding: 8px;
      top: 60%;
      right: -8px;
    }

    .nav-toggle.is-active span:nth-child(1) {
      transform: translateY(11px) rotate(45deg);
    }

    .nav-toggle.is-active span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.is-active span:nth-child(3) {
      transform: translateY(-11px) rotate(-45deg);
    }
    .mv-text {
      color: rgb(255, 255, 255);
      text-align: left;
      text-shadow: rgba(0, 0, 0, 0.4) 0px 2px 15px;
      margin: 0px 0px 0px 1em;
      font-size: 1.3em;
      font-family: sans-serif;
    }
    .footer {
      background: rgb(79 47 7);
      color: rgb(255, 255, 255);
      padding: 60px 0px;
      margin: 40px 0 0;
      text-align: center;
    }
  }

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

  .fade-in.is-visible {
    opacity: 1;
    transform: translateY(0px);
  }

  .slider-container {
    position: relative;
    width: 100%;
    margin: 30px auto 0px;
    padding-bottom: 40px;
    overflow: hidden;
  }

  .slider-container-inner {
    overflow: hidden;
    border-radius: 8px;
  }

  .slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .slider-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0px 5px;
  }
  .lead-h2 {
    text-align: left;
    margin: 0px 0 20px;
    position: relative;
    padding-bottom: 15px;
  }

  .prof-img {
    max-width: 300px;
    max-height: 300px;
    border-radius: 70% !important;
  }

  @media screen and (min-width: 769px) {
    .slider-slide {
      min-width: 33.333%;
    }
  }

  .slider-slide img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    border-radius: 0px;
  }

  .slider-btn {
    position: absolute;
    top: calc(50% - 20px);
    transform: translateY(-50%);
    background: rgba(0, 75, 108, 0.5);
    color: rgb(255, 255, 255);
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    transition: 0.3s;
  }

  .slider-btn:hover {
    background: var(--accent-marine);
  }

  .prev-btn {
    left: 0px;
    border-radius: 0px 4px 4px 0px;
  }

  .next-btn {
    right: 0px;
    border-radius: 4px 0px 0px 4px;
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 20px;
    align-items: center;
  }

  .dot {
    width: 10px;
    height: 10px;
    background: rgb(204, 204, 204);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
  }

  .dot.is-active {
    background: var(--accent-marine);
    transform: scale(1.2);
  }

  @media screen and (max-width: 768px) {
    .slider-btn {
      padding: 10px 5px;
      font-size: 1rem;
    }

    .slider-container {
      padding-bottom: 30px;
    }
  }

  /* --- Guest Voices Section --- */
  #customer .flex-container.inverse {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-top: 40px;
  }

  /* 左側：Airbnb埋め込みエリア */
  #customer .embed-area {
    flex: 1.2;
    min-width: 320px;
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: row;
  }

  #customer .airbnb-embed-frame,
  #customer .airbnb-embed-frame iframe {
    width: 100% !important;
    min-width: 400px; /* min-widthを解除 */
    max-width: 100%;
    border: none;
  }

  /* 右側：レビューテキストエリア */
  #customer .review-content-area {
    flex: 1;
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    flex-direction: column;
  }

  /* 各レビューカード */
  .review-card {
    border-bottom: 1px solid rgba(0, 75, 108, 0.1);
    padding-bottom: 25px;
    background: var(--bg-ivory);
    padding: 1em;
  }

  .review-card:last-of-type {
    border-bottom: none; /* 最後の線の除去 */
  }

  /* 星マーク */
  .stars {
    color: #fbc02d;
    font-size: 1.1rem;
    letter-spacing: 4px;
    margin-bottom: 8px;
  }

  .review-meta {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
    font-family: sans-serif;
  }

  .review-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-main);
    text-align: justify;
  }

  /* --- もっと見るボタン　右寄せ(1px solid / 角丸なし / 矢印付き) --- */
  .btn-wrapper-right {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 20px;
  }

  /* --- もっと見るボタン センター(1px solid / 角丸なし / 矢印付き) --- */
  .btn-wrapper-center {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
  }

  .btn-outline-arrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 15px 45px;
    border: 1px solid var(--accent-marine);
    border-radius: 0;
    color: var(--accent-marine);
    text-decoration: none;
    font-family: "Zen Old Mincho", "Noto Serif JP", serif;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    margin-top: 10px;
    align-self: flex-end;
  }

  .btn-outline-arrow::after {
    content: "→";
    margin-left: 20px;
    font-family: sans-serif;
    transition: transform 0.3s ease;
  }

  .btn-outline-arrow:hover {
    background-color: var(--accent-marine);
    color: #fff;
  }

  .btn-outline-arrow:hover::after {
    transform: translateX(10px);
  }

  /* スマホ対応：縦並びに切り替え */
  @media screen and (max-width: 768px) {
    #customer .flex-container.inverse {
      flex-direction: column-reverse;
      gap: 60px;
    }
    #customer .embed-area,
    #customer .review-content-area {
      width: 100%;
    }
  }

  /* フォトタイルギャラリー */
  .photo-tile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* PC: 3列 */
    gap: 0;
    margin-top: 40px;
    width: 100%;
  }

  .tile {
    width: 100%;
    aspect-ratio: 1 / 1; /* 正方形を維持 */
    overflow: hidden;
  }

  .tile img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 中央でトリミング */
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
  }

  .tile:hover img {
    transform: scale(1.05);
  }

  /* スマートフォン対応 (SP: 2列) */
  @media screen and (max-width: 768px) {
    .photo-tile-grid {
      grid-template-columns: repeat(2, 1fr); /* SP: 2列 */
    }
  }

  .column-container {
    width: 100%;
    margin: 30px auto 0px;
    padding-bottom: 40px;
  }
  .column-container h3 {
    margin: 50px auto 0px;
    text-align: center;
  }

  /* --- モーダル本体 --- */
  .modal {
    display: none; /* 初期状態は非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(31 0 0 / 74%);
    backdrop-filter: blur(0.5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  /* 表示中クラス */
  .modal.is-visible {
    display: flex !important; /* 強制表示 */
    opacity: 1;
  }

  /* 画像コンテナ */
  .modal-content-wrapper {
    position: relative;
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  #modal-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    pointer-events: auto; /* 画像へのスワイプは有効 */
    box-shadow: 0 0 20px rgb(37 0 0 / 68%);
    transition: opacity 0.2s ease;
  }

  /* ボタン共通 */
  .modal-close,
  .modal-prev,
  .modal-next {
    position: absolute;
    z-index: 10001; /* 画像よりさらに上に */
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
  }

  .modal-close {
    top: 20px;
    right: 20px;
    font-size: 50px;
    line-height: 1;
  }

  .modal-prev,
  .modal-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    padding: 30px 20px;
  }

  .modal-prev {
    left: 10px;
  }
  .modal-next {
    right: 10px;
  }

  .modal-close:hover,
  .modal-prev:hover,
  .modal-next:hover {
    color: var(--accent-sun);
  }

  /* スマホ調整 */
  @media screen and (max-width: 768px) {
    #modal-img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      pointer-events: auto; /* 画像へのスワイプは有効 */
      box-shadow: 0 0 10px rgb(37 0 0 / 68%);
      transition: opacity 0.2s ease;
    }
    .modal-prev,
    .modal-next {
      font-size: 35px;
      padding: 20px 0px;
    }
    .modal-close {
      top: 10px;
      right: 10px;
      font-size: 40px;
    }
  }

  /* インデックス全体の調整 */
  .policy-nav {
    margin: 20px 0 40px;
  }

  .policy-nav ul {
    list-style: none;
    display: block;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .policy-nav ul li {
    position: relative;
    padding-left: 28px;
    line-height: 1.5;
    display: block;
    list-style: none;
  }

  .policy-nav ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;

    background-color: var(--accent-sun);
    -webkit-mask-image: url("/common/img/sun-icon.svg");
    mask-image: url("/common/img/sun-icon.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .policy-nav ul li a {
    color: var(--accent-marine);
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s;
  }

  .policy-nav ul li a:hover {
    opacity: 0.7;
    text-decoration: underline;
  }

  /* -------------------------------------------
  リスト（Definition List）
------------------------------------------- */
  .definition-list-style {
    max-width: 1000px;
    margin: 40px auto;
  }

  .definition-list-style dt {
    font-weight: bold;

    border-bottom: 1px solid var(--accent-marine-light);
    padding-bottom: 8px;
    margin-top: 2.5em;
    color: var(--text-main);
  }

  .definition-list-style dd {
    margin-left: 0;
    padding: 15px 5px 0 5px;
    line-height: 1.8;
  }

  .definition-list-style ul {
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
  }

  .definition-list-style ul li {
    display: list-item;
    list-style-type: disc;
    margin-left: 1.5em;
    padding-left: 0.3em;
  }

  .definition-list-style ul li::marker {
    color: var(--accent-marine-light, #39a6d6);
  }

  .definition-list-style dt:first-of-type {
    margin-top: 0;
  }

  list-style-type: disc;
  margin-left: 1.5em;
  padding-left: 0.3em;
}

.definition-list-style ul li::marker {
  color: var(--accent-marine-light, #39a6d6);
}

.definition-list-style dt:first-of-type {
  margin-top: 0;
}

.nobr {
  display: inline-block;
}

.welcome-message {
  margin: 3em auto;
  text-align: center;
}
.welcome-message::before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto 1em;
  vertical-align: middle;
  background-color: var(--accent-sun);
  opacity: 0.5;
  -webkit-mask: url("/common/img/sun-icon.svg") no-repeat center / contain;
  mask: url("/common/img/sun-icon.svg") no-repeat center / contain;
}

/* SNSセクションのレイアウト */
.sns-box ul {
  display: flex;
  justify-content: center;
  gap: 15px;
  list-style: none !important;
  padding: 0;
  font-size: 3em;
}

.sns-box ul li {
  list-style: none !important;
}

.sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid;
  border-radius: 12px;
  color: var(--accent-gold);
  text-decoration: none;
  font-family: "Times New Roman", serif;
  font-size: 1.4rem;
  transition: all 0.6s ease;
  background: transparent;
}

.sns-link:hover {
  background: var(--grad-gold-orange);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
  text-decoration: none;
}

.sns-line {
  font-weight: 300;
}

/* スマホ用の調整 */
@media screen and (max-width: 768px) {
  .sns-box ul {
    gap: 10px;
  }

  .sns-box ul li {
    width: 50px;
  }
}

.experience-container {
  position: relative;
  overflow: hidden;
  /* background: #4f38066b; */
  padding: 0 0 1em;
  z-index: 0;
  border-radius: 10px;
  margin: 0 0 3em;
}

.experience-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(255, 250, 230, 0.6),
    transparent 90%
  );
  opacity: 0.2;
  transform: scale(1);
  transition:
    opacity 2s ease-in-out,
    transform 2s ease-in-out;
  z-index: -1;
  pointer-events: none;
}

.experience-container:hover::before {
  opacity: 1;
  transform: scale(1.4);
}

.experience-container h4 {
  text-align: center;
  position: relative;
  display: block;
  color: var(--accent-gold);
  font-size: 1em;
  white-space: nowrap;
  margin-left: 0;
  padding: 5px 0;
  z-index: 1;
  background: linear-gradient(135deg, #fffcf5 0%, #9e845c00 100%);
}

.experience-container h4::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-gold-orange);
  opacity: 0;
  z-index: -1;
  transition: opacity 2s ease-in-out;
  pointer-events: none;
}

.menu-card:hover h4::after {
  opacity: 0.9;
}

.menu-card:hover h4 {
  color: #fff;
  transition: color 1.5s ease-in-out;
}

.menu-card p::first-letter {
  font-size: 2em;
  font-weight: bold;
  color: #d4af37;
  float: left;
  margin-right: 9px;
  line-height: 1.2;
  font-family: serif;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5% 3% 2%;
}

/* メニューのカード */
.menu-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 20px 0px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.menu-card:hover {
  transform: translateY(0px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.menu-card .main-img-wrapper {
  position: relative;
  margin: 20px 0 30px 0;
  z-index: 1;
}

.menu-card .main-img-wrapper::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  border: 0px solid var(--accent-gold);
  /* background: rgba(212, 175, 55, 0.1); 
  border-radius: 0;
  background: var(--grad-gold-orange);
  z-index: -1; */
  transition: transform 1s ease-out;
}

.menu-card .main-img {
  width: 100%;
  display: block;
  border-radius: 0;
  position: relative;
  z-index: 2;
}

.menu-card:hover .main-img-wrapper::before {
  transform: translate(5px, 5px);
}
@media (max-width: 900px) {
  .menu-card {
    padding: 7px 10px 7px;
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
    border: 0px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
  }
  .experience-container h4 {
    margin-left: -0.5rem;
  }
}

@media (max-width: 768px) {
  .experience-container {
    position: relative;
    overflow: hidden;
    background: none;
    padding: 0 0 1em;
    z-index: 0;
    border-radius: 10px;
    margin: 0 0 3em;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }
}

.menu-grid p {
  margin: 1rem 0 1rem;
  line-height: 1.5;
  min-height: 100px;
}
/* リスト全体の整頓 */
.price-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
  color: #444;
  white-space: nowrap;
}
.price-list span {
  display: block;
}

.price-list li.featured {
  display: block;
  text-align: center;
  background: rgba(212, 175, 55, 0.08);
  padding: 15px 5px;
  margin-bottom: 5px;
  border-bottom: none;
  height: 100px;
}

.plan-name {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
  font-size: 1rem;
}

.price-group {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
}

.price-old {
  text-decoration: line-through;
  color: rgb(104, 104, 104) 9;
}

.price-new {
  color: #c0392b;
  font-weight: bold;
  font-size: 1.2rem;
  font-family: "Times New Roman", serif;
}
.price-new-sub {
  color: #c0392b;
  font-weight: bold;
}

.price-old-sub {
  color: rgb(104, 104, 104) 9;
  text-decoration: line-through;
}
.price-new small {
  font-size: 0.65rem;
  margin-left: 2px;
}

.plan-detail {
  font-size: 0.9rem;
  color: #777;
  margin-top: 8px;
}

.price-standard {
  font-family: "Times New Roman", serif;
  font-weight: 500;
}

.price-single {
  margin-top: 25px;
  padding: 15px;
  border: 1px double rgba(212, 175, 55, 0.4);
  text-align: center;
  font-weight: bold;
  color: #d4af37;
  letter-spacing: 0.1em;
}

.other-menu {
  padding: 0 3% 2em;
  background: linear-gradient(
    to top,
    rgba(255, 249, 226, 0.18) 0%,
    rgba(255, 249, 226, 0) 100%
  );
}

.water-experience {
  position: relative;
  overflow: hidden;
  z-index: 0;
  min-height: auto;
  padding: 3% 3% 2%;
  color: var(--bg-ivory);
  border-radius: 10px;
  margin: 2rem 0 0;
}

.water-experience::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  /* background: #04244042; */
  transition: opacity 3s ease-in-out;
  z-index: -2;
  border-radius: 10px;
  margin: 0 0;
}

/* 光の層（グラデーション） */
.water-experience::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 5% 3% 2%;
  background: radial-gradient(
    circle at top right,
    rgba(255, 250, 230, 0.8),
    transparent 80%
  );
  margin: 0 0;
  opacity: 0.2;
  transform: scale(1);
  transition:
    opacity 1.5s ease-in-out,
    transform 2s ease-in-out;
  z-index: -1;
  pointer-events: none;
}

.water-experience:hover::after {
  opacity: 0.8;
}

.water-experience:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

.water-content {
  display: flex;
  gap: 2em;
}

/*.brand-lead {
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 0 0;
  background: linear-gradient(135deg, #fffcf5 0%, #9e845c00 100%) !important;
  color: var(--accent-gold) !important;
} */

.brand-lead {
  font-size: 1.1em;
  margin: 1.2rem 0 1rem;
  /* border-bottom: 1px solid #fff !important; */
  border-left: 7px solid #fff;
  padding: 0 0 0.2em 0.5em;
  letter-spacing: 1px;
  font-weight: normal;
  background: #ffffff99 !important;
  color: var(--accent-gold) !important;
}
.water-text {
  color: var(--bg-ivory);
  width: 50%;
}
.water-experience p {
  color: var(--bg-ivory);
  /* background: #04244042; */
  padding: 0.7em 0.7em 0.7em 0.7em;
  margin: 1rem 0 1rem;
}
.water-table-container {
  margin: 1rem 0;
  overflow-x: auto;
}

.water-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  background: #fff;
  color: var(--text-main);
  margin: 0 0 0 0;
}

.water-comparison-table th,
.water-comparison-table td {
  padding: 12px 8px;
  border: 1px solid #eee;
  text-align: center;
}

.water-comparison-table th {
  background: #f8f9fa;
  color: #333;
  font-weight: bold;
}

/* RO水の列を強調 */
.highlight-ro {
  background: rgba(135, 206, 235, 0.1);
  color: #0077b6;
  font-weight: bold;
  font-size: 1.1rem;
}

.table-note {
  font-size: 0.8rem;
  margin: 0.8rem;
  text-align: left;
  padding: 0;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .other-menu {
    color: var(--bg-ivory);
    padding: 0 3% 1.8rem;
    /* background: #fff; */
  }

  .water-content {
    display: flex;
    gap: 0;
    flex-direction: column;
  }
  .water-text {
    width: 100%;
  }
  .brand-lead {
    font-size: 1.1em;
    margin: 2em 0 0;
    background: #ffffff99 !important;
    color: var(--accent-gold) !important;
    border-left: 0 solid #fff;
    padding: 0.3em 0 0.3em 0.7em;
  }
  .water-experience {
    position: relative;
    overflow: hidden;
    z-index: 0;
    min-height: auto;
    padding: 3% 0 2%;
    color: var(--bg-ivory);
    border-radius: 0;
    margin: 2rem 0 0;
    background: #04244042;
  }
  .water-experience::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background: none;
    transition: opacity 3s ease-in-out;
    z-index: -2;
    border-radius: 10px;
    margin: 0 0;
  }
  .water-experience::before {
    background: none;
  }
}
/* カード全体に基準点を作る */

/* 右下固定の画像 */
.bg-decoration {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}
.experience-text {
  margin: 0.8rem 0 1.5rem;
  background: linear-gradient(
    to bottom,
    rgba(255, 249, 226, 0) 0%,
    rgba(255, 249, 226, 0.1) 40%,
    rgba(255, 249, 226, 0.15) 50%,
    rgba(255, 249, 226, 0.1) 60%,
    rgba(255, 249, 226, 0) 100%
  );
  padding: 0 1em;
}

/* 冒頭の修飾 */

.notice {
  color: #444;
  font-size: 0.9em;
}

@media (min-width: 769px) {
  .sp-only {
    display: none;
  }
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

/* 多言語ボタン */
/* --- レイアウトの根元から修正 --- */
.nav-logo {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  z-index: 999;
}

/* 1. 外枠：青背景・白文字 */
.goog-te-gadget-simple {
  background-color: #669fc600 !important;
  border: 1px solid #fff !important;
  padding: 5px 0px !important;
  border-radius: 4px;
  font-family: inherit !important;
  cursor: pointer;
  display: inline-flex !important;
  justify-content: flex-start;
  margin: 0 0;
}

.goog-te-gadget-simple span {
  color: #fff !important;
  text-shadow: none !important;
  vertical-align: middle;
  font-size: 0.95em;
  margin: 0 0.1em;
  text-decoration: none !important;
}

.goog-te-gadget-simple a:hover {
  text-decoration: none !important;
}
.goog-te-gadget-simple img {
  display: none !important;
}

.goog-te-menu-value span:first-child {
  font-size: 0 !important;
  color: transparent !important;
}

.goog-te-menu-value span:first-child::before {
  content: "EN"; /* ここを表示したい文字に */
  font-size: 14px !important; /* 文字サイズを復活 */
  color: #ffffff !important; /* 白文字 */
  visibility: visible;
  font-weight: bold;
}

.goog-te-menu-value span[style*="color: rgb(118, 118, 118)"],
.goog-te-menu-value span[aria-hidden="true"] {
  display: inline-block !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.skiptranslate iframe {
  display: none !important;
}

.cz-shortcut-listen {
  top: 0 !important;
  height: 0px !important;
}

@media screen and (max-width: 980px) {
  .nav-logo {
    display: flex !important;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start; /* 子要素を左端に強制 */
    justify-content: flex-start !important;
    padding: 0;
    margin: 0;
    align-content: flex-start;
  }

  .header {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(
      to bottom,
      rgb(223 172 40 / 50%) 0%,
      rgb(201 147 57 / 0%) 100%
    );
  }
}
