@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600&display=swap');

:root {
    --site-gutter: clamp(24px, 4vw, 40px);
    --site-gutter-tight: clamp(16px, 4vw, 24px);
    --section-space-desktop: clamp(96px, 10vw, 120px);
    --section-space-tablet: clamp(72px, 8vw, 96px);
    --section-space-mobile: clamp(56px, 8vw, 72px);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
}

html {
    scroll-behavior: smooth;
    width: 100%;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

:where(
    .nav-container,
    .principles-container,
    .brand-values-cards,
    .experiences-cards,
    .footer-grid,
    .founder-section,
    .mission-section,
    .analysis-bridge-inner,
    .analysis-points-grid,
    .analysis-im-row,
    .analysis-ahis-container,
    .adnaturam-hero-inner,
    .adnaturam-product-grid,
    .adnaturam-intro-container,
    .adn-values-grid
) > * {
    min-width: 0;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background-color: #4A3427;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.logo {
    font-family: serif;
    font-size: 24px;
    font-weight: bold;
    color: #E8DCD0;
    text-decoration: none;
    cursor: pointer;
}

.navbar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(44px, 6vw, 56px);
    margin-left: clamp(-12px, -1.6vw, -28px);
    text-decoration: none;
}

.navbar-logo-stack {
    position: relative;
    display: block;
    height: clamp(32px, 4.5vw, 42px);
    width: min(32vw, 220px);
}

.navbar-logo img {
    position: absolute;
    inset: 0;
    height: clamp(32px, 4.5vw, 42px);
    max-width: min(32vw, 220px);
    width: 100%;
    display: block;
    object-fit: contain;
}

.navbar-logo-default {
    opacity: 1;
}

.navbar-logo-hover {
    opacity: 0;
}

.navbar-logo:hover .navbar-logo-default,
.navbar-logo:focus-visible .navbar-logo-default {
    opacity: 0;
}

.navbar-logo:hover .navbar-logo-hover,
.navbar-logo:focus-visible .navbar-logo-hover {
    opacity: 1;
}

.navbar img {
    max-height: none;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    position: relative;
    color: #E8DCD0;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
}

.contact-btn {
    position: relative;
    display: inline-block;
    background: transparent;
    border: 1px solid #E8DCD0;
    color: #E8DCD0;
    padding: 8px 20px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.contact-btn::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 7px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.contact-btn:hover {
    background-color: #E8DCD0;
    color: #5A3828;
}

.contact-btn:hover::after,
.contact-btn:focus-visible::after {
    transform: scaleX(1);
}

.home-page.menu-open {
    overflow: hidden;
}

.home-page .menu-toggle,
.home-page .navbar-cta,
.home-page .side-drawer {
    display: none;
}

.home-page .menu-toggle {
    position: relative;
    align-items: center;
    gap: 14px;
    border: 0;
    background: transparent;
    padding: 0;
    color: #E8DCD0;
    font: inherit;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
}

.home-page .navbar-logo,
.home-page .navbar-cta {
    position: relative;
}

.home-page .menu-toggle__icon {
    position: relative;
    width: 20px;
    height: 14px;
    flex: 0 0 20px;
}

.home-page .menu-toggle__icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform-origin: center;
    transition:
        top 0.28s ease,
        transform 0.28s ease,
        opacity 0.28s ease;
}

.home-page .menu-toggle__icon span:first-child {
    top: 3px;
}

.home-page .menu-toggle__icon span:last-child {
    top: 11px;
}

.home-page.menu-open .menu-toggle__icon span:first-child {
    top: 7px;
    transform: rotate(45deg);
}

.home-page.menu-open .menu-toggle__icon span:last-child {
    top: 7px;
    transform: rotate(-45deg);
}

.home-page .menu-toggle__label {
    display: inline-block;
    line-height: 1;
}

.home-page .navbar-cta {
    color: #E8DCD0;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-page .menu-toggle::after,
.home-page .navbar-logo::after,
.home-page .navbar-cta::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
    pointer-events: none;
}

.home-page .navbar-logo::after {
    bottom: -10px;
}

.home-page .menu-toggle:hover::after,
.home-page .menu-toggle:focus-visible::after,
.home-page .navbar-logo:hover::after,
.home-page .navbar-logo:focus-visible::after,
.home-page .navbar-cta:hover::after,
.home-page .navbar-cta:focus-visible::after {
    transform: scaleX(1);
}

.home-page .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(22, 18, 15, 0.5);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.38s ease,
        visibility 0.38s ease;
    z-index: 1100;
}

.home-page .side-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(84vw, 320px);
    padding: 112px 28px 32px;
    background: #f5efe6;
    color: #3e3a36;
    transform: translateX(-100%);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1150;
    overflow-y: auto;
}

.home-page .side-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-page .side-drawer__nav a {
    display: block;
    color: #3e3a36;
    text-decoration: none;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 22px;
    line-height: 1.85;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    transition: opacity 0.28s ease;
}

.home-page .side-drawer__reserve {
    margin-top: 32px;
}

.home-page .reserve-label {
    margin: 0 0 10px;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: #8a837c;
}

.home-page .reserve-link {
    display: block;
    font-size: 16px;
    color: #3e3a36;
    text-decoration: none;
    transition: opacity 0.28s ease;
}

.home-page.menu-open .menu-overlay {
    opacity: 1;
    visibility: visible;
}

.home-page.menu-open .side-drawer {
    transform: translateX(0);
}

/* Hero Section */
.hero {
    display: flex;
    height: calc(100vh - 72px);
    margin-top: 72px;
}

.hero-left {
    flex: 1;
    width: 50%;
    background: linear-gradient(to right, rgba(0,0,0,0.35), rgba(0,0,0,0)), url('/images/hero1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-left: 120px;
    padding-right: 80px;
}

.hero-text {
    color: #fff;
    max-width: 520px;
}

.small-label {
    font-size: 14px;
    letter-spacing: 2px;
    color: #E8DCD0;
    margin-bottom: 24px;
    font-family: sans-serif;
}

.hero-text h1 {
    font-family: serif;
    font-size: 56px;
    font-weight: 500;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 28px;
}

.hero-text p {
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #E8DCD0;
}

.hero-right {
    flex: 1;
    width: 50%;
    height: 100%;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 85% center;
}

/* Principles Section */
.principles {
    background-color: #F6F3EF;
    padding-top: 120px;
    padding-bottom: 120px;
}

.principles-title {
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    color: #4A3526;
    margin-bottom: 12px;
    font-family: serif;
}

.principles-subtitle {
    font-size: 16px;
    color: #7A6A5A;
    text-align: center;
    margin-bottom: 60px;
    font-family: sans-serif;
}

.principles-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.principle-card {
    background: #FFFFFF;
    border: 1px solid #E8E0D8;
    border-radius: 16px;
    padding: 40px;
    flex: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.principle-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #3F332B;
    margin-bottom: 16px;
    font-family: serif;
}

.principle-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #6B5B4F;
    font-family: sans-serif;
}

/* Scroll Transition Section */
.scroll-transition {
    height: 300vh; /* Reduced for shorter Brand Values phase */
    position: relative;
}

.sticky-bg {
    position: sticky;
    top: 0;
    height: 100vh;
    background-image: linear-gradient(rgba(60,40,28,0.35), rgba(60,40,28,0.35)), url("/images/land1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.1s ease, transform 0.1s ease; /* Smooth transitions */
}

.cta-layer {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

.brand-values-layer {
    opacity: 0;
    transform: translateY(120px);
    z-index: 2;
    pointer-events: none;
}

.cta-card {
    max-width: 720px;
    margin: 0 auto;
    background: #F7F3EE;
    border-radius: 24px;
    padding: 60px 80px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.cta-card h2 {
    font-size: 36px;
    color: #4A3526;
    margin-bottom: 24px;
    font-weight: 500;
    font-family: serif;
}

.cta-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #6B5A4A;
    margin-bottom: 32px;
    font-family: sans-serif;
}

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

.cta-actions button,
.cta-actions a {
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid #4A3526;
    background: transparent;
    color: #4A3526;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease;
}

.cta-actions button:hover,
.cta-actions a:hover {
    background: #4A3526;
    color: #ffffff;
}

.brand-values-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.brand-values-header {
  text-align: left;
  margin-bottom: 48px;
}

.brand-values-label {
  text-align: left;
  display: block;
  margin-bottom: 12px;
  letter-spacing: 2px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-family: sans-serif;
  text-transform: uppercase;
  font-weight: 500;
}

.brand-values-title {
  text-align: left;
  max-width: 900px;
  line-height: 1.2;
  font-size: 45px;
  font-weight: 500;
  color: #F5EFEA;
  font-family: serif;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
  margin-bottom: 0; /* Since header has margin-bottom */
}

.brand-values-cards {
  display: flex;
  gap: 40px;
  /* Removed justify-content: center; to align left */
}

.brand-value-card {
    background: #F7F3EE;
    border: 1px solid #E8E0D8;
    border-radius: 16px;
    padding: 40px;
    flex: 1;
    max-width: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.brand-value-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #3F332B;
    margin-bottom: 16px;
    font-family: serif;
}

.brand-value-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #6B5B4F;
    font-family: sans-serif;
}

/* Experiences Section */
.experiences {
    width: 100%;
    background: #F7F3EE;
    padding: 120px 0 140px 0;
}

.experiences-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.experiences-header {
    text-align: center;
    margin-bottom: 56px;
}

.experiences-header h2 {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 500;
    color: #4A3526;
    margin-bottom: 18px;
    font-family: serif;
}

.divider {
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: #7A5A43;
    margin: 0 auto 28px auto;
}

.experiences-header p {
    font-size: 16px;
    line-height: 1.8;
    color: #6B5A4A;
    max-width: 760px;
    margin: 0 auto;
    font-family: sans-serif;
}

.experiences-cards {
    display: flex;
    gap: 48px;
    margin-top: 56px;
}

.experience-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 1;
    transition: transform .2s ease, box-shadow .2s ease;
}

