@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  background: #F1ECE9;
  color: #4f3b17;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 400;
  font-family: "Zen Maru Gothic", "YakuHanJP", "Lato", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

a {
  color: #ef7d39;
  text-decoration: none;
  transition: all 0.3s ease-in;
  cursor: pointer;
}
a:focus-visible {
  outline: 2px solid rgba(9, 163, 223, 0.35);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h1 {
  font-size: 35px;
  font-size: 3.5rem;
}

h2 {
  font-size: 28px;
  font-size: 2.8rem;
}

h3 {
  font-size: 22px;
  font-size: 2.2rem;
}

h4 {
  font-size: 18px;
  font-size: 1.8rem;
}

h5 {
  font-size: 15px;
  font-size: 1.5rem;
}

.smaller {
  font-size: 0.7em;
}

#wrapper {
  position: relative;
  overflow: hidden;
}

hr {
  border: none;
  border-top: 1px solid #4f3b17;
  margin: 0;
  opacity: 0.4;
}

#header {
  position: relative;
  z-index: 100;
}
#header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 40px;
}
#header #logo {
  width: 120px;
}

.head-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}

#header_nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
}
#header_nav a {
  display: inline-block;
  padding: 8px 10px;
  color: #4f3b17;
  text-decoration: none;
  position: relative;
  transition: opacity 0.2s;
}
#header_nav a:hover {
  opacity: 0.85;
}
#header_nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
#header_nav a:hover::after, #header_nav a.active::after {
  transform: scaleX(1);
}
#header_nav.hover-circle a::after {
  display: none;
}
#header_nav.hover-circle a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #4f3b17;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  opacity: 0;
  transition: all 0.5s ease;
}
#header_nav.hover-circle a:hover::before {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0.1;
}
#header_nav.hover-circle a.active::before {
  opacity: 0.1;
}

.sp-btn {
  display: none;
}

#nav-toggle,
#sp-nav {
  display: none;
}

#footer {
  position: relative;
  border-top: 10px solid #FEFEFE;
}
#footer .inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
#footer .inner .footer-left {
  width: 55%;
  padding-right: 5%;
}
#footer .inner .footer-right {
  width: 45%;
}

.flogo {
  margin-bottom: 20px;
  width: 140px;
}

.footer_navi {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #4f3b17;
}
.footer_navi ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin-inline: auto;
}
.footer_navi ul li {
  width: 20%;
  text-align: center;
}
.footer_navi ul li a {
  position: relative;
  display: inline-block;
  color: #4f3b17;
  padding: 4px 0;
  font-size: 1.4rem;
}
.footer_navi ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #ef7d39;
  transform: translateX(-50%) scaleX(0);
  transform-origin: 50% 50%;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
  opacity: 0.9;
}
.footer_navi ul li a:hover::after, .footer_navi ul li a:focus-visible::after, .footer_navi ul li a.is-current::after, .footer_navi ul li a[aria-current=page]::after {
  transform: translateX(-50%) scaleX(1);
}
.footer_navi ul li a:hover {
  opacity: 0.95;
}

#page-title .inner {
  max-width: 80%;
  margin: auto;
  padding: 100px 0;
}
#page-title .inner .title,
#page-title .inner .text {
  width: 50%;
  margin-bottom: 0;
}
#page-title .inner .title span,
#page-title .inner .text span {
  display: block;
}
#page-title .inner .title .ja::before,
#page-title .inner .text .ja::before {
  display: none;
}

.contact_btn {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact_btn a {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: #ef7d39;
  color: #FEFEFE;
  border-radius: 90px;
  padding: 8px 24px;
  font-weight: 700;
  min-width: 220px;
}
.contact_btn a:hover {
  opacity: 0.6;
}
.contact_btn a.icon_link {
  min-width: auto;
  border-radius: 50%;
  aspect-ratio: 1/1;
  padding: 8px;
}
.contact_btn a.reserve {
  border-radius: 60px;
  aspect-ratio: initial;
  background: #4f3b17;
  padding: 8px 24px;
  font-size: 0.9em;
}
.contact_btn img {
  inline-size: 24px;
  block-size: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact_btn p:nth-child(2) a {
  background: #65d14e;
}
.contact_btn.column {
  flex-direction: column;
  align-items: flex-start;
}
.contact_btn.big {
  gap: 16px;
}
.contact_btn.big a {
  padding: 32px 24px;
  min-width: 320px;
  font-size: 1.3em;
}
.contact_btn.dark a,
.contact_btn.dark p:nth-child(2) a {
  background: #FEFEFE;
  border: 1px solid #4f3b17;
  color: #4f3b17;
}
.contact_btn.dark a img,
.contact_btn.dark p:nth-child(2) a img {
  filter: invert(1);
}

.contact_icon {
  width: 30px;
}

#form .form-contents {
  padding: 0px !important;
}
#form dl {
  margin-bottom: 0 !important;
}
#form dl dt:not(.pattern-exclusion) span.required::before {
  background: #ef7d39 !important;
}
#form dl dd:not(.pattern-exclusion) {
  border-bottom: none !important;
  padding-bottom: 10px !important;
}
#form dl dd:not(.pattern-exclusion) input.textarea {
  height: 45px !important;
}
#form .submit-btn {
  background: #ef7d39 !important;
  color: #FEFEFE !important;
  border: 1px solid #ef7d39 !important;
  border-radius: 999px !important;
}
#form .submit-btn:hover {
  opacity: 0.8 !important;
}

.container {
  --container-max: 1200px;
  --container-pb: 80px;
  --container-pi: 60px;
  position: relative;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-block: var(--container-pb);
  padding-inline: var(--container-pi);
}
.container--base {
  --container-max: 1200px;
}
.container--wide {
  --container-max: 1500px;
}
.container--full {
  --container-max: 100vw;
}
.container--p-xl {
  --container-pb: 120px;
  --container-pi: 0;
}
.container--p-l {
  --container-pb: 80px;
  --container-pi: 0;
}
.container--p-m {
  --container-pb: 60px;
  --container-pi: 0;
}
.container--p-s {
  --container-pb: 40px;
  --container-pi: 0;
}
.container--full {
  padding-left: 0;
  padding-right: 0;
}
.container--top-only {
  padding-block-end: 0 !important;
}
.container--btm-only {
  padding-block-start: 0 !important;
}

.box {
  position: relative;
  margin-inline: auto;
  z-index: 3;
  padding: clamp(16px, 4vw, 30px);
}
.box--bwidth {
  max-width: 1200px;
  margin-inline: auto;
}
.box--small {
  max-width: 1100px;
  margin-inline: auto;
}
.box--small2 {
  max-width: 1000px;
  margin-inline: auto;
}
.box--small3 {
  max-width: 900px;
  margin-inline: auto;
}
.box--small4 {
  max-width: 800px;
  margin-inline: auto;
}
.box--small5 {
  max-width: 700px;
  margin-inline: auto;
}
.box--content-fit {
  display: grid;
  place-items: center;
}
.box--content-fit > * {
  inline-size: min(100%, var(--inner-max, -moz-max-content));
  inline-size: min(100%, var(--inner-max, max-content));
}
.box--content-fit img {
  max-inline-size: 100%;
}
.box--pd60 {
  padding: clamp(30px, 4vw, 60px);
}
.box--pd-30-60 {
  padding: 30px 60px;
}
.box--bd {
  border: 1px solid #ef7d39;
}
.box--more {
  --more-closed: 350px;
}
.box--more .more-content {
  max-height: var(--more-closed);
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.box--more.is-open .more-content {
  max-height: 2000px;
}
.box--more .more-btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 16px 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #09a3df;
  background: rgba(9, 163, 223, 0.06);
  color: #09a3df;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.box--more .more-btn:hover {
  background: rgba(9, 163, 223, 0.12);
}
.box--more .more-btn:focus-visible {
  outline: 2px solid rgb(85.8275862069, 202.6551724138, 248.1724137931);
  outline-offset: 2px;
}

.l-column {
  --gap: 40px;
  --cols: 3;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  align-items: stretch;
  justify-content: flex-start;
}
.l-column > li,
.l-column .col-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 0 0 calc((100% - var(--gap) * (var(--cols) - 1)) / var(--cols));
}
.l-column > li > *:first-child,
.l-column .col-item > *:first-child {
  margin-top: 0;
}
.l-column > li > .card,
.l-column .col-item > .card {
  inline-size: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
}
.l-column.col2 {
  --cols: 2;
}
.l-column.col3 {
  --cols: 3;
}
.l-column.col4 {
  --cols: 4;
}
.l-column.col5 {
  --cols: 5;
}

.hero--marquee {
  -webkit-transform: translateZ(0);
}
.hero--marquee .hero__viewport {
  position: relative;
  overflow: hidden;
  padding-block: 12px;
}
.hero--marquee .hero__track {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: var(--gap, 22px);
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: hero-marquee var(--duration, 60s) linear infinite;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.hero--marquee .hero__slide {
  flex: 0 0 auto;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  line-height: 0;
  width: clamp(320px, 55vw, 1180px);
}
.hero--marquee .hero__slide img {
  display: block;
  inline-size: 100%;
  block-size: clamp(340px, 56vw, 700px);
  -o-object-fit: cover;
     object-fit: cover;
}
.hero--marquee .hero__overlay {
  padding: 40px 40px 20px;
}
.hero--marquee .hero__overlay h2 {
  font-size: 35px;
  font-size: 3.5rem;
  margin: 0 0 8px;
  font-weight: 700;
}
.hero--marquee .hero__overlay p {
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0;
  line-height: 1.8;
}
.hero--marquee {
  /* クローンを1回（=2セット分）にするので距離は -50% でOK */
}
@keyframes hero-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--marquee .hero__track {
    animation: none !important;
    transform: none !important;
  }
}
.title {
  margin: 0 auto 60px;
  position: relative;
}
.title .en {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  display: block;
  color: #ef7d39;
  font-size: 0.6em;
}
.title .ja {
  position: relative;
}
.title .ja::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3em;
  height: 3em;
  background: url(../img/hone.png) no-repeat center/contain;
  opacity: 0.1;
}
.title--m0 {
  margin-bottom: 0;
}
.title--m20 {
  margin-bottom: 20px;
}
.title--slim {
  margin: 0 auto 20px;
}
.title--left {
  margin-left: 0;
}
.title--slash {
  display: flex;
  justify-content: center;
  align-items: center;
}
.title--slash::before, .title--slash::after {
  width: 2px;
  height: 30px;
  background-color: #ef7d39;
  content: "";
}
.title--slash::before {
  transform: rotate(-35deg);
  margin-right: 30px;
}
.title--slash::after {
  transform: rotate(35deg);
  margin-left: 30px;
}
.title--bgbar {
  display: flex;
  align-items: center;
  padding: 0.3em 0.7em;
  background-color: #f2f2f2;
  margin-bottom: 10px;
  font-size: 2rem;
}
.title--bgbar::before {
  display: inline-block;
  width: 5px;
  height: 1.5em;
  margin-right: 0.5em;
  background-color: #ef7d39;
  content: "";
}
.title--num {
  position: relative;
  padding-top: 1.5em;
  padding-left: 1em;
}
.title--num::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  color: #09a3df;
  font-size: 3em;
  line-height: 1;
  content: attr(data-number);
  pointer-events: none;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  opacity: 0.5;
}
.title--border {
  border-top: 1px solid #4f3b17;
  border-bottom: 1px solid #4f3b17;
  padding: 10px;
  width: 100%;
}

.ttl-wave {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}
.ttl-wave::before, .ttl-wave::after {
  content: "〜";
  flex-shrink: 0;
}

.btn {
  text-align: center;
  margin-top: 40px;
}
.btn a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  color: #333333;
  border: 1px solid #333333;
  border-radius: 30px;
  transition: 0.3s;
  font-weight: 600;
  min-width: 240px;
  font-size: 0.9em;
  text-align: center;
  justify-content: center;
}
.btn a::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f5e56b;
  transition: all 0.2s ease;
}
.btn a:hover {
  opacity: 0.6;
}
.btn a:hover::before {
  transform: translate(5px, -50%);
}
.btn.slim {
  margin-top: 20px;
}
.btn--left {
  text-align: left;
}
.btn--primary a {
  background: #ef7d39;
  color: #FEFEFE;
  border-color: #f5e56b;
}
.btn--outline a {
  background: #FEFEFE;
  color: #ef7d39;
  border-color: #ef7d39;
}
.btn--ghost a {
  background: transparent;
  border-color: transparent;
  color: #ef7d39;
}

