@charset "UTF-8";
/*!
Theme Name: seiko-makino
Theme URI: http://underscores.me/
Author: duotone
Author URI: http://underscores.me/
Description: SEIKO LABO - Image Consulting Theme
Version: 1.0.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: seiko-makino
*/
@import url("https://use.typekit.net/qym7mbe.css");
/* ==========================================================================
   Custom Properties
   ========================================================================== */
:root {
  --color-bg: #F7F9F8;
  --color-bg-white: #FFFFFF;
  --color-beige: #E0CBBA;
  --color-beige-light: #F0E6DC;
  --color-beige-lighter: #F7F0E9;
  --color-sage: #E6EFEA;
  --color-pink: #FCDEE3;
  --color-pink-dark: #E8B4BD;
  --color-brown-1: #C5B3A5;
  --color-brown-2: #C8A698;
  --color-brown-3: #D1B29B;
  --color-text: #515151;
  --color-text-light: #686868;
  --color-text-muted: #999999;
  --color-red: #A50404;
  --color-cta-bg: #FCDEE3;
  --color-cta-hover: #f5c8d0;
  --color-border: #E0D8D0;
  --font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  --font-script: 'Great Vibes', cursive;
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --section-py: 100px;
  --section-py-mobile: 60px;
  --container-max: 1100px;
  --container-px: 24px;
  --transition: 0.3s ease;
  --radius-btn: 50px;
  --radius-card: 24px;
  --header-height: 120px;
}

/* ==========================================================================
   Reset / Normalize
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover {
  opacity: 0.7;
}

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

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

/* ==========================================================================
   Utilities
   ========================================================================== */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.skip-link:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.section__inner {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.section {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-beige);
  color: var(--color-bg-white);
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 16px 40px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: background-color var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
}
.btn-cta-wrap {
  text-align: center;
}
.btn-cta::after {
  content: "";
  display: inline-block;
  width: 44px;
  height: 7px;
  background: url("./images/button-next-white.svg") no-repeat center;
  background-size: contain;
  transition: transform var(--transition);
}

.btn-cta:hover {
  background-color: var(--color-brown-1);
  transform: translateY(-2px);
  opacity: 1;
}

.btn-cta--large {
  padding: 20px 56px;
  font-size: 1rem;
}

.btn-cta__arrow {
  display: inline-block;
  transition: transform var(--transition);
}

.btn-cta:hover .btn-cta__arrow {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  padding: 14px 36px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--color-text);
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .btn-outline {
    font-size: 0.85rem;
  }
}
.btn-outline::after {
  content: "";
  display: inline-block;
  width: 44px;
  height: 7px;
  background: url("./images/button-next-gray.svg") no-repeat center;
  background-size: contain;
  transition: transform var(--transition);
}
.btn-outline--light {
  border-color: #fff;
  color: #fff;
}
.btn-outline--light::after {
  background: url("./images/button-next-white.svg") no-repeat center;
}
.btn-outline:hover::after {
  transform: translateX(4px);
}

/* ==========================================================================
   Section Headings
   ========================================================================== */
.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__header--left {
  text-align: left;
}

.section__heading-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--color-brown-2);
  line-height: 1.2;
  margin: 0 auto 50px;
}

.section__heading-script--serif {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: 0.08em;
}

.section__heading {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--color-text-light);
  margin: 0;
}

.section__heading-sub {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.section__heading-large {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--color-text);
}

.section__heading-number {
  font-family: var(--font-serif);
  font-size: 1.5em;
  color: var(--color-brown-2);
}

.section__heading-badge {
  display: inline-block;
}
.section__heading-badge img {
  width: 100%;
  max-width: 240px;
  margin-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .section__heading-badge img {
    max-width: 80px;
  }
}

.section__header-sub {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

/* Section Decorations */
.section__decoration {
  position: absolute;
  border-radius: 50%;
  background-color: var(--color-beige-light);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

.section__decoration--circle-right {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -100px;
}

.section__decoration--circle-left {
  width: 250px;
  height: 250px;
  top: 40px;
  left: -80px;
}

/* Wave Dividers */
.section__wave {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.section__wave svg {
  width: 100%;
  height: auto;
  min-height: 60px;
  display: block;
}

.section__wave--top {
  color: var(--color-bg);
  margin-bottom: -1px;
}

.section__wave--bottom {
  color: var(--color-bg);
  margin-top: -1px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background-color: transparent;
  transition: background-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .site-header__inner {
    padding: 0 16px;
  }
}

.site-header__logo {
  flex-shrink: 0;
}

.site-header__logo-text img {
  width: 200px;
}
@media screen and (max-width: 1024px) {
  .site-header__logo-text img {
    width: 120px;
  }
}

.site-header__logo .custom-logo-link img {
  max-height: 50px;
  width: auto;
}

.site-header__nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.site-header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__menu li a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition);
}

.site-header__menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-beige);
  transition: width var(--transition);
}

.site-header__menu li a:hover::after,
.site-header__menu li.current-section a::after {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .site-header__menu li a:hover::after,
  .site-header__menu li.current-section a::after {
    width: 50px;
  }
}

.site-header__menu li a:hover {
  opacity: 1;
  color: var(--color-brown-2);
}

.site-header__mobile-actions {
  display: none;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.site-header__mobile-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: color var(--transition);
}
.site-header__mobile-instagram .icon-instagram {
  width: 20px;
}

.site-header__mobile-instagram:hover {
  color: var(--color-brown-2);
  opacity: 1;
}

.site-header__social {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.site-header__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: color var(--transition);
}
.site-header__social-link .icon-instagram {
  width: 20px;
}

.site-header__social-link:hover {
  color: var(--color-brown-2);
  opacity: 1;
}

/* Hamburger Toggle */
.site-header__menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 32px;
  height: auto;
  z-index: 1010;
}

.site-header__menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.site-header__menu-label {
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  margin-top: 0;
  color: var(--color-text);
}

.hamburger-line {
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
}

.site-header__menu-toggle[aria-expanded=true] .hamburger-line--top {
  transform: translateY(7px) rotate(25deg);
}

.site-header__menu-toggle[aria-expanded=true] .hamburger-line--middle {
  opacity: 0;
}

.site-header__menu-toggle[aria-expanded=true] .hamburger-line--bottom {
  transform: translateY(-5px) rotate(-25deg);
}

/* ==========================================================================
   Hero Slider
   ========================================================================== */