.experience-card-link:hover {
    cursor: pointer;
    transform: translateY(-4px);
}

.experience-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    background: #D9D4CE;
    overflow: hidden;
}

.experience-card-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-card .card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-card-link .card-image img {
    position: absolute;
    inset: 0;
    transform: scale(1.42);
    transform-origin: center;
}

.experience-card-link-adn .card-image img {
    transform: scale(1.42) translateY(-30px);
}

.experience-card-link .card-image img.card-image-full {
    object-fit: contain;
    object-position: center;
    transform: scale(1.15);
}

.card-label {
    background: #EDE7DC;
    padding: 28px 34px;
    min-height: 104px;
    display: flex;
    align-items: center;
    font-size: 22px;
    line-height: 1.5;
    color: #4A3526;
    font-weight: 400;
    font-family: sans-serif;
}

/* Contact Section */
.contact-section {
    width: 100%;
    background: #F7F3EE;
    padding: 80px 0 60px 0;
    border-top: 1px solid #E8E0D8;
}

#contact {
    scroll-margin-top: 100px;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.footer-column {
    text-align: left;
}

.footer-column > *:first-child {
    margin-top: 0;
}

.footer-title {
    font-size: 18px;
    letter-spacing: 0.08em;
    color: #5F5044;
    margin-bottom: 24px;
}

.footer-text {
    font-size: 14px;
    line-height: 2.2;
    color: #6B5B4D;
    margin: 0;
    transition: color 0.2s;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-connect {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-promise {
    max-width: 280px;
}

.footer-promise p {
    margin-bottom: 18px;
}

.footer-promise p:last-child {
    margin-bottom: 0;
}

.footer-text:hover {
    color: #7A5A43;
}

/* About Page Styles */
.about-intro {
    width: 100%;
    background: #F7F3EE;
    min-height: calc(100vh - 72px);
    padding: 79px 0 52px 0;
    display: flex;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #8A6E5A;
}

.about-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-intro h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 500;
    color: #4A3526;
    margin-bottom: 36px;
    font-family: serif;
}

.about-intro p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.9;
    color: #5F5044;
    font-family: sans-serif;
}

.founder-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    background: #F7F3EE;
    border-bottom: 1px solid #8A6E5A;
    align-items: stretch;
}

.founder-left {
    position: relative;
    padding: clamp(24px, 4vw, 64px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image-stack {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.founder-left img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 16px;
}

.founder-right {
    padding: 64px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid #8A6E5A;
}

.founder-title {
    font-size: 44px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #4A3526;
    margin-bottom: 28px;
    font-family: serif;
    line-height: 1.2;
}

.founder-right p {
    font-size: 16px;
    line-height: 1.9;
    color: #5F5044;
    font-family: sans-serif;
    max-width: 520px;
}

.mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    background: #F7F3EE;
    border-bottom: 1px solid #8A6E5A;
    align-items: stretch;
}

.mission-section > * {
    min-height: 560px;
}

.mission-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 72px;
    border-right: 1px solid #8A6E5A;
}

.mission-content {
    max-width: 480px;
    text-align: center;
}

.mission-content h2 {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 500;
    color: #4A3526;
    margin-bottom: 24px;
    font-family: serif;
}

.mission-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5F5044;
    font-family: sans-serif;
    margin: 0 0 14px;
}

.mission-content p:last-child {
    margin-bottom: 0;
}

.mission-right {
    padding: 0;
    margin: 0;
    height: 100%;
    overflow: hidden;
}

.mission-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 980px) {
    .home-page .navbar {
        height: 84px;
    }

    .home-page .nav-container {
        position: relative;
        justify-content: center;
        padding: 0 20px;
    }

    .home-page .nav-links,
    .home-page .contact-btn {
        display: none;
    }

    .home-page .menu-toggle,
    .home-page .navbar-cta {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        display: inline-flex;
        z-index: 1;
    }

    .home-page .menu-toggle {
        left: 20px;
    }

    .home-page .navbar-cta {
        right: 20px;
    }

    .home-page .navbar-logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin-left: 0;
        height: auto;
        z-index: 1;
    }

    .home-page .navbar-logo-stack {
        width: min(42vw, 168px);
        height: 34px;
    }

    .home-page .navbar-logo img {
        height: 100%;
        max-width: 100%;
    }

    .home-page .side-drawer {
        display: block;
    }

    .hero {
        display: grid;
        grid-template-columns: 1fr;
        height: auto;
        margin-top: 84px;
        padding-bottom: 52px;
        background: #F7F3EE;
    }

    .hero-left {
        width: 100%;
        min-height: clamp(360px, 68vw, 500px);
        padding: clamp(60px, 10vw, 88px) 24px 52px;
    }

    .hero-text {
        max-width: 620px;
    }

    .hero-text h1 {
        max-width: 11ch;
        font-size: clamp(40px, 7vw, 52px);
    }

    .hero-text p {
        max-width: 36rem;
    }

    .hero-right {
        width: min(100%, calc(100% - 40px));
        height: auto;
        margin: -18px auto 0;
        aspect-ratio: 6 / 5;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 18px 48px rgba(58, 40, 28, 0.12);
    }

    .hero-right img {
        height: 100%;
        object-position: center;
    }

    .principles {
        padding-top: 92px;
        padding-bottom: 92px;
    }

    .principles-title,
    .principles-subtitle {
        padding: 0 24px;
    }

    .principles-title {
        font-size: 30px;
        line-height: 1.34;
    }

    .principles-subtitle {
        margin-bottom: 42px;
    }

    .principles-container {
        gap: 20px;
        padding: 0 24px;
    }

    .principle-card {
        padding: 32px 28px;
    }

    .scroll-transition {
        height: auto;
    }

    .sticky-bg {
        position: relative;
        top: auto;
        height: auto;
        min-height: 0;
        align-items: stretch;
        padding: 92px 0;
    }

    .content-layer {
        position: relative;
        inset: auto;
        height: auto;
        padding: 0 24px;
        transition: none;
    }

    .cta-layer,
    .brand-values-layer {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .brand-values-layer {
        margin-top: 24px;
    }

    .cta-card {
        max-width: 760px;
        padding: 48px 44px;
    }

    .brand-values-container {
        max-width: 760px;
        padding: 0;
    }

    .brand-values-header {
        margin-bottom: 30px;
    }

    .brand-values-title {
        max-width: 16ch;
        font-size: 36px;
        line-height: 1.28;
    }

    .brand-values-cards {
        flex-wrap: wrap;
        gap: 20px;
    }

    .brand-value-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 240px;
        max-width: none;
    }

    .experiences {
        padding: 92px 0 112px;
    }

    .experiences-container,
    .contact-container,
    .about-intro-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .experiences-cards {
        gap: 24px;
    }

    .card-label {
        min-height: 88px;
        padding: 22px 24px;
        font-size: 20px;
    }

    .contact-section {
        padding: 72px 0 52px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 32px;
    }

    .footer-promise {
        max-width: none;
        grid-column: 1 / -1;
    }

    .about-intro {
        min-height: auto;
        padding: 148px 0 64px;
    }

    .about-intro h1 {
        font-size: 56px;
        margin-bottom: 28px;
    }

    .about-intro p {
        font-size: 17px;
        line-height: 1.85;
    }

    .founder-section,
    .mission-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .founder-section > *,
    .mission-section > * {
        min-height: 0;
    }

    .founder-left {
        padding: 36px 24px 0;
        border-bottom: 1px solid #8A6E5A;
    }

    .founder-image-stack {
        max-width: 440px;
    }

    .founder-right,
    .mission-left {
        padding: 48px 32px 52px;
        border-left: 0;
        border-right: 0;
    }

    .founder-title {
        font-size: 40px;
        margin-bottom: 22px;
    }

    .founder-right p {
        max-width: none;
    }

    .mission-left {
        padding-top: 44px;
        padding-bottom: 44px;
        border-bottom: 1px solid #8A6E5A;
    }

    .mission-content {
        max-width: 620px;
    }

    .mission-content h2 {
        font-size: 44px;
    }

    .mission-right {
        border-left: 0;
        aspect-ratio: 5 / 4;
    }
}