.card {
  height: 100%;
  display: flex;
  background: #FEFEFE;
  border-radius: 16px;
  overflow: hidden;
  gap: 20px;
  padding: 32px;
}
.card__img {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  line-height: 0;
  width: 200px;
}
.card__img::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.card__img img,
.card__img picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.card__body {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.card__body .btn {
  text-align: left;
}
.card__title {
  font-size: 2rem;
}
.card__text {
  font-size: 0.9em;
}
.card--ratio-4x3 .card__img::before {
  padding-top: 75%;
}
.card--ratio-3x2 .card__img::before {
  padding-top: 66.6667%;
}
.card--ratio-1x1 .card__img::before {
  padding-top: 100%;
}
.card--ratio-21x9 .card__img::before {
  padding-top: 42.8571%;
}
.card--column {
  flex-direction: column;
  gap: 16px;
}
.card--column .card__img {
  width: 100%;
}
.card--column .card__body {
  padding-top: 0;
}
.card--tcenter {
  text-align: center;
  align-items: center;
}
.card--accent {
  border: 2px solid #09a3df;
}

.l-column > li,
.l-column .col-item {
  display: flex;
}
.l-column > li > .card,
.l-column .col-item > .card {
  inline-size: 100%;
}

.news-list {
  display: grid;
  gap: 10px;
  max-width: 800px;
  margin-inline: auto;
}
.news-list li:first-child {
  border-top: 1px solid #eee;
}
.news-list li {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #eee;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}
.news-list time {
  color: #666;
  font-size: 1.3rem;
}
.news-list .cat {
  color: #09a3df;
  font-weight: 700;
  font-size: 1.3rem;
}
.news-list .ttl {
  font-size: 1.5rem;
}

.blog {
  padding-inline: clamp(16px, 4vw, 40px);
}
.blog .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.blog .blog-card {
  width: calc((100% - 40px) / 3);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #ddd;
}
.blog .blog-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.blog .blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.blog .blog-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f3f4f6;
}
.blog .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.blog .blog-img {
  /* ホバーで軽くズーム */
}
.blog-card:hover .blog .blog-img img {
  transform: scale(1.04);
}
.blog .blog-title {
  font-weight: 600;
  padding: 14px;
  font-size: 1.6rem;
}

.blog-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.blog-pager > div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 16px;
  border: 1px solid #d9dde3;
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: transform 0.12s ease, filter 0.12s ease, box-shadow 0.12s ease;
  font-size: 14px;
}
.blog-pager > div:hover {
  filter: brightness(0.98);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.blog-pager > div:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.blog-pager > div:first-child {
  background: #f7f8fa;
}
.blog-pager > div:last-child {
  background: #ef7d39;
  color: #fff;
  border-color: #cfd6e0;
}
.blog-pager > div:last-child:hover {
  filter: brightness(1.05);
}
.blog-pager > div:only-child {
  background: #ef7d39;
  color: #fff;
  border-color: #cfd6e0;
}

.blog-detail {
  background: #fefefe;
  border-radius: 20px;
  padding: 2em;
}
.blog-detail .post__title {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  margin: 0 0 24px;
  color: #333;
}
.blog-detail .post__date {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: rgba(61, 61, 61, 0.6);
}
.blog-detail .post__body {
  margin-top: 20px;
}

.media {
  display: grid;
  grid-template-columns: var(--media-img, 120px) 1fr;
  gap: var(--media-gap, 100px);
}
.media__img {
  inline-size: 100%;
  block-size: 100%;
}
.media__img img {
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.media__body {
  line-height: 1.8;
}
.media--sm {
  --media-img: 80px;
}
.media--md {
  --media-img: 120px;
}
.media--lg {
  --media-img: 180px;
}
.media--xl {
  --media-img: 240px;
}
.media--2xl {
  --media-img: 360px;
}

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #ef7d39;
}
.alert--success {
  background: #f0faf2;
  border-color: #c9e7ce;
  color: #1a7f3a;
}
.alert--warning {
  background: #fff8e6;
  border-color: #ffe1a5;
  color: #8a5b00;
}
.alert--danger {
  background: #fff1f1;
  border-color: #ffc7c7;
  color: #a52b2b;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
}

.badge--accent {
  background: #09a3df;
  color: #FEFEFE;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: m #ef7d39;
}

.tabs__nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.tabs__btn {
  width: 48%;
  padding: 16px 24px;
  border-radius: 8px 8px 0 0;
  background: #ef7d39;
  color: #FEFEFE;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}
.tabs__btn.is-active {
  background: #FEFEFE;
  color: #ef7d39;
  border: 2px solid #ef7d39;
  border-bottom: none;
}
.tabs__panel {
  display: none;
  background: #FEFEFE;
  border-radius: 8px;
}
.tabs__panel.is-active {
  display: block;
  padding: 40px;
}

.contents-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 120px;
}
.contents-nav > li a {
  background: #09a3df;
  color: #FEFEFE;
  border-radius: 60px;
  padding: 16px 40px;
  font-weight: 600;
  font-size: 1.2em;
  min-width: 240px;
  display: block;
  text-align: center;
  border: 1px solid #09a3df;
}
.contents-nav > li a:hover {
  color: #09a3df;
  background: #FEFEFE;
}
.contents-nav > li:nth-child(2) a {
  background: #65d14e;
  border: 1px solid #65d14e;
}
.contents-nav > li:nth-child(2) a:hover {
  color: #65d14e;
  background: #FEFEFE;
}

.breadcrumb {
  max-width: 90%;
  margin: auto;
  padding: 30px;
  font-size: 12px;
}
.breadcrumb a {
  color: #333333;
  opacity: 0.6;
  text-decoration: underline;
}
.breadcrumb .kigou {
  font-size: 0.6em;
  padding: 0 0.5em;
}

.list--disc li {
  position: relative;
}
.list--disc li:not(:last-of-type) {
  margin-bottom: 5px;
}
.list--disc li::before {
  content: "●";
  color: #09a3df;
  font-size: 9px;
  margin-right: 5px;
}
.list--disc.sbc li::before {
  color: #ef7d39;
}
.list--inline li {
  display: inline-block;
}
.list--inline li:not(:last-of-type) {
  margin-right: 5px;
}
.list--check {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list--check li {
  position: relative;
  padding-left: 26px;
  line-height: 1.8;
}
.list--check li:not(:last-of-type) {
  margin-bottom: 6px;
}
.list--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 8px;
  border-left: 2px solid #09a3df;
  border-bottom: 2px solid #09a3df;
  transform: rotate(-45deg);
}
.list--check.sbc li::before {
  border-color: #ef7d39;
}
.list--num li figure {
  position: relative;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.list--num li figure::before {
  content: "";
  position: absolute;
  right: -1em;
  top: -1.5em;
  width: 5em;
  height: 5em;
}
.list--num li:nth-child(1) figure::before {
  background: url(../img/01.png) no-repeat center/contain;
}
.list--num li:nth-child(2) figure::before {
  background: url(../img/02.png) no-repeat center/contain;
}
.list--num li:nth-child(3) figure::before {
  background: url(../img/03.png) no-repeat center/contain;
}
.list li {
  text-indent: -1em;
  padding-left: 1em;
}

.tbl {
  width: 100%;
  margin-inline: auto;
  border-collapse: separate;
  border-spacing: 4px 2px;
}
.tbl tr th,
.tbl tr td {
  padding: 10px 15px;
}
.tbl tr th {
  font-weight: 600;
  width: 30%;
  text-align: center;
  background: #ef7d39;
  color: #FEFEFE;
}
.tbl tr td {
  background: #FEFEFE;
}
.tbl:not(.tbl--hours) tr > th {
  width: 30%;
}
.tbl--alternating {
  border-collapse: collapse;
}
.tbl--alternating tr {
  background: #65d14e;
}
.tbl--alternating tr:nth-child(odd) {
  background: #FEFEFE;
}
.tbl--alternating tr th,
.tbl--alternating tr td {
  background: transparent;
  color: #4f3b17;
}
.tbl {
  /* ボーダー */
}
.tbl--border {
  border-collapse: collapse;
}
.tbl--border tr th,
.tbl--border tr td {
  border-bottom: 2px solid #ddd;
  background: transparent;
}
.tbl--border tr th {
  border-bottom: 2px solid #ef7d39;
  color: #4f3b17;
}
.tbl--bubble {
  border-collapse: separate;
  border-spacing: 0 4px;
}
.tbl--bubble tr th,
.tbl--bubble tr td {
  background: #FEFEFE;
  border-radius: 0 8px 8px 0;
}
.tbl--bubble tr td {
  padding-left: 24px;
}
.tbl--bubble tr th {
  background-color: #ef7d39;
  color: #fff;
  border-radius: 8px 0 0 8px;
  position: relative;
  vertical-align: middle;
}
.tbl--bubble tr th::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-left: 10px solid #ef7d39;
  z-index: 2;
}
.tbl--hours {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}
.tbl--hours col.col-time {
  width: 11.5rem;
}
@media (max-width: 600px) {
  .tbl--hours col.col-time {
    width: 9.5rem;
  }
}
.tbl--hours tr th,
.tbl--hours tr td {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 14px 10px;
  text-align: center;
  vertical-align: middle;
  background: #fff;
}
.tbl--hours tr th {
  width: auto;
}
.tbl--hours thead th {
  background: #ef7d39;
  font-weight: 700;
  color: #fff;
}
.tbl--hours thead th:first-child {
  text-align: center;
}
.tbl--hours .nowrap {
  white-space: nowrap;
}
.tbl--hours tbody th {
  text-align: center;
  white-space: nowrap;
  background: #fff;
  font-weight: 700;
  color: #4f3b17;
  width: auto;
}
.tbl--hours tbody td {
  position: relative;
}
.tbl--hours tbody td .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.tbl--hours tbody td[data-open=true]::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: #ef7d39;
}
.tbl--hours tbody td[data-open=false]::before {
  content: "—";
  font-size: 14px;
  line-height: 1;
  opacity: 0.45;
}
.tbl--price tr td {
  border-bottom: 1px solid #ddd;
}
.tbl--price tr th,
.tbl--price tr td {
  vertical-align: middle;
}
.tbl--price tr th {
  width: 40% !important;
}