.hero-slider {
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  padding-top: var(--header-height);
}
@media screen and (max-width: 1024px) {
  .hero-slide {
    padding-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .hero-slide[data-slide="1"] .hero-slide__text {
    position: absolute;
    top: calc(16% + var(--header-height));
    right: 20px;
    left: unset;
  }
}
@media screen and (max-width: 1024px) {
  .hero-slide[data-slide="1"] .hero-slide__title img {
    width: 160px;
  }
}
@media screen and (max-width: 1024px) {
  .hero-slide[data-slide="2"] .hero-slide__text {
    position: absolute;
    top: calc(30% + var(--header-height));
  }
}
@media screen and (max-width: 1024px) {
  .hero-slide[data-slide="2"] .hero-slide__title img {
    width: 90px;
  }
}
@media screen and (max-width: 1024px) {
  .hero-slide[data-slide="3"] .hero-slide__text {
    position: absolute;
    top: calc(30% + var(--header-height));
  }
}
.hero-slide.is-active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.hero-slide__content {
  min-height: 60vh;
}
@media screen and (max-width: 1024px) {
  .hero-slide__content {
    min-height: 100vh;
  }
}

.hero-slide__text {
  position: absolute;
  top: 50%;
  left: 30%; /* Safari用 */
  transform: translate(-50%, -50%);
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .hero-slide__text {
    left: 20px; /* Safari用 */
    transform: translate(0, -50%);
    margin-top: 0;
    margin-bottom: 60px;
  }
}

.hero-slide__label {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.hero-slide__subtitle {
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.hero-slide__title {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .hero-slide__title {
    margin-bottom: 40px;
  }
}
.hero-slide__title img {
  width: 300px;
}
@media screen and (max-width: 1024px) {
  .hero-slide__title img {
    width: 200px;
  }
}
.hero-slide__title.small img {
  width: 120px;
}

.hero-slide__title-accent {
  font-family: var(--font-script);
  font-size: 1.3em;
  color: var(--color-brown-2);
}

.hero-slide__desc {
  font-size: 1.2rem;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .hero-slide__desc {
    font-size: 0.75rem;
  }
}

.hero-slide__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-slide__image {
  line-height: 0;
  min-height: 60vh;
}
@media screen and (max-width: 1024px) {
  .hero-slide__image {
    height: calc(100vh - var(--header-height));
    min-height: unset;
  }
}

.hero-slide__image img {
  width: 100%;
  height: 100%;
  min-height: 60vh;
  line-height: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .hero-slide__image img {
    min-height: unset;
  }
}

/* Hero Slide CTA Link (テキストリンク) */
.hero-slide__cta-link {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-text);
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--transition), border-color var(--transition);
}
@media screen and (max-width: 1024px) {
  .hero-slide__cta-link {
    font-size: 1rem;
  }
}

.hero-slide__cta-link:hover {
  color: var(--color-brown-2);
  border-color: var(--color-brown-2);
  opacity: 1;
}

.hero-slide__cta-link--with-arrow::after {
  content: "";
  display: inline-block;
  width: 56px;
  height: 3px;
  margin-left: 0.8em;
  vertical-align: middle;
  background-image: url(images/button-next-gray.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: opacity var(--transition);
}
@media screen and (max-width: 1024px) {
  .hero-slide__cta-link--with-arrow::after {
    display: block;
    margin-left: 0;
    margin-top: 20px;
    width: 80px;
    height: 4px;
  }
}

.hero-slide__cta-link--with-arrow:hover::after {
  opacity: 0.7;
}

/* Hero Slide 円形CTA（まずは無料相談に申し込む）*/
.hero-slide__cta-circle {
  position: fixed;
  z-index: 1000;
  bottom: 20px;
  right: 40px;
  width: 220px;
  height: 220px;
  transition: bottom 0.4s ease;
}
.hero-slide__cta-circle.is-cta-scrolled {
  bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .hero-slide__cta-circle {
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    transition: none;
  }
  .hero-slide__cta-circle.is-cta-scrolled {
    bottom: 0;
  }
}

.hero-slide__cta-circle-lead {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.hero-slide__cta-circle-main {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-slide__cta-circle-sub {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* Slider Dots */
.hero-slider__dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .hero-slider__dots {
    bottom: 190px;
  }
}

.hero-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-beige);
  background-color: transparent;
  cursor: pointer;
  transition: background-color var(--transition);
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .hero-slider__dot {
    width: 8px;
    height: 8px;
  }
}

.hero-slider__dot.is-active,
.hero-slider__dot:hover {
  background-color: var(--color-beige);
}

/* ==========================================================================
   Voice Section
   ========================================================================== */
.section--voice {
  background-color: #f2f0eb;
}
.section--voice .section__heading-script img {
  width: 240px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 1024px) {
  .section--voice .section__heading-script img {
    width: 160px;
    margin: 0 auto 20px;
  }
}

.voice-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .voice-list {
    gap: 30px;
    margin-top: 40px;
  }
}

.voice-item {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.voice-item.first {
  flex-direction: column;
}
.voice-item:first-child {
  gap: 90px;
}
@media screen and (max-width: 1024px) {
  .voice-item:first-child {
    flex-direction: column;
    gap: 40px;
  }
}

.voice-item--reverse {
  flex-direction: row-reverse;
}

.voice-item__image {
  flex: 0 0 45%;
}

.voice-item__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .voice-item__image img {
    aspect-ratio: 16/9;
  }
}

.voice-item__content {
  flex: 1;
}

.voice-item__title-wrap {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .voice-item__title-wrap {
    margin-bottom: 20px;
  }
}

.voice-item__label {
  position: absolute;
  top: -0.5em;
  right: 0;
  width: 300px;
  height: auto;
  max-height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right top;
     object-position: right top;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .voice-item__label {
    width: 200px;
    max-height: 60px;
  }
}
.voice-item__label.label1 {
  top: -30px;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .voice-item__label.label1 {
    top: -30px;
    right: unset;
    left: -10px;
    width: 230px;
    z-index: 23;
    height: auto;
    max-height: unset;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.voice-item__label.label2 {
  top: -60px;
  left: -20px;
}
@media screen and (max-width: 1024px) {
  .voice-item__label.label2 {
    left: 0;
  }
}
.voice-item__label.label3 {
  top: -60px;
  left: 0;
}

.voice-item__title {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 0;
  letter-spacing: 0.3em;
  color: var(--color-text-light);
}
@media screen and (max-width: 1024px) {
  .voice-item__title {
    font-size: 1.05rem;
    letter-spacing: 0.15em;
  }
}

.voice-item__text {
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 40px;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1024px) {
  .voice-item__text {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
  }
}

.voice-item__meta {
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text-light);
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .voice-item__meta {
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Concept Section
   ========================================================================== */
.section--concept {
  background-color: #f2f0eb;
  padding: 0;
}

.section--concept .section__inner {
  padding-top: var(--section-py);
  padding-bottom: 0;
}

.concept-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.concept-content__image {
  flex: 0 0 50%;
  position: relative;
  top: 140px;
}

.concept-content__image img {
  width: 400px;
}

.concept-content__text {
  flex: 1;
}

.concept-content__title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 24px;
}

.concept-content__text p {
  font-size: 0.9375rem;
  line-height: 2;
  color: var(--color-text-light);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.section--cta {
  background-color: var(--color-bg-white);
  text-align: center;
}

.cta-block__lead {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.cta-block__lead-script {
  font-family: var(--font-script);
  font-size: 1.8em;
  color: var(--color-brown-2);
}

.cta-block__title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.cta-block__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Service Section
   ========================================================================== */
.section--service {
  background-color: var(--color-bg);
}
.section--service .section__header {
  text-align: right;
}
.section--service .section__header .section__heading-script {
  margin-bottom: 30px;
}
.section--service .section__header img {
  margin: 0 0 0 auto;
  width: 240px;
}
@media screen and (max-width: 1024px) {
  .section--service .section__header img {
    width: 200px;
  }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 40px;
  margin-top: 70px;
}

.service-card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  background-color: #f2f0eb;
}
.service-card:nth-child(2), .service-card:nth-child(3), .service-card:nth-child(6) {
  background-color: #f0f5f2;
}

.service-card__image img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-card__content {
  padding: 42px 42px 80px;
}
@media screen and (max-width: 1024px) {
  .service-card__content {
    padding: 32px 24px 40px;
  }
}

.service-card__label {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.service-card__title {
  position: relative;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 60px;
  text-align: center;
  color: var(--color-brown-3);
}
@media screen and (max-width: 1024px) {
  .service-card__title {
    font-size: 1.2rem;
  }
}
.service-card__title::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%; /* Safari用 */
  transform: translateX(-50%);
  display: block;
  width: 50px;
  height: 1px;
  background-color: var(--color-text-light);
}

.service-card__text {
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text-light);
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1024px) {
  .service-card__text {
    font-size: 0.85rem;
  }
}
.service-card__text p {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .service-card__text p {
    margin-bottom: 20px;
  }
}
.service-card__text p:last-child {
  margin-bottom: 0;
}

.service-card__note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 8px;
}

/* ==========================================================================
   Plan Section
   ========================================================================== */
.section--plan {
  background-color: var(--color-beige-lighter);
  background-image: url("./images/plan-bg.png");
  background-size: cover;
  background-position: center;
  padding: 0 0 200px;
  overflow: visible;
}
@media screen and (max-width: 1024px) {
  .section--plan {
    background-position: top;
    padding-bottom: 100px;
  }
}
.section--plan .section__wave--top {
  color: var(--color-beige-lighter);
}
.section--plan .section__wave--top svg {
  min-height: 310px;
}
@media screen and (max-width: 1024px) {
  .section--plan .section__wave--top svg {
    min-height: 130px;
  }
}
.section--plan .section__heading-script img {
  width: 240px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 1024px) {
  .section--plan .section__heading-script img {
    width: 160px;
    margin: 0 auto 20px;
  }
}

.section--plan .section__inner {
  padding-top: 0;
  padding-bottom: var(--section-py);
}

.section--plan .btn-cta:hover::after,
.section--plan .btn-outline:hover::after {
  transform: translateX(4px);
}

.plan-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 100px;
  margin-bottom: 64px;
}
@media screen and (max-width: 1024px) {
  .plan-item {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .plan-item__price-label {
    margin-right: 4px;
  }
}
@media screen and (max-width: 1024px) {
  .plan-item__duration-label {
    margin-right: 4px;
  }
}

.plan-item:last-child {
  margin-bottom: 0;
}

.plan-item--reverse {
  flex-direction: row-reverse;
}

.plan-item--dark {
  background-color: rgba(81, 81, 81, 0.9);
  color: #fff;
}

.plan-item--dark .plan-item__text {
  color: rgba(255, 255, 255, 0.8);
}

.plan-item__image {
  flex: 0 0 40%;
}

.plan-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 280px;
}

.plan-item__content {
  flex: 1;
  padding: 0 40px;
}
@media screen and (max-width: 1024px) {
  .plan-item__content {
    padding: 0;
    width: 100%;
  }
}

.plan-item__label {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.plan-item--dark .plan-item__label {
  color: rgba(255, 255, 255, 0.6);
}

.plan-item__title {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
  color: var(--color-brown-3);
}
@media screen and (max-width: 1024px) {
  .plan-item__title {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 30px;
  }
}

.plan-item__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .plan-item__text {
    font-size: 0.85rem;
  }
}

.plan-item__list-block {
  margin-bottom: 30px;
}

.plan-item__list-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  margin-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .plan-item__list-label {
    font-size: 0.85rem;
  }
}