@media (max-width: 768px) {
    .home-page .navbar {
        height: 80px;
    }

    .home-page .nav-container {
        padding: 0 18px;
    }

    .home-page .menu-toggle {
        left: 18px;
        gap: 10px;
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    .home-page .navbar-cta {
        right: 18px;
        font-size: 11px;
        letter-spacing: 0.08em;
    }

    .home-page .side-drawer {
        width: min(92vw, 320px);
        padding: 102px 28px 28px;
    }

    .home-page .side-drawer__nav a {
        font-size: 20px;
        line-height: 1.8;
        margin-bottom: 14px;
    }

    .hero {
        margin-top: 80px;
        padding-bottom: 40px;
    }

    .hero-left {
        min-height: 360px;
        padding: 56px 20px 42px;
        background-position: center;
    }

    .small-label {
        margin-bottom: 18px;
        font-size: 12px;
        letter-spacing: 0.18em;
    }

    .hero-text h1 {
        margin-bottom: 20px;
        font-size: clamp(34px, 8vw, 44px);
    }

    .hero-text p {
        font-size: 15px;
        line-height: 1.8;
    }

    .hero-right {
        display: none;
    }

    .principles {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .principles-title,
    .principles-subtitle {
        padding: 0 16px;
    }

    .principles-title {
        font-size: 28px;
    }

    .principles-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .principles-container {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
    }

    .principle-card,
    .brand-value-card {
        padding: 28px 22px;
        border-radius: 14px;
    }

    .sticky-bg {
        display: block;
        padding: 40px 0 48px;
        background-image:
            linear-gradient(
                180deg,
                rgba(74, 53, 38, 0.6) 0%,
                rgba(74, 53, 38, 0.46) 38%,
                rgba(74, 53, 38, 0.62) 100%
            ),
            url("/images/land1.jpg");
        background-position: center 22%;
        background-size: cover;
    }

    .content-layer {
        display: block;
        padding: 0 20px;
    }

    .content-layer + .content-layer {
        margin-top: 24px;
    }

    .cta-card {
        width: 100%;
        max-width: 640px;
        padding: 32px 20px;
        border-radius: 20px;
        box-shadow: 0 18px 42px rgba(38, 26, 18, 0.12);
    }

    .cta-card h2 {
        font-size: 28px;
        line-height: 1.28;
        margin-bottom: 16px;
    }

    .cta-card p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 22px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 10px;
    }

    .cta-actions button,
    .cta-actions a {
        width: 100%;
        min-height: 46px;
    }

    .brand-values-layer {
        margin-top: 0;
    }

    .brand-values-container {
        width: 100%;
        max-width: 640px;
        padding: 24px 18px 18px;
        background: rgba(57, 40, 29, 0.28);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 20px;
        box-shadow: 0 18px 42px rgba(38, 26, 18, 0.1);
        backdrop-filter: blur(8px);
    }

    .brand-values-header {
        margin-bottom: 18px;
    }

    .brand-values-label {
        margin-bottom: 8px;
        font-size: 11px;
        letter-spacing: 0.18em;
        color: rgba(255, 255, 255, 0.78);
    }

    .brand-values-title {
        max-width: 12ch;
        font-size: 28px;
        line-height: 1.32;
        color: #fbf6f1;
        text-shadow: none;
    }

    .brand-values-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .brand-value-card {
        width: 100%;
        max-width: none;
        min-width: 0;
        flex: none;
        padding: 22px 18px;
        border-radius: 16px;
        box-shadow: 0 10px 24px rgba(26, 17, 12, 0.06);
    }

    .brand-value-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .brand-value-card p {
        font-size: 14px;
        line-height: 1.8;
    }

    .experiences {
        padding: 72px 0 88px;
    }

    .experiences-container,
    .contact-container,
    .about-intro-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .experiences-header {
        margin-bottom: 36px;
    }

    .experiences-header h2 {
        font-size: 28px;
    }

    .experiences-header p {
        font-size: 15px;
    }

    .experiences-cards {
        flex-direction: column;
        gap: 20px;
        margin-top: 32px;
    }

    .card-image {
        padding-bottom: 66%;
    }

    .experience-card-link .card-image img {
        transform: scale(1.18);
    }

    .experience-card-link-adn .card-image img {
        transform: scale(1.18) translateY(-8px);
    }

    .experience-card-link .card-image img.card-image-full {
        transform: scale(1.05);
    }

    .card-label {
        min-height: 0;
        padding: 18px 20px;
        font-size: 18px;
    }

    .contact-section {
        padding: 64px 0 44px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-title {
        margin-bottom: 14px;
    }

    .footer-links,
    .footer-connect {
        gap: 12px;
    }

    .footer-text {
        line-height: 1.95;
    }

    .about-intro {
        padding: 126px 0 46px;
    }

    .about-intro h1 {
        font-size: 44px;
    }

    .about-intro p {
        font-size: 16px;
        line-height: 1.8;
    }

    .founder-left {
        padding: 28px 16px 0;
    }

    .founder-image-stack {
        max-width: 360px;
    }

    .founder-right,
    .mission-left {
        padding: 36px 20px 40px;
    }

    .founder-title,
    .mission-content h2 {
        font-size: 34px;
    }

    .founder-right p,
    .mission-content p {
        font-size: 15px;
        line-height: 1.85;
    }

    .mission-left {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .mission-right {
        order: 1;
        aspect-ratio: 1.08 / 1;
    }

    .mission-left {
        order: 2;
        border-bottom: 0;
    }
}

@media (max-width: 480px) {
    .home-page .menu-toggle::after,
    .home-page .navbar-logo::after,
    .home-page .navbar-cta::after {
        background: #ffffff;
    }

    .home-page .navbar {
        height: 78px;
    }

    .home-page .menu-toggle {
        left: 16px;
        gap: 8px;
    }

    .home-page .menu-toggle__label {
        display: none;
    }

    .home-page .navbar-cta {
        right: 16px;
        font-size: 10px;
        letter-spacing: 0.04em;
    }

    .home-page .navbar-logo-stack {
        width: min(38vw, 140px);
        height: 30px;
    }

    .home-page .side-drawer {
        width: min(calc(100vw - 18px), 300px);
        padding: 94px 22px 24px;
    }

    .home-page .side-drawer__nav a {
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .hero {
        margin-top: 78px;
    }

    .hero-left {
        min-height: 320px;
        padding: 48px 16px 36px;
    }

    .hero-text h1 {
        max-width: 9ch;
        font-size: 32px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-right {
        display: none;
    }

    .principles-title,
    .cta-card h2,
    .brand-values-title,
    .experiences-header h2,
    .about-intro h1 {
        font-size: 26px;
    }

    .principles-subtitle,
    .hero-text p,
    .cta-card p,
    .brand-value-card p,
    .experiences-header p,
    .about-intro p,
    .founder-right p,
    .mission-content p {
        font-size: 14px;
    }

    .cta-actions button,
    .cta-actions a {
        min-height: 44px;
        font-size: 14px;
    }

    .sticky-bg {
        padding: 32px 0 38px;
        background-position: center top;
    }

    .content-layer {
        padding: 0 16px;
    }

    .content-layer + .content-layer {
        margin-top: 20px;
    }

    .cta-card {
        padding: 28px 18px;
        border-radius: 18px;
    }

    .brand-values-container {
        padding: 22px 16px 16px;
        border-radius: 18px;
    }

    .brand-values-label {
        font-size: 10px;
        letter-spacing: 0.16em;
    }

    .brand-value-card {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .principle-card {
        padding: 24px 18px;
    }

    .card-label {
        font-size: 17px;
        padding: 16px 18px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-text {
        font-size: 14px;
        line-height: 1.85;
    }

    .founder-title,
    .mission-content h2 {
        font-size: 30px;
    }

    .mission-right {
        order: 1;
        aspect-ratio: 1 / 1;
    }

    .mission-left {
        order: 2;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-transition {
        height: auto;
    }

    .content-layer {
        position: relative;
    }

    .cta-layer,
    .brand-values-layer {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Analysis Hero */
.analysis-page {
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    background: #f5f2ec;
    transition: background 0.45s ease;
}

.analysis-page h1,
.analysis-page h2,
.analysis-page h3,
.analysis-page h4,
.analysis-page h5,
.analysis-page h6,
.analysis-page p,
.analysis-page a,
.analysis-page button,
.analysis-page span,
.analysis-page li {
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
}

.analysis-intro-image {
    position: relative;
    background: #F5F2EC;
    padding-top: 120px;
    padding-bottom: 0;
    overflow: hidden;
}

.analysis-intro-image img {
    width: 70%;
    max-width: 900px;
    display: block;
    margin: 0 auto;
    height: auto;
    -webkit-mask-image:
        radial-gradient(
            ellipse at center,
            rgba(0, 0, 0, 1) 58%,
            rgba(0, 0, 0, 0.92) 70%,
            rgba(0, 0, 0, 0.55) 85%,
            rgba(0, 0, 0, 0) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.94) 68%,
            rgba(0, 0, 0, 0.62) 86%,
            rgba(0, 0, 0, 0) 100%
        );
    -webkit-mask-composite: destination-in;
    mask-image:
        radial-gradient(
            ellipse at center,
            rgba(0, 0, 0, 1) 58%,
            rgba(0, 0, 0, 0.92) 70%,
            rgba(0, 0, 0, 0.55) 85%,
            rgba(0, 0, 0, 0) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.94) 68%,
            rgba(0, 0, 0, 0.62) 86%,
            rgba(0, 0, 0, 0) 100%
        );
    mask-composite: intersect;
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #6B4A3A;
    font-size: 15px;
    letter-spacing: 0.08em;
    opacity: 0.9;
    animation: scrollFloat 2.2s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none;
    pointer-events: auto;
    z-index: 5;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator-text {
    margin-bottom: 8px;
}

.scroll-indicator-arrow {
    width: 18px;
    height: 18px;
    border-right: 2px solid #6B4A3A;
    border-bottom: 2px solid #6B4A3A;
    transform: rotate(45deg);
    margin: 0 auto;
    opacity: 0.85;
}

@keyframes scrollFloat {
    0% {
        transform: translate(-50%, 0);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, 8px);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 0);
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    .analysis-intro-image img {
        width: 88%;
    }

    .scroll-indicator {
        bottom: 18px;
        font-size: 12px;
    }
}

.analysis-bridge {
    background: linear-gradient(to bottom, #f6f1ea 0%, #f7f3ef 35%, #f3eef6 100%);
    padding: 120px 24px 58px;
    min-height: calc(100vh - 40px);
    position: relative;
    scroll-margin-top: 120px;
    display: flex;
    align-items: center;
}

.analysis-bridge::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 72px;
    background: linear-gradient(to bottom, rgba(243, 238, 246, 0) 0%, rgba(243, 238, 246, 0.82) 100%);
    pointer-events: none;
}

.analysis-bridge-inner {
    max-width: 1120px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 72px;
    align-items: center;
}

.analysis-bridge-copy {
    flex: 0 1 620px;
    min-width: 520px;
    max-width: 620px;
    color: #4A403A;
    padding-top: 0;
}

.analysis-bridge-title {
    margin: 0 0 16px;
}

.analysis-bridge-title-primary {
    margin: 0 0 80px;
    max-width: 100%;
    font-size: clamp(31px, 3.7vw, 44px);
    line-height: 1.24;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #443833;
    word-break: normal;
    overflow-wrap: normal;
}

.analysis-bridge-title-primary span,
.analysis-bridge-title-secondary span {
    display: block;
}

.analysis-bridge-title-secondary {
    margin: 0 0 14px;
    max-width: 100%;
    font-size: clamp(25px, 3vw, 35px);
    line-height: 1.32;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: rgba(68, 56, 51, 0.88);
    word-break: normal;
    overflow-wrap: normal;
}

.analysis-bridge-text {
    margin: 0 0 56px;
    max-width: 360px;
    font-size: 15px;
    line-height: 1.95;
    color: rgba(100, 92, 86, 0.82);
    white-space: nowrap;
}

.analysis-bridge-desc {
    display: block;
    max-width: none;
    white-space: nowrap;
}

.analysis-bridge-logo {
    margin-top: 18px;
}

.analysis-bridge-logo img {
    width: 121px;
    height: auto;
    opacity: 0.85;
    display: block;
}

.analysis-bridge-image {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 24px;
    padding-top: 0;
    transform: translateY(-16px);
}

.analysis-bridge-image-frame {
    width: min(100%, 620px);
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0 16px 36px rgba(79, 58, 91, 0.045);
}

.analysis-bridge-image-frame img {
    width: 600px;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.analysis-points-section {
    background: #FFFFFF;
    padding: 64px 0 76px;
}

.analysis-points-box {
    background: #F3EEF6;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    padding: 64px 40px 72px;
}

.analysis-points-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.analysis-points-eyebrow {
    color: #6B4A7D;
    font-size: 14px;
    letter-spacing: 0.18em;
    margin-bottom: 16px;
}

.analysis-points-title {
    color: #4B2E5E;
    font-size: 42px;
    line-height: 1.25;
    margin-bottom: 44px;
    font-weight: 500;
}

.analysis-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    max-width: 980px;
    margin: 0 auto;
    justify-items: center;
    align-items: start;
    width: 100%;
}

.analysis-point-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #4B2E5E;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    gap: 0;
    padding-top: 0;
}

.analysis-point-label {
    display: none;
}

.analysis-point-number {
    font-size: 48px;
    line-height: 0.95;
    margin-bottom: -56px;
    font-weight: 500;
    letter-spacing: 0.02em;
    font-variant-numeric: lining-nums;
    text-align: center;
    position: relative;
    transform: translateY(14px);
    z-index: 2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.analysis-point-image-wrap {
    width: 330px;
    height: 330px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 14px;
}

.analysis-point-image-wrap::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    z-index: 0;
}

.analysis-point-image-wrap img {
    position: relative;
    z-index: 1;
    width: 85%;
    height: auto;
    object-fit: contain;
}

.analysis-point-card h3 {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 600;
    display: inline-block;
    border-bottom: 1.5px solid rgba(75, 46, 94, 0.5);
    padding-bottom: 6px;
    text-align: center;
}

.analysis-body {
    font-size: 16px;
    max-width: 260px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.9;
    color: #4A4A4A;
    letter-spacing: 0;
}

.analysis-body strong {
    font-weight: 700;
    color: #3F3F3F;
}

.analysis-im-section {
    padding: 12px 24px 96px;
    background: #FFFFFF;
}

.analysis-im-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 78px 64px 86px;
}

.analysis-im-header {
    max-width: 760px;
    margin: 0 auto 58px;
    text-align: center;
}

.analysis-im-eyebrow {
    margin: 0 0 16px;
    color: #6B4A7D;
    font-size: 14px;
    letter-spacing: 0.18em;
}

.analysis-im-title {
    margin: 0;
    color: #4B2E5E;
    font-size: clamp(34px, 4.1vw, 46px);
    line-height: 1.25;
    font-weight: 500;
}

.analysis-im-intro {
    margin: 24px 0 0;
    font-size: 16px;
    line-height: 2;
    color: rgba(88, 79, 74, 0.86);
}

.analysis-im-row {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
    gap: 52px;
    align-items: center;
}

.analysis-im-row + .analysis-im-row {
    margin-top: 74px;
}

.analysis-im-media {
    position: relative;
    display: flex;
    justify-content: center;
}

.analysis-im-media img {
    width: 60%;
    display: block;
    border-radius: 0;
}

.analysis-im-copy {
    position: relative;
    padding-left: 8px;
}

.analysis-im-copy::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(180deg, rgba(111, 83, 128, 0) 0%, rgba(111, 83, 128, 0.22) 20%, rgba(111, 83, 128, 0.22) 80%, rgba(111, 83, 128, 0) 100%);
}

.analysis-im-copy-title {
    margin: 0;
    color: #4B2E5E;
    font-size: clamp(27px, 2.8vw, 34px);
    line-height: 1.3;
    font-weight: 500;
}

.analysis-im-copy-line {
    width: 88px;
    height: 1px;
    margin: 14px 0 22px;
    background: rgba(107, 74, 125, 0.42);
}

.analysis-im-copy p {
    margin: 0;
    color: #5B514C;
    font-size: 16px;
    line-height: 2;
}

.analysis-video-section {
    padding: 8px 24px 120px;
    background: #FFFFFF;
}

.analysis-video-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.analysis-video-header {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.analysis-video-eyebrow {
    margin: 0 0 16px;
    color: #6B4A7D;
    font-size: 14px;
    letter-spacing: 0.18em;
}

.analysis-video-title {
    margin: 0;
    color: #4B2E5E;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.28;
    font-weight: 500;
}

.analysis-video-divider {
    width: min(100%, 720px);
    height: 1px;
    margin: 28px auto 0;
    background: rgba(107, 74, 125, 0.38);
}

.analysis-video-frame {
    max-width: 816px;
    margin: 0 auto;
}

.analysis-video-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(78, 59, 89, 0.08);
    background: #F8F5F9;
}

.analysis-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.analysis-ahis-section {
    padding: 0 24px 108px;
    background: #FFFFFF;
}

.analysis-ahis-container {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 72px;
    align-items: start;
    padding: 44px 56px 0;
    background: linear-gradient(180deg, rgba(243, 238, 246, 0.72) 0%, rgba(255, 255, 255, 0.96) 100%);
    border-radius: 28px;
}

.analysis-ahis-left {
    color: #4A403A;
    padding-top: 6px;
}

.analysis-ahis-logo {
    margin-bottom: 24px;
}

.analysis-ahis-logo img {
    width: 136px;
    height: auto;
    display: block;
    opacity: 0.9;
}

.analysis-ahis-eyebrow {
    margin: 0 0 14px;
    font-size: 13px;
    letter-spacing: 0.16em;
    color: #6B4A7D;
}

.analysis-ahis-title {
    margin: 0 0 24px;
    color: #4B2E5E;
    font-size: clamp(30px, 3.3vw, 40px);
    line-height: 1.32;
    font-weight: 500;
}

.analysis-ahis-text {
    max-width: 560px;
}

.analysis-ahis-text p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 2;
    color: rgba(88, 79, 74, 0.88);
}

.analysis-ahis-text p:last-child {
    margin-bottom: 0;
}

.analysis-ahis-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.analysis-ahis-image {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(78, 59, 89, 0.08);
    background: #F8F5F9;
}

.analysis-ahis-image img {
    display: block;
    width: 100%;
    height: auto;
}

.analysis-cta-section {
    margin-top: 0;
    padding: 0;
}

.analysis-cta-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 1536 / 266;
    background-image: url('/images/jp4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
    min-height: 0;
    padding: 0;
    margin: 0;
}

.analysis-cta-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.analysis-cta-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    margin: 0;
    width: auto;
    max-width: none;
    box-sizing: border-box;
}

.analysis-cta-content > * {
    position: relative;
    z-index: 1;
}

.analysis-cta-content {
    text-align: center;
    color: #FFFFFF;
}

.analysis-cta-eyebrow {
    margin: 0 0 16px;
    font-size: 12px;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 12px rgba(20, 12, 18, 0.4);
}

.analysis-cta-title {
    margin: 0;
    font-size: clamp(24px, 3.2vw, 34px);
    line-height: 1.2;
    font-weight: 500;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(20, 12, 18, 0.46);
}

.analysis-cta-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.analysis-cta-btn {
    min-width: 200px;
    padding: 10px 26px;
    border: 1px solid rgba(255, 255, 255, 0.96);
    border-radius: 999px;
    color: #FFFFFF;
    text-decoration: none;
    background: transparent;
    font-size: 15px;
    line-height: 1.2;
    box-shadow: 0 6px 18px rgba(20, 12, 18, 0.22);
    transition: background-color 0.32s ease, color 0.32s ease, border-color 0.32s ease, transform 0.32s ease;
}

.analysis-cta-btn:hover,
.analysis-cta-btn:focus-visible {
    background: #FFFFFF;
    color: #433836;
    border-color: #FFFFFF;
    transform: translateY(-1px);
}

.analysis-page .contact-section {
    background: #FFFFFF;
    border-top: 1px solid rgba(107, 74, 125, 0.14);
}

.analysis-page .footer-title {
    color: #4B2E5E;
}

.analysis-page .footer-text {
    color: rgba(75, 46, 94, 0.82);
}

.analysis-page .footer-text:hover {
    color: #6B4A7D;
}

.analysis-cta-bottom {
    background: #6A3A88;
    color: #FFFFFF;
}

.analysis-cta-bottom-inner {
    max-width: 880px;
    margin: 0 auto;
    padding: 34px 24px 36px;
    text-align: center;
}

.analysis-cta-bottom-title {
    margin: 0 0 10px;
    font-size: clamp(24px, 2.6vw, 32px);
    line-height: 1.4;
    font-weight: 500;
}

.analysis-cta-bottom-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1100px) {
    .analysis-bridge {
        padding: 56px 24px 48px;
        min-height: auto;
        display: block;
    }

    .analysis-bridge-inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .analysis-bridge-copy {
        flex: 1 1 auto;
        min-width: 0;
        max-width: 100%;
        padding-top: 0;
    }

    .analysis-bridge-image {
        order: 2;
        margin-left: 0;
        padding-top: 0;
        align-items: flex-start;
        transform: none;
    }

    .analysis-bridge-image-frame {
        width: min(100%, 420px);
    }

    .analysis-points-grid {
        grid-template-columns: 1fr;
        gap: 72px;
    }

    .analysis-points-title {
        font-size: 38px;
        margin-bottom: 42px;
    }

    .analysis-point-image-wrap {
        width: 280px;
        height: 280px;
    }

    .analysis-point-number {
        font-size: 52px;
        margin-bottom: -46px;
        transform: translateY(10px);
    }

    .analysis-point-card h3 {
        font-size: 28px;
    }

    .analysis-point-card p {
        font-size: 17px;
        line-height: 1.9;
    }

    .analysis-im-section {
        padding: 12px 24px 84px;
    }

    .analysis-im-inner {
        padding: 64px 42px 72px;
    }

    .analysis-im-row {
        gap: 34px;
        grid-template-columns: minmax(0, 0.94fr) minmax(0, 1fr);
    }

    .analysis-im-copy::before {
        left: -16px;
    }

    .analysis-video-section {
        padding: 0 24px 96px;
    }

    .analysis-video-header {
        margin-bottom: 40px;
    }

    .analysis-ahis-section {
        padding: 0 24px 92px;
    }

    .analysis-ahis-container {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
        gap: 44px;
        padding: 38px 36px 0;
    }

    .analysis-cta-hero {
        background-position: center;
    }
}

@media (max-width: 768px) {
    .analysis-bridge {
        padding: 44px 20px 38px;
        min-height: auto;
    }

    .analysis-bridge-inner {
        gap: 28px;
    }

    .analysis-bridge-title {
        margin-bottom: 16px;
    }

    .analysis-bridge-title-primary {
        margin-bottom: 80px;
        font-size: 29px;
        line-height: 1.28;
    }

    .analysis-bridge-title-secondary {
        margin-bottom: 12px;
        font-size: 23px;
        line-height: 1.34;
    }

    .analysis-bridge-text {
        font-size: 15px;
        line-height: 1.94;
        max-width: 320px;
        margin-bottom: 44px;
        white-space: normal;
    }

    .analysis-bridge-image-frame {
        width: min(100%, 360px);
        padding: 14px;
        border-radius: 22px;
    }

    .analysis-bridge-image-frame img {
        border-radius: 16px;
    }

    .analysis-points-section {
        padding: 32px 16px 48px;
    }

    .analysis-points-box {
        padding: 48px 24px 56px;
    }

    .analysis-im-section {
        padding: 0 16px 56px;
    }

    .analysis-im-inner {
        padding: 50px 22px 54px;
    }

    .analysis-im-header {
        margin-bottom: 42px;
    }

    .analysis-im-title {
        font-size: 31px;
    }

    .analysis-im-intro {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.9;
    }

    .analysis-im-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .analysis-im-row + .analysis-im-row {
        margin-top: 56px;
    }

    .analysis-im-copy {
        padding-left: 0;
    }

    .analysis-im-copy::before {
        display: none;
    }

    .analysis-im-copy-title {
        font-size: 28px;
    }

    .analysis-im-copy-line {
        margin: 12px 0 18px;
    }

    .analysis-im-copy p {
        font-size: 15px;
        line-height: 1.9;
    }

    .analysis-video-section {
        padding: 0 16px 64px;
    }

    .analysis-video-header {
        margin-bottom: 28px;
    }

    .analysis-video-title {
        font-size: 30px;
        line-height: 1.32;
    }

    .analysis-video-divider {
        margin-top: 22px;
    }

    .analysis-video-embed {
        border-radius: 10px;
    }

    .analysis-ahis-section {
        padding: 0 16px 64px;
    }

    .analysis-ahis-container {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 34px 22px 0;
        border-radius: 22px;
    }

    .analysis-ahis-left {
        padding-top: 0;
    }

    .analysis-ahis-logo {
        margin-bottom: 18px;
    }

    .analysis-ahis-title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .analysis-ahis-text p {
        font-size: 15px;
        line-height: 1.9;
        margin-bottom: 16px;
    }

    .analysis-ahis-right {
        gap: 14px;
    }

    .analysis-ahis-image {
        border-radius: 14px;
    }

    .analysis-cta-hero {
        background-position: center;
    }

    .analysis-cta-content {
        padding: 0 20px;
    }

    .analysis-cta-title {
        font-size: 22px;
        line-height: 1.2;
    }

    .analysis-cta-buttons {
        margin-top: 16px;
        gap: 10px;
        flex-direction: row;
    }

    .analysis-cta-btn {
        width: 100%;
        max-width: 220px;
        padding: 10px 20px;
        font-size: 14px;
    }

    .analysis-cta-bottom-inner {
        padding: 30px 20px 32px;
    }

    .analysis-cta-bottom-text {
        font-size: 15px;
        line-height: 1.8;
    }
}

@media (max-width: 980px) {
    .analysis-intro-image {
        padding-top: 108px;
        padding-bottom: 10px;
    }

    .analysis-intro-image img {
        width: min(86%, 720px);
    }

    .analysis-bridge-text,
    .analysis-bridge-desc {
        white-space: normal;
    }

    .analysis-im-media img {
        width: min(100%, 360px);
    }

    .analysis-cta-hero {
        aspect-ratio: auto;
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .analysis-intro-image {
        padding-top: 94px;
        padding-bottom: 18px;
    }

    .analysis-intro-image img {
        width: 92%;
    }

    .scroll-indicator {
        position: static;
        transform: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: fit-content;
        margin: 18px auto 0;
        animation: none;
    }

    .analysis-bridge {
        padding: 36px 16px 32px;
    }

    .analysis-bridge-title-primary {
        margin-bottom: 44px;
        font-size: 27px;
    }

    .analysis-bridge-title-secondary {
        font-size: 21px;
    }

    .analysis-bridge-text {
        max-width: 100%;
        margin-bottom: 32px;
    }

    .analysis-bridge-image-frame {
        width: min(100%, 320px);
        padding: 12px;
    }

    .analysis-points-box {
        padding: 38px 18px 42px;
    }

    .analysis-points-title {
        font-size: 31px;
        margin-bottom: 32px;
    }

    .analysis-point-image-wrap {
        width: min(100%, 240px);
        height: auto;
        aspect-ratio: 1;
        margin-bottom: 10px;
    }

    .analysis-point-number {
        font-size: 44px;
        margin-bottom: -36px;
    }

    .analysis-body {
        max-width: 100%;
        font-size: 15px;
    }

    .analysis-im-inner {
        padding: 40px 18px 44px;
    }

    .analysis-im-media img {
        width: min(100%, 280px);
    }

    .analysis-video-section {
        padding: 0 16px 56px;
    }

    .analysis-ahis-container {
        padding: 28px 18px 18px;
    }

    .analysis-cta-hero {
        min-height: 290px;
    }

    .analysis-cta-title {
        max-width: 12ch;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .analysis-bridge-title-primary,
    .analysis-points-title,
    .analysis-im-title,
    .analysis-video-title {
        font-size: 28px;
    }

    .analysis-im-copy-title,
    .analysis-ahis-title {
        font-size: 25px;
    }

    .analysis-cta-content {
        padding: 24px 16px;
    }

    .analysis-cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .analysis-cta-btn {
        width: min(100%, 260px);
        max-width: none;
        min-width: 0;
    }
}

/* Ad Naturam Page */
.adnaturam-page {
    --adn-radius-section: 18px;
    --adn-radius-card: 14px;
    --adn-radius-card-tight: 12px;
    --adn-radius-control: 12px;
    --adn-product-radius-section: 24px;
    --adn-product-radius-card: 18px;
    --adn-product-radius-card-tight: 16px;
    background: #f7f3ee;
    color: #4a3526;
}

.adnaturam-page .contact-section {
    background: #ffffff;
    border-top: 1px solid rgba(122, 90, 67, 0.14);
}

.adnaturam-hero,
.adnaturam-product-introduction,
.adnaturam-intro-section,
.adnaturam-values-section {
    padding-left: 24px;
    padding-right: 24px;
}

.adnaturam-hero {
    padding-top: 152px;
    padding-bottom: 96px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 46%),
        linear-gradient(180deg, #f6f1eb 0%, #f8f4ef 100%);
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
}

.adnaturam-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 640px;
}

.adnaturam-hero-copy {
    max-width: 640px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: #efe6d7;
    padding: 78px 86px 84px;
    border-radius: var(--adn-radius-section);
}

.adnaturam-eyebrow {
    margin: 0 0 14px;
    color: #7a5a43;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.adnaturam-hero-title,
.adnaturam-section-title,
.adn-cta-left h2 {
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.adnaturam-hero-title {
    margin: 0 0 24px;
    font-size: clamp(36px, 4.8vw, 56px);
    line-height: 1.22;
    color: #433126;
}

.adnaturam-hero-text,
.adnaturam-body p,
.adnaturam-value-card p {
    font-size: 16px;
    line-height: 1.95;
    color: rgba(74, 53, 38, 0.84);
}

.adnaturam-hero-text {
    margin: 0;
    max-width: 560px;
}

.adnaturam-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 34px;
}

.adnaturam-actions-centered {
    justify-content: center;
}

.adnaturam-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 188px;
    padding: 11px 24px;
    border-radius: var(--adn-radius-control);
    border: 1px solid rgba(74, 53, 38, 0.22);
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.adnaturam-btn-primary {
    background: #4a3526;
    color: #f7f3ee;
    border-color: #4a3526;
}

.adnaturam-btn-primary:hover {
    background: #5c4434;
    border-color: #5c4434;
    color: #f7f3ee;
}

.adnaturam-btn-secondary {
    background: transparent;
    color: #4a3526;
}

.adnaturam-btn-secondary:hover {
    background: rgba(74, 53, 38, 0.06);
    color: #4a3526;
}

.adnaturam-hero-media {
    width: 100%;
}

.adnaturam-hero-media {
    width: min(100%, 880px);
    margin-left: auto;
    overflow: hidden;
    border-radius: var(--adn-radius-section);
}

.adnaturam-hero-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--adn-radius-section);
    border: 1px solid rgba(122, 90, 67, 0.08);
    transform: scale(1.08) translateX(24px);
    transform-origin: center;
}

.adnaturam-placeholder {
    width: 100%;
    border-radius: var(--adn-radius-section);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.68) 0%, rgba(234, 226, 217, 0.88) 100%);
    border: 1px solid rgba(122, 90, 67, 0.14);
}