/* モバイルで詰まりそうなら */
@media (max-width: 480px) {
  .hours__row {
    grid-template-columns: 6em 1fr;
    gap: 8px;
  }
  .tbl--hours th,
  .tbl--hours td {
    padding: 12px 8px;
  }
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.accordion {
  position: relative;
  overflow: hidden;
}
.accordion > .ttl {
  position: relative;
  font-size: 1.6rem;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.accordion > .inner {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.accordion.is-open > .inner {
  max-height: 2000px;
  opacity: 1;
  padding: 12px 16px;
}
.accordion.faq {
  border-color: #09a3df;
}
.accordion.faq > .ttl {
  padding: 16px;
  padding-left: 4em;
  background: #FEFEFE;
  border-radius: 8px;
  border: 1px solid #efefef;
}
.accordion.faq > .ttl::before {
  content: "Q";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  inline-size: 36px;
  block-size: 36px;
  border-radius: 50%;
  background: #09a3df;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.accordion.faq > .ttl::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  inline-size: 10px;
  block-size: 10px;
  border-right: 2px solid #09a3df;
  border-bottom: 2px solid #09a3df;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.25s ease;
}
.accordion.faq > .ttl:hover {
  background: rgb(193.675, 236.025, 252.525);
}
.accordion.faq > .inner {
  position: relative;
  margin-top: 4px;
}
.accordion.faq > .inner::before {
  content: "A";
  position: absolute;
  left: 16px;
  top: 1em;
  inline-size: 32px;
  block-size: 32px;
  border-radius: 50%;
  background: #65d14e;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.accordion.faq > .inner p {
  margin: 0;
  padding-left: 3em;
  padding-right: 2em;
  line-height: 1.8;
}
.accordion.faq.is-open > .ttl::after {
  transform: translateY(-50%) rotate(-135deg);
}
.accordion.faq.is-open > .inner {
  padding: 8px 16px;
}
.accordion.faq.is-open > .inner::before {
  opacity: 1;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.gallery img {
  display: inline-block;
  width: calc((100% - 30px) / 3);
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 350px;
}
.gallery--picture picture {
  display: inline-block;
  width: calc((100% - 30px) / 3);
}
.gallery--picture picture img {
  width: 100%;
}

.pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  padding: 0 10px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333333;
  font-weight: 700;
}
.pagination .is-current {
  background: #09a3df;
  color: #FEFEFE;
  border-color: #09a3df;
}

/* Swiper base fix */
.swiper {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  position: relative;
}
.swiper-slide img,
.swiper-slide picture {
  display: block;
  width: 100%;
  height: clamp(340px, 56vw, 700px);
  -o-object-fit: cover;
     object-fit: cover;
}

.ggmap iframe {
  height: 350px;
  width: 100%;
}

/* ==============================
  Voice（お客様の声）
============================== */
.voice {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #ddd;
}
.voice:hover {
  transform: translateY(-3px);
}
.voice__img {
  width: 300px;
  text-align: center;
}
.voice__img img {
  margin: auto;
  width: 80%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.voice__body {
  width: calc(100% - 340px);
  padding: 20px;
  line-height: 1.8;
}
.voice__name {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: clamp(15px, 1.8vw, 17px);
  color: #ef7d39;
}
.voice__comment {
  font-size: clamp(14px, 1.6vw, 16px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-grid {
  display: grid;
}

.d-none {
  display: none !important;
}

.flex {
  display: flex;
}
.flex.fd-row {
  flex-direction: row;
}
.flex.fd-col {
  flex-direction: column;
}

.ai-start {
  align-items: flex-start;
}

.ai-center {
  align-items: center;
}

.ai-end {
  align-items: flex-end;
}

.ai-stretch {
  align-items: stretch;
}

.jc-start {
  justify-content: flex-start;
}

.jc-center {
  justify-content: center;
}

.jc-end {
  justify-content: flex-end;
}

.jc-between {
  justify-content: space-between;
}

.fw-wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid--cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid--cols-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gap-4 {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.gap-40 {
  gap: 40px;
}

.gap-60 {
  gap: 60px;
}

.gap-80 {
  gap: 80px;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.ml-5 {
  margin-left: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.pt-5 {
  padding-top: 5px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pl-5 {
  padding-left: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.mt-8 {
  margin-top: 8px;
}

.mb-8 {
  margin-bottom: 8px;
}

.ml-8 {
  margin-left: 8px;
}

.mr-8 {
  margin-right: 8px;
}

.pt-8 {
  padding-top: 8px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pl-8 {
  padding-left: 8px;
}

.pr-8 {
  padding-right: 8px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.mt-12 {
  margin-top: 12px;
}

.mb-12 {
  margin-bottom: 12px;
}

.ml-12 {
  margin-left: 12px;
}

.mr-12 {
  margin-right: 12px;
}

.pt-12 {
  padding-top: 12px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pl-12 {
  padding-left: 12px;
}

.pr-12 {
  padding-right: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.ml-16 {
  margin-left: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.pt-16 {
  padding-top: 16px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pl-16 {
  padding-left: 16px;
}

.pr-16 {
  padding-right: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.ml-24 {
  margin-left: 24px;
}

.mr-24 {
  margin-right: 24px;
}

.pt-24 {
  padding-top: 24px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pl-24 {
  padding-left: 24px;
}

.pr-24 {
  padding-right: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.ml-32 {
  margin-left: 32px;
}

.mr-32 {
  margin-right: 32px;
}

.pt-32 {
  padding-top: 32px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pl-32 {
  padding-left: 32px;
}

.pr-32 {
  padding-right: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.ml-60 {
  margin-left: 60px;
}

.mr-60 {
  margin-right: 60px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pl-60 {
  padding-left: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-80 {
  margin-left: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pl-80 {
  padding-left: 80px;
}

.pr-80 {
  padding-right: 80px;
}

.b-m5 {
  margin-bottom: 5px;
}

.b-m10 {
  margin-bottom: 10px;
}

.b-m20 {
  margin-bottom: 20px;
}

.b-m30 {
  margin-bottom: 30px;
}

.b-m40 {
  margin-bottom: 40px;
}

.b-m60 {
  margin-bottom: 60px;
}

.b-m80 {
  margin-bottom: 80px;
}

.t-m10 {
  margin-top: 10px;
}

.t-m20 {
  margin-top: 20px;
}

.t-m40 {
  margin-top: 40px;
}

.w-100pe {
  width: 100%;
}

.h-100pe {
  height: 100%;
}

.asp-1-1 {
  aspect-ratio: 1/1;
}

.img-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.rounded-4 {
  border-radius: 4px;
}

.rounded-8 {
  border-radius: 8px;
}

.rounded-12 {
  border-radius: 12px;
}

.rounded-16 {
  border-radius: 16px;
}

.rounded-24 {
  border-radius: 24px;
}

.rounded-32 {
  border-radius: 32px;
}

.b-r8 {
  border-radius: 8px;
}

.b-r16 {
  border-radius: 16px;
}

.b-r24 {
  border-radius: 24px;
}

.b-r50pe {
  border-radius: 50%;
}

.line-h200 {
  line-height: 2;
}

.text-center,
.tcenter,
.tcenter_pc {
  text-align: center;
}

.text-right,
.tright {
  text-align: right;
}

.bold {
  font-weight: 700;
}

.bold2 {
  font-weight: 900;
}

.bigger {
  font-size: 1.2em;
  line-height: 2;
}

.smaller {
  font-size: 0.65em;
  letter-spacing: 0;
}

.en {
  font-family: "Lato", sans-serif;
  font-weight: 400;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.color01 {
  color: #ef7d39;
}

.color02 {
  color: #09a3df;
}

.color-w {
  color: #FEFEFE !important;
}

.bg_line {
  background: #219d01 !important;
}

.bg_instagram {
  background: #e4405f !important;
}

.bg_line {
  background: #219d01 !important;
}

.bg_youtube {
  background: #ff0000 !important;
}

.para-gap p + p {
  margin-top: 20px;
}
.para-gap--large p + p {
  margin-top: 30px;
}
.para-gap--mini p + p {
  margin-top: 12px;
}

.bg {
  position: relative;
}
.bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg--img01::after {
  background: url(../img/bg-01.png) no-repeat center/contain;
  opacity: 0.6;
}
.bg--img02 {
  margin-top: 100px;
}
.bg--img02::after {
  background: url(../img/wave3.svg) no-repeat center bottom/100%;
  top: -150px;
  height: 190px;
}
.bg--img03::after {
  background: url(../img/wave4.svg) no-repeat center bottom/100%;
  top: -150px;
  height: 190px;
  z-index: 1;
}
.bg--img04::after {
  background: url(../img/bg-04-1.png) no-repeat top left/100%;
  width: 60%;
  left: -20%;
  opacity: 0.6;
}
.bg--img04::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 100%;
  background: url(../img/bg-04-2.png) no-repeat bottom left/100%;
  transform: scale(-1, 1);
  opacity: 0.6;
}
.bg--round {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 60px;
  overflow: hidden;
}

.bg--w {
  background: #fff;
}

.bg--w2 {
  background: rgba(255, 255, 255, 0.5);
}

.bg--cream {
  background: #c9b6ab;
}

.bg--main {
  background: #ef7d39;
}

.bg--sub {
  background: #09a3df;
}

.bg--sub2 {
  background: #65d14e;
}

.bg--gray {
  background: #f5f5f5;
}

.u-decor {
  position: absolute;
  bottom: 10%;
  inline-size: min(28vw, 320px);
  opacity: 0.9;
  pointer-events: none;
  width: -moz-fit-content;
  width: fit-content;
}
.u-decor img {
  display: block;
  inline-size: 100%;
  height: auto;
}
.u-decor--left {
  left: clamp(8px, 4vw, 40px);
  top: 20%;
}
.u-decor--right {
  right: clamp(8px, 4vw, 40px);
  bottom: 20%;
}
.u-decor.w150 img {
  width: 150px;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z--1 {
  z-index: -1;
}

.z-1 {
  z-index: 1;
}

.z-5 {
  z-index: 5;
}

.z-10 {
  z-index: 10;
}

.spbr {
  display: none;
}

.hidden {
  overflow: hidden;
}

.marker {
  background: linear-gradient(transparent 70%, rgba(255, 147, 109, 0.3) 0%);
  display: inline;
  border-radius: 2px;
  padding: 0 0.1em;
}

.text-link a {
  color: #ef7d39;
  text-decoration: underline;
}
.text-link.white a {
  color: #FEFEFE;
}

.shadow {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
}

.shadow-md {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.shadow-lg {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.tcenter_sp {
  text-align: center;
}

[data-ani] {
  --a-duration: 3.8s;
  --a-delay: 0s;
  --a-distance: 24px;
  --a-ease: cubic-bezier(.2, .7, .2, 1);
  --a-blur: 0px;
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity var(--a-duration) var(--a-ease) var(--a-delay), transform var(--a-duration) var(--a-ease) var(--a-delay), filter var(--a-duration) var(--a-ease) var(--a-delay);
  will-change: opacity, transform, filter;
}
[data-ani].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* フェード（指定がある時だけ透明スタート） */
[data-ani*=fade]:not(.is-visible) {
  opacity: 0;
}

[data-ani*=up]:not(.is-visible) {
  transform: translate3d(0, var(--a-distance), 0);
}

[data-ani*=down]:not(.is-visible) {
  transform: translate3d(0, calc(var(--a-distance) * -1), 0);
}

[data-ani*=left]:not(.is-visible) {
  transform: translate3d(var(--a-distance), 0, 0);
}

[data-ani*=right]:not(.is-visible) {
  transform: translate3d(calc(var(--a-distance) * -1), 0, 0);
}

[data-ani*=zoom-in]:not(.is-visible) {
  transform: scale(0.94);
}

[data-ani*=zoom-out]:not(.is-visible) {
  transform: scale(1.06);
}

[data-ani*=blur]:not(.is-visible) {
  filter: blur(var(--a-blur, 8px));
}

[data-ani*=rotate]:not(.is-visible) {
  transform: rotate(2.5deg);
}

.ani-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}
.ani-stagger > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--a-ease) var(--a-delay), transform 0.6s var(--a-ease) var(--a-delay);
}

.ani-stagger.is-visible > *:nth-child(1) {
  transition-delay: calc(var(--a-delay, 0s) + 0s);
}

.ani-stagger.is-visible > *:nth-child(2) {
  transition-delay: calc(var(--a-delay, 0s) + 0.06s);
}

.ani-stagger.is-visible > *:nth-child(3) {
  transition-delay: calc(var(--a-delay, 0s) + 0.12s);
}

.ani-stagger.is-visible > *:nth-child(4) {
  transition-delay: calc(var(--a-delay, 0s) + 0.18s);
}

.ani-stagger.is-visible > *:nth-child(5) {
  transition-delay: calc(var(--a-delay, 0s) + 0.24s);
}

.ani-stagger.is-visible > *:nth-child(6) {
  transition-delay: calc(var(--a-delay, 0s) + 0.3s);
}

.ani-stagger.is-visible > *:nth-child(7) {
  transition-delay: calc(var(--a-delay, 0s) + 0.36s);
}

.ani-stagger.is-visible > *:nth-child(8) {
  transition-delay: calc(var(--a-delay, 0s) + 0.42s);
}

.ani-stagger.is-visible > *:nth-child(9) {
  transition-delay: calc(var(--a-delay, 0s) + 0.48s);
}

.ani-stagger.is-visible > *:nth-child(10) {
  transition-delay: calc(var(--a-delay, 0s) + 0.54s);
}

@media (prefers-reduced-motion: reduce) {
  [data-ani],
  .ani-stagger > * {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
[data-fx] {
  --fx-duration: 6s;
  --fx-delay: 0s;
  --fx-amp: 8px;
  /* 振幅(px) */
  --fx-rot: 3deg;
  /* 回転幅 */
  --fx-ease: ease-in-out;
  --fx-iter: infinite;
  --fx-dir: normal;
  --fx-fill: both;
  display: inline-block;
  will-change: transform, filter;
  animation-delay: var(--fx-delay);
  animation-iteration-count: var(--fx-iter);
  animation-direction: var(--fx-dir);
  animation-fill-mode: var(--fx-fill);
  animation-timing-function: var(--fx-ease);
}

/* ふわふわ(上下) */
[data-fx*=float] {
  animation-name: fx-float-y;
  animation-duration: var(--fx-duration);
}

@keyframes fx-float-y {
  0% {
    transform: translateY(calc(var(--fx-amp) * -1));
  }
  100% {
    transform: translateY(var(--fx-amp));
  }
}
/* 横ゆらゆら */
[data-fx*=float][data-fx*=x],
[data-fx*=sway][data-fx*=x] {
  animation-name: fx-float-x;
}

@keyframes fx-float-x {
  0% {
    transform: translateX(calc(var(--fx-amp) * -1));
  }
  100% {
    transform: translateX(var(--fx-amp));
  }
}
/* なめらかスウェイ（回転＋上下少し） */
[data-fx*=sway] {
  animation-name: fx-sway;
  transform-origin: center;
  animation-duration: var(--fx-duration);
}

@keyframes fx-sway {
  0% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(calc(var(--fx-rot) * -1));
  }
  50% {
    transform: translateY(calc(var(--fx-amp) * 0.35)) rotate(var(--fx-rot));
  }
  100% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(calc(var(--fx-rot) * -1));
  }
}
/* なめらかスウェイ反転（回転＋上下少し） */
[data-fx*=sway-rev] {
  animation-name: fx-sway-rev;
}

@keyframes fx-sway-rev {
  0% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(var(--fx-rot));
  }
  50% {
    transform: translateY(calc(var(--fx-amp) * 0.35)) rotate(calc(var(--fx-rot) * -1));
  }
  100% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(var(--fx-rot));
  }
}
/* 振り子（支点を上に） */
[data-fx*=pendulum] {
  transform-origin: top center;
  animation-name: fx-pendulum;
}

@keyframes fx-pendulum {
  0% {
    transform: rotate(calc(var(--fx-rot) * -1));
  }
  50% {
    transform: rotate(var(--fx-rot));
  }
  100% {
    transform: rotate(calc(var(--fx-rot) * -1));
  }
}
/* くるくる（連続回転） */
[data-fx*=spin] {
  animation-name: fx-spin;
  animation-duration: calc(var(--fx-duration) * 1.2);
  animation-timing-function: linear;
}

@keyframes fx-spin {
  to {
    transform: rotate(360deg);
  }
}
/* ぷかぷか + ちょい拡縮 */
[data-fx*=float][data-fx*=soft],
[data-fx*=float][data-fx*=gentle] {
  animation-name: fx-float-soft;
}

@keyframes fx-float-soft {
  0% {
    transform: translateY(calc(var(--fx-amp) * -1)) scale(0.995);
  }
  100% {
    transform: translateY(var(--fx-amp)) scale(1.005);
  }
}
/* 小刻みゆれ（やわらか） */
[data-fx*=wiggle] {
  animation-name: fx-wiggle;
  animation-duration: calc(var(--fx-duration) * 0.6);
}

@keyframes fx-wiggle {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(calc(var(--fx-rot) * 0.6));
  }
  50% {
    transform: rotate(calc(var(--fx-rot) * -0.6));
  }
  75% {
    transform: rotate(calc(var(--fx-rot) * 0.4));
  }
  100% {
    transform: rotate(0deg);
  }
}
/* 速さ */
[data-fx*=fast] {
  animation-duration: calc(var(--fx-duration) * 0.3);
}

[data-fx*=slow] {
  animation-duration: calc(var(--fx-duration) * 1.6);
}

[data-fx*=slower] {
  animation-duration: calc(var(--fx-duration) * 2.2);
}

/* 振幅 */
[data-fx*=sm] {
  --fx-amp: 6px;
  --fx-rot: 2deg;
}

[data-fx*=md] {
  --fx-amp: 10px;
  --fx-rot: 3deg;
}

[data-fx*=lg] {
  --fx-amp: 16px;
  --fx-rot: 5deg;
}

/* 方向／挙動 */
[data-fx*=alternate] {
  animation-direction: alternate;
}

/* デフォの往復を明示したい時 */
[data-fx*=reverse] {
  --fx-dir: reverse;
}

/* 回転の反転などに */
[data-fx*=pause-hover]:hover {
  animation-play-state: paused;
}

/* 親が見えたら動かす（入場後に発動させたい場合） */
.is-visible [data-fx-start=visible] {
  animation-play-state: running;
}

[data-fx-start=visible] {
  animation-play-state: paused;
}

/* アクセシビリティ：動きを抑制 */
@media (prefers-reduced-motion: reduce) {
  [data-fx] {
    animation: none !important;
    transform: none !important;
  }
}
:root {
  --green-900: #2f7360;
  --green-800: #2f7360;
  --green-700: #3e8a74;
  --green-50: #e6efeb;
  --cream: #f8f5f0;
  --sand: #ede8e0;
  --sand-2: #f3efe7;
  --sand-dark: #d8cfbf;
  --ink: #1b1b16;
  --ink-2: #514e47;
  --ink-3: #8c8880;
  --line: #dfd8cc;
  --line-2: #e8e2d6;
  --cta: #d4874d;
  --cta-dark: #b76d34;
  --white: #ffffff;
  --f-jp:
    "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
  --f-round: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  --f-en: "Tilt Warp", "Zen Kaku Gothic New", sans-serif;
  --f-serif: "Cormorant Garamond", serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-jp);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(248, 245, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(223, 216, 204, 0.5);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 72px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-family: var(--f-round);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  position: relative;
  padding: 6px 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  transition: color 0.15s;
}

.nav a .en {
  font-family: var(--f-en);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  margin-top: 3px;
  text-transform: uppercase;
}

.nav a.active {
  color: var(--green-800);
  font-weight: 700;
}

.nav a.active .en {
  color: var(--cta);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 18px;
  height: 2px;
  background: var(--cta);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav a:hover {
  color: var(--green-800);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cta);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 0 0 #8a4f24;
  transition: top 0.12s, box-shadow 0.12s;
  position: relative;
  top: 0;
}

.header-cta:hover {
  top: 2px;
  box-shadow: 0 2px 0 0 #8a4f24;
}

.header-cta svg {
  width: 16px;
  height: 16px;
}

.page-hero {
  background: var(--green-900);
  color: #fff;
  padding: 224px 40px 120px;
  text-align: center;
  position: relative;
}

.page-hero .eyebrow {
  font-family: var(--f-en);
  font-weight: 400;
  font-size: 56px;
  letter-spacing: 0.08em;
  color: var(--sand-dark);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.page-hero h1 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 36px;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin: 8px 0 4px;
}

.faq-section {
  padding: 100px 40px 110px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 72px;
}

.faq-category:last-child {
  margin-bottom: 0;
}

.faq-cat-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}

.faq-cat-icon {
  width: 32px;
  height: 32px;
  color: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-cat-icon svg {
  width: 28px;
  height: 28px;
}

.faq-cat-title {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 20px;
  color: var(--ink);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background 0.15s;
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 17px;
  color: var(--green-900);
  line-height: 1.6;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-item[open] .faq-q {
  background: #faf8f3;
}

.faq-item:hover .faq-q {
  background: #faf8f3;
}

.q-badge,
.a-badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 13px;
}

.q-badge {
  background: var(--green-900);
}

.a-badge {
  background: var(--cta);
}

.q-text {
  flex: 1;
  font-family: var(--f-round);
  font-weight: inherit;
  font-size: inherit;
  color: var(--ink);
  display: inline;
  margin: 0;
  line-height: inherit;
}

.q-caret {
  flex-shrink: 0;
  color: var(--ink-3);
  transition: transform 0.2s;
}

.faq-item[open] .q-caret {
  transform: rotate(180deg);
  color: var(--ink);
}

.faq-a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 26px 0 26px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.95;
  padding-left: 44px;
}

.faq-a-content {
  flex: 1;
  padding-top: 4px;
}

.faq-a-content p {
  margin: 0;
}

.faq-a-content ul {
  list-style: disc;
  padding-left: 20px;
  margin: 4px 0;
}

.faq-a-content li {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 2;
}

.faq-a-content .note {
  display: block;
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--ink-3);
}

.trust-strip {
  background: #2f7360;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
}

.trust-top,
.trust-bot {
  position: absolute;
  left: -2px;
  width: calc(100% + 4px);
  height: 120px;
  z-index: 3;
  pointer-events: none;
  display: block;
}

.trust-top {
  top: -2px;
}

.trust-bot {
  bottom: -2px;
}

.final-cta {
  padding: 110px 0;
  background: var(--green-900);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta .fc-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.final-cta h2 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 40px;
  line-height: 1.5;
  margin-bottom: 22px;
}

.final-cta .fc-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 2;
  margin-bottom: 44px;
}

.fc-ctas {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.fc-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 26px 16px 28px;
  border-radius: 18px;
  font-family: var(--f-round);
  font-weight: 900;
  text-align: center;
  position: relative;
  top: 0;
  transition: top 0.12s, box-shadow 0.12s;
  text-decoration: none;
}

.fc-btn svg {
  display: block;
  margin-bottom: 2px;
}

.fc-btn .fc-btn-label {
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.fc-btn .fc-btn-sub {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.8;
  letter-spacing: 0.15em;
  margin-top: 2px;
}

.fc-btn-reserve {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 6px 0 0 #8a4f24;
}

.fc-btn-reserve:hover {
  top: 3px;
  box-shadow: 0 3px 0 0 #8a4f24;
}

.fc-btn-tel {
  background: #fff;
  color: var(--green-900);
  box-shadow: 0 6px 0 0 #c8bfa8;
}

.fc-btn-tel .fc-btn-label {
  font-family: var(--f-en);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.02em;
}

.fc-btn-tel:hover {
  top: 3px;
  box-shadow: 0 3px 0 0 #c8bfa8;
}

.fc-btn-line {
  background: #06c755;
  color: #fff;
  box-shadow: 0 6px 0 0 #04933f;
}

.fc-btn-line:hover {
  top: 3px;
  box-shadow: 0 3px 0 0 #04933f;
}

.final-cta.trust-strip {
  padding: 0;
}

.final-cta.trust-strip .fc-inner {
  padding: 160px 40px;
  position: relative;
  z-index: 2;
}

.footer-hero {
  position: relative;
  min-height: 420px;
  background: #1e5443;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.footer-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
  padding: 70px 60px;
  color: #fff;
}

.foot-brand img {
  height: 84px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 14px;
  border-radius: 8px;
}

.foot-addr {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 2;
  font-family: var(--f-round);
  letter-spacing: 0.04em;
}

.foot-addr .foot-tel {
  font-family: var(--f-en);
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #fff;
  display: block;
  margin-top: 6px;
}

.foot-nav {
  display: flex;
  gap: 44px;
  align-items: flex-end;
}

.foot-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.15s;
}

.foot-nav a span {
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.08em;
}

.foot-nav a:hover {
  color: var(--cta);
}

.foot-contact-btn {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--cta);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 0 0 #8a4f24;
  text-decoration: none;
  position: relative;
  top: 0;
  transition: top 0.15s, box-shadow 0.15s;
}

.foot-contact-btn:hover {
  top: 3px;
  box-shadow: 0 3px 0 0 #8a4f24;
}

.foot-contact-btn span {
  font-family: var(--f-round);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
}

.foot-copy-bar {
  background: #163d32;
  color: rgba(255, 255, 255, 0.55);
  padding: 20px 40px;
  text-align: center;
  font-family: var(--f-en);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 40px 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  color: var(--ink-3, #8c8880);
  background: var(--cream);
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  color: var(--ink-3, #8c8880);
  margin-left: 6px;
}

.breadcrumb a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 13px;
  font-family: var(--f-round);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}

.breadcrumb a:hover {
  text-decoration: underline;
  color: var(--cta);
}

.breadcrumb [aria-current] {
  color: var(--ink-3);
}

.foot-shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 18px;
  background: var(--cta, #d4874d);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.2s;
}

.foot-shop-btn:hover {
  transform: translateX(4px);
}

.foot-shop-btn svg {
  width: 16px;
  height: 16px;
}

.header-cta.active {
  background: var(--cta-dark);
}

.section {
  padding: 110px 40px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.section-head .eyebrow {
  font-family: var(--f-en);
  font-weight: 400;
  font-size: 60px;
  letter-spacing: 0.02em;
  color: var(--green-800);
  display: inline-flex;
  margin-bottom: 22px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  line-height: 1;
  text-transform: none;
}

.section-head h2 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}

.section-head .sub {
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 16px;
  line-height: 1.9;
}

.section.on-sand {
  background: var(--sand-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 46px 30px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-900);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.contact-icon svg {
  width: 26px;
  height: 26px;
}

.contact-card h3 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 10px;
}

.contact-card p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.9;
  margin: 0 0 18px;
}

.contact-card .tel-num {
  font-family: var(--f-en);
  font-weight: 500;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: 0.03em;
  margin: 8px 0 12px;
  line-height: 1;
}

.contact-card .tel-note {
  font-size: 12px;
  color: var(--ink-3);
  margin: 0;
}

.contact-card .btn-line,
.contact-card .btn-form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--cta);
  color: #fff;
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 14px;
  margin-top: auto;
  box-shadow: 0 4px 0 0 #8a4f24;
  position: relative;
  top: 0;
  transition: top 0.12s, box-shadow 0.12s;
}

.contact-card .btn-line:hover,
.contact-card .btn-form:hover {
  top: 2px;
  box-shadow: 0 2px 0 0 #8a4f24;
}

.form-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.form-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 28px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line-2);
}

.form-tabs input {
  display: none;
}

.form-tabs label {
  display: block;
  padding: 20px 24px;
  text-align: center;
  cursor: pointer;
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-2);
  background: #f5f2ec;
  transition: background 0.15s, color 0.15s;
}

.form-tabs label:hover {
  background: #eee8dc;
}

.form-tabs #tab-reserve:checked ~ .form-tabs-labels label[for=tab-reserve],
.form-tabs #tab-contact:checked ~ .form-tabs-labels label[for=tab-contact] {
  background: #fff;
  color: var(--green-900);
}

.tab-container {
  position: relative;
}

.tab-radio {
  display: none;
}

.tabs-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
  background: #f5f2ec;
}

.tabs-bar label {
  padding: 20px 24px;
  text-align: center;
  cursor: pointer;
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-2);
  background: #f5f2ec;
  transition: background 0.15s, color 0.15s;
  border-right: 1px solid var(--line-2);
}

.tabs-bar label:last-child {
  border-right: 0;
}

.tabs-bar label:hover {
  background: #eee8dc;
}

#tab-reserve:checked ~ .tabs-bar label[for=tab-reserve] {
  background: #fff;
  color: var(--green-900);
  box-shadow: inset 0 -3px 0 var(--green-900);
}

#tab-contact:checked ~ .tabs-bar label[for=tab-contact] {
  background: #fff;
  color: var(--green-900);
  box-shadow: inset 0 -3px 0 var(--green-900);
}

.tab-panel {
  display: none;
}

#tab-reserve:checked ~ .tab-reserve-panel {
  display: block;
}

#tab-contact:checked ~ .tab-contact-panel {
  display: block;
}

.info-box {
  background: #f5f2ec;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 20px 26px;
  margin-bottom: 36px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 2;
}

.info-box p {
  margin: 0;
}

.form-field {
  margin-bottom: 26px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 10px;
}

.req-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--cta);
  color: #fff;
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--f-jp);
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: 0;
  border-color: var(--green-900);
  box-shadow: 0 0 0 3px rgba(47, 115, 96, 0.12);
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.9;
}

.form-input::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: var(--ink-3);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--ink-3);
}

.form-radio-row {
  display: flex;
  gap: 22px;
  padding: 6px 0;
}

.form-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink);
}