.plan-item__list {
  list-style: disc;
  padding: 0 0 0 20px;
  margin: 0;
}
.plan-item__list li {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 2;
  padding-left: 0.3em;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .plan-item__list li {
    font-size: 0.85rem;
    padding-left: 0;
  }
}

.plan-item__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--color-beige);
}

.plan-item__price {
  margin-top: 30px;
  font-size: 1.1rem;
  color: var(--color-text-light);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background-color: rgba(209, 178, 155, 0.1);
  padding: 16px 24px;
  border-radius: var(--radius-card);
}
.plan-item__price.sp-none {
  display: flex !important;
  min-height: 90px;
}
@media screen and (max-width: 1024px) {
  .plan-item__price.sp-none {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .plan-item__price {
    font-size: 0.85rem;
    padding: 4px 12px;
    margin-top: 0;
    width: 60%;
    border-radius: 5px;
    white-space: nowrap;
    min-height: 60px;
    display: flex !important;
    align-items: center;
  }
}
@media screen and (max-width: 1024px) {
  .plan-item__price.sp-none {
    display: none !important;
  }
}
.plan-item__price-label {
  font-weight: 700;
  color: var(--color-text-light);
}
.plan-item__price.null {
  background-color: rgba(230, 239, 234, 0.6);
}
@media screen and (max-width: 1024px) {
  .plan-item__price.null {
    min-height: 60px;
    display: flex;
  }
}
@media screen and (max-width: 1024px) {
  .plan-item__price.null.sp-none {
    display: none;
  }
}

.plan-item__price-num {
  font-family: "futura-pt", var(--font-body), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1024px) {
  .plan-item__price-num {
    font-size: 1.2rem;
  }
}
.plan-item__price-num.null {
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-text-light);
  position: relative;
  top: 2px;
}
@media screen and (max-width: 1024px) {
  .plan-item__price-num.null {
    font-size: 0.85rem;
  }
}

.plan-item--dark .plan-item__price-num {
  color: #fff;
}

.plan-item__duration {
  font-size: 1rem;
}
@media screen and (max-width: 1024px) {
  .plan-item__duration {
    font-size: 0.85rem;
    width: 40%;
    margin-bottom: 0;
  }
}
.plan-item__duration-label {
  font-weight: 700;
  color: var(--color-text-light);
  margin-right: 16px;
}
@media screen and (max-width: 1024px) {
  .plan-item__duration-label {
    margin-right: 4px;
  }
}

@media screen and (max-width: 1024px) {
  .plan-item__plan-info {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

/* ==========================================================================
   Points Section
   ========================================================================== */
.section--points {
  background-color: var(--color-beige);
  overflow: visible;
  padding-top: 40px;
}
@media screen and (max-width: 1024px) {
  .section--points {
    padding-top: 0;
    overflow: visible;
  }
}
.section--points .section__wave--top {
  position: absolute;
  top: -250px;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .section--points .section__wave--top {
    top: -100px;
  }
}
@media (min-width: 1800px) {
  .section--points .section__wave--top {
    display: none;
  }
}
.section--points .section__inner {
  position: relative;
  z-index: 2;
}
.section--points .section__heading img {
  width: 700px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1024px) {
  .section--points .section__heading {
    padding: 0 24px;
  }
}

.points-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 1024px) {
  .points-list {
    gap: 120px;
  }
}

.point-item {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
}

.point-item__number {
  position: absolute;
  top: -90px;
  left: -110px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .point-item__number {
    position: static;
  }
}
.point-item__number img {
  height: 135px;
  width: auto;
}
@media screen and (max-width: 1024px) {
  .point-item__number img {
    height: 85px;
  }
}

@media screen and (max-width: 1024px) {
  .point-item__number-wrap {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 40px;
    position: absolute;
    right: 10%;
    left: unset;
  }
}

.point-item__title {
  position: relative;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5em;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .point-item__title {
    font-size: 1rem;
    letter-spacing: 0.3em;
    margin-bottom: 30px;
    padding-top: 140px;
    text-align: right;
    line-height: 1.8;
  }
}

@media screen and (max-width: 1024px) {
  .point-item__text {
    text-align: right;
    padding-left: 16px;
    position: relative;
    z-index: 2;
  }
}
.point-item__text ul {
  list-style: disc;
  padding: 0 0 0 20px;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .point-item__text ul {
    list-style: none;
    padding-left: 0;
  }
}
.point-item__text ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 12px;
  text-indent: -1.1em;
}
@media screen and (max-width: 1024px) {
  .point-item__text ul li {
    font-size: 0.85rem;
  }
}
.point-item__text ul li::before {
  content: "・";
}
.point-item__text ul li:last-child {
  margin-bottom: 0;
}