.adnaturam-placeholder-hero {
    aspect-ratio: 5 / 6;
}

.adnaturam-placeholder-stack {
    aspect-ratio: 4 / 3;
}

.adnaturam-product-introduction {
    padding-top: 0;
    padding-bottom: 72px;
    margin-top: -22px;
    position: relative;
    z-index: 1;
}

.adnaturam-product-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 62px 40px 56px;
    border-radius: var(--adn-product-radius-section);
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.62), transparent 30%),
        radial-gradient(circle at 50% 62%, rgba(246, 237, 226, 0.46), transparent 52%),
        linear-gradient(180deg, rgba(251, 248, 243, 0.96) 0%, rgba(244, 237, 228, 0.94) 100%);
    border: 1px solid rgba(118, 89, 66, 0.08);
    box-shadow:
        0 12px 40px rgba(60, 40, 20, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.adnaturam-product-header {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.adnaturam-product-label,
.adnaturam-product-label-cn {
    margin: 0;
    color: rgba(110, 82, 61, 0.72);
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.adnaturam-product-label-cn {
    margin-top: 8px;
    letter-spacing: 0.18em;
}

.adnaturam-product-title {
    margin: 18px 0 14px;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: clamp(30px, 3.8vw, 44px);
    line-height: 1.28;
    font-weight: 500;
    color: #433126;
}

.adnaturam-product-support {
    margin: 0 auto;
    max-width: 620px;
    font-size: 16px;
    line-height: 1.95;
    color: rgba(74, 53, 38, 0.74);
}

.adnaturam-product-grid {
    margin-top: 54px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
}

.adnaturam-product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--adn-product-radius-card);
    background:
        linear-gradient(180deg, #fdfbf8 0%, #fbf7f2 56%, #f3ebe3 100%);
    border: 1px solid rgba(118, 89, 66, 0.06);
    box-shadow:
        0 16px 40px rgba(60, 40, 20, 0.08),
        0 4px 12px rgba(60, 40, 20, 0.035),
        inset 0 1px 0 rgba(255, 255, 255, 0.68);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.adnaturam-product-card:hover,
.adnaturam-product-card:focus-within {
    transform: translateY(-5px);
    background:
        linear-gradient(180deg, #fffdfb 0%, #fcf8f4 56%, #f5ede5 100%);
    box-shadow:
        0 20px 44px rgba(60, 40, 20, 0.09),
        0 8px 16px rgba(60, 40, 20, 0.045),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
    border-color: rgba(118, 89, 66, 0.08);
}

.adnaturam-product-image {
    display: block;
    width: 110%;
    aspect-ratio: 4 / 5;
    height: auto;
    padding: 28px 24px 20px;
    object-fit: contain;
    object-position: center center;
    filter: none;
    opacity: 1;
    mix-blend-mode: normal;
    background: #ffffff;
    border-bottom: 1px solid rgba(118, 89, 66, 0.05);
    box-shadow: inset 0 -1px 0 rgba(118, 89, 66, 0.04);
    transition: transform 0.4s ease;
    transform: translateX(-10px);
}

.adnaturam-product-card:hover .adnaturam-product-image,
.adnaturam-product-card:focus-within .adnaturam-product-image {
    transform: translateX(-10px) translateY(-2px);
}

.adnaturam-product-meta {
    padding: 24px 20px 26px;
    background:
        linear-gradient(180deg, rgba(243, 235, 227, 0) 0%, rgba(243, 235, 227, 0.88) 100%);
    text-align: center;
}

.adnaturam-product-name {
    margin: 0;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 500;
    color: #433126;
}

.adnaturam-product-category {
    margin: 8px 0 0;
    font-size: 11px;
    line-height: 1.6;
    letter-spacing: 0.24em;
    color: rgba(67, 49, 38, 0.62);
}

.adnaturam-intro-section {
    padding-top: 8px;
    padding-bottom: 88px;
}

.adnaturam-intro-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 44px 52px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 414px);
    gap: 64px;
    align-items: start;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(122, 90, 67, 0.1);
    border-radius: var(--adn-radius-section);
}

.adnaturam-section-title {
    margin: 0 0 22px;
    font-size: clamp(30px, 3.6vw, 42px);
    line-height: 1.28;
    color: #433126;
}

.adnaturam-body p {
    margin: 0 0 18px;
}

.adnaturam-body p:last-child {
    margin-bottom: 0;
}

.adnaturam-intro-left .adnaturam-body p {
    margin-bottom: 28px;
}

.adnaturam-intro-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.adnaturam-intro-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--adn-radius-card);
    border: 1px solid rgba(122, 90, 67, 0.1);
}