.form-radio input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  position: relative;
  cursor: pointer;
  margin: 0;
}

.form-radio input:checked {
  border-color: var(--green-900);
}

.form-radio input:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--green-900);
}

.file-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.file-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 6px;
  cursor: pointer;
  background: #eee8dc;
  color: var(--ink-2);
  border: 1px solid var(--line);
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 13px;
  transition: background 0.15s;
}

.file-btn:hover {
  background: #e4ddcd;
}

.file-name {
  font-size: 13px;
  color: var(--ink-3);
}

.file-note {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-3);
}

.submit-wrap {
  text-align: center;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 70px;
  border-radius: 999px;
  background: var(--cta);
  color: #fff;
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 0 0 #8a4f24;
  position: relative;
  top: 0;
  transition: top 0.12s, box-shadow 0.12s;
  cursor: pointer;
}

.btn-submit:hover {
  top: 3px;
  box-shadow: 0 3px 0 0 #8a4f24;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.about-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  overflow: hidden;
}

.about-photo {
  aspect-ratio: 16/8;
  background: #d5d1c8;
  overflow: hidden;
}

.about-photo .about-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.about-body {
  padding: 28px 30px 30px;
}

.about-body h3 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 12px;
}

.about-body p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.95;
}

.about-closing {
  text-align: center;
  margin-top: 64px;
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  line-height: 2.3;
}

.about-closing p {
  margin: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  background: #fff;
  border: 0;
  border-radius: 20px;
  padding: 44px 32px 34px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-900);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 18px;
  margin: 0 auto 22px;
}

.why-card h3 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 14px;
}

.why-card p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.9;
  text-align: left;
}

.callout {
  background: var(--green-900);
  color: #fff;
  padding: 72px 40px;
  text-align: center;
}

.callout h2 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 26px;
  color: #fff;
  margin: 0 0 14px;
}

.callout p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}

.btn-pop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cta);
  color: #fff;
  padding: 20px 36px 22px;
  border-radius: 999px;
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 0 0 #8a4f24;
  position: relative;
  top: 0;
  transition: transform 0.12s, box-shadow 0.12s;
  gap: 10px;
  min-width: 300px;
  border: 0;
}

.btn-pop:hover {
  top: 3px;
  box-shadow: 0 3px 0 0 #8a4f24;
}

.flow-list {
  max-width: 980px;
  margin: 0 auto;
}

.flow-item {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 36px;
  align-items: flex-start;
  padding: 36px 10px;
  border-bottom: 1px solid var(--line-2);
}

.flow-item:first-child {
  padding-top: 10px;
}

.flow-item:last-child {
  border-bottom: 0;
  padding-bottom: 10px;
}

.step-badge {
  width: 74px;
  height: 74px;
  border-radius: 10px;
  background: var(--green-900);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--f-round);
  font-weight: 700;
  gap: 2px;
}

.step-badge .lbl {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
}

.step-badge .num {
  font-family: var(--f-en);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.flow-body h3 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 20px;
  color: var(--ink);
  margin: 8px 0 14px;
}

.flow-body p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.95;
  margin-bottom: 10px;
}

.flow-body ul {
  list-style: disc;
  padding-left: 22px;
  margin: 4px 0 10px;
}

.flow-body li {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 2;
}

.flow-note {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 6px;
}

.notice-box {
  max-width: 980px;
  margin: 48px auto 0;
  background: #f5f2ec;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 28px 36px;
}

.notice-box h4 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 14px;
}

.notice-box ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0;
}

.notice-box li {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 2;
}

.ins-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.ins-block {
  padding: 30px 0 36px;
  border-bottom: 1px solid var(--line-2);
}

.ins-block:first-child {
  padding-top: 8px;
}

.ins-block:last-child {
  border-bottom: 0;
}

.ins-title {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ins-title::before {
  content: "";
  width: 4px;
  height: 20px;
  background: var(--green-900);
  border-radius: 2px;
}

.ins-block > p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 2;
  margin-bottom: 10px;
}

.ins-block ul {
  list-style: disc;
  padding-left: 22px;
  margin: 10px 0;
}

.ins-block li {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 2;
}

.ins-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  overflow: hidden;
  margin: 6px 0 14px;
  background: #fff;
}

.ins-table th,
.ins-table td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line-2);
  font-size: 14px;
  color: var(--ink);
  vertical-align: middle;
}

.ins-table tbody tr:last-child td,
.ins-table tbody tr:last-child th {
  border-bottom: 0;
}

.ins-table thead th {
  background: var(--green-900);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

.ins-table tbody th {
  background: #f5f2ec;
  font-weight: 700;
  color: var(--ink);
  width: 280px;
}

.ins-note {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.9;
  margin-top: 8px;
}

.ins-footer-notes {
  max-width: 1100px;
  margin: 40px auto 0;
  text-align: center;
}

.ins-footer-notes p {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 2;
  margin: 0;
}

.section.on-dark {
  background: var(--green-900);
  color: #fff;
}

.section.on-dark .section-head h2 {
  color: #fff;
}

.section.on-dark .section-head .eyebrow {
  color: #a8c9af;
}

.section.on-dark .section-head .sub {
  color: rgba(255, 255, 255, 0.8);
}

.rate-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  overflow: hidden;
}

.rate-table th,
.rate-table td {
  padding: 24px 28px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--line-2);
  font-size: 15px;
}

.rate-table thead th {
  background: var(--green-900);
  font-weight: 700;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.rate-table tbody tr:last-child td {
  border-bottom: 0;
}

.rate-table .col-tag {
  width: 230px;
}

.rate-table .col-price {
  width: 220px;
  text-align: right;
}

.rate-table .tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  background: var(--green-50);
  color: var(--green-900);
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-right: 14px;
  vertical-align: middle;
}

.rate-table .tag.busy {
  background: #fbeadb;
  color: var(--cta-dark);
}

.rate-table .price {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 30px;
  color: var(--cta);
  letter-spacing: 0.02em;
}

.rate-table .price .unit {
  font-family: var(--f-jp);
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
  margin-left: 2px;
}

.notes {
  margin-top: 20px;
}

.notes p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 2;
}

.season-detail {
  margin-top: 48px;
  background: #fff;
  border-radius: 10px;
  padding: 40px 48px;
  border: 1px solid var(--line-2);
  box-shadow: 0 2px 20px -10px rgba(0, 0, 0, 0.06);
}

.season-detail h3 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 17px;
  text-align: center;
  color: var(--ink);
  margin-bottom: 28px;
}

.season-detail dl {
  display: block;
}

.season-detail .row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-2);
}

.season-detail .row:last-child {
  border-bottom: 0;
}

.season-detail dt {
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-2);
}

.season-detail dd {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.9;
}

.season-detail dd p {
  margin: 0;
}

.cal-box {
  text-align: center;
}

.cal-box svg {
  margin: 0 auto 18px;
}

.cal-box .cal-title {
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink-2);
  margin-bottom: 8px;
}

.cal-box .cal-sub {
  font-size: 13px;
  color: var(--ink-3);
}

.cal-cta {
  text-align: center;
  margin-top: 36px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cta);
  color: #fff;
  padding: 18px 36px;
  border-radius: 999px;
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 6px 0 0 #8a4f24;
  position: relative;
  top: 0;
  transition: top 0.12s, box-shadow 0.12s;
}

.btn-dark:hover {
  top: 3px;
  box-shadow: 0 3px 0 0 #8a4f24;
  background: var(--cta);
}

.sim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sim-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 32px 28px;
  color: var(--ink);
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.25);
}

.sim-card h3 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 19px;
  color: var(--green-900);
  margin: 0 0 4px;
}

.sim-card .sim-sub {
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 24px;
}

.sim-card .sim-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--line-2);
  font-size: 14px;
  color: var(--ink-2);
}

.sim-card .sim-row .v {
  color: var(--ink);
  font-family: var(--f-en);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.sim-card .sim-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
}

.sim-card .sim-total .l {
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.sim-card .sim-total .v {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 22px;
  color: var(--cta);
  letter-spacing: 0.02em;
}

.sim-cta {
  text-align: center;
  margin-top: 48px;
}

.btn-sim {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cta);
  color: #fff;
  padding: 18px 56px;
  border-radius: 999px;
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 0 0 #8a4f24;
  position: relative;
  top: 0;
  transition: top 0.12s, box-shadow 0.12s;
}

.btn-sim:hover {
  top: 2px;
  box-shadow: 0 2px 0 0 #8a4f24;
}

.opt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.opt-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 32px 36px;
}

.opt-card h3 {
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-2);
  margin: 0 0 14px;
}

.opt-card .opt-price {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 26px;
  color: var(--green-900);
  margin-bottom: 14px;
}

.opt-card .opt-price .unit {
  font-family: var(--f-jp);
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
  margin-left: 6px;
}

.opt-card .opt-price.val {
  font-size: 22px;
}

.opt-card p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.9;
}

.rental-title {
  text-align: center;
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
  margin-top: 96px;
  margin-bottom: 40px;
}

.rental-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.rental-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  overflow: hidden;
}

.rental-photo {
  aspect-ratio: 16/13;
  background: #d5d1c8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.rental-photo::before,
.rental-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, transparent calc(50% - 1px), rgba(255, 255, 255, 0.5) 50%, transparent calc(50% + 1px)), linear-gradient(to bottom left, transparent calc(50% - 1px), rgba(255, 255, 255, 0.5) 50%, transparent calc(50% + 1px));
}

.rental-photo .ph-label {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--ink-2);
  font-family: var(--f-round);
  font-weight: 700;
}

.rental-body {
  padding: 22px 24px 26px;
}

.rental-body h4 {
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 8px;
}

.rental-body .r-price {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 20px;
  color: var(--green-900);
  margin-bottom: 10px;
}

.rental-body p {
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.8;
}

.rental-notes {
  text-align: center;
  margin-top: 28px;
  font-size: 12.5px;
  color: var(--ink-3);
}

.rental-notes span {
  margin: 0 8px;
}

.disc-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.disc-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 40px 44px;
}

.disc-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.disc-badge {
  background: var(--green-900);
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  min-width: 100px;
  text-align: center;
}

.disc-title {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 20px;
  color: var(--ink);
}

.disc-desc {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.9;
  margin-bottom: 18px;
}

.disc-desc b {
  font-weight: 900;
  color: var(--ink);
}

.calc-box {
  background: #f5f2ec;
  border-radius: 8px;
  padding: 22px 26px;
}

.calc-box h5 {
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 10px;
}

.calc-box p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 2.1;
  margin: 0;
}

.calc-box p b {
  color: var(--ink);
  font-weight: 700;
}

.disc-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 4px;
}

.disc-table th,
.disc-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line-2);
  font-size: 14px;
  color: var(--ink);
}

.disc-table thead th {
  background: #f5f2ec;
  font-weight: 700;
  color: var(--ink-2);
  font-size: 13px;
}

.disc-table tbody tr:last-child td {
  border-bottom: 0;
}

.disc-table td b {
  font-weight: 700;
}

.sns-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.sns-chip {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-size: 13px;
  color: var(--ink-2);
  font-family: var(--f-round);
  font-weight: 500;
}

.sns-howto {
  background: #f5f2ec;
  border-radius: 8px;
  padding: 20px 24px;
}

.sns-howto h5 {
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 8px;
}

.sns-howto p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.95;
  margin: 0;
}

.sns-howto p b {
  color: var(--ink);
  font-weight: 700;
}

.disc-note {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 14px;
}

.pay-wrap {
  text-align: center;
}

.pay-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pay-icon {
  width: 76px;
  height: 76px;
  border-radius: 10px;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
}

.pay-label {
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.pay-note {
  margin-top: 28px;
  font-size: 12.5px;
  color: var(--ink-3);
}

.cancel-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  overflow: hidden;
}

.cancel-table th,
.cancel-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line-2);
  font-size: 14px;
  color: var(--ink);
}

.cancel-table thead th {
  background: var(--green-900);
  font-weight: 700;
  color: #fff;
  font-size: 13px;
}

.cancel-table tbody tr:last-child td {
  border-bottom: 0;
}

.cancel-table tbody th {
  background: #fff;
  font-weight: 700;
  color: var(--ink);
  width: 220px;
}

.terms-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.terms-chapter {
  margin-top: 44px;
}

.terms-chapter:first-of-type {
  margin-top: 0;
}

.terms-chapter-title {
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 22px;
}

.terms-article {
  margin-bottom: 28px;
}

.terms-article h4 {
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 10px;
}

.terms-article p,
.terms-article li {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 2;
}

.terms-article ul {
  list-style: disc;
  padding-left: 22px;
  margin: 6px 0;
}

.terms-article .follow {
  margin-top: 8px;
}

.rental-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  z-index: 3;
}

.rental-photo:has(img)::after {
  display: none;
}