.point-item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .point-item--reverse .point-item__image {
    top: 0;
    right: -16px;
    left: unset;
  }
}
@media screen and (max-width: 1024px) {
  .point-item--reverse .point-item__number-wrap {
    left: 20%;
    right: unset;
  }
}
.point-item--reverse .point-item__number {
  top: -90px;
  right: -60px;
}
.point-item--reverse .point-item__label {
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .point-item--reverse .point-item__title {
    text-align: left;
  }
}
@media screen and (max-width: 1024px) {
  .point-item--reverse .point-item__text {
    text-align: left;
  }
}

.point-item--reverse .point-item__number {
  left: auto;
}

.point-item__image {
  flex: 0 0 40%;
}
@media screen and (max-width: 1024px) {
  .point-item__image {
    position: absolute;
    width: 200px;
    left: -16px;
    right: unset;
  }
}
@media screen and (max-width: 1024px) {
  .point-item__image.point2 {
    top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .point-item__image.point3 {
    top: -40px;
  }
}
@media screen and (max-width: 1024px) {
  .point-item__image.point4 {
    top: -30px;
  }
}
@media screen and (max-width: 1024px) {
  .point-item__image.point5 {
    top: -50px;
    width: 170px;
  }
}

.point-item__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.point-item__content {
  flex: 1;
}

.point-item__label {
  display: block;
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.5em;
  color: var(--color-bg-white);
  margin-bottom: 12px;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .point-item__label {
    font-size: 1rem;
    letter-spacing: 0.3em;
    margin-bottom: 0;
  }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.section--about {
  background-color: var(--color-bg);
  padding-top: 0;
}
@media screen and (max-width: 1024px) {
  .section--about {
    padding-bottom: 150px;
  }
}
.section--about .section__heading-script img {
  width: 400px;
  margin: 0 auto 40px 0;
}
@media screen and (max-width: 1024px) {
  .section--about .section__heading-script img {
    width: 200px;
    position: relative;
    top: -3px;
    margin-bottom: -15px;
  }
}
.section--about .section__wave--top {
  margin-bottom: 0;
}
.section--about .section__wave--top svg {
  min-height: 310px;
}
@media screen and (max-width: 1024px) {
  .section--about .section__wave--top svg {
    min-height: 120px;
  }
}
.section--about .about-makino-container {
  max-width: 200px;
  display: flex;
  width: 50%;
  flex: 0 0 50%;
  position: absolute;
  top: 50px;
  right: 20%;
}
@media screen and (max-width: 1024px) {
  .section--about .about-makino-container {
    max-width: 136px;
    top: 0px;
    right: 5%;
  }
}

.about-message {
  max-width: 700px;
  margin: 0 auto 0 48px;
}
@media screen and (max-width: 1024px) {
  .about-message {
    margin: 0;
  }
}

.about-message__badge img {
  width: 200px;
}
@media screen and (max-width: 1024px) {
  .about-message__badge img {
    width: 80px;
  }
}

.about-message__title {
  width: 500px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .about-message__title {
    margin-top: 40px;
    margin-bottom: 50px;
    max-width: 100%;
    width: 270px;
    position: relative;
    z-index: 2;
  }
}

.about-message__title-accent {
  font-family: var(--font-script);
  font-size: 1.2em;
  color: var(--color-brown-2);
}

.about-message__text {
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .about-message__text {
    margin-bottom: 20px;
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
  }
}
.about-message__text p {
  margin-bottom: 32px;
}
.about-message__text p:last-child {
  margin-bottom: 0;
}
.about-message__text strong {
  color: var(--color-brown-2);
}
.about-message__text ul {
  list-style: disc;
  padding: 0 0 0 20px;
  margin: 0 0 30px;
}
.about-message__text ul li {
  margin-bottom: 6px;
}
.about-message__text ul li:last-child {
  margin-bottom: 0;
}

.about-message__signature {
  text-align: right;
  margin-top: 90px;
}
@media screen and (max-width: 1024px) {
  .about-message__signature {
    margin-top: 50px;
  }
}
.about-message__signature img {
  width: 240px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1024px) {
  .about-message__signature img {
    width: 200px;
  }
}

.about-image {
  max-width: 600px;
  margin: 0 auto 24px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
}

.about-signature {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--color-brown-2);
  text-align: right;
  max-width: 600px;
  margin: 0 auto 64px;
}

/* Profile Card */
.about-profile__container {
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-top: 160px;
}
@media screen and (max-width: 1024px) {
  .about-profile__container {
    display: block;
    position: relative;
    margin-top: 100px;
  }
}
.about-profile__container .section__heading img {
  width: 150px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1024px) {
  .about-profile__container .section__heading img {
    width: 90px;
    margin: 0;
  }
}

.about-profile__image {
  flex: 0 42%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .about-profile__image {
    position: absolute;
    left: -16px;
    top: 0;
    width: 66%;
  }
}
.about-profile__image .signature {
  position: absolute;
  top: 50%;
  right: -340px;
  transform: translate(0, -50%);
}
.about-profile__image .signature img {
  width: 400px;
  height: auto;
}

.profile-content {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .profile-content .section__header {
    margin-bottom: 0;
    position: absolute;
    top: -60px;
  }
}

.about-profile__name-inner {
  font-family: futura-pt, var(--font-body), sans-serif;
  display: flex;
  align-items: flex-end;
  gap: 40px;
  font-weight: 700;
}

.about-profile__company {
  font-size: 1rem;
  margin-bottom: 4px;
  letter-spacing: 0.25em;
}

.about-profile__name {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.25em;
}

.about-profile__credentials {
  list-style: disc;
  padding-left: 1.2em;
  margin-top: 60px;
}

.about-profile__credentials li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 6px;
}

.about-profile__text {
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text-light);
  margin: 60px auto 0;
  letter-spacing: 0.15em;
  max-width: 700px;
}
@media screen and (max-width: 1024px) {
  .about-profile__text {
    font-size: 0.85rem;
    margin-top: 40px;
  }
}
.about-profile__text strong {
  color: var(--color-brown-2);
}