.adn-values-section {
    padding: 0 24px 104px;
    background: transparent;
}

.adn-values-section .adnaturam-values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 62px 44px 68px;
}

.adn-values-subtitle {
    margin: 0 0 10px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #7a5a43;
}

.adn-values-title {
    margin: 0;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: clamp(30px, 3.6vw, 42px);
    line-height: 1.28;
    font-weight: 500;
    color: #433126;
}

.adn-values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
    margin-top: 80px;
}

.adn-values-item {
    text-align: center;
    color: #433126;
}

.adn-values-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--adn-radius-card);
    overflow: hidden;
}

.adn-values-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
    border-radius: var(--adn-radius-card-tight);
}

.adn-values-eyebrow {
    margin: 0 0 10px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7a5a43;
}

.adn-values-heading {
    margin: 0 0 14px;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 500;
    color: #433126;
}

.adn-values-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(74, 53, 38, 0.82);
}

.adn-message-section {
    padding: 120px 0 104px;
    background: transparent;
}

.adn-message-stage {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    min-height: 980px;
    padding: 0 40px;
}

.adn-message-photo {
    position: absolute;
    top: 0;
    right: 40px;
    width: min(60%, 760px);
    height: auto;
    z-index: 1;
}

.adn-message-eyebrow {
    margin: 0 0 14px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #7a5a43;
}

