@charset "UTF-8";

/* ==========================================================
   東風 LP / Front Page
   LP固有セクション
========================================================== */

/* ==========================================================
   First View
========================================================== */

/*
 * .fv-text は .fv の兄弟要素なので、
 * .fv-wrapper を絶対配置の基準にする。
 */
.fv-wrapper {
  position: relative;

  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0;

  overflow: hidden;
}

.fv {
  position: relative;

  width: 100%;
  margin: 0;
  padding: 0;

  overflow: hidden;
}

.fv-image {
  display: block;

  width: 100%;
  aspect-ratio: 16 / 8;
  margin: 0;

  background-image:
    url("https://kochi-lp.xrea.jp/wp-content/uploads/2026/07/fv-pc.webp");
  background-position: center 10%;
  background-size: cover;
  background-repeat: no-repeat;

  filter: brightness(108%);
}

.fv-text {
  position: absolute;
  top: 75%;
  right: 0;
  left: 0;
  z-index: 2;

  width: 100%;
  margin: 0;
  padding: 0.5rem 0;
  box-sizing: border-box;

  background: rgba(35, 35, 35, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transform: translateY(-50%);
}

.fv-text h2 {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto 0.5rem;

  color: var(--color-brand-soft);
  font-family: var(--font-base);
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.2rem;
  text-align: center;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.fv-catch {
  width: 95%;
  max-width: 1500px;
  margin: 0 auto;

  color: var(--color-white);
  font-family: var(--font-base);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.07rem;
  text-align: center;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.fv-rating {
  display: inline-block;
  margin-top: 0.35rem;
  font-weight: 700;
}

@supports not (
  (-webkit-backdrop-filter: blur(5px)) or
  (backdrop-filter: blur(5px))
) {
  .fv-text {
    background: rgba(35, 35, 35, 0.48);
  }
}

/* ==========================================================
   First View：SP
========================================================== */

@media screen and (max-width: 768px) {
  .fv-wrapper {
    height: 65vh;
    min-height: 360px;
  }

  .fv {
    width: 100%;
    height: 100%;
  }

  .fv-image {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;

    background-image:
      url("https://kochi-lp.xrea.jp/wp-content/uploads/2026/07/fv-sp.webp");
    background-position: center 5%;
  }

  .fv-text {
    top: 65%;

    padding: 0.35rem 0;

    background: rgba(35, 35, 35, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .fv-text h2 {
    width: 90%;
    max-width: none;
    margin: 0 auto 0.2rem;

    font-size: clamp(1.2rem, 4vw, 1.45rem);
    line-height: 1.35;
  letter-spacing: 0.2rem;
  }

  .fv-catch {
    width: 90%;
    max-width: none;

    font-size: 0.9rem;
    line-height: 1.45;
    letter-spacing: 0.04rem;
  }

  .fv-rating {
    margin: 0.25rem 0;
    font-size: 1rem;
  }
}

/* ==========================================================
   FV CTA / Common Buttons
========================================================== */

.cta-fv-sp {
  display: none;
}

@media (min-width: 769px) {
  .cta-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 1000px;
    margin: 1rem auto 1rem;
    padding: 0 20px;
  }

  .cta-buttons a {
    display: block;
    flex: 1;
    max-width: 420px;
  }

  .cta-buttons img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
}

@media (max-width: 768px) {

  .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin: 1rem auto 1.6rem;
    padding: 0 1rem;
  }

  .cta-buttons a {
    width: 100%;
    max-width: 400px;
  }

  .cta-buttons img {
    display: block;
    width: 100%;
    height: auto;
  }

  .cta-fv-sp {
    display: block;
    text-align: center;
    margin: 1rem auto 1.6rem;
    padding: 0 1rem;
  }

  .cta-fv-note {
    margin: 0.25rem auto 0.4rem;
    font-size: 0.8rem;
    color: var(--color-muted);
  }

  a.btn-radius-solid {
    display: inline-block;
    width: 100%;
    max-width: 320px;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--color-brand) 35%, transparent);
    background: linear-gradient(to bottom, #e6f4ef 0%, #cfe9df 100%);
    color: var(--color-brand);
    font-weight: 600;
    letter-spacing: 0.08rem;
    text-decoration: none;
    text-align: center;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
    transition: background 0.25s ease, transform 0.2s ease;
  }
}
  a.btn-radius-solid .fa-position-right {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
  }

@media (hover: hover) and (pointer: fine) {
  a.btn-radius-solid:hover {
    background: linear-gradient(to bottom, #d9efe7 0%, #bfe1d5 100%);
    transform: translateY(-1px);
  }
}

/* ==========================================================
   2nd CTA直下：SP専用SNS導線
========================================================== */

.second-cta-social {
  display: none;
}

@media (max-width: 768px) {
  .second-cta-social {
    display: block;
    width: 100%;
    margin: 1.5rem auto;
    padding: 1rem 1rem;
    box-sizing: border-box;
    text-align: center;
    background-color: #82ae46;
  }

  .second-cta-social__label {
    margin: 0 0 0.55rem;
    color: var(--color-muted);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.16rem;
    text-transform: uppercase;
  }

  .second-cta-social__icons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .second-cta-social__icons a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .second-cta-social__icons img {
    display: block;
    width: 36px;
    height: 36px;
    object-fit: contain;
  }
}

/* ==========================================================
   Problem Section
========================================================== */

.problem-section {
  background: var(--color-section-bg);
  margin-top: 0;
  padding: 2rem 1rem 2rem;
  text-align: center;
}

.problem-inner {
  max-width: var(--content-default);
  margin: 0 auto;
}

.problem h2{
  font-size: 1.5rem;
  color: #fff;
  margin: 1rem;
  letter-spacing: 0.2rem;
}

.lead-text,
.message-text {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
  margin: 1.2rem auto;
  text-align: left;
  max-width: 600px;
}

.highlight {
  font-weight: 700;
  color: var(--color-brand);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 800px;
  margin: 1.5rem auto;
}

.problem-item {
  background: #ffffff;
  border: 2px solid var(--color-border-soft);
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.problem-text {
  font-size: 0.8rem;
  color: var(--color-text);
  font-weight: 500;
  text-align: justify;
  margin: 0;
}

@media (min-width: 769px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}

@media (max-width: 768px) {
  .problem-section {
    padding: 2.2rem 1rem;
  }

  .message-text {
    text-align: left;
    font-size: 0.95rem;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    width: 92%;
  }

  .problem-item {
    padding: 10px;
    min-height: 3rem;
  }

  .problem-text {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
    line-height: 1.2;
    text-align: left;
  }
}

/* ==========================================================
   Menu / Voice Tabs
========================================================== */

.tab-block {
  width: 100%;
  max-width: var(--content-default);
  margin: 3rem auto 1.5rem;
  padding: 0;
  text-align: center;
}

.tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: min(100%, 640px);
  margin: 0 auto 1.5rem;
  padding: 4px;
  background: var(--color-brand-soft);
  border-radius: 999px;
}

.tab-btn {
  flex: 1;
  padding: 6px 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--color-brand);
  font-family: var(--font-base);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.tab-btn.active,
.tab-btn[aria-selected="true"] {
  background: var(--color-brand);
  color: var(--color-white);
}

.tab-content {
  display: none;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 1.5rem;
}

.tab-content.active {
  display: block;
}

/* Menu */
.menu-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  overflow: hidden;
}

.menu-image-overlay {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  background-image: url("https://kochi-lp.xrea.jp/wp-content/uploads/2026/07/menu.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.menu-image-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.10);
  pointer-events: none;
}

.menu-overlay-text {
  position: relative;
  z-index: 2;
  width: min(88%, 820px);
  margin: 2.5rem auto;
  padding: 1.6rem 2rem;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.menu-overlay-subtitle {
  margin: 0.45rem auto 0.05rem;
  color: var(--color-heading-strong);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.18rem;
}

.menu-overlay-desc {
  margin: 0 auto 0.55rem;
  color: var(--color-text);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08rem;
}

/* Voice */
.voice-section {
  width: 100%;
  max-width: var(--content-wide);
  margin: 1.5rem auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.voice-slider {
  display: flex;
  width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.voice-slider::-webkit-scrollbar {
  display: none;
}

.voice-item {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: center;
}

.voice-box {
  width: min(100%, 900px);
  padding: 1px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(2, 135, 96, 0.35),
    rgba(130, 174, 70, 0.25)
  );
}

.voice-inner {
  padding: 1.5rem 2rem;
  border-radius: 11px;
  background: var(--color-white);
}

.voice-inner h3 {
  margin: 0 auto 0.7rem;
  color: var(--color-brand);
  font-size: 1rem;
  letter-spacing: 0.08rem;
}

.voice-inner p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  text-align: center;
}

.voice-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 1rem auto 0;
}

.voice-dots .dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-brand) 25%, transparent);
  cursor: pointer;
}