.rental-note-img {
  font-size: 12px;
  color: var(--ink-3);
  margin: 8px 0 18px;
  text-align: left;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.wrap-wide {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero {
  position: relative;
  padding: 150px 0 60px;
  background: var(--cream);
  overflow: hidden;
}

.hero-typo {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.hero-typo .ykt {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: clamp(52px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--green-900);
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: clamp(10px, 2.2vw, 32px);
  position: relative;
}

.hero-typo .ykt .word {
  display: inline-flex;
  align-items: baseline;
  letter-spacing: -0.03em;
}

.hero-typo .ykt span {
  position: relative;
  display: inline-block;
}

.hero-typo .ykt .accent {
  color: var(--cta);
}

.hero-typo .mts {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.hero-typo .mts.left {
  top: -34px;
  left: 16%;
  width: 72px;
  transform: rotate(-2deg);
}

.hero-typo .mts.right {
  top: -38px;
  right: 16%;
  width: 84px;
  transform: rotate(2deg);
}

.hero-typo .orn-tent {
  position: absolute;
  z-index: 3;
  top: -30px;
  left: calc(50% - 16px);
  width: 32px;
  pointer-events: none;
}

.hero-typo .figurine {
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.hero-typo .figurine.fam {
  top: 8%;
  left: 15%;
  width: 72px;
}

.hero-typo .figurine.berry {
  top: -6%;
  left: 50%;
  width: 44px;
  transform: translateX(-50%);
}

.hero-typo .figurine.hiker {
  top: 8%;
  right: 12%;
  width: 64px;
}

.hero-subline {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  font-family: var(--f-jp);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.36em;
  color: var(--ink);
}

.hero-subline::before,
.hero-subline::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--ink);
  opacity: 0.4;
}

.hero-photo-wrap {
  position: relative;
  z-index: 1;
  width: 95%;
  margin: 44px auto 0;
}

.hero-photo-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/8;
}

.hero-photo-card div,
p,
img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.enjoy-stamp {
  display: none;
}

.footprints {
  display: none;
}

.hero-bottom {
  max-width: 1200px;
  margin: 64px auto 0;
  padding: 0 40px;
  text-align: center;
}

.hero-catch {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hero-catch .drop {
  display: inline-block;
  font-size: 1.55em;
  line-height: 0.9;
  vertical-align: -0.08em;
  font-weight: 900;
}

.hero-catch .drop.green {
  color: var(--green-800);
}

.hero-catch .drop.orange {
  color: var(--cta);
}

.hero-catch small {
  display: block;
  margin-top: 18px;
  font-family: var(--f-jp);
  font-weight: 500;
  font-size: 15px;
  line-height: 2;
  color: var(--ink-2);
  white-space: normal;
}

.hero-ctas {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.btn-pop.green {
  background: var(--green-800);
  color: #fff;
  box-shadow: 0 6px 0 0 #0a2a19;
}

.btn-pop.green:hover {
  box-shadow: 0 3px 0 0 #0a2a19;
}

.btn-pop svg {
  display: none;
}

.hero-ctas .btn-ghost,
.hero-ctas .btn-primary {
  display: none;
}

.hero-eyebrow,
.hero-chips,
.chip,
.sticker,
.hashtape,
.scroll-ind,
.hero-bg {
  display: none;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 34px;
  background: var(--cta);
  color: #fff;
  border-radius: 999px;
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 0 0 #8a4f24;
  transition: top 0.12s, box-shadow 0.12s;
  position: relative;
  top: 0;
}

.btn-primary:hover {
  top: 3px;
  box-shadow: 0 3px 0 0 #8a4f24;
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 32px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 16px;
  transition: background 0.2s, color 0.2s;
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--green-800);
  border-color: #fff;
}

.hero-right,
.hero-photo,
.hero-photo-sub,
.hero-badge {
  display: none;
}

.hero-photo .ph-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  font-family: var(--f-round);
  font-size: 11px;
  color: var(--green-800);
  font-weight: 700;
  letter-spacing: 0.1em;
  display: none;
}

.hero-photo-sub {
  position: absolute;
  bottom: -40px;
  left: -50px;
  width: 240px;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.hero-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 3;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--cta);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 12px 30px -8px rgba(212, 135, 77, 0.6);
  transform: rotate(-8deg);
}

.hero-badge::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.5px dashed rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

.hero-badge small {
  font-size: 10px;
  font-weight: 500;
  display: block;
  margin-top: 2px;
  letter-spacing: 0.1em;
}

.ph-hero-main {
  background: radial-gradient(ellipse at 70% 30%, #b6d1a5 0%, #7fa678 40%, #3b6b4a 100%);
  position: relative;
}

.ph-hero-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 55%, rgba(11, 40, 27, 0.35) 100%), radial-gradient(ellipse 90% 40% at 50% 100%, #1a3d26 0%, rgba(26, 61, 38, 0) 70%);
}

.ph-hero-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, transparent 65%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-photo svg.decor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.trust-stage {
  padding: 140px 0 170px;
  position: relative;
  z-index: 2;
}

.trust-illo-row {
  max-width: 1200px;
  margin: 0 auto -20px;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  height: 110px;
}

.trust-illo {
  display: block;
  height: auto;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.trust-illo-bear {
  position: absolute;
  width: 110px;
  left: 6%;
  top: -6px;
  transform: rotate(-6deg);
}

.trust-illo-van {
  position: absolute;
  width: 140px;
  left: 40%;
  top: 8px;
  transform: rotate(-3deg);
}

.trust-illo-campfire {
  position: absolute;
  width: 120px;
  left: 53%;
  top: 26px;
  transform: rotate(2deg);
}

.trust-illo-star {
  position: absolute;
  width: 42px;
  right: 6%;
  top: -8px;
  transform: rotate(10deg);
  opacity: 0.9;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  text-align: center;
  position: relative;
}

.trust-item .mt-div {
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.trust-icon {
  width: 92px;
  height: 92px;
  flex-shrink: 0;
  background: #fff;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-800);
  box-shadow: 0 10px 20px -6px rgba(0, 0, 0, 0.25), inset 0 0 0 3px rgb(255, 255, 255);
  position: relative;
}

.trust-icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.35);
}

.trust-icon svg {
  width: 44px;
  height: 44px;
  stroke-width: 1.8;
}

.trust-text h3 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: 0.02em;
}

.trust-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

section {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: var(--f-en);
  font-weight: 400;
  font-size: 60px;
  letter-spacing: 0.02em;
  color: var(--green-800);
  margin-bottom: 22px;
  line-height: 1;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 76px;
  height: 56px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 40'><g fill='%231B5E3B'><path d='M12 2 L18 14 L16 14 L20 22 L16 22 L20 32 L4 32 L8 22 L4 22 L8 14 L6 14 Z'/><rect x='11' y='32' width='2' height='4' fill='%236b4a2d'/><path d='M38 6 L46 20 L43 20 L48 28 L43 28 L48 36 L28 36 L33 28 L28 28 L33 20 L30 20 Z'/><rect x='37' y='36' width='2' height='4' fill='%236b4a2d'/></g></svg>");
}

.eyebrow::before {
  transform: scaleX(-1);
}

.section-head.on-dark .eyebrow {
  color: #fff;
}

.section-head.on-dark .eyebrow::before,
.section-head.on-dark .eyebrow::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 40'><g fill='%23ffffff'><path d='M12 2 L18 14 L16 14 L20 22 L16 22 L20 32 L4 32 L8 22 L4 22 L8 14 L6 14 Z'/><rect x='11' y='32' width='2' height='4' fill='%23ffffff' opacity='.7'/><path d='M38 6 L46 20 L43 20 L48 28 L43 28 L48 36 L28 36 L33 28 L28 28 L33 20 L30 20 Z'/><rect x='37' y='36' width='2' height='4' fill='%23ffffff' opacity='.7'/></g></svg>");
}

.section-title {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.section-lead {
  margin-top: 18px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 2;
}

.why {
  padding: 140px 0 100px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.section-head .eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.section-head .eyebrow-row::before,
.section-head .eyebrow-row::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--green-700);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -20px rgba(27, 94, 59, 0.2);
}

.why-photo {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}

.why-photo .num {
  position: absolute;
  top: 18px;
  left: 22px;
  z-index: 3;
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 54px;
  color: #2a5048;
  line-height: 1;
  letter-spacing: -0.02em;
}

.why-photo .tag {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 2;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 11px;
  font-family: var(--f-round);
  font-weight: 700;
  color: var(--green-800);
  letter-spacing: 0.05em;
}

.why-body {
  padding: 28px 28px 0;
}

.why-body h3 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.5;
  color: var(--green-900);
  margin-bottom: 14px;
}

.why-body p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.9;
}

.ph-photo {
  position: absolute;
  inset: 0;
}

.ph-jolybee {
  background: #edddaf;
}

.ph-support {
  background: #edddaf;
}

.ph-clean {
  background: #edddaf;
}

.recommend {
  padding: 100px 0 120px;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.rec-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 0;
}

.rec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(27, 94, 59, 0.18);
}

.rec-photo {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: var(--sand);
}

.rec-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.rec-text {
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.75;
  text-align: center;
  padding: 0 4px 4px;
}

.vehicle {
  padding: 120px 0;
  background: var(--cream);
}

.vehicle-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 80px;
}

.vehicle-photo {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: 24px;
  overflow: visible;
  background: #fff;
}

.vehicle-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 20px;
  border-radius: 24px;
}

.ph-vehicle-main {
  background: radial-gradient(ellipse at 60% 50%, #ead6b0 0%, #b99469 55%, #6b4a2d 100%);
}

.vehicle-photo .photo-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  font-family: var(--f-round);
  font-size: 11px;
  color: var(--green-800);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.vehicle-photo .mini-badge {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--cta);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.14em;
  box-shadow: 0 0 0 6px rgb(248, 245, 240);
  line-height: 1;
  z-index: 2;
}

.vehicle-photo .mini-badge::before {
  content: "★";
  font-size: 13px;
  opacity: 0.9;
  line-height: 1;
}

.vehicle-info .eyebrow {
  margin-bottom: 16px;
}

.vehicle-info h2 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 38px;
  line-height: 1.3;
  color: var(--green-900);
  margin-bottom: 12px;
}

.vehicle-info h2 ruby rt {
  font-size: 0.35em;
  font-weight: 500;
  color: var(--green-700);
  letter-spacing: 0.1em;
}

.vehicle-info .lead {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.7;
}

.vehicle-info .desc {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 2;
  margin-bottom: 32px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.spec {
  background: var(--white);
  border: 0;
  border-radius: 14px;
  padding: 18px 20px;
  position: relative;
}

.spec .label {
  font-family: var(--f-round);
  font-size: 11px;
  color: var(--green-700);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  font-weight: 700;
}

.spec .val {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 16px;
  color: var(--green-900);
  line-height: 1.4;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-round);
  font-weight: 700;
  color: var(--green-800);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--green-800);
  font-size: 15px;
}

.link-arrow:hover {
  color: var(--cta);
  border-color: var(--cta);
}

.vehicle-sub {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border: 0;
  border-radius: 20px;
  padding: 28px 40px 28px 28px;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}

.vehicle-sub-photo {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #fff;
}

.vehicle-sub-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.vehicle-sub-body {
  padding-right: 160px;
}

.vehicle-sub h3 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 22px;
  color: var(--green-900);
  margin-bottom: 8px;
}

.vehicle-sub p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.9;
}

.vehicle-sub .link-arrow {
  position: absolute;
  right: 32px;
  bottom: 28px;
}

.vehicle-all {
  text-align: center;
  margin-top: 48px;
}

.experience {
  padding: 120px 0;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.exp-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.3s;
}

.exp-card:hover {
  transform: translateY(-6px);
}

.exp-head {
  text-align: center;
  margin-bottom: 20px;
}

.exp-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
}

.exp-icon svg {
  width: 100%;
  height: 100%;
}

.exp-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.exp-en {
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 30px;
  color: var(--green-900);
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.exp-jp {
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.2em;
}

.exp-photo {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--sand-dark);
}

.exp-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.exp-body {
  padding: 22px 6px 4px;
  text-align: center;
}

.exp-body h3 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 18px;
  color: var(--green-900);
  margin-bottom: 10px;
  line-height: 1.5;
}

.exp-body p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.95;
}

.center-cta {
  text-align: center;
  margin-top: 64px;
}

.faq {
  padding: 120px 0;
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 16px !important;
  max-width: 900px;
  margin-inline: auto;
}

.faq-card {
  background: #fff;
  border: 0;
  border-radius: 16px;
  padding: 28px 30px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-card:hover {
  border-color: var(--green-700);
  box-shadow: 0 12px 30px -12px rgba(27, 94, 59, 0.15);
}

.faq-q .q-mark {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-800);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--f-en);
  font-size: 13px;
  font-weight: 700;
}

.faq-a em {
  font-style: normal;
  color: var(--ink);
  font-weight: 700;
}

.faq-more {
  text-align: center;
  margin-top: 48px;
}

.price {
  padding: 110px 0;
  background: var(--green-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.price .section-head {
  position: relative;
  z-index: 1;
}

.price .eyebrow {
  color: #a8c9af;
}

.price .section-title {
  color: #fff;
}

.price .section-lead {
  color: rgba(255, 255, 255, 0.75);
}

.price-table {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
}

.price-head {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 20px;
  padding: 20px 40px;
  background: var(--sand-dark);
  font-family: var(--f-round);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.1em;
  font-weight: 900;
}

.price-head :last-child {
  text-align: right;
}

.price-row {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 28px 40px;
  border-top: 1px solid #efe8da;
  transition: background 0.2s;
  background: #fff;
}

.price-row:hover {
  background: var(--sand);
}

.price-row .tier {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 19px;
  color: var(--ink);
}

.price-row .tier .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cta);
}

.price-row .tier.t2 .dot {
  background: #e8b579;
}

.price-row .tier.t3 .dot {
  background: #8bc29e;
}

.price-row .period {
  font-size: 14px;
  color: var(--ink-2);
}

.price-row .amount {
  text-align: right;
  font-family: var(--f-en);
  font-weight: 400;
  font-size: 38px;
  color: var(--cta);
  line-height: 1;
}

.price-row .amount .unit {
  font-size: 14px;
  color: var(--ink-3);
  margin-left: 4px;
  font-weight: 400;
}

.price-notes {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 30px auto 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 2;
}

.price-cta {
  text-align: center;
  margin-top: 44px;
  position: relative;
  z-index: 1;
}

.btn-cream {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 38px;
  background: #fff;
  color: var(--green-900);
  border-radius: 999px;
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 15px;
}

.btn-cream:hover {
  background: var(--cta);
  color: #fff;
}

.flow {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
}

.flow-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 12px;
  padding-top: 8px;
}

.flow-num .s-label {
  font-family: var(--f-en);
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.15em;
  margin-bottom: 2px;
}

.flow-num .s-digit {
  font-family: var(--f-en);
  font-weight: 400;
  font-size: 58px;
  color: var(--green-900);
  line-height: 1;
  letter-spacing: 0.02em;
}

.flow-num .s-bar {
  width: 38px;
  height: 3px;
  background: var(--cta);
  margin-top: 10px;
  border-radius: 2px;
}

.flow-illus {
  width: 100%;
  aspect-ratio: 5/4;
  background: var(--sand);
  border-radius: 18px 18px 0 0;
  display: grid;
  place-items: center;
  padding: 14px;
  overflow: hidden;
}

.flow-illus svg {
  width: 100%;
  height: 100%;
  display: block;
}

.flow-card {
  background: #fff;
  padding: 28px 22px 30px;
  border-radius: 0 0 18px 18px;
  text-align: center;
}

.flow-step h4 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 19px;
  color: var(--green-900);
  margin-bottom: 12px;
}

.flow-step p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.95;
}

.camp {
  padding: 110px 0;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.camp .wrap {
  max-width: 1440px;
  padding: 0 40px;
}

.camp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.camp-photo {
  aspect-ratio: 5/4;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 360px;
}

.camp-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.ph-camp {
  background: radial-gradient(ellipse at 50% 70%, #e8d9b7 0%, #b09666 50%, #3d513a 100%);
}

.camp-photo .tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  font-family: var(--f-round);
  font-size: 11px;
  color: var(--green-800);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.camp-info .eyebrow {
  margin-bottom: 14px;
  gap: 8px;
  justify-content: flex-start;
}

.camp-info h2 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 36px;
  line-height: 1.45;
  color: var(--green-900);
  margin-bottom: 20px;
}

.camp-info p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 2;
  margin-bottom: 24px;
}