.adn-message-card {
    position: absolute;
    left: 40px;
    top: 68px;
    width: min(45%, 560px);
    z-index: 2;
    background: #f3ede5;
    padding: 52px 52px 46px;
    border-radius: var(--adn-radius-section);
}

.adn-message-copy {
    color: #433126;
}

.adn-message-title {
    margin: 0 0 12px;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: clamp(24px, 2.8vw, 32px);
    line-height: 1.28;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #433126;
    white-space: nowrap;
}

.adn-message-subtitle {
    margin: 0 0 26px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(74, 53, 38, 0.72);
}

.adn-message-text p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.95;
    color: rgba(74, 53, 38, 0.84);
}

.adn-message-text p:last-child {
    margin-bottom: 0;
}

.adn-message-founder {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(122, 90, 67, 0.18);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.adn-message-founder strong {
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
    color: #433126;
}

.adn-message-founder span {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(74, 53, 38, 0.72);
}

.adn-message-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--adn-radius-section);
    border: 1px solid rgba(122, 90, 67, 0.08);
}

.section-divider {
    width: 100%;
    max-width: 1100px;
    height: 1px;
    margin: 80px auto 60px auto;
    background: linear-gradient(
        to right,
        transparent,
        rgba(107, 74, 54, 0.18),
        transparent
    );
}

.adn-relationship,
.locator-collaboration,
.adn-collaboration,
.collaboration-section {
    padding: 60px 20px 40px;
    margin-bottom: 0;
    background: transparent;
}

.adn-relationship-container {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.adn-relationship-eyebrow {
    margin: 0 0 0px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #7a5a43;
}

.adn-collab-text {
    max-width: 820px;
    margin: 12px auto 24px;
    text-align: center;
    font-size: 18px;
    line-height: 1.9;
    color: #6b5a4f;
}

.adn-venn {
    max-width: 900px;
    margin: 10px auto 0;
    overflow: hidden;
    position: relative;
    border-radius: var(--adn-radius-section);
}

.adn-venn img {
    width: 100%;
    display: block;
    margin: -140px auto 0;
    max-width: 900px;
}

.adn-relationship-image {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
    border-radius: var(--adn-radius-section);
}

.adnaturam-values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.adnaturam-section-header {
    margin-bottom: 34px;
    text-align: center;
}

.adnaturam-values-grid {
    display: grid;
    gap: 24px;
}

.adn-cta-split {
    margin: 30px auto 80px;
    padding: 0 20px;
    background: transparent;
    color: inherit;
}

.adn-cta-box,
.adn-cta-card {
    display: grid;
    grid-template-columns: 7fr 3fr;
    align-items: stretch;
    max-width: 1000px;
    background: #6b4a36;
    color: #f6f1eb;
    border-radius: var(--adn-radius-section);
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.adn-cta-grid {
    grid-template-columns: 70% 30%;
    align-items: stretch;
    gap: 0;
}

.adn-cta-left {
    padding: 48px 0 48px 56px;
}

.adn-cta-box h2,
.adn-cta-card h2,
.adn-cta-left h2 {
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 500;
}

.adn-cta-box p,
.adn-cta-card p,
.adn-cta-left p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 22px;
    max-width: 420px;
}

.adn-cta-buttons {
    display: flex;
    gap: 12px;
}

.adn-cta-right,
.adn-cta-image {
    height: 100%;
    margin: 0;
    padding: 0;
}

.adn-cta-right img,
.adn-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--adn-radius-card);
}