.about-profile__content {
  padding-top: 20px;
}
@media screen and (max-width: 1024px) {
  .about-profile__content img {
    max-width: 250px;
    margin: 0 0 0 auto;
  }
}

/* ==========================================================================
   Training Section
   ========================================================================== */
.section--training {
  background-color: var(--color-beige);
  padding: 0;
}
.section--training .section__wave--top {
  margin-top: -300px;
}
@media screen and (max-width: 1024px) {
  .section--training .section__wave--top {
    margin-top: -100px;
  }
}
.section--training .section__wave--top svg {
  min-height: 310px;
}
@media screen and (max-width: 1024px) {
  .section--training .section__wave--top svg {
    min-height: 130px;
  }
}

.section--training .section__inner {
  padding-top: 0;
  padding-bottom: var(--section-py);
}

.training-intro {
  text-align: center;
  margin-bottom: 48px;
}

.training-intro__lead {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.training-intro__title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.6;
}

.training-intro__title-accent {
  font-family: var(--font-script);
  font-size: 1.2em;
  color: var(--color-brown-2);
}

.training-course {
  max-width: 800px;
  margin: 0 auto 48px;
  padding: 0 0 48px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .training-course {
    padding: 0;
  }
}
@media screen and (max-width: 1024px) {
  .training-course__info-item-text {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
  }
}

.training-course__label {
  display: block;
  font-family: futura-pt, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--color-bg-white);
  margin-bottom: 12px;
}

.training-course__title {
  font-size: 1.375rem;
  line-height: 1.6;
  letter-spacing: 0.5em;
  font-weight: 700;
  color: var(--color-bg-white);
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .training-course__title {
    font-size: 1.25rem;
    letter-spacing: 0.25em;
  }
}

.training-course__text {
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .training-course__text {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
  }
}
.training-course__text p {
  margin-bottom: 32px;
}
.training-course__text p:last-child {
  margin-bottom: 0;
}

.training-course__meta {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
}

.training-course__duration,
.training-course__price {
  font-size: 1rem;
  line-height: 1.6;
}

.training-course__price strong {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
}

.training-course__info {
  margin-top: 60px;
}

.training-course__info-item {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .training-course__info-item {
    display: block;
  }
}

.training-course__info-item-image {
  flex: 1;
}

.training-course__info-item-content {
  flex: 1;
}

.training-course__info-item-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-bg-white);
  margin-top: 32px;
  letter-spacing: 0.25em;
}
@media screen and (max-width: 1024px) {
  .training-course__info-item-label {
    margin-top: 0;
    letter-spacing: 0.15em;
    font-size: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .training-course__info-item-label-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
  }
}

.training-course__info-item-value {
  font-size: 1rem;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .training-course__info-item-value {
    font-size: 0.85rem;
    margin-top: 0;
  }
}
.training-course__info-item-value strong {
  font-family: futura-pt, sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.125em;
}
@media screen and (max-width: 1024px) {
  .training-course__info-item-value strong {
    font-size: 1.25rem;
  }
}

/* Curriculum */
.training-curriculum {
  margin: 80px auto 48px;
}
@media screen and (max-width: 1024px) {
  .training-curriculum {
    font-size: 0.85rem;
    margin: 40px auto 32px;
  }
}

.training-curriculum__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 14px 14px 14px 150px;
  background: #fff;
  color: var(--color-text);
  cursor: pointer;
  font-family: var(--font-body);
}
.training-curriculum__trigger:visited, .training-curriculum__trigger:hover, .training-curriculum__trigger:focus, .training-curriculum__trigger:active {
  color: var(--color-text);
}

.training-curriculum__trigger-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-text);
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .training-curriculum__trigger-label {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
  }
}

.training-curriculum__trigger-click {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
.training-curriculum__trigger-click::before {
  content: "";
  display: inline-block;
  width: 56px;
  height: 3px;
  margin-left: 0.8em;
  vertical-align: middle;
  background-image: url(images/button-next-gray.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: opacity var(--transition);
  margin-right: 0.8em;
}

.training-curriculum__trigger[aria-expanded=true] .training-curriculum__trigger-click {
  opacity: 0.5;
}

.training-curriculum__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease-out;
}

.training-curriculum__body.is-open {
  max-height: 3000px;
  transition: max-height 0.7s ease-in;
}

.training-curriculum__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
  background-color: var(--color-bg);
  padding: 10px;
}

.training-curriculum__item {
  background-color: var(--color-beige-light);
  overflow: hidden;
}

.training-curriculum__item-header {
  background-color: var(--color-beige);
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 0;
}

.training-curriculum__item-num {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-bg-white);
  line-height: 1;
  flex-shrink: 0;
}

.training-curriculum__item-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-bg-white);
  margin: 0;
}

.training-curriculum__item-list {
  list-style: disc;
  padding: 16px 20px;
  margin: 0 0 0 15px;
}

.training-curriculum__item-list li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 6px;
}
.training-curriculum__item-list li:last-child {
  margin-bottom: 0;
}

.training-curriculum__cta {
  text-align: center;
  color: var(--color-bg-white);
  margin: 80px 0;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .training-curriculum__cta {
    font-size: 0.85rem;
    margin: 40px 0;
  }
}

.training-cta {
  text-align: center;
}

/* ==========================================================================
   Sophie & Mira Section
   ========================================================================== */
.section--sophie-mira {
  padding-top: 0;
  background-color: var(--color-beige-lighter);
  background-image: url("./images/plan-bg.png");
  background-size: cover;
  background-position: top;
}
@media screen and (max-width: 1024px) {
  .section--sophie-mira {
    background-image: url("./images/sophie-and-mira-bg-sp.png");
    background-color: rgba(255, 255, 255, 0.4);
    background-blend-mode: lighten;
    background-size: cover;
  }
}
.section--sophie-mira .section__heading-script img {
  width: 600px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .section--sophie-mira .section__heading-script img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 30px;
    margin: 0 0 0 auto;
  }
}
.section--sophie-mira .section__wave--top svg {
  min-height: 310px;
}
@media screen and (max-width: 1024px) {
  .section--sophie-mira .section__wave--top svg {
    min-height: 130px;
  }
}
@media screen and (max-width: 1024px) {
  .section--sophie-mira .section__heading {
    text-align: right;
  }
}

.sophie-mira__intro {
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 80px;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .sophie-mira__intro {
    text-align: left;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
  }
}

.sophie-mira__image {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .sophie-mira__image {
    margin-bottom: 20px;
  }
}

.sophie-mira__image img {
  width: 100%;
}

.sophie-mira__content {
  margin-bottom: 32px;
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .sophie-mira__content {
    gap: 20px;
    align-items: center;
  }
}
.sophie-mira__content__image {
  max-width: 400px;
}
@media screen and (max-width: 1024px) {
  .sophie-mira__content__image {
    max-width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .sophie-mira__content__image img {
    margin-left: 16px;
  }
}

.sophie-mira__title img {
  width: 100%;
  max-width: 400px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .sophie-mira__title img {
    margin-bottom: 0;
  }
}

.sophie-mira__title-accent {
  font-family: var(--font-script);
  font-size: 1.2em;
  color: var(--color-brown-2);
}

.sophie-mira__text {
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text-light);
}
@media screen and (max-width: 1024px) {
  .sophie-mira__text {
    font-size: 0.85rem;
  }
}