.camp-note {
  padding: 16px 22px;
  background: #fff;
  border-left: 4px solid var(--cta);
  border-radius: 4px 12px 12px 4px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.9;
  margin-bottom: 28px;
}

.access {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.access-map {
  aspect-ratio: 5/4;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #eaf2ea;
  border: 0;
}

.access-map svg {
  width: 100%;
  height: 100%;
}

.access-map .pin {
  position: absolute;
  top: 48%;
  left: 52%;
  width: 42px;
  height: 42px;
  background: var(--cta);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px -4px rgba(212, 135, 77, 0.6);
  animation: bounce 2s infinite ease-in-out;
}

.access-map .pin::after {
  content: "";
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transform: rotate(45deg);
}

.access-map .map-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  font-family: var(--f-round);
  font-size: 12px;
  color: var(--green-800);
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.access-info h3 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 28px;
  color: var(--green-900);
  margin-bottom: 28px;
}

.access-table {
  width: 100%;
  border-collapse: collapse;
}

.access-table tr {
  border-bottom: 1px solid var(--line);
}

.access-table tr:first-child {
  border-top: 1px solid var(--line);
}

.access-table th {
  text-align: left;
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 13px;
  color: var(--green-700);
  padding: 20px 0;
  width: 90px;
  vertical-align: top;
}

.access-table td {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.8;
  padding: 20px 0 20px 20px;
  vertical-align: top;
}

.sns {
  padding: 100px 0;
  background: var(--sand);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sns .sns-illo {
  max-width: 140px;
  margin: 16px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sns .sns-illo svg {
  width: 100%;
  height: auto;
  display: block;
}

.sns-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 20px auto 0;
}

.sns-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 16px 22px;
  border-radius: 20px;
  background: #fff;
  color: var(--green-900);
  position: relative;
  top: 0;
  transition: top 0.15s, box-shadow 0.15s, background 0.2s;
  text-decoration: none;
}

.sns-item.sns-ig {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
  color: #fff;
  box-shadow: 0 6px 0 0 #5a1f7a;
}

.sns-item.sns-tt {
  background: #111;
  color: #fff;
  box-shadow: 0 6px 0 0 #000;
}

.sns-item.sns-ln {
  background: #06c755;
  color: #fff;
  box-shadow: 0 6px 0 0 #04933f;
}

.sns-item.sns-fb {
  background: #1877f2;
  color: #fff;
  box-shadow: 0 6px 0 0 #0c52ad;
}

.sns-item:hover {
  top: 3px;
}

.sns-item.sns-ig:hover {
  box-shadow: 0 3px 0 0 #5a1f7a;
}

.sns-item.sns-tt:hover {
  box-shadow: 0 3px 0 0 #000;
}

.sns-item.sns-ln:hover {
  box-shadow: 0 3px 0 0 #04933f;
}

.sns-item.sns-fb:hover {
  box-shadow: 0 3px 0 0 #0c52ad;
}

.sns-icon {
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.sns-icon i {
  font-size: 2em;
  fill: #fff;
  transition: none;
}

.sns-label {
  font-family: var(--f-en);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sns-label::after {
  content: "";
}

.sns-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
  font-family: var(--f-round);
  font-weight: 700;
}

.footer-hero::before {
  display: none;
}

.illus {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tw-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  background: #fff;
  border: 0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
  width: 280px;
  display: none;
  font-family: var(--f-jp);
}

.tw-panel.show {
  display: block;
}

.tw-title {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 16px;
  color: var(--green-900);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tw-title::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--cta);
  border-radius: 50%;
}

.tw-row {
  margin-bottom: 14px;
}

.tw-row label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-2);
  display: block;
  margin-bottom: 6px;
}

.tw-swatches {
  display: flex;
  gap: 8px;
}

.tw-sw {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
}

.tw-sw.on {
  border-color: var(--ink);
}

.tw-opts {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tw-opt {
  padding: 6px 12px;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  background: #fff;
  font-family: var(--f-round);
  font-weight: 700;
}

.tw-opt.on {
  background: var(--green-800);
  color: #fff;
  border-color: var(--green-800);
}

.vehicle-jp {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2, #514e47);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

body {
  padding-top: 0;
}

.page-hero .eyebrow::before,
.page-hero .eyebrow::after {
  display: none;
  content: none;
}

.vehicles-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 40px 40px;
  text-align: center;
}

.vehicles-intro p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 2.1;
}

.vehicles-list {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.vehicle-card-v2 {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 8px 28px -12px rgba(27, 94, 59, 0.14);
  transition: transform 0.25s, box-shadow 0.25s;
}

.vehicle-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px -12px rgba(27, 94, 59, 0.22);
}

.vehicle-photo-v2 {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-photo-v2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 10px;
  display: block;
}

.vehicle-info-v2 .vehicle-label {
  display: inline-block;
  font-family: var(--f-en);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--green-800);
  margin-bottom: 10px;
}

.vehicle-info-v2 h2 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: 0.01em;
}

.vehicle-info-v2 .desc-v2 {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--ink-2);
  margin-bottom: 26px;
}

.spec-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.spec-v2 {
  background: var(--cream);
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
}

.spec-v2 .k {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.spec-v2 .v {
  display: block;
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.3;
}

.tags-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tag-v2 {
  display: inline-block;
  background: var(--cta);
  border: 0;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  font-family: var(--f-round);
  letter-spacing: 0.04em;
}

.detail-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 14px;
  color: var(--green-800);
  text-decoration: none;
  border-bottom: 2px solid var(--green-800);
  padding-bottom: 4px;
  transition: color 0.15s, border-color 0.15s;
}

.detail-link:hover {
  color: var(--cta);
  border-color: var(--cta);
}

.detail-link .arr {
  transition: transform 0.2s;
}

.detail-link:hover .arr {
  transform: translateX(4px);
}

.vehicles-cta {
  background: var(--green-900);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 0;
  text-align: center;
}

.vehicles-cta .trust-top,
.vehicles-cta .trust-bot {
  position: absolute;
  left: -2px;
  width: calc(100% + 4px);
  height: 120px;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.vehicles-cta .trust-top {
  top: -2px;
}

.vehicles-cta .trust-bot {
  bottom: -2px;
}

.vehicles-cta .inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 160px 40px;
}

.vehicles-cta h2 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 30px;
  line-height: 1.7;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}

.vehicles-cta .sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  line-height: 2;
}

.vehicles-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 46px;
  background: var(--cta);
  color: #fff;
  border-radius: 999px;
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 6px 0 0 #8a4f24;
  position: relative;
  top: 0;
  transition: top 0.12s, box-shadow 0.12s;
}

.vehicles-cta .cta-button:hover {
  top: 3px;
  box-shadow: 0 3px 0 0 #8a4f24;
}

.gallery-cell .ph {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  position: relative;
}

.gallery-cell .ph img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.gallery-cell .cap {
  padding: 14px 16px;
  text-align: center;
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 14px;
  color: var(--ink);
}

.gallery-cell .cap strong {
  display: block;
  font-size: 14px;
  color: var(--ink, #1b1b16);
  margin-bottom: 6px;
  font-weight: 500;
}

.gallery-cell .cap strong small {
  font-size: 11px;
  color: var(--ink-3, #8c8880);
  font-weight: 400;
  margin-left: 4px;
}

.gallery-cell .cap p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--ink-2, #514e47);
  margin: 0;
  text-align: left;
}

.gallery-cell .cap p small {
  font-size: 11px;
  color: var(--ink-3, #8c8880);
}

.veh-tag-w {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--green-800, #2f7360);
  padding: 4px 12px;
  border-radius: 3px;
  margin: 6px 0 0;
  letter-spacing: 0.05em;
}

.veh-related .related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.related-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--line, #dfd8cc);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink, #1b1b16);
  transition: all 0.2s;
}

.related-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.related-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--green-50, #e6efeb);
  color: var(--green-800, #2f7360);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  font-family: "Outfit", sans-serif;
}

.related-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.related-text small {
  display: block;
  font-size: 11px;
  color: var(--ink-3, #8c8880);
  font-weight: 400;
}

.page-hero h1 .vehicle-jp {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.page-hero .h1-sub {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.5;
}

.page-hero .veh-tag-w {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--green-800, #2f7360);
  padding: 5px 14px;
  border-radius: 4px;
  margin: 6px 0 0;
  letter-spacing: 0.05em;
}

.page-hero .vehicle-name {
  font-family: var(--f-en);
  font-weight: 400;
  font-size: 46px;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0 0 12px;
}

.page-hero .veh-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--f-round);
  font-weight: 700;
  margin-top: 16px;
  letter-spacing: 0.04em;
}

.veh-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 40px;
}

.veh-section + .veh-section {
  padding-top: 40px;
}

.veh-section-head {
  text-align: center;
  margin-bottom: 44px;
}

.veh-section-head .eyebrow {
  font-family: var(--f-en);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.22em;
  color: var(--green-800);
  display: block;
  margin-bottom: 10px;
}

.veh-section-head .eyebrow::before,
.veh-section-head .eyebrow::after {
  display: none;
  content: none;
}

.veh-section-head h2 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 28px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}

.veh-section-head .sub {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 8px;
}

.veh-about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
  background: #fff;
  padding: 40px;
  border-radius: 18px;
}

.veh-about .veh-photo {
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.veh-about .veh-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 10px;
}

.veh-about h3 {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 16px;
}

.veh-about p {
  font-size: 14px;
  line-height: 2;
  color: var(--ink-2);
  margin: 0 0 14px;
}

.veh-about .tags-v2 {
  margin-top: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-cell {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px -8px rgba(27, 94, 59, 0.18);
  transition: transform 0.25s, box-shadow 0.25s;
}

.gallery-cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px -10px rgba(27, 94, 59, 0.28);
}

.gallery-cell .ph::before,
.gallery-cell .ph::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gallery-cell .ph::before {
  background: linear-gradient(135deg, transparent calc(50% - 1px), rgba(0, 0, 0, 0.05) 50%, transparent calc(50% + 1px));
}

.gallery-cell .ph::after {
  background: linear-gradient(45deg, transparent calc(50% - 1px), rgba(0, 0, 0, 0.05) 50%, transparent calc(50% + 1px));
}

.equip-block {
  margin-bottom: 36px;
}

.equip-block:last-child {
  margin-bottom: 0;
}

.equip-title {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 16px;
  color: var(--green-800);
  margin: 0 0 14px;
  padding-left: 10px;
  border-left: 4px solid var(--cta);
}

.equip-table {
  width: 100%;
  background: #fff;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  font-size: 13.5px;
  box-shadow: 0 2px 8px -4px rgba(0, 0, 0, 0.06);
}

.equip-table thead th {
  background: var(--green-900);
  color: #fff;
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 14px 16px;
  text-align: left;
}

.equip-table thead th:nth-child(2) {
  width: 80px;
  text-align: center;
}

.equip-table tbody td {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  vertical-align: middle;
}

.equip-table tbody td:first-child {
  font-family: var(--f-round);
  font-weight: 900;
  color: var(--ink);
}

.equip-table tbody td:nth-child(2) {
  text-align: center;
  font-family: var(--f-en);
  font-size: 18px;
}

.equip-table tbody tr:hover td {
  background: var(--cream);
}

.equip-yes {
  color: var(--green-800);
  font-weight: 900;
}

.equip-no {
  color: var(--ink-3);
}

.specs-table {
  width: 100%;
  background: #fff;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  font-size: 13.5px;
  box-shadow: 0 2px 8px -4px rgba(0, 0, 0, 0.06);
}

.specs-table thead th {
  background: var(--green-900);
  color: #fff;
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 14px 16px;
  text-align: left;
}

.specs-table tbody th {
  background: var(--sand);
  padding: 14px 16px;
  text-align: left;
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 13px;
  color: var(--ink);
  width: 200px;
  border-top: 1px solid var(--line);
}

.specs-table tbody td {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
}

.notes-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.note-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 28px;
  border: 1px solid var(--line);
}

.note-title {
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 15px;
  color: var(--ink);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.note-title::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cta);
  display: inline-block;
}

.note-card p {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 700;
}

.note-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.95;
}

.note-card li {
  padding-left: 14px;
  position: relative;
}

.note-card li::before {
  content: "•";
  color: var(--cta);
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
}

.veh-actions {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 40px 110px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: var(--f-round);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: top 0.12s, box-shadow 0.12s;
  position: relative;
  top: 0;
}

.action-btn.primary {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 5px 0 0 #8a4f24;
}

.action-btn.primary:hover {
  top: 3px;
  box-shadow: 0 2px 0 0 #8a4f24;
}

.action-btn.secondary {
  background: var(--green-900);
  color: #fff;
  box-shadow: 0 5px 0 0 #0a2a19;
}

.action-btn.secondary:hover {
  top: 3px;
  box-shadow: 0 2px 0 0 #0a2a19;
}

.action-btn.ghost {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 5px 0 0 var(--line);
  border: 1px solid var(--line);
}

.action-btn.ghost:hover {
  top: 3px;
  box-shadow: 0 2px 0 0 var(--line);
}

.hero-h1,
.hero-lead {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.vehicle-tag-w {
  display: inline-block;
  width: auto;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--green-800);
  padding: 5px 14px;
  border-radius: 4px;
  margin: 0 0 12px;
  letter-spacing: 0.05em;
}

.imageye-selected {
  outline: 2px solid black !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5) !important;
}

.blog-section {
  padding: 120px 0;
  background: var(--cream);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.blog-thumb {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-en), "Outfit", sans-serif;
  font-weight: 900;
  font-size: 36px;
  letter-spacing: 0.16em;
  color: #fff;
}