.adn-cta-split .cta-primary {
    background: #ffffff;
    color: #6b4a36;
    border: none;
    padding: 14px 26px;
    border-radius: var(--adn-radius-control);
    text-decoration: none;
}

.adn-cta-split .cta-primary:hover {
    background: #f3ece6;
}

.adn-cta-split .cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 14px 26px;
    border-radius: var(--adn-radius-control);
    text-decoration: none;
}

.adn-cta-split .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.cta-primary {
    background: #5b3a29;
    color: white;
    padding: 14px 26px;
    border-radius: var(--adn-radius-control);
    text-decoration: none;
}

.cta-secondary {
    border: 1px solid #5b3a29;
    color: #5b3a29;
    padding: 14px 26px;
    border-radius: var(--adn-radius-control);
    text-decoration: none;
}

@media (max-width: 1100px) {
    .adnaturam-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .adnaturam-intro-container {
        grid-template-columns: 1fr;
    }

    .adnaturam-hero-inner {
        min-height: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
        justify-content: stretch;
    }

    .adnaturam-hero-copy {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        max-width: none;
        padding: 48px 42px 52px;
        order: 1;
    }

    .adnaturam-hero-media {
        order: 2;
        max-width: 760px;
        margin: 0 auto;
    }

    .adnaturam-hero-image {
        width: 100%;
    }

    .adnaturam-intro-container {
        gap: 36px;
        padding: 38px 34px;
    }

    .adnaturam-intro-right {
        max-width: 420px;
    }

    .adn-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .adn-message-stage {
        min-height: auto;
        padding: 0 24px;
    }

    .adn-message-photo,
    .adn-message-card {
        position: static;
        width: 100%;
        height: auto;
    }

    .adn-message-card {
        background: transparent;
        padding: 0;
        margin-bottom: 32px;
    }

    .adn-cta-box {
        grid-template-columns: 1fr;
    }

    .adn-cta-left {
        padding: 40px 28px;
    }

    .adn-cta-right {
        height: 260px;
    }

    .adn-cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .adnaturam-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .adn-relationship,
    .locator-collaboration,
    .adn-collaboration,
    .collaboration-section {
        padding: 56px 24px 40px;
    }
}

@media (max-width: 960px) {
    .adnaturam-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .adnaturam-hero {
        padding-top: 132px;
        padding-bottom: 72px;
    }

    .adnaturam-hero-inner {
        gap: 24px;
    }

    .adnaturam-hero-copy {
        padding: 40px 32px 42px;
    }

    .adnaturam-hero-media {
        width: min(100%, 700px);
    }

    .adnaturam-hero-image {
        transform: none;
        aspect-ratio: 5 / 4;
        object-fit: cover;
        object-position: center;
    }

    .adnaturam-intro-section {
        padding-bottom: 72px;
    }

    .adnaturam-intro-container {
        gap: 28px;
        padding: 34px 28px;
    }

    .adnaturam-intro-right {
        max-width: none;
    }

    .adnaturam-intro-image {
        max-height: 360px;
        object-fit: contain;
        background: rgba(255, 255, 255, 0.78);
    }

    .adn-message-section {
        padding: 88px 0 72px;
    }

    .adn-message-card {
        margin-bottom: 24px;
    }

    .section-divider {
        margin: 56px auto 40px;
    }

    .adn-venn img {
        margin: 0 auto;
    }

    .adn-cta-split {
        margin: 24px auto 64px;
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .adnaturam-hero,
    .adnaturam-product-introduction,
    .adnaturam-intro-section,
    .adnaturam-values-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .adnaturam-hero {
        padding-top: 136px;
        padding-bottom: 64px;
        min-height: auto;
    }

    .adnaturam-hero-inner {
        gap: 18px;
    }

    .adnaturam-hero-media {
        order: 1;
        width: 100%;
    }

    .adnaturam-hero-copy {
        order: 2;
        padding: 30px 24px 32px;
    }

    .adnaturam-hero-image {
        aspect-ratio: 4 / 3;
        object-fit: cover;
        object-position: center;
    }

    .adnaturam-product-introduction {
        margin-top: 0;
        padding-bottom: 52px;
    }

    .adnaturam-product-shell {
        padding: 40px 20px 34px;
        border-radius: var(--adn-product-radius-section);
    }

    .adnaturam-product-title {
        margin-top: 16px;
        font-size: 28px;
    }

    .adnaturam-product-support {
        font-size: 15px;
        line-height: 1.9;
    }

    .adnaturam-product-grid {
        margin-top: 36px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .adnaturam-product-card {
        border-radius: var(--adn-product-radius-card);
    }

    .adnaturam-product-name {
        font-size: 19px;
    }

    .adn-values-section {
        padding: 0 16px 64px;
    }

    .adn-values-section .adnaturam-values-container {
        padding: 32px 8px 22px;
    }

    .adn-values-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        margin-top: 28px;
    }

    .adn-values-title {
        font-size: 28px;
    }

    .adn-values-item {
        text-align: center;
    }

    .adn-values-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 10px;
    }

    .adn-values-icon img {
        width: 50px;
        height: 50px;
    }

    .adn-values-eyebrow,
    .adn-values-text {
        display: none;
    }

    .adn-values-heading {
        margin: 0;
        font-size: 13px;
        line-height: 1.35;
        letter-spacing: 0;
    }

    .adn-message-section {
        padding: 56px 0 52px;
    }

    .adn-message-stage {
        max-width: 460px;
        display: grid;
        gap: 12px;
        padding: 0 16px;
    }

    .adn-message-photo {
        width: 100%;
    }

    .adn-message-card {
        margin-bottom: 0;
        padding: 22px 18px 24px;
        background: rgba(243, 237, 229, 0.94);
        border-radius: var(--adn-radius-section);
        border: 1px solid rgba(122, 90, 67, 0.1);
        box-shadow: 0 12px 28px rgba(60, 40, 20, 0.06);
    }

    .adn-relationship,
    .locator-collaboration,
    .adn-collaboration,
    .collaboration-section {
        padding: 56px 16px 36px;
    }

    .adn-relationship-image {
        width: 86%;
    }

    .adnaturam-hero-inner {
        gap: 20px;
    }

    .adnaturam-hero-copy {
        padding: 34px 24px 38px;
    }

    .adnaturam-hero-title {
        font-size: 34px;
        line-height: 1.24;
    }

    .adnaturam-hero-text,
    .adnaturam-body p,
    .adn-message-text p {
        font-size: 15px;
        line-height: 1.9;
    }

    .adn-collab-text {
        max-width: 92%;
        font-size: 16px;
        line-height: 1.8;
        margin: 20px auto 32px;
    }

    .adn-relationship,
    .locator-collaboration,
    .adn-collaboration,
    .collaboration-section {
        padding: 48px 16px 32px;
    }

    .adn-venn {
        margin-top: 10px;
    }

    .adn-message-title {
        font-size: 30px;
        line-height: 1.32;
        white-space: normal;
        margin-bottom: 8px;
    }

    .adn-message-subtitle {
        margin-bottom: 14px;
        font-size: 14px;
        line-height: 1.7;
    }

    .adn-message-eyebrow {
        margin-bottom: 6px;
    }

    .adn-message-text p {
        margin-bottom: 14px;
        font-size: 14px;
        line-height: 1.8;
    }

    .adn-message-founder {
        margin-top: 18px;
        padding-top: 16px;
    }

    .adn-message-founder strong {
        font-size: 18px;
    }

    .adn-message-image {
        aspect-ratio: 4 / 5;
        width: 100%;
        height: auto;
        max-height: 520px;
        object-fit: cover;
    }

    .adn-venn img,
    .adn-relationship-image {
        width: 90%;
    }

    .adn-cta-left h2 {
        font-size: 30px;
    }

    .adn-cta-left p {
        font-size: 16px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }

    .adnaturam-intro-section {
        padding-bottom: 64px;
    }

    .adnaturam-section-title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .adnaturam-value-card {
        padding: 24px 20px 26px;
    }

    .adn-cta-split {
        margin: 24px auto 72px;
        padding: 0 16px;
    }
}