.sophie-mira__cta {
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .sophie-mira__cta {
    margin-top: 40px;
  }
}
.sophie-mira__cta .btn-cta {
  letter-spacing: 0.25em;
}

/* ==========================================================================
   Instagram Section
   ========================================================================== */
.section--instagram {
  background-color: var(--color-bg);
  padding-top: 0;
  overflow: visible;
}
@media screen and (max-width: 1024px) {
  .section--instagram {
    padding-top: 40px;
  }
}
.section--instagram .section__header {
  text-align: left;
  display: flex;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .section--instagram .section__header {
    gap: 40px;
  }
}
.section--instagram .section__heading-script {
  position: absolute;
  top: 67%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
  max-width: 400px;
}
@media screen and (max-width: 1024px) {
  .section--instagram .section__heading-script {
    left: 70%;
    max-width: 240px;
  }
}
.section--instagram .section__heading-script img {
  width: 100%;
  max-width: 400px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .section--instagram .section__heading-script img {
    max-width: 240px;
    margin-bottom: 0;
  }
}
.section--instagram .section__heading-badge img {
  position: relative;
  top: -30px;
}
@media screen and (max-width: 1024px) {
  .section--instagram .section__heading-badge img {
    top: 0;
  }
}

.section--instagram .section__heading-sub {
  margin-bottom: 4px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--color-text-light);
  margin-bottom: 4px;
}
@media screen and (max-width: 1024px) {
  .section--instagram .section__heading-sub {
    font-size: 1rem;
  }
}

.instagram-feed-wrapper {
  margin-bottom: 32px;
}

/* Smash Balloon overrides */
.instagram-feed-wrapper #sb_instagram {
  padding: 0 !important;
}

.instagram-feed-wrapper #sb_instagram .sbi_item {
  border-radius: var(--radius-card) !important;
  overflow: hidden;
}

.instagram-feed-wrapper #sb_instagram #sbi_header,
.instagram-feed-wrapper #sb_instagram .sbi_follow_btn {
  display: none !important;
}

.instagram-feed-cta {
  text-align: center;
}

/* ==========================================================================
   Contact CTA Section (Bottom of Front Page)
   ========================================================================== */
.section--contact-cta {
  background-color: #F9F5F1;
  padding-top: 0;
}
.section--contact-cta .section__header {
  display: flex;
  gap: 80px;
  align-items: flex-end;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .section--contact-cta .section__header {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
}
.section--contact-cta .section__heading-script {
  margin: 0;
}
.section--contact-cta .section__heading-script img {
  width: 240px;
}
@media screen and (max-width: 1024px) {
  .section--contact-cta .section__heading-script img {
    width: 200px;
  }
}
.section--contact-cta .section__wave--top svg {
  min-height: 310px;
}
@media screen and (max-width: 1024px) {
  .section--contact-cta .section__wave--top svg {
    min-height: 130px;
  }
}

.contact-cta__lead {
  margin-top: 70px;
}
@media screen and (max-width: 1024px) {
  .contact-cta__lead {
    margin-top: 40px;
  }
}
.contact-cta__lead img {
  width: 440px;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .contact-cta__lead img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

.contact-cta__lead-script {
  font-family: var(--font-script);
  font-size: 1.6em;
  color: var(--color-brown-2);
}

.contact-cta__body {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .contact-cta__body {
    margin-bottom: 20px;
    margin-top: 20px;
  }
}

.contact-cta__text {
  flex: 1;
}

.contact-cta__text p {
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text-light);
}
@media screen and (max-width: 1024px) {
  .contact-cta__text p {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
  }
}

.contact-cta__text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 40px 0 8px;
}
@media screen and (max-width: 1024px) {
  .contact-cta__text h4 {
    margin-bottom: 20px;
  }
}

.contact-cta__text ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 16px;
}

.contact-cta__text li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 6px;
}
@media screen and (max-width: 1024px) {
  .contact-cta__text li {
    font-size: 0.85rem;
  }
}
.contact-cta__text li:last-child {
  margin-bottom: 0;
}

.contact-cta__image {
  flex: 0 0 480px;
}

.contact-cta__image img {
  width: 100%;
  border-radius: var(--radius-card);
}

.contact-cta__button {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .contact-cta__button {
    margin-top: 40px;
  }
}
.contact-cta__button a {
  font-size: 1.25rem;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 1024px) {
  .contact-cta__button a {
    font-size: 1rem;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--color-beige);
  color: #fff;
  padding: 60px 0 32px;
}
@media screen and (max-width: 1024px) {
  .site-footer {
    padding-bottom: 150px;
    padding-top: 10px;
  }
}

.site-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  text-align: center;
}

.site-footer__nav {
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .site-footer__nav {
    display: none;
  }
}