.voice-dots .dot.active,
.voice-dots .dot[aria-current="true"] {
  background: color-mix(in srgb, var(--color-brand) 90%, transparent);
}

@media (hover: hover) and (pointer: fine) {
  .tab-btn:hover {
    background: color-mix(in srgb, var(--color-brand) 12%, transparent);
  }
}

@media screen and (max-width: 768px) {
  .tab-block {
    margin-top: 2rem;
  }

  .tabs {
    width: 100%;
    margin: 0 auto 1rem;
    padding: 0;
    gap: 0;
    background: transparent;
    border-radius: 0;
  }

  .tab-btn {
    position: relative;
    border-radius: 0;
    color: var(--color-muted);
  }

  .tab-btn.active,
  .tab-btn[aria-selected="true"] {
    background: transparent;
    color: var(--color-brand);
  }

  .tab-btn.active::after,
  .tab-btn[aria-selected="true"]::after {
    content: "";
    position: absolute;
    left: 20%;
    bottom: -4px;
    width: 60%;
    height: 2px;
    background: var(--color-brand);
    border-radius: 2px;
  }

  .menu-image-overlay {
    min-height: 500px;
    background-position: center;
  }

  .menu-overlay-text {
    width: 90%;
    margin: 1.4rem auto;
    padding: 1rem 0.8rem;
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 6px;
  }

  .menu-overlay-subtitle {
    margin: 0.35rem auto 0.05rem;
    font-size: 1.12rem;
    line-height: 1.35;
    letter-spacing: 0.12rem;
  }

  .menu-overlay-desc {
    width: 96%;
    margin: 0 auto 0.45rem;
    font-size: 0.82rem;
    line-height: 1.45;
    letter-spacing: 0.035rem;
  }

  .voice-section {
    padding: 0 1rem;
  }

  .voice-inner {
    padding: 1.2rem 1rem;
  }

  .voice-inner p {
    font-size: 0.88rem;
    line-height: 1.7;
  }
}

/* ==========================================================
   Price Section
========================================================== */

.price {
  padding: 1rem 20px;
  background: var(--color-muted-accent);
  text-align: center;
  overflow: visible;
}

.price h2 {
  font-size: 1.5rem;
  color: #fff;
  margin: 1rem;
  letter-spacing: 0.2rem;
}

.price-table {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 15px;
  align-items: stretch;
}

.price-card {
  background: var(--color-brand-soft);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.price-card h3,
.price-card h4 {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 0.8rem;
  font-weight: bold;
  border-bottom: 2px solid var(--color-muted-accent);
}

.price-card h3 {
  padding-bottom: 10px;
}

.price-card h4 {
  padding-top: 0.5rem;
}

.small-title {
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: -1rem auto 0;
  color: var(--color-text);
}

.price-list li {
  padding: 0.8rem 0 0.5rem;
  font-size: 1rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  border-bottom: 1px solid color-mix(in srgb, var(--color-muted-accent) 20%, transparent);
}

.price-list li:last-child {
  border-bottom: none;
}

.price-list .time {
  font-size: 0.9rem;
  font-weight: normal;
  color: var(--color-muted);
}

.price-list .additional {
  font-size: 1rem;
  color: var(--color-text);
}

.note {
  font-size: 1rem;
  color: #fff;
  margin-top: 1rem;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.2rem;
}

.note a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.note a:hover {
  color: var(--color-brand-soft);
}

.note-small {
  font-size: 0.8rem;
  color: var(--color-text);
  margin-top: 1rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  text-align: justify;
}

.calendar-card {
  display: flex;
  flex-direction: column;
}

.calendar-embed {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.calendar-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================
   Price - Travel information
========================================================== */

.price-travel {
  width: min(100%, 1200px);
  margin: 2rem auto 0;
  padding: 0.3rem 2rem;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.price-travel__text {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.price-travel__title {
  margin: 0 0 0.6rem;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12rem;
  text-align: left;
}

.price-travel__text p {
  margin: 0;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.9;
  letter-spacing: 0.08rem;
  text-align: left;
}

.price-travel__link {
  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 250px;
  padding: 0.8rem 1.25rem;
  box-sizing: border-box;

  border: 1px solid #fff;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.94);
  color: var(--color-brand);

  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06rem;
  text-align: center;
  text-decoration: none;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .price-travel__link:hover {
    border-color: var(--color-brand);
    background: var(--color-brand);
    color: #fff;
    transform: translateY(-2px);
  }
}

@media (max-width: 768px) {
  .price-travel {
    margin-top: 1.5rem;
    padding: 1.4rem 1.1rem;
    display: block;
  }

  .price-travel__title {
    text-align: center;
  }

  .price-travel__text p {
    font-size: 0.85rem;
    line-height: 1.8;
  }

  .price-travel__link {
    width: 100%;
    min-width: 0;
    margin-top: 1.2rem;
  }
}

@media (max-width: 768px) {
  .price {
    padding: 1.2rem 15px;
  }

  .price h2 {
  font-size: 1.25rem;
    margin-bottom: 30px;
  }

  .price-table {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .price-card {
    padding: 20px 15px;
  }
}

/* ==========================================================
   2nd CTA
========================================================== */
@media (min-width: 769px) {

  .cta-buttons--2nd {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0;
  }

  .cta-buttons--2nd a {
    flex: 1;
    max-width: 420px;
    display: block;
  }

  .cta-buttons--2nd img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .cta-buttons--2nd a {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
  }

  .cta-buttons--2nd a:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  }
}

@media (max-width: 768px) {
  .cta-section-2 {
    padding: 1.2rem 0 1.8rem;
  }

  .cta-buttons--2nd {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 1rem auto;
    padding: 0 1rem;
  }

  .cta-buttons--2nd a {
    width: 100%;
    max-width: 320px;
  }

  .cta-buttons--2nd img {
    display: block;
    width: 100%;
    height: auto;
  }
}

/* ==========================================================
   Profile
========================================================== */

.profile-section {
  margin: 1rem auto;
  width: 100%;
  padding: 2rem 0;
  background-color: var(--color-warm-bg);
}

.profile-box {
  width: 900px;
  max-width: 95%;
  margin: 0 auto;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  text-align: center;
}

.profile-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-border-soft);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.profile-headings {
  text-align: center;
  margin-bottom: 1.8rem;
}

.profile-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  padding-bottom: 0.8rem;
  color: var(--color-brand);
}

.profile-section h3 {
  font-size: 1.3rem;
  letter-spacing: 0.5rem;
  font-weight: bold;
  padding-bottom: 0.3rem;
}

.profile-section h4 {
  font-size: 0.8rem;
  color: var(--color-muted-accent);
  letter-spacing: 0.2rem;
  font-weight: 500;
}

.profile-section h5 {
  font-size: 1rem;
  color: var(--color-muted);
  letter-spacing: 0.1rem;
  font-weight: 600;
}

.profile-section h6 {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
}

.profile-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.profile-section p {
  font-size: 0.9rem;
  margin: 0 1.5rem;
  color: var(--color-text);
  text-align: justify;
}

@media (max-width: 768px) {
  .profile-heading-image {
    width: 150px;
    height: 150px;
    margin-bottom: 1rem;
  }

  .profile-box {
    width: 95%;
  }

  .profile-text {
    width: 98%;
    margin: 0 auto;
  }
}

/* ==========================================================
   FAQ
========================================================== */

.faq {
  padding-top: 1rem;
  padding-bottom: 40px;
  background: #ffffff;
}

.faq h2 {
  margin: 0 auto 0.6rem;
  color: var(--color-brand);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-align: center;
}

.faq h3 {
  margin: 0 auto;
  color: var(--color-brand);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-align: center;
}

/* PC・SPともに1段組 */
.accordion-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0;
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.accordion-item {
  position: relative;
  align-self: start;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
  border: 0;
  border-bottom: 2px dotted var(--color-muted-accent);
  border-radius: 0;
  transition: background-color 0.25s ease;
}

/* 以前の左右縦線を無効化 */
.accordion-item::before,
.accordion-item::after {
  display: none;
  content: none;
}

.accordion-item.active {
  background: color-mix(
    in srgb,
    var(--color-muted-accent) 7%,
    var(--color-white)
  );
}

.accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 0.9rem 1rem;
  border: 0;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  box-sizing: border-box;
}

.accordion-toggle h3 {
  margin: 0;
  padding: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04rem;
  text-align: left;
  transition: color 0.25s ease;
}

.accordion-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 3px
    color-mix(in srgb, var(--color-border-soft) 70%, transparent)
    inset;
}