.blog-thumb-1 {
  background: linear-gradient(135deg, #3e8a74, #2f7360);
}

.blog-thumb-2 {
  background: linear-gradient(135deg, #d4874d, #b86e36);
}

.blog-thumb-3 {
  background: linear-gradient(135deg, #7a5a38, #5a3f24);
}

.blog-card-body {
  padding: 22px 22px 26px;
}

.blog-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-800);
  background: var(--green-50);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-family: var(--f-round), "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 14px;
}

.blog-card time {
  font-family: var(--f-en), "Outfit", sans-serif;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
}

.sns-shop-banner {
  max-width: 780px;
  margin: 50px auto 0;
  padding: 24px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.sns-shop-msg {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
}

.sns-shop-msg strong {
  color: var(--cta);
  font-weight: 900;
}

.sns-shop-cta {
  padding: 12px 24px !important;
  font-size: 14px !important;
  white-space: nowrap;
}

.rate-table .price,
.rental-card .price,
.option-card .price {
  padding: 0;
  background: transparent;
  color: var(--cta);
  display: inline;
  position: static;
  overflow: visible;
}

.faq-card .faq-a {
  display: block;
}

.faq-card .faq-a em {
  font-style: normal;
  font-weight: 400;
}

@keyframes bounce {
  0%, 100% {
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    transform: rotate(-45deg) translateY(-8px);
  }
}
@media (max-width: 820px) {
  .vehicle-card-v2 {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }
  .vehicle-info-v2 h2 {
    font-size: 26px;
  }
  .page-hero {
    padding: 120px 20px 60px;
  }
  .page-hero h1 {
    font-size: 32px;
  }
  .spec-grid-v2 {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .vehicles-cta .inner {
    padding: 140px 20px;
  }
  .vehicles-cta h2 {
    font-size: 22px;
  }
}
@media (max-width: 820px) {
  .veh-hero h1 {
    font-size: 40px;
  }
  .veh-about {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .veh-section {
    padding: 60px 20px;
  }
  .specs-table tbody th {
    width: 120px;
    font-size: 12px;
  }
  .equip-table,
  .specs-table {
    font-size: 12.5px;
  }
  .equip-table tbody td,
  .specs-table tbody td {
    padding: 12px;
  }
  .veh-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .action-btn {
    width: 100%;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    transform: rotate(-45deg) translateY(-8px);
  }
}
@media (max-width: 768px) {
  .sns-shop-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .sns-shop-msg {
    text-align: center;
  }
}
@media (max-width: 920px) {
  #footer .inner {
    flex-direction: column;
    gap: 20px;
  }
  #footer .inner .footer-left,
  #footer .inner .footer-right {
    width: 100%;
    padding-left: 0;
  }
  #header .contact_btn {
    display: none;
  }
}
@media (max-width: 720px) {
  .flogo {
    margin-left: auto;
    margin-right: auto;
  }
  .tbl--hours tr th,
  .tbl--hours tr td {
    padding: 7px 5px;
    font-size: 12px;
  }
  .contact_btn {
    justify-content: center;
  }
  .bg--img02 {
    margin-top: 50px;
  }
  #header {
    padding-top: 0;
  }
  #header .inner {
    max-width: 100%;
    justify-content: space-between;
  }
  .head-right {
    justify-content: flex-end;
    padding-right: 60px;
  }
  #header_nav {
    display: none;
  }
  .sp-btn {
    display: block;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    width: 100%;
  }
  .sp-btn p {
    width: 25%;
  }
  .sp-btn p:nth-child(1) {
    background: #e4405f;
  }
  .sp-btn p:nth-child(2) {
    background: #65d14e;
  }
  .sp-btn p:nth-child(3) {
    background: #ef7d39;
  }
  .sp-btn p:nth-child(4) {
    background: #4f3b17;
  }
  .sp-btn p a {
    color: #FEFEFE;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px 5px;
  }
  .sp-btn p a img {
    max-width: 25px;
  }
  .sp-btn p a span {
    display: block;
    text-align: center;
  }
  #sp-logo {
    width: 120px;
  }
  #nav-toggle {
    position: fixed;
    right: 16px;
    top: 24px;
    inline-size: 44px;
    block-size: 44px;
    display: grid;
    place-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    z-index: 120;
  }
  #nav-toggle .bars {
    position: relative;
    inline-size: 26px;
    block-size: 18px;
    display: grid;
    align-content: space-between;
  }
  #nav-toggle .bars i {
    display: block;
    inline-size: 100%;
    block-size: 3px;
    border-radius: 2px;
    background: #333;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  #nav-toggle.is-active .bars i:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  #nav-toggle.is-active .bars i:nth-child(2) {
    opacity: 0;
  }
  #nav-toggle.is-active .bars i:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
  #sp-nav {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.96);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity 0.25s ease;
    z-index: -10;
  }
  #sp-nav.open {
    opacity: 1;
    pointer-events: auto;
    z-index: 110;
  }
  #sp-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    min-width: 260px;
  }
  #sp-nav li:not(:first-child) {
    margin-top: 1em;
  }
  #sp-nav li a {
    font-size: 18px;
    color: #4f3b17;
    text-decoration: none;
    border-bottom: 1px solid #ef7d39;
    display: block;
    padding-bottom: 1em;
  }
  #sp-nav .contact_btn {
    flex-wrap: wrap;
    row-gap: 24px;
  }
  #sp-nav .contact_btn p:last-child {
    width: 100%;
  }
  #sp-nav .contact_btn p:last-child a {
    color: #FEFEFE;
    max-width: 260px;
    margin-inline: auto;
  }
  .copyright {
    padding-bottom: 40px;
  }
  .media {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--media-gap, 20px);
  }
  .box {
    padding: 15px;
  }
  .box--pd60 {
    padding: 30px;
  }
  body.fixed {
    overflow: hidden;
  }
  .u-decor-spflex {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .u-decor {
    position: initial;
  }
  .u-decor.w150 img {
    width: 100px;
  }
  .hero--single .hero__content {
    inset: auto 0 8% 0;
  }
  .hero--slider .hero__overlay {
    padding: 14px;
  }
  .hero--slider .hero__overlay h1 {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .hero--slider .hero-prev,
  .hero--slider .hero-next {
    inline-size: 40px;
    block-size: 40px;
  }
  #page-title .inner {
    flex-direction: column;
    gap: 40px;
    padding: 40px 0;
  }
  #page-title .inner .title,
  #page-title .inner .text {
    width: 100%;
  }
  .container--p-xl {
    padding: 60px 15px;
  }
  .container--p-l {
    padding: 40px 15px;
  }
  .container--p-m {
    padding: 30px 15px;
  }
  .container--p-s {
    padding: 20px 15px;
  }
  .l-column {
    row-gap: 20px;
  }
  .l-column.reverse {
    flex-direction: column-reverse;
  }
  .l-column.col2 {
    --cols: 1;
  }
  .l-column.col3 {
    --cols: 1;
  }
  .l-column.col4 {
    --cols: 2;
  }
  .l-column.col5 {
    --cols: 3;
  }
  .sp-contents {
    display: block !important;
  }
  .pc-contents {
    display: none !important;
  }
  .spbr {
    display: block;
  }
  .btn {
    margin-top: 20px;
    width: 100%;
  }
  .btn a {
    width: 100%;
    justify-content: center;
  }
  .btn--left {
    text-align: center;
  }
  .btn--left a {
    margin-left: auto;
  }
  #footer .inner .footer-left {
    padding-right: 0;
  }
  .footer_navi ul li {
    width: 50%;
    text-align: left;
  }
  .footer_navi ul li a {
    text-align: center;
  }
  .grid {
    gap: 12px;
  }
  .blog-detail {
    padding: 0;
  }
}
@media (max-width: 440px) {
  #header .contact_btn {
    display: none;
  }
  #header .inner {
    padding: 16px;
  }
  #header .inner #logo {
    width: 90px;
  }
  .copyright {
    padding-bottom: 20px;
  }
  .sp-btn p a {
    font-weight: 600;
    padding: 7px;
  }
  .sp-btn p a img {
    max-width: 20px;
  }
  .sp-btn p a span {
    font-size: 12px;
  }
  body#top::after {
    width: 24rem;
    height: 7rem;
  }
  .hero::after {
    width: 250px;
    height: 140px;
    bottom: -50px;
  }
  .hero--marquee .hero__overlay h1 {
    font-size: 2.5rem;
  }
  .hero--marquee .hero__overlay {
    padding: 20px 15px;
  }
  h1,
  h2,
  h3,
  h4,
  h5 {
    font-weight: 700;
  }
  h1 {
    font-size: 26px;
    font-size: 2.6rem;
  }
  h2 {
    font-size: 22px;
    font-size: 2.2rem;
  }
  h3 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  h4 {
    font-size: 15px;
    font-size: 1.5rem;
  }
  h5 {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .tcenter_pc {
    text-align: left;
  }
  .card {
    padding: 24px;
  }
  .title {
    margin-bottom: 30px;
  }
  .contact_btn.big {
    flex-direction: column;
  }
  .contact_btn.big a {
    padding: 16px 24px;
  }
  .bg--img02::after {
    top: -39px;
    height: 40px;
  }
  .bg--img03::after {
    top: -39px;
    height: 40px;
  }
  .bg-chosei {
    padding-bottom: 50px;
  }
  .bg-chosei2 {
    padding-bottom: 50px;
    margin-bottom: 40px;
  }
  #page-title .inner {
    max-width: 90%;
    gap: 20px;
  }
  .gallery img {
    width: 100%;
  }
  .tabs__panel.is-active {
    padding: 20px 10px;
  }
  .accordion.faq > .ttl {
    padding-left: 3em;
    padding-right: 2.5em;
  }
  .accordion.faq > .ttl::before {
    left: 8px;
    inline-size: 32px;
    block-size: 32px;
  }
  .accordion.faq > .ttl::after {
    right: 10px;
    inline-size: 7px;
    block-size: 7px;
  }
  .accordion.faq > .inner::before {
    left: 8px;
  }
  .accordion.faq > .inner p {
    padding-right: 0;
    padding-left: 2em;
  }
  .contents-nav {
    flex-direction: column;
    margin-bottom: 60px;
  }
  .voice {
    flex-direction: column !important;
    padding: 20px;
  }
  .voice__img {
    width: 100%;
  }
  .voice__img img {
    max-width: 120px;
  }
  .voice__body {
    width: 100%;
    padding: 0;
  }
  .tabs__btn {
    padding: 8px;
    font-size: 0.8em;
  }
  .tabs__panel.is-active {
    padding: 0;
  }
  .tabs__panel .t-m20 {
    margin-top: 10px;
  }
  .accordion > .ttl,
  .accordion.faq > .inner p {
    font-size: 0.9em;
  }
  .bg--round {
    border-radius: 30px;
  }
  .blog-list .blog-card {
    width: 48%;
  }
  .box--pd60 {
    padding: 30px 15px;
  }
  .blog-pager {
    margin-top: 20px;
  }
  .blog-page section {
    margin-top: 30px;
  }
}
@media print {
  a {
    text-decoration: underline;
  }
  .btn,
  .chip,
  .badge,
  .alert {
    box-shadow: none;
    background: transparent;
  }
}
/* =====================================================
   YKT CAMPARS — Responsive Overrides
   Breakpoints:
     $bp-pc       : 1440px
     $bp-pc-slim  : 920px
     $bp-sp       : 720px
     $bp-sp-mini  : 440px
   ===================================================== */
/* ========== 共通 ========== */
html,
body {
  overflow-x: hidden;
}

img,
picture,
svg {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}

/* =====================================================
   FAQ — 閉じデフォルト + caret アニメーション（全画面共通）
   ===================================================== */
/* トップページの faq-card（details に変換した分） */
details.faq-card {
  list-style: none;
  cursor: pointer;
}

details.faq-card > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  position: relative;
}

details.faq-card > summary::-webkit-details-marker {
  display: none;
}

details.faq-card .faq-caret {
  position: absolute;
  right: 18px;
  top: 50%;
  inline-size: 12px;
  block-size: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.25s ease;
  opacity: 0.6;
}

details.faq-card[open] .faq-caret {
  transform: translateY(-30%) rotate(-135deg);
}

details.faq-card > .faq-q {
  padding-right: 48px !important;
}

details.faq-card .faq-a {
  animation: faq-fade-in 0.25s ease;
}

@keyframes faq-fade-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* FAQページの details.faq-item — caret 回転は既存CSSに任せる */
details.faq-item > summary {
  cursor: pointer;
}

/* =====================================================
   パンくずリスト — page-hero の右下にさりげなく配置
   ===================================================== */
.page-hero {
  position: relative;
  padding-bottom: 72px;
  /* breadcrumb 用の余白を底に確保 */
}

.page-hero .breadcrumb {
  position: absolute;
  right: 5%;
  bottom: 18px;
  left: auto;
  top: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  font-size: 11px;
  text-align: right;
  opacity: 0.8;
  z-index: 2;
}

.page-hero .breadcrumb ol {
  display: inline-flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-hero .breadcrumb li {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.page-hero .breadcrumb a,
.page-hero .breadcrumb [aria-current] {
  color: rgba(255, 255, 255, 0.85);
}

.page-hero .breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.page-hero .breadcrumb li:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.55);
  margin-left: 6px;
}

/* ========== ハンバーガーメニュー（共通） ========== */
.nav-toggle {
  display: none;
  position: relative;
  inline-size: 44px;
  block-size: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 101;
  margin-left: auto;
}

.nav-toggle .bars {
  position: relative;
  inline-size: 26px;
  block-size: 18px;
  margin: 0 auto;
  display: grid;
  align-content: space-between;
}

.nav-toggle .bars i {
  display: block;
  inline-size: 100%;
  block-size: 3px;
  border-radius: 2px;
  background: var(--ink, #1B1B16);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

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

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

.nav-toggle.is-active .bars i:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ハンバーガー展開パネル */
.sp-nav {
  position: fixed;
  inset: 0;
  background: rgba(248, 245, 240, 0.98);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 200;
  /* fixed header (z:50) より上に */
  display: grid;
  align-content: center;
  padding: 80px 24px 40px;
  overflow-y: auto;
}

.sp-nav.is-open {
  opacity: 1;
  visibility: visible;
}

/* オーバーレイ内の閉じるボタン（×） */
.sp-nav-close {
  position: absolute;
  top: 16px;
  right: 16px;
  inline-size: 48px;
  block-size: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 210;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.sp-nav-close:hover,
.sp-nav-close:focus-visible {
  background: rgba(0, 0, 0, 0.06);
}

.sp-nav-close::before,
.sp-nav-close::after {
  content: "";
  position: absolute;
  inline-size: 26px;
  block-size: 3px;
  background: var(--ink, #1B1B16);
  border-radius: 2px;
}

.sp-nav-close::before {
  transform: rotate(45deg);
}

.sp-nav-close::after {
  transform: rotate(-45deg);
}

.sp-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  max-width: 320px;
  width: 100%;
}

.sp-nav li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.sp-nav li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.sp-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  text-decoration: none;
  color: var(--ink, #1B1B16);
  font-family: var(--f-round), sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  gap: 4px;
}

.sp-nav a .en {
  font-family: var(--f-en), sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-3, #8C8880);
  text-transform: uppercase;
}

.sp-nav .sp-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  padding: 14px 28px;
  background: var(--cta, #D4874D);
  color: #fff;
  border-radius: 999px;
  font-family: var(--f-round), sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 4px 0 0 #8A4F24;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}

/* スクロール禁止クラス（モバイルメニュー展開中） */
body.menu-open {
  overflow: hidden;
}

/* =====================================================
   1440px 以下 — レイアウト微調整
   ===================================================== */
@media (max-width: 1440px) {
  .site-header {
    padding: 12px 24px;
  }
  .wrap,
  .wrap-wide {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-typo .ykt {
    font-size: clamp(48px, 8.5vw, 130px);
  }
  .hero-catch {
    font-size: clamp(28px, 3.8vw, 48px);
    white-space: normal;
  }
}
/* =====================================================
   920px 以下 — タブレット
   ===================================================== */
@media (max-width: 920px) {
  /* ========== ヘッダー — ロゴ ／ (空) ／ CTA + ハンバーガー ========== */
  .site-header {
    padding: 10px 16px;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
  }
  .brand img {
    height: 48px;
  }
  .site-header .nav {
    display: none;
  }
  /* CTAを右側に押し出す（ハンバーガーは margin-left:0 に上書き） */
  .header-cta {
    margin-left: auto;
    padding: 10px 14px;
    font-size: 13px;
  }
  .header-cta svg {
    width: 14px;
    height: 14px;
  }
  .header-cta span {
    display: inline;
  }
  /* ハンバーガー（CTAの右隣に張り付く） */
  .nav-toggle {
    display: grid;
    place-items: center;
    margin-left: 4px;
  }
  /* ========== セクション全般のパディング縮小 ========== */
  section.hero,
  section.trust-strip,
  section.why,
  section.recommend,
  section.vehicle,
  section.experience,
  section.faq,
  section.price,
  section.flow,
  section.camp,
  section.access,
  section.sns,
  section.media,
  section.final-cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .section,
  .price-section,
  .rental-section,
  .discount-section,
  .terms-section {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .page-hero {
    padding: 130px 24px 70px;
  }
  .page-hero h1 {
    font-size: 28px;
  }
  .page-hero .eyebrow {
    font-size: 32px;
  }
  .page-hero .breadcrumb {
    font-size: 11px;
  }
  /* ========== ヒーロー — 固定ヘッダー + 装飾用の余白を確保 ========== */
  .hero {
    padding-top: 140px;
  }
  .hero-typo {
    padding: 0 24px;
    margin-top: 30px;
    /* 装飾が画面端に重なるのを防ぐ */
  }
  .hero-typo .ykt {
    font-size: clamp(44px, 12vw, 96px);
  }
  /* 装飾SVG — 位置を補正してテキスト/ヘッダーに被らないようにする */
  .hero-typo .mts.left {
    top: -22px;
    left: 4%;
    width: 48px;
  }
  .hero-typo .mts.right {
    top: -26px;
    right: 4%;
    width: 56px;
  }
  .hero-typo .orn-tent {
    top: -18px;
    left: calc(50% - 12px);
    width: 24px;
  }
  .hero-typo .figurine.fam {
    top: 4%;
    left: 6%;
    width: 44px;
  }
  .hero-typo .figurine.hiker {
    top: 4%;
    right: 6%;
    width: 40px;
  }
  .hero-typo .figurine.berry {
    width: 32px;
  }
  .hero-photo-card {
    aspect-ratio: 4/3;
  }
  .hero-catch {
    font-size: clamp(24px, 5vw, 38px);
  }
  .hero-ctas {
    flex-direction: column;
    gap: 14px;
  }
  .btn-pop,
  .btn-pop-ghost {
    min-width: 240px;
    width: 100%;
    max-width: 360px;
  }
  /* ========== TRUST STRIP — 4列 → 2列 ========== */
  .trust-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px 24px !important;
    /* 縦間隔を少し広めに（2行になるため） */
  }
  /* 2カラム時、右列（偶数番目）の右側縦線を消す */
  .trust-item:nth-child(even) .mt-div {
    display: none !important;
  }
  /* セクションの上下パディングを約半分に */
  .trust-stage {
    padding: 70px 0 85px !important;
    /* 140 0 170 → 半分 */
  }
  /* イラスト行も縮める */
  .trust-illo-row {
    height: 80px !important;
    margin-bottom: -10px !important;
  }
  .trust-illo-bear,
  .trust-illo-van,
  .trust-illo-campfire {
    transform: scale(0.85) rotate(0deg) !important;
  }
  /* ========== WHY — 3列 → 2列 ========== */
  .why-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
  /* ========== RECOMMEND — 3列 → 2列 ========== */
  .rec-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
  /* ========== VEHICLE main/sub ========== */
  .vehicle-main,
  .vehicle-sub {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .vehicle-photo,
  .vehicle-sub-photo {
    aspect-ratio: 16/10;
  }
  .spec-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  /* ========== EXPERIENCE — 3列 → 1列 ========== */
  .exp-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  /* ========== FAQ (トップ) ========== */
  .faq-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  /* ========== PRICE table (トップ) ========== */
  .price-row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 16px !important;
  }
  /* ========== FLOW — 4列 → 2列 ========== */
  .flow-steps,
  .steps {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
  /* ========== CAMP — 2列 → 1列 ========== */
  .camp-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .camp-photo {
    aspect-ratio: 16/10;
    min-height: auto !important;
  }
  /* ========== ACCESS — 2列 → 1列 ========== */
  .access-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .access-map {
    aspect-ratio: 16/10 !important;
    min-height: 280px;
  }
  /* ========== SNS — 4列 → 2列 ========== */
  .sns-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  /* ========== FINAL CTA — 縦積み ========== */
  .fc-ctas {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  /* ========== FOOTER (920px) — 1列だが nav は1行で収める ========== */
  .footer-hero {
    min-height: auto !important;
    padding: 60px 24px 40px !important;
  }
  .footer-hero-inner {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    text-align: center;
    max-width: 100%;
    /* nav の改行を防ぐため max-width 撤廃 */
    margin-inline: auto;
  }
  .foot-brand {
    align-items: center;
    text-align: center;
    max-width: 460px;
    /* foot-brand のみ幅制限で読みやすく */
    margin-inline: auto;
  }
  .foot-brand img {
    height: 70px !important;
    margin-inline: auto;
    margin-bottom: 16px;
  }
  .foot-addr {
    text-align: center;
    font-size: 12px !important;
  }
  .foot-addr .foot-tel {
    font-size: 16px !important;
    margin-top: 8px;
  }
  .foot-shop-btn {
    margin: 14px auto 0 !important;
    padding: 12px 22px !important;
    font-size: 13px !important;
  }
  /* nav は 1行で5項目すべて並べる（折り返し禁止） */
  .foot-nav {
    flex-wrap: nowrap !important;
    justify-content: center;
    gap: 14px 18px !important;
    align-items: center !important;
    width: 100%;
    overflow-x: auto;
    /* 念のため小さな画面ではスクロール許可 */
    -webkit-overflow-scrolling: touch;
  }
  .foot-nav a {
    font-size: 14px !important;
    flex-shrink: 0;
  }
  .foot-nav a span {
    font-size: 10px !important;
  }
  .foot-contact-btn {
    width: 96px !important;
    height: 96px !important;
    margin: 0 auto;
    font-size: 13px !important;
  }
  .foot-contact-btn span {
    font-size: 9px !important;
  }
  /* ========== SHOP BANNER ========== */
  .shop-banner-card,
  .sns-shop-banner {
    flex-direction: column !important;
    text-align: center;
    padding: 28px 24px !important;
    gap: 16px !important;
  }
  /* ========== MEDIA — 3列 → 2列 ========== */
  .media-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
  /* ========== 車両一覧 (vehicles_3) ========== */
  .vehicle-card-v2 {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .vehicle-photo-v2 {
    aspect-ratio: 16/10;
    max-height: 320px;
  }
  .spec-grid-v2 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  /* ========== 車両詳細 (jolybee) ========== */
  .veh-about {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .equip-block {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .veh-related .related-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  /* ========== 料金ページ ========== */
  .season-detail {
    padding: 28px !important;
  }
  .season-detail .row,
  .season-row {
    grid-template-columns: 100px 1fr !important;
  }
  .example-cards,
  .price-examples,
  .examples-grid,
  .sim-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .option-cards,
  .options-grid,
  .opt-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .rental-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .discount-cards,
  .discounts-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  /* ========== お問い合わせ ========== */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .form-row,
  .form-fields-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  /* ========== はじめての方へ ========== */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .why-safe-grid,
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  /* ========== FAQ ページ ========== */
  .faq-cats,
  .faq-categories,
  .faq-cat-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  /* ========== テーブル横スクロール ========== */
  .table-scroll,
  .price-table-wrap,
  .rate-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  table.rate-table,
  table.cancel-table,
  table.equip-table,
  table.specs-table,
  table.insurance-table,
  table.access-table,
  table.price-table {
    min-width: 480px;
  }
  /* ========== タイポグラフィ ========== */
  .section-head h2,
  .section-title {
    font-size: 24px !important;
  }
  .section-head .eyebrow {
    font-size: 11px !important;
  }
  .eyebrow {
    font-size: 40px;
  }
}
/* =====================================================
   720px 以下 — モバイル
   ===================================================== */
@media (max-width: 720px) {
  /* ========== ヘッダー ========== */
  .site-header {
    padding: 8px 12px;
  }
  .brand img {
    height: 44px;
  }
  .header-cta {
    padding: 8px 12px;
    font-size: 12px;
  }
  .header-cta span {
    display: none;
  }
  /* ========== セクション ========== */
  section.hero,
  section.trust-strip,
  section.why,
  section.recommend,
  section.vehicle,
  section.experience,
  section.faq,
  section.price,
  section.flow,
  section.camp,
  section.access,
  section.sns,
  section.media,
  section.final-cta {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .section,
  .price-section,
  .rental-section,
  .discount-section,
  .terms-section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .wrap,
  .wrap-wide {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  /* ========== ヒーロー ========== */
  .hero {
    padding-top: 80px !important;
  }
  .hero-typo {
    padding: 0 16px;
  }
  .hero-typo .ykt {
    font-size: clamp(36px, 14vw, 72px);
    gap: 8px;
  }
  .hero-typo .mts.left {
    top: -18px;
    left: 2%;
    width: 36px;
  }
  .hero-typo .mts.right {
    top: -20px;
    right: 2%;
    width: 40px;
  }
  .hero-typo .orn-tent {
    top: -16px;
    width: 20px;
  }
  .hero-typo .figurine.fam,
  .hero-typo .figurine.hiker {
    width: 34px;
  }
  .hero-typo .figurine.berry {
    width: 26px;
  }
  .hero-subline {
    font-size: 12px !important;
    letter-spacing: 0.2em !important;
  }
  .hero-photo-wrap {
    width: 100%;
    margin: 32px auto 0;
  }
  .hero-photo-card {
    aspect-ratio: 4/3 !important;
    border-radius: 16px;
  }
  .hero-bottom {
    margin-top: 40px;
    padding: 0 16px;
  }
  .hero-catch {
    font-size: clamp(20px, 6vw, 28px);
    white-space: normal;
  }
  .hero-catch small {
    font-size: 13px;
    line-height: 1.9;
  }
  /* ========== page-hero ========== */
  .page-hero {
    padding: 110px 16px 60px;
  }
  .page-hero h1 {
    font-size: 22px;
  }
  .page-hero .eyebrow {
    font-size: 26px;
  }
  /* パンくずは PC と同じく page-hero の右下に絶対配置を維持 */
  .page-hero .breadcrumb {
    right: 4%;
    bottom: 14px;
    font-size: 10.5px;
  }
  /* ========== Grids → 1列 ========== */
  .trust-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .rec-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .flow-steps,
  .steps {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .sns-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .media-grid,
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .spec-grid,
  .spec-grid-v2 {
    grid-template-columns: 1fr !important;
  }
  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .rental-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .why-safe-grid,
  .reasons-grid {
    grid-template-columns: 1fr !important;
  }
  .veh-related .related-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .faq-cats,
  .faq-categories,
  .faq-cat-grid {
    grid-template-columns: 1fr !important;
  }
  /* ========== Footer ========== */
  .foot-nav {
    gap: 12px 18px !important;
  }
  .foot-nav a {
    font-size: 14px !important;
  }
  .foot-contact-btn {
    width: 86px !important;
    height: 86px !important;
    font-size: 12px !important;
  }
  /* ========== 車両一覧 カード ========== */
  .vehicle-card-v2 {
    padding: 24px !important;
  }
  .vehicle-photo-v2 {
    aspect-ratio: 16/12;
  }
  /* ========== テーブル ========== */
  table.rate-table,
  table.cancel-table,
  table.price-table {
    min-width: 360px;
    font-size: 13px;
  }
  /* ========== タイポグラフィ ========== */
  body,
  html {
    font-size: 14px;
  }
  h2,
  .section-head h2,
  .section-title {
    font-size: 22px !important;
    line-height: 1.5 !important;
  }
  h3 {
    font-size: 17px !important;
  }
  h4 {
    font-size: 15px !important;
  }
  .eyebrow {
    font-size: 32px;
  }
}
/* =====================================================
   440px 以下 — 小型モバイル
   ===================================================== */
@media (max-width: 440px) {
  /* ========== セクションタイトルの英字＋木イラスト調整 ========== */
  .eyebrow {
    font-size: 38px !important;
    /* 英字は大きめに（PCの 60px → 38px、720px override の 32px より大きく） */
    gap: 10px !important;
    line-height: 1 !important;
  }
  .eyebrow::before,
  .eyebrow::after {
    width: 32px !important;
    /* 木イラスト 76px → 32px に縮小 */
    height: 24px !important;
  }
  /* page-hero の eyebrow も同様に */
  .page-hero .eyebrow {
    font-size: 26px !important;
  }
  /* section-head のマージン半減 */
  .section-head {
    margin-bottom: 28px !important;
    /* 元 56-70px → 半分 */
  }
  /* ボタンを中央寄せ */
  .btn-primary,
  .btn-cream,
  .btn-ghost,
  .btn-dark,
  .btn-pop,
  .btn-pop-ghost {
    text-align: center !important;
    justify-content: center !important;
  }
  section.hero,
  section.trust-strip,
  section.why,
  section.recommend,
  section.vehicle,
  section.experience,
  section.faq,
  section.price,
  section.flow,
  section.camp,
  section.access,
  section.sns,
  section.media,
  section.final-cta {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .section,
  .price-section,
  .rental-section,
  .discount-section,
  .terms-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .wrap,
  .wrap-wide {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .site-header {
    padding: 6px 10px;
  }
  .brand img {
    height: 38px;
  }
  .hero-typo .ykt {
    font-size: clamp(32px, 12vw, 56px);
  }
  .hero-typo .mts.left,
  .hero-typo .mts.right {
    width: 28px;
  }
  .hero-typo .orn-tent {
    width: 18px;
  }
  .hero-catch {
    font-size: clamp(18px, 6vw, 24px);
  }
  .page-hero {
    padding: 96px 12px 44px;
  }
  .page-hero h1 {
    font-size: 19px;
  }
  .page-hero .eyebrow {
    font-size: 22px;
  }
  .section-head h2,
  .section-title {
    font-size: 20px !important;
  }
  /* ========== TRUST STRIP - 1列時の区切り線の付け方 ========== */
  .trust-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  /* 縦線(.mt-div)は全部隠す */
  .trust-item .mt-div {
    display: none !important;
  }
  /* 最後以外の item に下線を引いて区切り */
  .trust-item:not(:last-child) {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
  /* ========== CAMP PRODUCE タイトル中央寄せ ========== */
  .camp-info {
    text-align: center;
  }
  .camp-info .eyebrow,
  .camp-info h2,
  .camp-info p,
  .camp-info .camp-note {
    text-align: center !important;
  }
  .camp-info .btn-dark,
  .camp-info .btn-primary {
    margin-left: auto;
    margin-right: auto;
    display: inline-flex;
  }
  /* ========== 料金のご案内（トップ） — タイトルバランス ========== */
  .price .section-title {
    font-size: 19px !important;
    line-height: 1.5 !important;
  }
  .price .section-head .sub {
    font-size: 12.5px !important;
    line-height: 1.85 !important;
  }
  /* ========== ACCESS — マップ&テーブルの幅収まり ========== */
  .access-grid {
    padding: 0 !important;
  }
  .access-map {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 220px !important;
    aspect-ratio: 4/3 !important;
  }
  .access-map iframe {
    inline-size: 100%;
    block-size: 100%;
  }
  .access-info {
    width: 100% !important;
    max-width: 100% !important;
  }
  .access-table {
    width: 100% !important;
    table-layout: fixed;
    word-break: break-word;
  }
  .access-table th {
    width: 28%;
    font-size: 12px !important;
    padding: 10px 8px !important;
  }
  .access-table td {
    font-size: 12px !important;
    padding: 10px 8px !important;
    word-wrap: break-word;
  }
  /* ========== FOOTER NAV を非表示 ========== */
  .foot-nav {
    display: none !important;
  }
  .foot-shop-btn {
    margin-bottom: 8px !important;
  }
  .sns-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .sns-item {
    padding: 16px 12px !important;
  }
  .sns-icon {
    width: 36px !important;
    height: 36px !important;
  }
  .btn-pop,
  .btn-pop-ghost,
  .btn-primary,
  .btn-cream,
  .btn-ghost,
  .btn-dark,
  .fc-btn {
    min-width: 0 !important;
    width: 100% !important;
    padding: 14px 16px !important;
    font-size: 14px !important;
  }
  .shop-banner-text,
  .sns-shop-banner-text {
    font-size: 14px;
  }
  .shop-banner-btn {
    padding: 14px 24px !important;
    font-size: 13px;
  }
  .rental-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  table {
    font-size: 12px !important;
  }
  /* ========== 料金ページ 基本料金 / キャンセルポリシー テーブル — 読みやすく ========== */
  table.rate-table,
  table.cancel-table,
  table.price-table {
    min-width: 0;
    /* スクロールではなく折り返し前提に変更 */
    width: 100% !important;
    table-layout: auto !important;
    font-size: 12.5px !important;
    border-collapse: separate !important;
    border-spacing: 0 8px !important;
  }
  table.rate-table th,
  table.rate-table td,
  table.cancel-table th,
  table.cancel-table td {
    padding: 12px 10px !important;
    line-height: 1.55 !important;
    vertical-align: middle !important;
    word-break: keep-all;
  }
  /* 基本料金: 期間列を縦展開させない */
  table.rate-table td:nth-child(2),
  table.rate-table th:nth-child(2) {
    white-space: normal !important;
    word-break: break-word;
  }
  /* 料金列は右寄せで強調 */
  table.rate-table .price-col {
    white-space: nowrap;
    font-size: 18px !important;
    text-align: right !important;
  }
  /* キャンセルポリシー: 時期列を見やすく */
  table.cancel-table th {
    width: 38% !important;
    text-align: left !important;
    background: transparent !important;
    color: var(--ink) !important;
  }
  /* ========== 車両一覧 spec-grid 2カラム化 ========== */
  .spec-grid-v2 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px 10px !important;
  }
  .spec-grid-v2 .spec-v2 {
    font-size: 12.5px !important;
  }
  /* ========== 車両詳細 テーブル横スクロール強制 ========== */
  .equip-block .table-scroll,
  .specs-table-wrap,
  .veh-section .table-scroll {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    margin-inline: -12px;
    /* セクション padding を相殺して画面端まで使う */
    padding-inline: 12px;
  }
  table.equip-table,
  table.specs-table {
    min-width: 480px !important;
    font-size: 12px !important;
  }
}
/* =====================================================
   タッチデバイス
   ===================================================== */
@media (hover: none) {
  .btn-pop:hover,
  .btn-pop-ghost:hover,
  .fc-btn:hover,
  .header-cta:hover,
  .foot-shop-btn:hover,
  .shop-banner-btn:hover,
  .btn-line:hover,
  .btn-form:hover {
    top: 0;
  }
  a,
  button,
  .btn-pop,
  .fc-btn,
  .header-cta {
    min-height: 44px;
  }
}/*# sourceMappingURL=main.css.map */