.site-footer__menu {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__menu li a {
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.site-footer__logo {
  margin-bottom: 16px;
}
.site-footer__logo img {
  width: 240px;
  max-width: 100%;
  margin: 60px auto;
}
@media screen and (max-width: 1024px) {
  .site-footer__logo img {
    width: 200px;
    margin: 40px auto;
  }
}

.site-footer__logo a {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #fff;
  text-decoration: none;
}

.site-footer__tagline {
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.site-footer__tagline-accent {
  font-family: var(--font-script);
  font-size: 1.6em;
  color: #fff;
}

.site-footer__social {
  margin-bottom: 24px;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.site-footer__social-link:hover {
  background-color: rgba(255, 255, 255, 0.15);
  opacity: 1;
}

.site-footer__copyright {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.page-hero {
  position: relative;
  height: 700px;
}
.page-hero__image {
  width: 100%;
  height: 100%;
}
.page-hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact-form-section {
  padding: var(--section-py) 0;
}

.contact-form-section__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.contact-form-section__intro {
  text-align: center;
  margin: 60px 0;
}
@media screen and (max-width: 1024px) {
  .contact-form-section__intro {
    margin: 30px 0;
  }
}

.contact-form-section__intro p {
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text-light);
}
@media screen and (max-width: 1024px) {
  .contact-form-section__intro p {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
  }
}

.contact-form-section__required-note {
  font-size: 0.8125rem;
  color: var(--color-red);
  margin-bottom: 24px;
}

/* Snow Monkey Forms overrides */
.contact-form-section__form .snow-monkey-form,
.confirm-section__form .snow-monkey-form {
  max-width: 100%;
}

.snow-monkey-form .smf-item {
  margin-bottom: 24px;
}
.snow-monkey-form .smf-item__label {
  font-weight: 700;
}

.snow-monkey-form .smf-item__col--label {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-text);
  margin-bottom: 8px;
}

.snow-monkey-form .smf-item__col--label .smf-item__required-badge {
  background-color: var(--color-red);
  color: #fff;
  font-size: 0.6875rem;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
}

.snow-monkey-form input[type=text],
.snow-monkey-form input[type=email],
.snow-monkey-form input[type=tel],
.snow-monkey-form textarea,
.snow-monkey-form select,
.smf-form .smf-textarea-control__control {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 3px;
  font-size: 1rem;
  background-color: #F6F0EA;
  transition: border-color var(--transition);
  box-shadow: none;
  line-height: 1.6;
}

.smf-form .smf-checkbox-control {
  align-items: center;
}

.snow-monkey-form input:focus,
.snow-monkey-form textarea:focus,
.snow-monkey-form select:focus {
  border-color: var(--color-beige);
  outline: none;
  box-shadow: 0 0 0 3px rgba(224, 203, 186, 0.2);
}

.snow-monkey-form .smf-checkboxes-control__item,
.snow-monkey-form .smf-radio-buttons-control__item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9375rem;
}

.snow-monkey-form .smf-action {
  text-align: center;
  margin-top: 40px;
  width: 300px;
  margin: 40px auto;
}

.snow-monkey-form .smf-submit-button,
.snow-monkey-form button[type=submit] {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-cta-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 18px 56px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: background-color var(--transition);
}

.snow-monkey-form .smf-submit-button:hover,
.snow-monkey-form button[type=submit]:hover {
  background-color: var(--color-beige);
}

/* ==========================================================================
   Confirmation Page
   ========================================================================== */
.confirm-section {
  padding: var(--section-py) 0;
}

.confirm-section__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.confirm-section__intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

.confirm-section__form table,
.snow-monkey-form .smf-confirm-table {
  width: 100%;
  border-collapse: collapse;
}

.confirm-section__form th,
.snow-monkey-form .smf-confirm-table th {
  text-align: right;
  padding: 16px 20px;
  background-color: var(--color-sage);
  font-weight: 500;
  font-size: 1rem;
  width: 35%;
  border-bottom: 1px solid var(--color-border);
}

.confirm-section__form td,
.snow-monkey-form .smf-confirm-table td {
  padding: 16px 20px;
  font-size: 1rem;
  border-bottom: 1px solid var(--color-border);
}

/* Confirm page buttons */
.snow-monkey-form .smf-action--confirm {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.snow-monkey-form .smf-back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 16px 40px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--color-text);
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: all var(--transition);
}

.snow-monkey-form .smf-back-button:hover {
  background-color: var(--color-text);
  color: #fff;
}

/* ==========================================================================
   Thanks Page
   ========================================================================== */
.page-contact-thanks {
  padding-top: var(--header-height);
  background-color: var(--color-bg-white);
}
.page-contact-thanks .section__wave--top {
  position: relative;
  top: -280px;
}
.page-contact-thanks .section__wave--top svg {
  min-height: 310px;
}
@media screen and (max-width: 1024px) {
  .page-contact-thanks .section__wave--top svg {
    min-height: 130px;
  }
}

.thanks-section {
  min-height: calc(100vh - var(--header-height));
  background-color: var(--color-beige);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .thanks-section {
    min-height: auto;
  }
}
.thanks-section-image img {
  padding-bottom: 40px;
}

.thanks-section__inner {
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px var(--container-px);
  gap: 60px;
}

.thanks-section__image {
  flex: 0 0 30%;
}

.thanks-section__image img {
  width: 100%;
  max-height: 900px;
  -o-object-fit: contain;
     object-fit: contain;
}

.thanks-section__content {
  flex: 1;
}

.thanks-section__title {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 160px;
}

.thanks-section__message {
  margin-bottom: 80px;
}

.thanks-section__message p {
  font-size: 1rem;
  line-height: 2.3;
  color: #fff;
  text-align: center;
}

.thanks-section__notice {
  text-align: center;
}

.thanks-section__notice-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  padding-bottom: 8px;
  display: inline-block;
  border-bottom: 2px solid #fff;
}

.thanks-section__notice p {
  font-size: 1rem;
  line-height: 2.3;
  color: #fff;
}

/* ==========================================================================
   Pages (General)
   ========================================================================== */
.page-contact,
.page-contact-confirm {
  padding-top: var(--header-height);
}

/* ==========================================================================
   Responsive - Tablet & Mobile
   ========================================================================== */
@media screen and (max-width: 1024px) {
  .site-header__mobile-actions {
    display: flex;
  }
  .site-header__menu-toggle {
    display: flex;
  }
  .site-header__nav {
    position: fixed;
    top: 0;
    left: unset;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 1005;
    width: 70%;
    height: 370px;
    padding: 40px 40px 0;
  }
  .site-header__nav.is-open {
    opacity: 1;
    visibility: visible;
  }
  .site-header__menu {
    flex-direction: column;
    gap: 24px;
    text-align: left;
    align-items: flex-start;
    width: 100%;
  }
  .site-header__menu li a {
    font-size: 0.85rem;
  }
  .site-header__menu li a::after {
    content: "";
    display: inline-block;
    width: 50px;
    height: 3px;
    background-image: url("./images/button-next-gray.svg");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    background-color: unset;
    position: absolute;
    top: 54%;
    right: -60px;
    left: unset;
    transform: translate(0, -50%);
  }
  .site-header__social {
    display: none;
  }
  .voice-item,
  .voice-item--reverse {
    flex-direction: column;
  }
  .voice-item__image {
    flex: none;
    width: 100%;
  }
  .concept-content {
    flex-direction: column;
  }
  .concept-content__image {
    flex: none;
    width: 100%;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .plan-item,
  .plan-item--reverse {
    flex-direction: column;
  }
  .plan-item__image {
    flex: none;
    width: 100%;
  }
  .plan-item__image img {
    min-height: 200px;
  }
  .training-curriculum__grid {
    grid-template-columns: 1fr;
  }
  .contact-cta__body {
    flex-direction: column;
  }
  .contact-cta__image {
    position: absolute;
    top: 58%;
    right: 0;
    transform: translate(0, -50%);
    width: 85%;
    z-index: -1;
  }
  .thanks-section__inner {
    flex-direction: column;
    text-align: center;
  }
  .thanks-section__image {
    flex: none;
    width: 60%;
    margin: 0 auto;
  }
  .site-footer__menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --section-py: 60px;
    --container-px: 16px;
    --header-height: 64px;
  }
  .section__heading {
    font-size: 1rem;
  }
  .section__heading-script {
    margin-bottom: 30px;
  }
  .hero-slide__cta-circle-main {
    font-size: 0.8125rem;
  }
  .hero-slide__title {
    font-size: 1.25rem;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .plan-item__meta {
    flex-direction: column;
    gap: 8px;
  }
  .training-course__meta {
    flex-direction: column;
    gap: 8px;
  }
  .training-curriculum__trigger {
    gap: 10px;
  }
  .page-hero {
    height: 240px;
  }
  .btn-cta {
    padding: 14px 32px;
    font-size: 0.85em;
  }
  .btn-cta--large {
    padding: 16px 40px;
  }
  .site-footer__menu {
    flex-direction: column;
    gap: 12px;
  }
  .confirm-section__form th,
  .snow-monkey-form .smf-confirm-table th {
    display: block;
    width: 100%;
    text-align: left;
  }
  .confirm-section__form td,
  .snow-monkey-form .smf-confirm-table td {
    display: block;
    width: 100%;
  }
  .snow-monkey-form .smf-action--confirm {
    flex-direction: column;
    align-items: center;
  }
}
/* ==========================================================================
   Floating CTA Button（追従ボタン）
   ========================================================================== */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 80px;
  height: 80px;
  background-color: var(--color-brown-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, background-color var(--transition);
  pointer-events: none;
}

.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta:hover {
  background-color: var(--color-brown-1);
  opacity: 1;
}

@media screen and (max-width: 480px) {
  .floating-cta {
    bottom: 20px;
    right: 16px;
    width: 64px;
    height: 64px;
    font-size: 0.6875rem;
  }
}
/* ==========================================================================
   Voice - Read More & Slider (SP only)
   ========================================================================== */
/* Read More Button - PC では非表示 */
.voice-read-more {
  display: none;
}

/* スライダー - PC レイアウト */
.voice-slider__track {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.voice-slider__dots {
  display: none;
}

@media screen and (max-width: 1024px) {
  /* テキスト折りたたみ（4行） */
  .voice-item__text:not(.is-expanded) {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
  }
  /* 続きを読むボタン */
  .voice-read-more {
    display: block;
    position: relative;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
    padding: 8px 0 4px;
    text-align: left;
    margin-bottom: 20px;
  }
  .voice-read-more::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #f2f0eb);
    pointer-events: none;
  }
  .voice-read-more::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    margin: 8px 0 0;
    background-image: url(images/button-next-gray.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: opacity var(--transition);
  }
  /* テキスト展開後はボタン非表示 */
  .voice-item__text.is-expanded {
    margin-bottom: 16px;
  }
  .voice-item__text.is-expanded + .voice-read-more {
    display: none;
  }
  /* Voice スライダー */
  .voice-slider {
    overflow: hidden;
    position: relative;
  }
  .voice-slider__track {
    flex-direction: row;
    gap: 0;
    transition: transform 0.4s ease;
    will-change: transform;
  }
  .voice-slider__item {
    flex: 0 0 100%;
    min-width: 100%;
  }
  /* ドット */
  .voice-slider__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
  }
  .voice-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, width 0.3s, height 0.3s;
  }
  .voice-slider__dot.is-active {
    background: var(--color-text-light);
    width: 10px;
    height: 10px;
  }
}
/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
.pc-none {
  display: none;
}
@media screen and (max-width: 1024px) {
  .pc-none {
    display: block;
  }
}