.rotate-icon {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
  color: color-mix(in srgb, var(--color-brand) 70%, transparent);
  transition: transform 0.3s ease;
}

.accordion-item.active .rotate-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.35s ease;
}

.accordion-item.active .accordion-content {
  padding-top: 0.8rem;
  padding-bottom: 1rem;
  border-top: 1px solid var(--color-border-soft);
}

.accordion-content p {
  margin: 0;
  padding: 0 0.4rem;
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.7;
}

.accordion-content a {
  color: var(--color-brand);
  text-decoration: underline;
}

.accordion-content a:hover {
  color: var(--color-hover);
}

@media (hover: hover) and (pointer: fine) {
  .accordion-toggle:hover h3 {
    color: var(--color-brand);
  }
}

@media (max-width: 768px) {
  .accordion-wrapper {
    width: 100%;
    padding: 0 0.9rem;
  }

  .accordion-toggle {
    padding: 0.75rem 0.7rem;
  }

  .accordion-toggle h3 {
    font-size: 0.95rem;
  }

  .rotate-icon {
    width: 1rem;
    height: 1rem;
  }

  .accordion-content {
    padding: 0 0.7rem;
  }

  .accordion-item.active .accordion-content {
    padding-top: 0.7rem;
    padding-bottom: 0.9rem;
  }

  .accordion-content p {
    padding: 0 0.2rem;
    font-size: 0.88rem;
  }
}

/* ==========================================================
   Contact
========================================================== */

.contact {
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1rem 1.5rem;
  background: var(--color-section-bg);
  text-align: center;
}

.contact-inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.contact h2 {
  margin: 0 auto 0.6rem;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
}

.contact h3.contact-lead {
  margin: 0 auto 2rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.contact h3.contact-lead a {
  color: var(--color-brand);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 1.25rem 1rem;
}

.contact-details h4 {
  margin: 0 0 1rem;
  color: var(--color-text);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12rem;
}

.contact .info {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}

.contact .info p {
  margin: 0.25rem auto;
  font-size: 0.9rem;
  letter-spacing: 0.08rem;
}

.contact .info a {
  color: var(--color-brand);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.contact-map {
  width: 88%;
  min-width: 0;
  margin: auto;
  align-self: center;
  justify-self: center;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(30, 55, 45, 0.12);
  background: var(--color-white);
}

.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
}

.contact-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 0.7rem;
  width: 100%;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border-soft);
  font-size: 0.75rem;
  line-height: 1.6;
}

.contact-legal-links a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

@media (hover: hover) and (pointer: fine) {
  .contact h3.contact-lead a:hover,
  .contact .info a:hover {
    color: var(--color-hover);
  }

  .contact-legal-links a:hover {
    opacity: 0.7;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 2rem 1rem 1.25rem;
  }

  .contact h3.contact-lead {
    width: min(100%, 32rem);
    margin-bottom: 1.4rem;
    font-size: 0.92rem;
    text-align: left;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .contact-details {
    padding: 0.5rem 0;
  }

  .contact-map {
    width: 100%;
  }

  .contact-map iframe {
    min-height: 280px;
  }

  .contact-legal-links {
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.75rem;
  }

  .contact-legal-separator {
    display: none;
  }
}

/* ==========================================================
   Voice Slider：横長カード × 縦3段 × 4スライド
========================================================== */

.voice-section-title {
  margin: 0 auto 1.25rem;
  color: var(--color-heading-strong);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  letter-spacing: 0.16rem;
}

.voice-slider {
  display: flex;
  width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.voice-slider::-webkit-scrollbar {
  display: none;
}

.voice-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0.15rem;
  box-sizing: border-box;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.voice-slide-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 auto 1rem;
}

.voice-slide-header h3 {
  margin: 0;
  color: var(--color-brand);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  letter-spacing: 0.12rem;
}

.voice-slide-icon {
  color: var(--color-brand);
  font-size: 1.2rem;
  line-height: 1;
}

/* 1スライドにつき、横長カードを縦3段 */
.voice-review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  width: min(100%, 900px);
  margin: 0 auto;
}

.voice-review-card {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  align-items: center;
  min-height: 118px;
  margin: 0;
  padding: 0.5rem 1.4rem;
  box-sizing: border-box;
  overflow: hidden;

  background:
    linear-gradient(var(--color-white), var(--color-white)) padding-box,
    linear-gradient(
      135deg,
      rgba(2, 135, 96, 0.42),
      rgba(130, 174, 70, 0.26)
    ) border-box;

  border: 1px solid transparent;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(30, 55, 45, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.voice-review-card::before {
  content: "“";
  position: absolute;
  top: -0.5rem;
  left: 0.65rem;
  color: rgba(2, 135, 96, 0.08);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  pointer-events: none;
}

.voice-stars {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-right: 1rem;
  color: #b08a23;
  font-size: 0.9rem;
  letter-spacing: 0.08rem;
  text-align: center;
  white-space: nowrap;
  border-right: 1px solid var(--color-border-soft);
}

.voice-review-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-left: 1.25rem;
  color: var(--color-text);
  font-size: 0.92rem;
  line-height: 1.75;
  letter-spacing: 0.055rem;
  text-align: left;
}

.voice-slide--lesson .voice-review-card {
  background:
    linear-gradient(#fbfaf7, #fbfaf7) padding-box,
    linear-gradient(
      135deg,
      rgba(67, 47, 47, 0.34),
      rgba(176, 138, 35, 0.26)
    ) border-box;
}

.voice-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem auto 0;
}

.voice-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0;
}

.voice-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--color-border-soft);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-brand);
  font-family: Arial, sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .voice-arrow:hover {
    background: var(--color-brand);
    color: var(--color-white);
    transform: translateY(-1px);
  }

  .voice-review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(30, 55, 45, 0.12);
  }
}

@media screen and (max-width: 768px) {
  .voice-section {
    padding: 0 0.75rem;
  }

  .voice-section-title {
    margin-bottom: 1rem;
    font-size: 1.35rem;
  }

  .voice-review-grid {
    gap: 0.7rem;
  }

  .voice-review-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0.95rem 1rem;
  }

  .voice-stars {
    margin: 0 auto 0.55rem;
    padding: 0 0 0.45rem;
    border-right: 0;
    border-bottom: 1px solid var(--color-border-soft);
  }

  .voice-review-card p {
    padding-left: 0;
    font-size: 0.86rem;
    line-height: 1.68;
  }

  .voice-slide-header {
    margin-bottom: 0.8rem;
  }

  .voice-controls {
    gap: 0.75rem;
  }

  .voice-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .voice-slider {
    scroll-behavior: auto;
  }

  .voice-arrow,
  .voice-review-card {
    transition: none;
  }
}