@media (max-width: 640px) {
    .adnaturam-hero {
        padding-top: 116px;
        padding-bottom: 48px;
    }

    .adnaturam-hero-copy {
        padding: 26px 18px 28px;
    }

    .adnaturam-hero-title {
        font-size: 28px;
    }

    .adnaturam-actions {
        margin-top: 18px;
    }

    .adnaturam-btn {
        width: 100%;
        min-width: 0;
    }

    .adnaturam-hero-image {
        aspect-ratio: 1.28 / 1;
    }

    .adnaturam-product-shell {
        padding: 32px 16px 24px;
    }

    .adnaturam-product-grid {
        gap: 14px;
    }

    .adnaturam-product-card {
        display: grid;
        grid-template-columns: minmax(116px, 38%) minmax(0, 1fr);
        align-items: stretch;
    }

    .adnaturam-product-image {
        width: 100%;
        height: 100%;
        min-height: 156px;
        aspect-ratio: auto;
        padding: 18px 14px;
        transform: none;
        border-right: 1px solid rgba(118, 89, 66, 0.05);
        border-bottom: 0;
    }

    .adnaturam-product-card:hover .adnaturam-product-image,
    .adnaturam-product-card:focus-within .adnaturam-product-image {
        transform: none;
    }

    .adnaturam-product-meta {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 18px 16px 18px;
        text-align: left;
    }

    .adnaturam-product-name {
        font-size: 18px;
    }

    .adnaturam-product-category {
        margin-top: 6px;
    }

    .adnaturam-intro-section {
        padding-bottom: 56px;
    }

    .adnaturam-intro-container {
        padding: 28px 18px;
        gap: 22px;
    }

    .adnaturam-section-title,
    .adn-values-title {
        font-size: 26px;
    }

    .adn-values-section .adnaturam-values-container {
        padding: 28px 4px 18px;
    }

    .adn-values-grid {
        gap: 4px;
        margin-top: 22px;
    }

    .adn-values-icon {
        width: 52px;
        height: 52px;
        margin: 0 auto 8px;
    }

    .adn-values-icon img {
        width: 42px;
        height: 42px;
    }

    .adn-values-heading {
        font-size: 12px;
        line-height: 1.3;
    }

    .adn-message-section {
        padding: 44px 0 44px;
    }

    .adn-message-stage {
        padding: 0 16px;
        gap: 10px;
    }

    .adn-message-title {
        font-size: 24px;
    }

    .adn-message-card {
        padding: 20px 16px 22px;
    }

    .adn-collab-text {
        max-width: 100%;
        margin: 16px auto 24px;
        font-size: 15px;
        line-height: 1.8;
    }

    .adn-venn img,
    .adn-relationship-image {
        width: 100%;
    }

    .section-divider {
        margin: 44px auto 32px;
    }

    .adn-cta-split {
        margin: 20px auto 48px;
        padding: 0 16px;
    }

    .adn-cta-left {
        padding: 30px 18px;
    }

    .adn-cta-left h2 {
        font-size: 26px;
    }

    .adn-cta-left p {
        max-width: none;
        font-size: 15px;
        line-height: 1.8;
    }

    .adn-cta-buttons {
        gap: 10px;
    }

    .adn-cta-right {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .adnaturam-hero-title {
        font-size: 26px;
    }

    .adnaturam-hero-text,
    .adnaturam-body p,
    .adn-message-text p,
    .adn-values-text {
        font-size: 14px;
    }

    .adnaturam-product-card {
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .adnaturam-product-image {
        min-height: 144px;
        padding: 16px 12px;
    }

    .adnaturam-product-meta {
        padding: 16px 14px;
    }

    .adnaturam-product-name {
        font-size: 17px;
    }

    .adn-values-heading {
        font-size: 11px;
    }
}

/* Service page */
.service-page {
    background:
        radial-gradient(circle at top left, rgba(242, 233, 224, 0.82), transparent 38%),
        linear-gradient(180deg, #f8f4ef 0%, #f7f3ee 22%, #f4efe8 56%, #f8f4ef 100%);
    color: #433126;
}

.service-page .contact-section {
    background: #e9dfd3;
}

.service-main {
    padding-top: 72px;
}

.service-shell {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

.service-eyebrow {
    margin: 0 0 18px;
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #8a6a56;
}

.service-hero {
    position: relative;
    padding: 118px 0 84px;
}

.service-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(122, 90, 67, 0.28) 20%,
        rgba(122, 90, 67, 0.28) 80%,
        transparent 100%
    );
}

.service-hero-shell {
    display: flex;
    justify-content: center;
}

.service-hero-copy {
    max-width: 760px;
    text-align: center;
}

.service-hero-title,
.service-section-title,
.course-title {
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #433126;
}

.service-hero-title {
    margin: 0;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.18;
}

.service-hero-subtitle {
    margin: 24px 0 0;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.8;
    color: rgba(67, 49, 38, 0.82);
}

.service-hero-text,
.service-section-text,
.course-body,
.service-closing-text {
    font-size: 16px;
    line-height: 2;
    color: rgba(67, 49, 38, 0.8);
}

.service-hero-text {
    max-width: 720px;
    margin: 30px auto 0;
}

.service-hero-divider {
    width: min(180px, 42%);
    height: 1px;
    margin: 42px auto 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(122, 90, 67, 0.18) 20%,
        rgba(122, 90, 67, 0.45) 50%,
        rgba(122, 90, 67, 0.18) 80%,
        transparent 100%
    );
}

.service-overview {
    padding: 76px 0 96px;
}

.service-section-header {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
}

.service-section-title {
    margin: 0;
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.3;
}

.service-section-text {
    margin: 18px auto 0;
}

.course-stack {
    display: grid;
    gap: 34px;
}

.course-card {
    position: relative;
    border-radius: 30px;
    padding: 34px;
    background: rgba(255, 251, 247, 0.76);
    border: 1px solid rgba(122, 90, 67, 0.12);
    box-shadow: 0 18px 40px rgba(90, 64, 47, 0.06);
}

.course-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.course-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 34px;
    align-items: center;
}

.course-grid-reverse .course-copy {
    order: 2;
}

.course-grid-reverse .course-media {
    order: 1;
}

.course-label {
    margin: 0 0 14px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8a6a56;
}

.course-title {
    margin: 0;
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.34;
}

.course-line {
    margin: 14px 0 0;
    font-size: 18px;
    line-height: 1.8;
    color: #6f5646;
}

.course-body {
    margin: 22px 0 0;
}

.course-meta {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(122, 90, 67, 0.14);
}

.course-meta h4 {
    margin: 0;
    font-size: 15px;
    letter-spacing: 0.08em;
    color: #5c4537;
}

.course-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    margin: 18px 0 0;
    padding: 0;
}

.course-list li {
    position: relative;
    padding-left: 18px;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(67, 49, 38, 0.84);
}

.course-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b79275;
}

.course-audience {
    margin: 26px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(122, 90, 67, 0.12);
    font-size: 15px;
    line-height: 1.9;
    color: rgba(67, 49, 38, 0.78);
}

.course-audience span {
    display: inline-block;
    margin-right: 10px;
    font-weight: 600;
    color: #5c4537;
}

.course-media {
    width: 100%;
}

.course-placeholder {
    position: relative;
    min-height: 420px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    border: 1px solid rgba(122, 90, 67, 0.1);
    background-color: #ece2d6;
}

.course-placeholder::before,
.course-placeholder::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    opacity: 0.5;
}

.course-placeholder::before {
    width: 220px;
    height: 220px;
    top: -56px;
    right: -48px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 72%);
}

.course-placeholder::after {
    width: 180px;
    height: 180px;
    bottom: -44px;
    left: -36px;
    background: radial-gradient(circle, rgba(139, 110, 88, 0.2), transparent 70%);
}

.course-placeholder-wellness {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.6), transparent 34%),
        linear-gradient(135deg, #ede5db 0%, #d7c7b8 52%, #c5b09e 100%);
}

.course-placeholder-beauty {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at top right, rgba(255, 244, 236, 0.8), transparent 30%),
        linear-gradient(135deg, #efe7e0 0%, #e2d1c4 48%, #ccb7a6 100%);
}

.course-placeholder-creative {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.35), transparent 30%),
        linear-gradient(135deg, #e8dfd5 0%, #d7c8b7 46%, #bfa691 100%);
}

.placeholder-badge {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 252, 248, 0.54);
    border: 1px solid rgba(122, 90, 67, 0.12);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6f5646;
    backdrop-filter: blur(6px);
}

.course-placeholder p {
    position: relative;
    z-index: 1;
    max-width: 320px;
    margin: 0;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 20px;
    line-height: 1.8;
    color: rgba(67, 49, 38, 0.82);
}

.service-closing {
    padding: 0 0 108px;
}

.service-closing-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 56px 32px;
    text-align: center;
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.7), transparent 34%),
        linear-gradient(135deg, rgba(243, 235, 226, 0.96) 0%, rgba(233, 222, 209, 0.96) 100%);
    border: 1px solid rgba(122, 90, 67, 0.12);
}

.service-closing-card::after {
    content: "";
    position: absolute;
    inset: auto 50% 0;
    transform: translateX(-50%);
    width: 180px;
    height: 1px;
    background: rgba(122, 90, 67, 0.24);
}

.service-closing-text {
    max-width: 720px;
    margin: 18px auto 0;
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    margin-top: 30px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #6b4a36;
    color: #f8f4ef;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.08em;
    transition: background-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
    box-shadow: 0 10px 22px rgba(90, 64, 47, 0.12);
}

.service-cta-btn:hover,
.service-cta-btn:focus-visible {
    background: #5a3e2d;
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(90, 64, 47, 0.16);
}

@media (max-width: 960px) {
    .course-grid,
    .course-grid-reverse {
        grid-template-columns: 1fr;
    }

    .course-grid .course-media,
    .course-grid-reverse .course-media {
        order: 1;
    }

    .course-grid .course-copy,
    .course-grid-reverse .course-copy {
        order: 2;
    }

    .course-placeholder {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .service-main {
        padding-top: 72px;
    }

    .service-shell {
        width: min(1120px, calc(100% - 32px));
    }

    .service-hero {
        padding: 82px 0 58px;
    }

    .service-hero-title {
        font-size: 38px;
    }

    .service-hero-subtitle {
        font-size: 18px;
        line-height: 1.8;
    }

    .service-hero-text,
    .service-section-text,
    .course-body,
    .service-closing-text {
        font-size: 15px;
        line-height: 1.9;
    }

    .service-overview {
        padding: 56px 0 72px;
    }

    .service-section-header {
        margin-bottom: 34px;
    }

    .course-card {
        padding: 22px;
        border-radius: 24px;
    }

    .course-grid {
        gap: 22px;
    }

    .course-title {
        font-size: 28px;
    }

    .course-line {
        font-size: 17px;
    }

    .course-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .course-placeholder {
        min-height: 280px;
        padding: 22px;
        border-radius: 20px;
    }

    .course-placeholder p {
        font-size: 18px;
        max-width: 260px;
    }

    .service-closing {
        padding-bottom: 76px;
    }

    .service-closing-card {
        padding: 42px 22px 46px;
        border-radius: 26px;
    }

    .service-cta-btn {
        width: 100%;
    }
}