.sp-none {
  display: block;
}
@media screen and (max-width: 1024px) {
  .sp-none {
    display: none;
  }
}

/* ==========================================================================
 Contact Form
 ========================================================================== */
body.page-template-page-contact {
  background-color: #fff;
}
body.page-template-page-contact .section__heading-script img {
  width: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  body.page-template-page-contact .section__heading-script img {
    width: 200px;
  }
}
body.page-template-page-contact .page-hero {
  height: 700px;
}
@media screen and (max-width: 1024px) {
  body.page-template-page-contact .page-hero {
    height: 50vh;
  }
}
body.page-template-page-contact .section__wave {
  top: -270px;
}
@media screen and (max-width: 1024px) {
  body.page-template-page-contact .section__wave {
    top: -110px;
  }
}
body.page-template-page-contact .section__wave svg {
  min-height: 310px;
}
@media screen and (max-width: 1024px) {
  body.page-template-page-contact .section__wave svg {
    min-height: 130px;
  }
}

.contact-form-section__form form {
  max-width: 100%;
}
.contact-form-section__form .snow-monkey-form .smf-item {
  margin-bottom: 24px;
}
.contact-form-section__form .snow-monkey-form .smf-item__col--label {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-text);
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .contact-form-section__form .snow-monkey-form .smf-item__col--label {
    font-size: 0.85rem;
  }
}

.smf-item__label__text {
  position: relative;
}

.smf-item__label__text::after {
  position: absolute;
  content: "※";
  color: #A50504;
  width: 10px;
  height: 14px;
  top: 20%;
  transform: translateY(-50%);
  right: -12px;
  font-size: 0.75rem;
}

.wp-block-snow-monkey-forms-item:nth-child(4) .smf-item__label__text::after,
.wp-block-snow-monkey-forms-item:nth-child(8) .smf-item__label__text::after,
.wp-block-snow-monkey-forms-item:nth-child(9) .smf-item__label__text::after {
  display: none;
}

.snow-monkey-form .smf-submit-button, .snow-monkey-form button[type=submit] {
  display: block;
  align-items: center;
  gap: 12px;
  background-color: var(--color-beige);
  color: var(--color-bg-white);
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 10px 40px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: background-color var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
  background-image: none;
  width: 100%;
  font-size: 0.85rem;
}

.smf-button-control {
  position: relative;
}
.smf-button-control button::after {
  content: "";
  display: inline-block;
  width: 44px;
  height: 7px;
  background: url("./images/button-next-white.svg") no-repeat center;
  background-size: contain;
  transition: transform var(--transition);
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translate(0, -50%);
}

.page-contact.is-form-screen .form-screen {
  display: block;
}
.page-contact.is-form-screen .confirm-screen {
  display: none;
}

.page-contact.is-confirm-screen .form-screen {
  display: none;
}
.page-contact.is-confirm-screen .confirm-screen {
  display: block;
}
.page-contact.is-confirm-screen .smf-form {
  background: #F9F5F1;
  padding: 40px 40px 10px;
}
@media screen and (max-width: 1024px) {
  .page-contact.is-confirm-screen .smf-form {
    padding: 20px 20px 10px;
  }
}
.page-contact.is-confirm-screen .snow-monkey-form .smf-item {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .page-contact.is-confirm-screen .snow-monkey-form .smf-item {
    gap: 20px;
    flex-direction: column;
    margin-bottom: 32px;
  }
}
.page-contact.is-confirm-screen .snow-monkey-form .smf-item__col--label {
  width: 250px;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .page-contact.is-confirm-screen .snow-monkey-form .smf-item__col--label {
    width: 100%;
    text-align: left;
  }
}
.page-contact.is-confirm-screen .snow-monkey-form .smf-item__label__text::after {
  content: none;
}
.page-contact.is-confirm-screen .smf-item__description {
  display: none;
}
.page-contact.is-confirm-screen .snow-monkey-form .smf-item__col--controls {
  width: calc(100% - 290px);
}
@media screen and (max-width: 1024px) {
  .page-contact.is-confirm-screen .snow-monkey-form .smf-item__col--controls {
    width: 100%;
  }
}
.page-contact.is-confirm-screen .smf-button-control::after {
  content: none;
}
.page-contact.is-confirm-screen .snow-monkey-form .smf-action {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .page-contact.is-confirm-screen .snow-monkey-form .smf-action {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }
}

.snow-monkey-form button[data-action=back] {
  border: 2px solid var(--color-beige);
  color: var(--color-beige);
  background-color: #fff;
}
.snow-monkey-form button[data-action=back]::after {
  background: url("./images/button-prev-beige.svg") no-repeat center;
  left: 30px;
}
.snow-monkey-form button[data-action=back]:hover {
  color: #fff;
}

.snow-monkey-form button[data-action=complete] {
  border: 2px solid var(--color-beige);
}

@media screen and (max-width: 1024px) {
  .smf-action .smf-button-control + .smf-button-control {
    margin-left: 0;
  }
}

#sb_instagram #sbi_load .sbi_load_btn {
  align-items: center;
  gap: 12px;
  background-color: var(--color-beige);
  color: var(--color-bg-white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 10px 30px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: background-color var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */