/* ==========================================================================
   JR West Trading - Base Styles
   ========================================================================== */

:root {
    --color-primary: #0275BE;
    --color-primary-dark: #005a96;
    --color-primary-light: #DBF2F0;
    --color-secondary: #1a1a1a;
    --color-text: #1F1F1F;
    --color-text-light: #666;
    --color-text-muted: #999;
    --color-border: #ddd;
    --color-border-light: #eee;
    --color-bg: #fff;
    --color-bg-gray: #F7F7F0;
    --color-footer-dark: #2c3e50;
    --color-footer-bottom: #1a2a3a;
    --gradient-primary: linear-gradient(135deg, #007BD0, #6BDDEF);
    --radius: 16px;
    --font-size-section-title: 6.3rem;
    --font-size-section-title-en: 4.8rem;
    --font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    --font-family-en: "PT Sans", "Helvetica Neue", Arial, sans-serif;
    /* --fz24: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    --fz63: clamp(3.6rem, 1.365rem + 2.903vw, 6.3rem);
    --fz60: clamp(3.4rem, 1.247rem + 2.796vw, 6rem);
    --fz56: clamp(3.2rem, 1.213rem + 2.581vw, 5.6rem);
    --fz48: clamp(2.8rem, 1.144rem + 2.151vw, 4.8rem);
    --fz43: clamp(2.5rem, 1.374rem + 1.72vw, 4.3rem);
    --fz36: clamp(2.6rem, 1.772rem + 1.075vw, 3.6rem);
    --fz34: clamp(2.4rem, 1.572rem + 1.075vw, 3.4rem);
    --fz32: clamp(2.2rem, 1.372rem + 1.075vw, 3.2rem);
    --fz30: clamp(2rem, 1.172rem + 1.075vw, 3rem);
    --fz28: clamp(1.9rem, 1.155rem + 0.968vw, 2.8rem);
    --fz24: clamp(1.6rem, 0.938rem + 0.86vw, 2.4rem);
    --fz22: clamp(1.4rem, 0.738rem + 0.86vw, 2.2rem);
    --fz20: clamp(1.5rem, 1.086rem + 0.538vw, 2rem);
    --fz18: clamp(1.4rem, 1.069rem + 0.43vw, 1.8rem);
    --fz16: clamp(1.4rem, 1.234rem + 0.215vw, 1.6rem);
    --fz14: clamp(1.3rem, 1.217rem + 0.108vw, 1.4rem);

    --header-height: 104px;
    --transition: 0.3s ease;
}

/* Reset
   ========================================================================== */

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-family);
    font-size: var(--fz18);
    line-height: 1.8;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

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

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

a:hover {
    opacity: 0.7;
}

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

/* ==========================================================================
   Utility - Scroll Animation
   ========================================================================== */

.js-scroll-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.js-scroll-in-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1),
                transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.js-scroll-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
    .js-scroll-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}




/* ==========================================================================
   Layout - Common
   ========================================================================== */

.l-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.l-main {
    min-height: calc(100vh - var(--header-height));
    overflow: clip;
    /* background: var(--color-bg-gray); */
}

.single-post .l-main {
    background: var(--color-bg-gray);
}


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


/* ==========================================================================
   Layout - Header
   ========================================================================== */

.l-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-bg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.l-header__inner {
    display: flex;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    height: var(--header-height);
}

.l-header__logo {
    flex-shrink: 0;
    margin-right: auto;
}

.l-header__nav {
    margin-right: 5rem;
}

.l-header__cta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.l-header__cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 120px;
    padding: 1rem;
    border-radius: 8px;
    color: #fff;
    /* font-size: clamp(0.82rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    font-weight: 500;
    letter-spacing: 0.13em;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
}

.l-header__cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 0;
    height: 100%;
    background: #fff;
    transform: skewX(-15deg);
    transition: width 0.45s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: 0;
}

.l-header__cta-btn:hover::before {
    width: 125%;
}

.l-header__cta-btn:hover {
    opacity: 1;
}

.l-header__cta-btn--recruit {
    background: #5FC9EA;
    border: 2px solid #5FC9EA;
}

.l-header__cta-btn--recruit:hover {
    color: #5FC9EA;
}

.l-header__cta-btn--recruit:hover .l-header__cta-icon img {
    filter: brightness(0) saturate(100%) invert(68%) sepia(52%) saturate(400%) hue-rotate(158deg) brightness(95%) contrast(92%);
}

.l-header__cta-btn--contact {
    background: #00A3D5;
    border: 2px solid #00A3D5;
}

.l-header__cta-btn--contact:hover {
    color: #00A3D5;
}

.l-header__cta-btn--contact:hover .l-header__cta-icon img {
    filter: brightness(0) saturate(100%) invert(42%) sepia(98%) saturate(1000%) hue-rotate(168deg) brightness(92%) contrast(101%);
}

.l-header__cta-icon {
    display: block;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1;
}

.l-header__cta-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 0.4s ease;
}

.l-header__cta-label {
    line-height: 1;
    position: relative;
    z-index: 1;
}

.l-header__hamburger {
    display: none;
}

/* ==========================================================================
   Component - Logo
   ========================================================================== */

.c-logo {
    display: flex;
    align-items: center;
}

.c-logo:hover {
    opacity: 0.7;
}

.c-logo__img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

/* ==========================================================================
   Component - Button
   ========================================================================== */

.c-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    border-radius: 4px;
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
}

.c-btn:hover {
    opacity: 1;
}

.c-btn--outline {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.c-btn--outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.c-btn--primary {
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    color: #fff;
}

.c-btn--primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

/* ==========================================================================
   Component - Hamburger
   ========================================================================== */

.c-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
}

.c-hamburger__line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-secondary);
    position: absolute;
    left: 0;
    transition: all var(--transition);
}

.c-hamburger__line:nth-child(1) { top: 0; }
.c-hamburger__line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.c-hamburger__line:nth-child(3) { bottom: 0; }

/* ハンバーガー開閉アニメーション */
.c-hamburger.is-active .c-hamburger__line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.c-hamburger.is-active .c-hamburger__line:nth-child(2) {
    opacity: 0;
}

.c-hamburger.is-active .c-hamburger__line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ==========================================================================
   Project - Global Navigation
   ========================================================================== */

.p-gnav__list {
    display: flex;
    align-items: center;
    gap: 2.3vw;
}

.p-gnav__link {
    font-size: 2.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    white-space: nowrap;
    position: relative;
    padding: 0.5rem 0;
}

.p-gnav__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.p-gnav__link:hover,
.p-gnav__link.is-current {
    opacity: 1;
    color: var(--color-primary);
}

.p-gnav__link:hover::after,
.p-gnav__link.is-current::after {
    width: 100%;
}

/* PC: サブメニュートグル・サブメニュー非表示 */
.p-gnav__item-row {
    display: contents;
}

.p-gnav__submenu-toggle {
    display: none;
}

.p-gnav__submenu {
    display: none;
}

/* SP用CTAはPCでは非表示 */
.p-gnav__cta--sp {
    display: none;
}

/* ==========================================================================
   Layout - Footer
   ========================================================================== */

.l-footer {
    padding: 0;
    background: none;
    overflow: hidden;
}

/* Footer Top Decoration */
.l-footer__top-deco {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-bottom: 2px solid var(--color-primary);
    padding-top: 10rem;
    background-color: var(--color-bg-gray);
    overflow: hidden;
}

.l-footer__top-deco img {
    width: 26vw;
}

@keyframes train-loop {
    0% {
        transform: translateX(0);
    }
    10% {
        transform: translateX(0);
    }

    75% {
        transform: translateX(-100vw);
    }
    75.01% {
        transform: translateX(120%);
    }
    100% {
        transform: translateX(0);
    }
}

.l-footer__top-deco.js-scroll-in {
    opacity: 1;
    transform: none;
    transition: none;
}

.l-footer__train-loop {
    animation: none;
}

.l-footer__top-deco.is-visible .l-footer__train-loop {
    animation: train-loop 30s cubic-bezier(0.1, 0.1, 0.15, 0.1) 1 forwards;
}

/* Footer Navigation Area */
.l-footer__nav-area {
    background: #fff;
    padding: 10rem 6rem;
}

.l-footer__nav-inner {
    max-width: 1559px;
    margin: 0 auto;
}

/* Footer CTA Area */
.l-footer__cta-area {
    padding: 0 2rem;
}

.l-footer__cta-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Footer Bottom Area */
.l-footer__bottom-train {
    position: absolute;
    top: -1.98vw;
    left: 0;
    z-index: 20;
    width: 26vw;
    height: auto;
}

.l-footer__bottom-area {
    background: #dbf2fb;
    padding: 8rem 2rem 6rem;
    position: relative;
    overflow: visible;
    margin-top: 12rem;
}

.l-footer__bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Privacy Area */
.l-footer__privacy-area {
    background: #215576;
    padding: 2rem 2rem 2rem;
    text-align: center;
    position: relative;
}

.l-footer__privacy-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.p-footer-privacy__link {
    /* font-size: clamp(1.2rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    color: #fff;
    letter-spacing: 0.13em;
}

.p-footer-privacy__link:hover {
    opacity: 0.8;
}

/* Footer Copyright Area */
.l-footer__copyright-area {
    background: #013353;
    padding: 1rem 2rem;
    position: relative;
}

.l-footer__copyright-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* ==========================================================================
   Project - Footer Navigation
   ========================================================================== */

.p-footer-nav {
    display: flex;
    gap: 5%;
}

.p-footer-nav__column {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.p-footer-nav__heading {
    /* font-size: clamp(1.5rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.13em;
    margin-bottom: 3.8rem;
    padding-bottom: 0rem;
    border-bottom: 2px solid var(--color-primary);
    display: block;
    width: fit-content;
    position: relative;
    line-height: 1.2;
}

.p-footer-nav__heading::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 100%;
    width: 2000px;
    height: 1px;
    background: var(--color-border);
    border-bottom: 2px solid var(--color-primary);
}

.p-footer-nav__heading a {
    color: var(--color-secondary);
}

.p-footer-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.p-footer-nav__item {
    /* font-size: clamp(1.4rem, 0.73rem + 0.54vw, 1.6rem); */
    font-size: var(--fz16);
    color: var(--color-text-light);
    font-weight: 500;
    line-height: 1.6;
}

.p-footer-nav__item a {
    /* font-size: clamp(1.4rem, 0.73rem + 0.54vw, 1.6rem); */
    font-size: var(--fz16);
    color: var(--color-text-light);
    display: inline-block;
    transition: transform 0.3s ease;
}

.p-footer-nav__item a::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 12px;
    margin-right: 0.7em;
    background: url("../img/common/icon-arrow-nav.svg") no-repeat center / contain;
    vertical-align: middle;
    transition: filter 0.3s ease;
    margin-bottom: 4px;
}

.p-footer-nav__item a:hover {
    color: var(--color-primary);
    opacity: 1;
    animation: footerNavNudge 0.4s ease;
}

.p-footer-nav__item a:hover::before {
    filter: brightness(0) saturate(100%) invert(30%) sepia(93%) saturate(1352%) hue-rotate(185deg) brightness(95%) contrast(101%);
}

@keyframes footerNavNudge {
    0% { transform: translateX(0); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

.p-footer-nav__item--sub {
    padding-left: 0.2em;
    /* font-size: clamp(0.93rem, 0.73rem + 0.54vw, 1.6rem); */
    font-size: var(--fz16);
}

.p-footer-nav__item--sub::before {
    content: "\30FB";
    margin-right: 0.2em;
}

.p-footer-nav__item--sub a::before {
    display: none;
}

/* ==========================================================================
   Project - Footer CTA
   ========================================================================== */

.p-footer-cta {
    display: flex;
    gap: 2.5rem;
}

.p-footer-cta__button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 5rem 12rem;
    color: #fff;
    transition: color 0.4s ease, border-color 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.p-footer-cta__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 0;
    height: 100%;
    background: #fff;
    transform: skewX(-15deg);
    transition: width 0.45s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: 0;
}

.p-footer-cta__button:hover::before {
    width: 125%;
}

.p-footer-cta__button:hover {
    opacity: 1;
}

.p-footer-cta__button--recruit {
    background: #5FC9EA;
}

.p-footer-cta__button--recruit:hover {
    color: #5FC9EA;
    border-color: #5FC9EA;
}

.p-footer-cta__button--recruit:hover .p-footer-cta__icon img {
    filter: brightness(0) saturate(100%) invert(68%) sepia(52%) saturate(400%) hue-rotate(158deg) brightness(95%) contrast(92%);
}

.p-footer-cta__button--contact {
    background: #00A3D5;
}

.p-footer-cta__button--contact:hover {
    color: #00A3D5;
    border-color: #00A3D5;
}

.p-footer-cta__button--contact:hover .p-footer-cta__icon img {
    filter: brightness(0) saturate(100%) invert(42%) sepia(98%) saturate(1000%) hue-rotate(168deg) brightness(92%) contrast(101%);
}

.p-footer-cta__icon {
    display: block;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.p-footer-cta__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 0.4s ease;
}

.p-footer-cta__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.p-footer-cta__label-en {
    font-family: var(--font-family-en);
    /* font-size: clamp(1.4rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.p-footer-cta__label-ja {
    /* font-size: clamp(1.4rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    letter-spacing: 0.15em;
}

/* ==========================================================================
   Project - Footer Bottom
   ========================================================================== */

.p-footer-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15%;
    flex-wrap: wrap;
}

.p-footer-bottom__info {
    flex: 0 0 40%;
}

.p-footer-bottom__logo {
    margin-bottom: 2.5rem;
}

.p-footer-bottom__logo a {
    display: inline-block;
}

.p-footer-bottom__logo img {
    height: 38px;
    width: auto;
}

.p-footer-bottom__address {
    /* font-size: clamp(1.4rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-style: normal;
    color: var(--color-text);
    letter-spacing: 0.15em;
    line-height: 1.6;
}

.p-footer-bottom__tel {
    /* font-size: clamp(1.4rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    color: var(--color-text);
    letter-spacing: 0.15em;
}

.p-footer-bottom__tel a {
    color: var(--color-text);
}

.p-footer-bottom__sns {
    text-align: right;
    flex: 0 0 40%;
}

.p-footer-bottom__sns-heading {
    font-family: var(--font-family-en);
    /* font-size: clamp(1.6rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.p-footer-bottom__sns-box {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: #fff;
    border-radius: 100px;
    padding: 2.5rem 4rem;
    z-index: 2;
    position: relative;
    max-width: 95vw;
    justify-content: center;
}

.p-footer-bottom__sns-label {
    font-family: var(--font-family-en);
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.p-footer-bottom__sns-list {
    display: flex;
    gap: 2rem;
}

.p-footer-bottom__sns-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: #215576;
    color: #fff;
    transition: opacity var(--transition);
}

.p-footer-bottom__sns-item a:hover {
    opacity: 0.8;
}

.p-footer-bottom__mascot {
    position: absolute;
    right: 1%;
    bottom: -9.3rem;
    width: 291px;
    height: 321px;
    pointer-events: none;
}

@media (max-width: 1500px) {
    .l-header__nav {
        margin-right: 2rem;
    }
    .p-gnav__list {
        gap: 1.5vw;
    }
    .l-header__inner {
        padding: 0 2rem;
    }
}


@media (max-width: 1400px) {
    .p-footer-nav {
        gap: 3vw;
    }
    .p-footer-bottom {
        gap: 5%;
    }
    .p-footer-bottom__mascot {
        right: -7%;
    }
}

@media (max-width: 768px) {
    .l-footer__bottom-area {
        padding-bottom: 16rem;
        margin-top: 4rem;
        padding-top: 5rem;
    }
    .l-footer__top-deco {
        padding-top: 2rem;
    }

    .p-footer-nav__item a::before {
        height: 9px;
    }
    .p-footer-bottom__sns-box {
        padding: 2rem 3rem;
    }
    .p-footer-bottom__sns-list {
        gap: 1rem;
    }
    .l-footer__top-deco img {
        width: 40vw;
    }
    
}



/* ==========================================================================
   Project - Footer Copyright
   ========================================================================== */

.p-footer-copyright {
    /* font-size: clamp(1.2rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    color: #fff;
    text-align: center;
    letter-spacing: 0.2em;
}

/* ==========================================================================
   Layout - Page
   ========================================================================== */

.l-page__header {
    background: var(--color-bg-gray);
    padding: 4rem 2rem;
    text-align: center;
}

.l-page__title {
    /* font-size: clamp(1.63rem, 1.28rem + 0.95vw, 2.8rem); */
    font-size: var(--fz28);
    font-weight: 700;
    color: var(--color-secondary);
}

.l-page__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.l-contents__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* ==========================================================================
   Components - Heading / Misc
   ========================================================================== */

.c-heading {
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-secondary);
}

/* ==========================================================================
   Project - News
   ========================================================================== */

.p-news {
    padding: 6rem 2rem;
}

.p-news__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.p-news__list {
    margin-bottom: 3rem;
}

.p-news__item a {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    text-align: left;
}

.p-news__item time {
    flex-shrink: 0;
    /* font-size: clamp(0.82rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    color: var(--color-text-light);
}

/* ==========================================================================
   Project - Archive
   ========================================================================== */

.p-archive__item a {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}

.p-archive__item time {
    flex-shrink: 0;
    /* font-size: clamp(0.82rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    color: var(--color-text-light);
}

/* ==========================================================================
   Project - Single
   ========================================================================== */

.p-single__header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.p-single__date {
    /* font-size: clamp(0.82rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    color: var(--color-text-light);
}

.p-single__title {
    /* font-size: 2.2rem; */
    font-size: var(--fz22);
    margin-top: 1rem;
}

.p-single__body {
    margin-bottom: 4rem;
}

.p-single__body p {
    margin-bottom: 1.5em;
}

.p-single__back {
    text-align: center;
    margin-top: 4rem;
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.navigation.pagination {
    margin-top: 4rem;
    text-align: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5.5rem;
    height: 5.5rem;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    color: var(    --color-primary);
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    transition: all var(
    --transition);
    font-weight: bold;
}

.page-numbers:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    opacity: 1;
}

.page-numbers.current {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.page-numbers.prev,
.page-numbers.next {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    padding: 0;
    font-size: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px auto;
}

.page-numbers.next {
    background-image: url("../img/common/icon-arrow-blue-right.svg");
    background-size: 1.2rem;
}

.page-numbers.prev {
    background-image: url("../img/common/icon-arrow-blue-right.svg");
    transform: scaleX(-1);
}

.page-numbers.prev:hover,
.page-numbers.next:hover {
    background-image: url("../img/common/icon-arrow-white-right.svg");
}

.page-numbers .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


@media (max-width: 768px) {
    .page-numbers.prev, .page-numbers.next {
        width: 4rem;
        height: 4rem;
        background-size: 1rem;
    }
    .page-numbers {
        width: 4rem;
        height: 4rem;
    }
}


/* ==========================================================================
   Component - Button Arrow
   ========================================================================== */

.c-btn--arrow {
    display: inline-flex;
    align-items: center;
    gap: 1.3rem;
    padding: 1.7rem 2.4rem;
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    background: transparent;
    transition: all var(--transition);
    cursor: pointer;
}

.c-btn--arrow::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url("../img/common/icon-circle-download.svg") no-repeat center / contain;
    transition: transform var(--transition);
}

.c-btn--arrow:hover {
    opacity: 1;
    background: var(--color-primary);
    color: #fff;
}

.c-btn--arrow:hover::after {
    /* transform: translateX(4px); */
}

.c-btn--download {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    font-size: 2.0rem;
    font-weight: 500;
    color: var(--color-text);
    background: #fff;
    border: 1px solid #000000;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
}

.c-btn--download::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' viewBox='0 0 14 14'%3E%3Cpath d='M7 1v9M3.5 7L7 10.5 10.5 7' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 12.5h10' stroke='%23fff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
}

.c-btn--download:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.c-btn--download:hover::after {
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' viewBox='0 0 14 14'%3E%3Cpath d='M7 1v9M3.5 7L7 10.5 10.5 7' stroke='%230275BE' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 12.5h10' stroke='%230275BE' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    .c-btn--download {
        /* font-size: 1.6rem; */
    }
    .c-btn--arrow {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
    }
}


/* ==========================================================================
   Component - Section Heading
   ========================================================================== */

.c-section-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.c-section-heading__en {
    display: block;
    font-family: var(--font-family);
    font-size: var(--font-size-section-title-en);
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--color-primary);
    line-height: 1.2;
}

.c-section-heading__ja {
    display: block;
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-text-light);
    line-height: 1.2;
    margin-top: 0.5rem;
}

.c-section-heading--white .c-section-heading__en {
    color: #fff;
}

.c-section-heading--white .c-section-heading__ja {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Utility - Display
   ========================================================================== */

.u-sp-only {
    display: none;
}

/* ==========================================================================
   Home - Section Heading Overrides
   ========================================================================== */

/* ABOUT US: left-aligned per design */
.p-home-about .c-section-heading {
    text-align: left;
}

/* (home heading overrides removed - using base c-section-heading__en settings) */

/* Subtitle blue instead of gray on home */
.p-home-about .c-section-heading__ja,
.p-home-business .c-section-heading__ja,
.p-home-service .c-section-heading__ja {
    color: var(--color-primary);
}

/* ==========================================================================
   Project - Hero (Top)
   ========================================================================== */

.p-hero {
    position: relative;
    min-height: 758px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-bg-gray);
}

.p-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.p-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-hero__overlay {
    position: absolute;
    inset: 0;
    background: none;
}

.p-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 25rem;
    display: flex;
    align-items: center;
    min-height: 758px;
}

.p-hero__content {
    max-width: 700px;
}

.p-hero__catch {
    font-size: clamp(2.33rem, 1.83rem + 1.35vw, 4rem);
    font-weight: 500;
    color: #fff;
    line-height: 62px;
    letter-spacing: 0.16em;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .p-hero {
        min-height: 50vh;
    }
    .p-hero__inner {
        min-height: 50vh;
        padding: 4rem 2rem;
        align-items: center;
    }
    .p-hero__catch {
        /* font-size: 2.2rem; */ /* clamp で可変のためコメントアウト */
        line-height: 1.6;
        letter-spacing: 0.05em;
    }
}

/* ==========================================================================
   Project - Home News
   ========================================================================== */

.p-home-news {
    background: linear-gradient(135deg, #007bd0 0%, #6bddef 100%);
    padding: 7rem 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.p-home-news::before {
    content: "";
    position: absolute;
    left: 20%;
    top: -10%;
    height: 120%;
    aspect-ratio: 430 / 350;
    background: url('../img/home/topnewback.png') center / contain no-repeat;
    pointer-events: none;
}

.p-home-news__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 7vw;
    align-items: flex-start;
}

.p-home-news__heading {
    flex-shrink: 0;
    min-width: 140px;
}

.p-home-news__en {
    display: block;
    font-family: var(--font-family);
    /* font-size: clamp(2.8rem, 2.2rem + 1.62vw, 4.8rem); */
    font-size: var(--fz48);
    font-weight: 700;
    letter-spacing: 0.25em;
    color: #fff;
    line-height: 1.2;
}

.p-home-news__ja {
    display: block;
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    color: #fff;
    margin-top: 0.3rem;
    letter-spacing: 0.2em;
}

.p-home-news__body {
    flex: 1;
    min-width: 0;
}

.p-home-news__list {
    display: flex;
    flex-direction: column;
}

.p-home-news__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.p-home-news__item:last-child {
    border-bottom: none;
}

.p-home-news__link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    color: #fff;
    transition: opacity var(--transition);
}

.p-home-news__link:hover {
    opacity: 0.8;
}

.p-home-news__date {
    font-family: var(--font-family);
    /* font-size: clamp(0.93rem, 0.73rem + 0.54vw, 1.6rem); */
    font-size: var(--fz16);
    color: #fff;
    white-space: nowrap;
    flex-shrink: 0;
}

.p-home-news__cat {
    display: inline-block;
    font-size: 1.2rem;
    color: #fff;
    background: #32cee6;
    padding: 0.3rem 1.5rem;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.25em;
}

.p-home-news__cat--news { background: #32CEE6; }
.p-home-news__cat--topics { background: #E8994A; }
.p-home-news__cat--release { background: #E8994A; }
.p-home-news__cat--recruit { background: #67CE30; }

.p-home-news__title {
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.p-home-news__action {
    margin-top: 1.5rem;
}

.p-home-news__more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    color: #fff;
    border: 2px solid #fff;
    padding: 1.5rem 5rem;
    border-radius: 56px;
    transition: background var(--transition), color var(--transition);
    letter-spacing: 0.1em;
    width: 325px;
    justify-content: space-between;
}

.p-home-news__more:hover {
    background: #fff;
    color: var(--color-primary);
    opacity: 1;
}

.p-home-news__more svg {
    flex-shrink: 0;
}

.p-home-news__action--sp {
    display: none;
}

@media (max-width: 768px) {
    .p-home-news__inner {
        flex-direction: column;
        gap: 2rem;
    }
    .p-home-news__en {
        /* font-size: 2.2rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-home-news__action:not(.p-home-news__action--sp) {
        display: none;
    }

    .p-home-news__action--sp {
        display: block;
        text-align: center;
        margin-top: 1rem;
    }

    .p-home-news__more {
        /* font-size: 1.5rem; */ /* clamp で可変のためコメントアウト */
        width: auto;
        padding: 1rem 2.5rem;
    }

    .p-home-news__more svg {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================================================
   Project - Home About
   ========================================================================== */

.p-home-about {
    padding: 15rem 12rem;
    background: linear-gradient(180deg, #dbf2f0 0%, #f7f7f0 100%);
    position: relative;
}

.p-home-about__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.p-home-about__body {
    display: flex;
    align-items: flex-start;
    gap: 9rem;
}

.p-home-about__text {
    flex: 4;
    min-width: 0;
} 

.p-home-about__desc {
    font-size: var(--fz24);
    line-height: 48px;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
}

.p-home-about__desc:last-of-type {
    margin-bottom: 0;
}

.p-home-about__img {
    flex: 4;
    min-width: 0;
    position: relative;
}

.p-home-about::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    /* transform: translateY(-50%); */
    width: 100%;
    height: 100%;
    background: url("../images/home-about-bg.png") no-repeat right bottom / contain;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 2.5s ease 0.3s;
}
 
.p-home-about__img img {
    width: 100%;
    height: auto;
    display: block;
    /* clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%); */
    position: relative;
    z-index: 1;
}

/* About - subsection links */
.p-home-about__links {
    margin-top: 0;
    max-width: 690px;
}

.p-home-about__link-item {
    border-bottom: 1px solid var(--color-border);
    transition: border-color 0.3s ease;
}

.p-home-about__link-item:has(.p-home-about__link:hover) {
    border-bottom-color: var(--color-primary);
}

.p-home-about__link {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 2.3rem 2rem 1.3rem;
    transition: color 0.3s ease;
    position: relative;
}

.p-home-about__link:hover {
    color: var(--color-primary);
}

.p-home-about__link:hover .p-home-about__link-en,
.p-home-about__link:hover .p-home-about__link-ja {
    color: var(--color-primary);
}

.p-home-about__link-en {
    display: block;
    width: 100%;
    font-family: var(--font-family);
    /* font-size: clamp(0.93rem, 0.73rem + 0.54vw, 1.6rem); */
    font-size: var(--fz16);
    color: #2f2f2f;
    letter-spacing: 0;
    line-height: 1.5;
    font-weight: 500;
}

.p-home-about__link-ja {
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 700;
    color: #2f2f2f;
    line-height: 1.4;
    letter-spacing: 0.15em;
}

.p-home-about__link-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.p-home-about__link:hover .p-home-about__link-arrow {
    transform: translateY(-50%) scale(1.6);
}


@media (max-width: 1400px) {
    .p-home-about {
        padding: 8rem 6rem;
    }

}


@media (max-width: 1200px) {
    .p-home-about__body {
        flex-direction: column;
        gap: 3rem;
    }
    .p-home-about__links {
        max-width: 100%;
        margin-top: 0;
    }
    .p-home-about__img {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .p-home-about {
        padding: 8rem 2rem;
    }

    .p-home-about__desc {
        letter-spacing: 0.05em;
    }

    .p-home-about__link-ja {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
    }
}

/* ==========================================================================
   Project - Home Business
   ========================================================================== */

.p-home-business {
    padding: 14rem 6rem;
    background: var(--color-bg-gray);
    overflow: hidden;
    position: relative;
}

.p-home-business::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0%;
    width: 100%;
    height: 100%;
    background: url("../images/home-business-bg.png") no-repeat right top / contain;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 2.5s ease 0.3s;
}

.p-home-about.is-bg-visible::before,
.p-home-business.is-bg-visible::before {
    opacity: 1;
}

.p-home-business__inner {
    max-width: 1520px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.p-home-business__row {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
    margin-top: 5rem;
}

.p-home-business__photo {
    flex-shrink: 0;
    width: 437px;
    max-width: 100%;
    position: relative;
    aspect-ratio: 437 / 1026;
}

.p-home-business__photo img {
    width: 100%;
    height: auto;
    display: block;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.p-home-business__photo img.is-active {
    opacity: 1;
}

.p-home-business__lead {
    margin-bottom: 5rem;
    font-size: var(--fz24);
    line-height: 48px;
    letter-spacing: 0.15em;
    text-align: left;
    max-width: 881px;
    margin-left: auto;
    margin-right: auto;
}

.p-home-business__list {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.p-home-business__item {
    border-bottom: 1px solid var(--color-border);
    transition: border-color 0.3s ease;
}

.p-home-business__item:has(.p-home-business__link:hover) {
    border-bottom-color: var(--color-primary);
}

.p-home-business__link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem 5rem 3rem;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.p-home-business__link:hover {
    color: var(--color-primary);
}

.p-home-business__link:hover .p-home-business__name {
    color: var(--color-primary);
}

.p-home-business__num {
    font-family: "Braah One", var(--font-family-en);
    font-size: var(--fz60);
    font-weight: 400;
    color: var(--color-primary);
    flex-shrink: 0;
    min-width: 80px;
    letter-spacing: 0.15em;
    text-align: center;
}

.p-home-business__name {
    /* font-size: clamp(2.1rem, 1.64rem + 1.22vw, 3.6rem); */
    font-size: var(--fz36);
    font-weight: 500;
    letter-spacing: 0.15em;
}

.p-home-business__arrow {
    margin-left: auto;
    font-family: "PT Sans Caption", var(--font-family-en);
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
    font-weight: 700;
    letter-spacing: 0.25em;
}

@keyframes spread-text {
    0%   { letter-spacing: 0.25em; }
    50%  { letter-spacing: 0.3em; }
    100% { letter-spacing: 0.25em; }
}
@keyframes spread-text2 {
    0%   { letter-spacing: 0.1em; }
    50%  { letter-spacing: 0.15em; }
    100% { letter-spacing: 0.1em; }
}


.p-home-business__link:hover .p-home-business__arrow {
    animation: spread-text 0.6s ease;
}

.p-home-business__arrow img {
    width: 70px;
    height: 70px;
    transition: transform 0.5s ease;
}

.p-home-business__link:hover .p-home-business__arrow img {
    /* transform: rotate(360deg); */
}

@media (max-width: 1400px) {
    .p-home-business__row {
        gap: 3vw;
    }
    .p-home-business__link {
        flex-wrap: wrap;
        row-gap: 0.5rem;
        padding: 3rem 2rem;
    }
    .p-home-business__num {
        line-height: 1.2;
    }
    .p-home-business__photo {
        max-width: 40vw;
    }
    .p-home-business__arrow img {
        height: 5vw;
        width: 5vw;
    }

    .p-home-business {
        padding: 8rem 6rem;
    }
}


@media (max-width: 1300px) {
    .p-home-business__photo {
        /* display: none; */
    }
}

@media (max-width: 768px) {
    .p-home-business__link {
        padding: 2.5rem 1rem;
    }

    .p-home-business__arrow img {
        width: 40px;
        height: 40px;
    }
    .p-home-business__photo {
        display: none;
    }
}

/* ==========================================================================
   Project - Home Service
   ========================================================================== */

.p-home-service {
    padding: 15rem 2rem;
    background: #dbf2f0;
}

.p-home-service__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.p-home-service__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5vw;
    margin-top: 9rem;
}

.p-home-service__card {
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: var(--radius);
    padding: 2rem;
    transition: border-color 0.3s ease;
}

.p-home-service__card:hover {
    border-color: var(--color-primary);
}

.p-home-service__card-logo {
    background: #fff;
    border-radius: var(--radius);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    min-height: 160px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.p-home-service__card-logo img {
    max-height: 100%;
    width: auto;
    max-width: 100%;
    transition: transform 0.5s ease;
}

.p-home-service__card:hover .p-home-service__card-logo img {
    transform: scale(1.08);
}

.p-home-service__card-title {
    /* font-size: 3rem; */
    font-size: var(--fz30);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: 1rem;
    line-height: 1.45;
}

.p-home-service__card-text {
    margin-bottom: 1.5rem;
    font-size: var(--fz24);
    line-height: 48px;
    letter-spacing: 0.15em;
}

.p-home-service__card-action {
    margin-top: auto;
    text-align: right;
    margin-top: 0rem;
}

.p-home-service__card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: "PT Sans", var(--font-family-en);
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 700;
    color: var(--color-primary);
    transition: opacity var(--transition);
    letter-spacing: 0.1em;
}

.p-home-service__card-link:hover {
    animation: spread-text2 0.6s ease;
}

.p-home-service__card-link-sub {
    font-family: inherit;
    /* font-size: clamp(0.82rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    font-weight: 400;
}

.p-home-service__illust {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(clamp(100px, 13vw, 200px));
}

.p-home-service__illust img {
    max-width: 100%;
    height: auto;
}



@media (max-width: 1400px) {
    .p-home-service {
        padding: 8rem 4rem;
    }
}

@media (max-width: 768px) {
    .p-home-service {
        padding: 8rem 2rem;
    }

    .p-home-service__grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .p-home-service__card-title {
        font-size: 2.2rem;
    }

    .p-home-service__card-text {
        letter-spacing: 0.05em;
    }

    .p-home-service__illust {
        display: none;
    }
    .p-home-service__card-link {
        margin-top: 2rem;
    }
    .p-home-cta__banner-icon img {
        max-width: 12vw;
    }
}

/* ==========================================================================
   Project - Home CTA Banners
   ========================================================================== */

.p-home-cta {
    background: var(--color-bg);
}

.p-home-cta__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.p-home-cta__banner {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 596px;
}

.p-home-cta__banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.p-home-cta__banner1 img {
    object-position: center 20%;
}

.p-home-cta__banner3 img {
    object-position: center 30%;
}


.p-home-cta__banner:hover .p-home-cta__banner-img {
    transform: scale(1.05);
}

.p-home-cta__banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 0.5s ease;
    z-index: 1;
}

.p-home-cta__banner:hover .p-home-cta__banner-overlay {
    opacity: 0;
}

.p-home-cta__banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 220px;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.p-home-cta__banner-icon {
    margin-bottom: 1rem;
}

.p-home-cta__banner-icon img {
    /* width: 48px; */
    /* height: 48px; */
}

.p-home-cta__banner-en {
    display: block;
    font-family: var(--font-family-en);
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1.3;
}

.p-home-cta__banner-ja {
    display: block;
    /* font-size: clamp(0.82rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    margin-top: 0.3rem;
}

@media (max-width: 768px) {
    .p-home-cta__grid {
        grid-template-columns: 1fr;
    }
    .p-home-cta__banner {
        min-height: 160px;
    }
    .p-home-cta__banner-content {
        min-height: 160px;
    }
}

/* ==========================================================================
   Project - Page Hero (Shared)
   ========================================================================== */

.p-page-hero {
    position: relative;
    min-height: clamp(20rem, 4.86rem + 40.38vw, 63rem);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.p-page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.p-page-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single .p-page-hero__bg-img {
    object-position: top;
}

.p-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
}

/* 素材に暗転加工がない画像用 — クラスを外せばオーバーレイ解除 */
.p-page-hero--darken .p-page-hero__overlay {
    display: block;
}

.p-page-hero__inner {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
}

.p-page-hero__heading {
    margin-bottom: 1rem;
}

.p-page-hero__heading-en {
    display: block;
    font-family: var(--font-family-en);
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #fff;
    line-height: 1.2;
}

.p-page-hero__heading-en.is-split .p-page-hero__char {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.3em);
    animation: hero-char-in 0.4s ease forwards;
}

@keyframes hero-char-in {
    0% { opacity: 0; transform: translateY(0.3em); }
    100% { opacity: 1; transform: translateY(0); }
}

.p-page-hero__heading-ja {
    display: block;
    font-size: clamp(1.6rem, 1.1rem + 0.81vw, 2.6rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.5rem;
    line-height: 1.2;
}

.p-page-hero__heading-ja.is-hidden {
    opacity: 0;
}

.p-page-hero__heading-ja.is-fade-in {
    animation: hero-ja-in 0.6s ease forwards;
}

@keyframes hero-ja-in {
    0% { opacity: 0; transform: translateY(0.5em); }
    100% { opacity: 1; transform: translateY(0); }
}

.p-page-hero__lead {
    /* font-size: clamp(0.82rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Project - News Filter Tabs
   ========================================================================== */

.p-news-filter {
    background: var(--color-bg-gray);
    padding: 11rem 2rem 5.6rem;
}

.p-news-filter__inner {
    max-width: 1176px;
    margin: 0 auto;
}

.p-news-filter__list {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.p-news-filter__item {
    flex: 1;
    max-width: 284px;
}

.p-news-filter__link {
    display: block;
    text-align: center;
    padding: 1.1rem 2rem;
    /* font-size: 2.2rem; */
    font-size: var(--fz22);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 9999px;
    background: transparent;
    transition: all var(--transition);
}

.p-news-filter__link:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    opacity: 1;
}

.p-news-filter__link--news:hover {
    background: #32CEE6;
    color: #fff;
    border-color: #32CEE6;
}

.p-news-filter__link--topics:hover {
    background: #E8994A;
    color: #fff;
    border-color: #E8994A;
}

.p-news-filter__link--release:hover {
    background: #E8994A;
    color: #fff;
    border-color: #E8994A;
}

.p-news-filter__link--recruit:hover {
    background: #67CE30;
    color: #fff;
    border-color: #67CE30;
}

.p-news-filter__link.is-active {
    color: #fff;
    background: var(--color-primary);
}

/* 会社情報 */
.p-news-filter__link--news {
    color: #32CEE6;
    border-color: #32CEE6;
}
.p-news-filter__link--news.is-active {
    background: #32CEE6;
    color: #fff;
}

/* トピックス */
.p-news-filter__link--topics {
    color: #E8994A;
    border-color: #E8994A;
}
.p-news-filter__link--topics.is-active {
    background: #E8994A;
    color: #fff;
}

/* リリース */
.p-news-filter__link--release {
    color: #E8994A;
    border-color: #E8994A;
}
.p-news-filter__link--release.is-active {
    background: #E8994A;
    color: #fff;
}

/* 採用情報 */
.p-news-filter__link--recruit {
    color: #67CE30;
    border-color: #67CE30;
}
.p-news-filter__link--recruit.is-active {
    background: #67CE30;
    color: #fff;
}

/* ==========================================================================
   Project - News Archive List
   ========================================================================== */

.p-news-archive {
    padding: 4rem 2rem 6rem;
    background: var(--color-bg-gray);
}

.p-news-archive__inner {
    max-width: 979px;
    margin: 0 auto;
}

.p-news-archive__list {
    margin-bottom: 4rem;
}

.p-news-archive__item {
    border-bottom: 1px solid var(--color-primary);
}

.p-news-archive__link {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    padding: 1.8rem 0;
    color: var(--color-text);
    transition: opacity var(--transition);
}

.p-news-archive__link:hover {
    opacity: 0.7;
}

.p-news-archive__date {
    font-family: var(--font-family-en);
    font-size: var(--fz16);
    color: var(--color-primary);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 8rem;
    font-weight: bold;
}

.p-news-archive__cat {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 500;
    padding: 0.2rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 7rem;
    text-align: center;
    color: #fff;
}

.p-news-archive__cat--news {
    background: #32CEE6;
}

.p-news-archive__cat--topics {
    background: #E8994A;
}

.p-news-archive__cat--release {
    background: #E8994A;
}

.p-news-archive__cat--recruit {
    background: #67CE30;
}

.p-news-archive__cat--uncategorized {
    background: var(--color-text-light);
}

.p-news-archive__title {
    /* font-size: clamp(1.4rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 700;
    color: var(--color-text);
}

.p-news-archive__empty {
    text-align: center;
    padding: 4rem 0;
    color: var(--color-text-light);
}

/* ==========================================================================
   Project - News Single
   ========================================================================== */

.p-news-single {
    padding: 9rem 2rem 6rem;
    background: var(--color-bg-gray);
}

.p-news-single__inner {
    max-width: 800px;
    margin: 0 auto;
}

.p-news-single__header {
    margin-bottom: 1rem;
    padding-bottom: 2rem;
    /* border-bottom: 1px solid var(--color-border); */
}

.p-news-single__meta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.p-news-single__date {
    font-family: var(--font-family-en);
    /* font-size: clamp(0.82rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    color: var(--color-text-light);
}

.p-news-single__title {
    /* font-size: clamp(1.98rem, 1.55rem + 1.15vw, 3.4rem); */
    font-size: var(--fz34);
    font-weight: 700;
    line-height: 1.6;
    color: var(--color-primary);
}

.p-news-single__body {
    margin-bottom: 4rem;
    line-height: 2;
    font-size: var(--fz24);
    font-weight: 500;
}

.p-news-single__body p {
    margin-bottom: 2.5em;
}

.p-news-single__body a {
    color: var(--color-primary);
    text-decoration: underline;
}

.p-news-single__body a:hover {
    opacity: 0.7;
}

/* Single Post Navigation */
.p-news-single__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    /* border-top: 1px solid var(--color-border); */
    padding-top: 3rem;
    margin-top: 4rem;
}

.p-news-single__nav-prev,
.p-news-single__nav-list,
.p-news-single__nav-next {
    flex: 1;
    text-align: center;
}

.p-news-single__nav-prev {
    text-align: left;
}

.p-news-single__nav-next {
    text-align: right;
}

.p-news-single__nav a {
    display: inline-block;
    padding: 1rem 3rem;
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    color: #fff;
    background: var(--color-primary);
    border-radius: 30px;
    transition: all var(--transition);
    border-radius: 100px;
}

.p-news-single__nav-list a {
    background: white;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    width: 13vw;
    border-radius: 50px;
}

.p-news-single__nav a:hover {
    opacity: 1;
}

.p-news-single__nav-list a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}


@media (max-width: 768px) {
    .p-news-single {
        padding: 3rem 2rem 3rem;
    }
}


/* ==========================================================================
   Component - Scroll to Top
   ========================================================================== */

.c-scroll-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    z-index: 900;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.c-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.c-scroll-top img {
    width: 24px;
    height: auto;
    transition: filter var(--transition);
}

.c-scroll-top:hover {
    background: var(--color-primary);
    color: #fff;
}

.c-scroll-top:hover img {
    filter: brightness(0) invert(1);
}

/* ==========================================================================
   Component - Page Lead Text
   ========================================================================== */

.c-page-lead {
    text-align: center;
    padding: 2.5rem 2rem;
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #fff;
    line-height: 1.8;
    background: linear-gradient(to right, #007BD0, #6BDDEF);
}

.c-page-lead__inner {
    margin: 0 auto;
}

/* ==========================================================================
   Component - Definition List / Info Table
   ========================================================================== */

.c-dl {
    width: 100%;
}

.c-dl__row {
    display: flex;
    border-bottom: 1px solid var(--color-border);
}

.c-dl__dt {
    flex-shrink: 0;
    width: 200px;
    padding: 1.5rem 2rem;
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 500;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
}

.c-dl__dd {
    flex: 1;
    padding: 1.5rem 2rem;
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 500;
    line-height: 1.8;
    color: var(--color-text);
    letter-spacing: 16%;
}

.c-dl__dd a {
    color: var(--color-primary);
    text-decoration: underline;
}

.c-dl__dd a:hover {
    opacity: 0.7;
}

/* Compact variant */
.c-dl--compact .c-dl__dt {
    width: 160px;
    padding: 1.2rem 1.5rem;
    font-size: 1.3rem;
}

.c-dl--compact .c-dl__dd {
    padding: 1.2rem 1.5rem;
    font-size: 1.3rem;
}

/* ==========================================================================
   Component - Anchor Navigation (in-page)
   ========================================================================== */

.c-anchor-nav {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border-light);
    padding: 0 2rem;
    position: sticky;
    top: var(--header-height);
    z-index: 100;
}

.c-anchor-nav__inner {
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.c-anchor-nav__list {
    display: flex;
    justify-content: center;
    gap: 0;
    min-width: max-content;
}

.c-anchor-nav__item {
    flex: none;
}

.c-anchor-nav__link {
    display: block;
    padding: 1.4rem 2rem;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-text-light);
    white-space: nowrap;
    position: relative;
    transition: color var(--transition);
}

.c-anchor-nav__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.c-anchor-nav__link:hover,
.c-anchor-nav__link.is-active {
    color: var(--color-primary);
    opacity: 1;
}

.c-anchor-nav__link:hover::after,
.c-anchor-nav__link.is-active::after {
    width: 100%;
}

/* ==========================================================================
   Component - Accordion
   ========================================================================== */

.c-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.c-accordion__group {
    margin-bottom: 3rem;
}

.c-accordion__group-title {
    /* font-size: clamp(1.05rem, 0.82rem + 0.61vw, 1.8rem); */
    font-size: var(--fz18);
    font-weight: 700;
    color: var(--color-secondary);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary);
    margin-bottom: 1.5rem;
}

.c-accordion__item {
    border: 1px solid var(--color-border);
    border-radius: 6px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.c-accordion__item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.c-accordion__header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--color-bg);
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: clamp(1rem, 0.83rem + 0.4vw, 1.5rem);
    font-weight: 600;
    color: var(--color-secondary);
    line-height: 1.6;
    transition: background var(--transition);
}

.c-accordion__header:hover {
    background: var(--color-bg-gray);
}

.c-accordion__icon-q {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-family-en);
    /* font-size: clamp(0.82rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    font-weight: 700;
    flex-shrink: 0;
}

.c-accordion__toggle {
    margin-left: auto;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
}

.c-accordion__toggle::before,
.c-accordion__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--color-primary);
    transition: transform var(--transition);
}

.c-accordion__toggle::before {
    width: 14px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.c-accordion__toggle::after {
    width: 2px;
    height: 14px;
    transform: translate(-50%, -50%);
}

.c-accordion__item.is-open .c-accordion__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.c-accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.c-accordion__content {
    padding: 0 2rem 2rem 5.2rem;
    /* font-size: clamp(0.82rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    line-height: 2;
    color: var(--color-text);
}

.c-accordion__content p {
    margin-bottom: 1em;
}

.c-accordion__content p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Component - Section Title (共通: 青見出し + 下線)
   ========================================================================== */

.c-section-title {
    font-size: var(--font-size-section-title);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.15em;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--color-primary);
    display: block;
    width: fit-content;
    position: relative;
    margin-bottom: 3rem;
}

.c-section-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 100%;
    width: 2000px;
    height: 1px;
    background: var(--color-border);
}

@media (max-width: 768px) {
    .c-section-title {
        /* font-size: 2rem; */
    }
}

/* ==========================================================================
   Component - Section Subtitle (共通: サブセクション見出し 24px)
   ========================================================================== */

.c-section-subtitle {
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.15em;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--color-primary);
    display: block;
    width: fit-content;
    position: relative;
    margin-bottom: 3rem;
}

.c-section-subtitle::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 100%;
    width: 2000px;
    height: 1px;
    background: var(--color-border);
}

@media (max-width: 768px) {
    .c-section-subtitle {
        /* font-size: 2.4rem; */ /* clamp で可変のためコメントアウト */
    }
}

/* ==========================================================================
   Component - Body Text (共通: 本文 24px / line-height 2)
   ========================================================================== */

.c-body-text {
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 0;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .c-body-text {
        letter-spacing: 0.05em;
    }
}

/* ==========================================================================
   Component - Badge (共通: 丸型バッジ)
   ========================================================================== */

.c-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: clamp(1rem, 0.83rem + 0.4vw, 1.5rem);
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.c-badge--blue {
    background: var(--color-primary);
}

.c-badge--orange {
    background: #e67e00;
}

/* ==========================================================================
   Component - Pill Button (共通: 丸角ピルボタン)
   ========================================================================== */

.c-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
}

.c-pill-btn--primary {
    background: var(--gradient-primary);
    color: #fff;
    padding: 1.4rem 3.5rem;
    /* font-size: clamp(0.93rem, 0.73rem + 0.54vw, 1.6rem); */
    font-size: var(--fz16);
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 104, 183, 0.3);
}

.c-pill-btn--primary:hover {
    background: #fff;
    color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 104, 183, 0.15);
    transform: translateY(-2px);
    opacity: 1;
}

.c-pill-btn--outline {
    background: #fff;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 1.2rem 3rem;
    font-size: clamp(1rem, 0.83rem + 0.4vw, 1.5rem);
}

.c-pill-btn--outline:hover {
    background: var(--color-primary);
    color: #fff;
}

/* ==========================================================================
   Component - Back Button
   ========================================================================== */

.c-back-btn {
    text-align: center;
    padding: 4rem 2rem;
}

.c-back-btn__link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 2.2rem 3rem;
    font-family: "Zen Maru Gothic", var(--font-family-base);
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 100px;
    background: transparent;
    transition: all var(--transition);
}

.c-back-btn__link::before {
    content: "\2190";
    /* font-size: clamp(0.82rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    transition: transform var(--transition);
}

.c-back-btn__link:hover {
    opacity: 1;
    background: var(--color-primary);
    color: #fff;
}

.c-back-btn__link:hover::before {
    transform: translateX(-4px);
}

.c-back-btn__link--primary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.c-back-btn__link--primary::before {
    display: none;
}

.c-back-btn__icon {
    flex-shrink: 0;
    transition: filter var(--transition);
}

.c-back-btn__link--primary:hover {
    background: #fff;
    color: var(--color-primary);
}

.c-back-btn__link--primary:hover .c-back-btn__icon {
    filter: brightness(0) saturate(100%) invert(30%) sepia(93%) saturate(1352%) hue-rotate(185deg) brightness(95%) contrast(101%);
}

/* ==========================================================================
   Component - Page Hero Illustration Variant (らくだネット)
   ========================================================================== */

.p-page-hero--illust {
    min-height: 240px;
    background: linear-gradient(180deg, #d4eef9 0%, #e8f5fb 50%, #f0f8fd 100%);
}

.p-page-hero--illust .p-page-hero__overlay {
    background: none;
}

.p-page-hero--illust .p-page-hero__heading-en {
    color: var(--color-primary);
}

.p-page-hero--illust .p-page-hero__heading-ja {
    color: var(--color-text);
}

.p-page-hero--illust .p-page-hero__lead {
    color: var(--color-text-light);
}

.p-page-hero--illust .p-page-hero__bg-img {
    object-fit: contain;
    object-position: center bottom;
}

/* ==========================================================================
   Component - CTA Banner Section
   ========================================================================== */

.c-cta-banner {
    padding: 4rem 2rem;
    background: var(--color-primary-light);
}

.c-cta-banner__inner {
    max-width: 900px;
    margin: 0 auto;
}

.c-cta-banner__list {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.c-cta-banner__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.8rem 3.5rem;
    font-size: clamp(1rem, 0.83rem + 0.4vw, 1.5rem);
    font-weight: 600;
    color: #fff;
    background: var(--color-primary);
    border-radius: 6px;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(0, 104, 183, 0.25);
}

.c-cta-banner__item:hover {
    opacity: 1;
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 104, 183, 0.3);
}

.c-cta-banner__item--secondary {
    background: #2ba89c;
    box-shadow: 0 2px 8px rgba(43, 168, 156, 0.25);
}

.c-cta-banner__item--secondary:hover {
    background: #239183;
    box-shadow: 0 4px 16px rgba(43, 168, 156, 0.3);
}

.c-cta-banner__item svg,
.c-cta-banner__item img {
    flex-shrink: 0;
}

/* ==========================================================================
   Utility - Section Backgrounds & Wave Divider
   ========================================================================== */

.u-bg-white {
    background: var(--color-bg);
}

.u-bg-light {
    background: var(--color-primary-light);
}

.u-bg-gray {
    background: var(--color-bg-gray);
}

.u-section {
    padding: 8rem 2rem 8rem;
}

.u-section--lg {
    padding: 8rem 2rem;
}

/* Wave divider (top of section) */
.u-wave-top {
    position: relative;
}

.u-wave-top::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--color-bg);
    clip-path: ellipse(55% 100% at 50% 0%);
    z-index: 1;
}

.u-wave-top--light::before {
    background: var(--color-primary-light);
}

/* Wave divider (bottom of section) */
.u-wave-bottom {
    position: relative;
}

.u-wave-bottom::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--color-bg);
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 1;
}

.u-wave-bottom--light::after {
    background: var(--color-primary-light);
}


@media (max-width: 1400px) {
    .u-section {
        padding: 8rem 6rem;
    }
}

/* ==========================================================================
   Component - Flow Chart
   ========================================================================== */

.c-flow {
    max-width: 900px;
    margin: 0 auto;
}

.c-flow__row {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.c-flow__column {
    flex: 1;
    min-width: 0;
}

.c-flow__column-title {
    text-align: center;
    /* font-size: clamp(0.82rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    font-weight: 700;
    color: #fff;
    padding: 0.8rem 1rem;
    border-radius: 4px 4px 0 0;
    background: var(--color-primary);
}

.c-flow__column-title--sub {
    background: #2ba89c;
}

.c-flow__steps {
    border: 1px solid var(--color-border);
    border-top: none;
    border-radius: 0 0 4px 4px;
    padding: 2rem 1.5rem;
    background: var(--color-bg);
    height: 100%;
}

.c-flow__step {
    text-align: center;
    padding: 1rem 0;
}

.c-flow__step-label {
    display: inline-block;
    padding: 0.6rem 2rem;
    /* font-size: clamp(0.82rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    font-weight: 600;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    background: var(--color-bg);
    min-width: 160px;
}

.c-flow__step-label--filled {
    background: var(--color-primary);
    color: #fff;
}

.c-flow__arrow {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
    color: var(--color-primary);
    /* font-size: clamp(1.05rem, 0.82rem + 0.61vw, 1.8rem); */
    font-size: var(--fz18);
    line-height: 1;
}

.c-flow__arrow::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid var(--color-primary);
}

.c-flow__note {
    font-size: 1.25rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-top: 1.5rem;
}

.c-flow__note li {
    position: relative;
    padding-left: 1.2em;
}

.c-flow__note li::before {
    content: "※";
    position: absolute;
    left: 0;
}

/* ==========================================================================
   Component - Content Section Heading (h2 with left border)
   ========================================================================== */

.c-content-heading {
    /* font-size: 2.2rem; */
    font-size: var(--fz22);
    font-weight: 700;
    color: var(--color-secondary);
    padding-left: 1.5rem;
    border-left: 4px solid var(--color-primary);
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

.c-content-heading--center {
    text-align: center;
    border-left: none;
    padding-left: 0;
    position: relative;
    padding-bottom: 1.5rem;
}

.c-content-heading--center::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--color-primary);
}

/* ==========================================================================
   Component - Two-tone Heading Line
   ========================================================================== */

.c-heading-line {
    display: flex;
    align-items: center;
    gap: 2%;
    margin-top: 0.2rem;
}

.c-heading-line__accent {
    width: 16%;
    height: 5px;
    background: #32CEE6;
    border-radius: 2px;
    flex-shrink: 0;
}

.c-heading-line__base {
    flex: 1;
    height: 1px;
    background: #0275BE;
}

/* ----- tel link (black, no underline) ----- */
a.c-tel-link,
a.c-tel-link:hover,
a.c-tel-link:visited {
    color: inherit;
    text-decoration: none;
}

/* ==========================================================================
   Component - Card (generic)
   ========================================================================== */

.c-card {
    background: var(--color-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow var(--transition), transform var(--transition);
}

.c-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.c-card__img {
    overflow: hidden;
}

.c-card__img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.c-card:hover .c-card__img img {
    transform: scale(1.05);
}

.c-card__body {
    padding: 2rem;
}

.c-card__title {
    /* font-size: clamp(0.93rem, 0.73rem + 0.54vw, 1.6rem); */
    font-size: var(--fz16);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.8rem;
}

.c-card__text {
    /* font-size: clamp(0.82rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ==========================================================================
   Project - Business Lead Bar
   ========================================================================== */

.p-biz-lead {
    background: linear-gradient(90deg, #007bd0, #6bddef);
    height: 93px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-biz-lead__text {
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.2em;
    text-align: center;
}

/* ==========================================================================
   Project - Business Intro (事業内容イントロ)
   ========================================================================== */

.p-biz-intro {
    background: #fff;
    padding-bottom: 100px;
}

.p-biz-intro__inner {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    padding: 50px clamp(16px, 5vw, 100px);
    max-width: 1920px;
    margin: 0 auto;
}

.p-biz-intro__img {
    flex-shrink: 0;
    width: 50%;
    max-width: 818px;
    aspect-ratio: 818 / 546;
    height: auto;
    overflow: hidden;
    border-radius: 16px;
    /* background: var(--color-bg-gray); */
}

.p-biz-intro__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-biz-intro__body {
    flex-shrink: 1;
    flex: 1;
    min-width: 0;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 54px 0 0;
}

.p-biz-intro__text {
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-text);
    line-height: 1.8;
}

.p-biz-intro__em {
    font-weight: 700;
    color: var(--color-primary);
    font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.6rem);
    letter-spacing: 0.2em;
}

.p-biz-intro__strength-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.p-biz-intro__strength-badge {
    display: inline-block;
    width: fit-content;
    background: var(--color-primary);
    color: #fff;
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.2em;
    padding: 5px 10px;
    line-height: 1.5;
}

.p-biz-intro__strength-text {
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-text);
    line-height: 1.8;
}

/* ---------- Business Nav ---------- */

.p-biz-nav {
    display: grid;
    grid-template-columns: repeat(3, 420px);
    gap: 25px;
    justify-content: center;
    padding: 0 100px;
}

.p-biz-nav__btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 2px solid var(--color-primary);
    border-radius: 56px;
    padding: 8px 12px;
    min-height: 80px;
    transition: all var(--transition);
}

.p-biz-nav__btn:hover {
    background: var(--gradient-primary);
    /* border: none; */
    opacity: 1;
}

.p-biz-nav__btn:hover .p-biz-nav__icon {
    color: #fff;
}

.p-biz-nav__btn:hover .p-biz-nav__label {
    color: #fff;
}

.p-biz-nav__btn:hover .p-biz-nav__arrow svg circle,
.p-biz-nav__btn:hover .p-biz-nav__arrow svg path {
    stroke: #fff;
}

.p-biz-nav__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: color var(--transition);
}

.p-biz-nav__icon svg {
    max-width: 100%;
    max-height: 100%;
}

.p-biz-nav__label {
    flex: 1;
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    transition: color var(--transition);
}

.p-biz-nav__arrow svg circle,
.p-biz-nav__arrow svg path {
    transition: stroke var(--transition);
}

.p-biz-nav__arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* ==========================================================================
   Project - Business Section (事業セクション共通)
   ========================================================================== */

.p-biz-section {
    /* Each section has a hero banner + content area */
}

.p-biz-section__hero {
    width: 100%;
    height: clamp(200px, 40vh, 500px);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: none;
}

@media (max-width: 768px) {
    .p-biz-section__hero {
        background-attachment: scroll;
        height: clamp(200px, 30vh, 400px);
        display: block;
    }
}

.p-biz-section__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 107px 0 100px;
}

/* ---------- Section Heading ---------- */

.p-biz-section__heading {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    margin-bottom: 39px;
    padding-left: 5rem;
}

.p-biz-section__icon {
    flex-shrink: 0;
    width: 114px;
    height: 106px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-biz-section__icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.p-biz-section__icon--placeholder {
    flex-shrink: 0;
    width: 114px;
    height: 106px;
    background: var(--color-bg-gray);
    border-radius: 8px;
}

.p-biz-section__heading-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.p-biz-section__en {
    font-family: var(--font-family-en);
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.16em;
    text-align: center;
    line-height: 1.2;
}

.p-biz-section__title {
    font-size: clamp(2.33rem, 1.83rem + 1.35vw, 4rem);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.16em;
    text-align: center;
    padding: 0 20px;
}

/* ---------- Section Body ---------- */

.p-biz-section__body {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 0 60px;
    /* max-width: 1300px; */
    /* margin: 0 auto; */
}

#product .p-biz-section__body {
    gap: 70px;
}

#digital .p-biz-section__body {
    gap: 50px;
}

#license .p-biz-section__body {
    gap: 60px;
}

#license.p-biz-section__inner {
    padding-bottom: 5px;
}

#license .c-btn--arrow {
    color: var(--color-text);
    border: 1px solid var(--color-text);
    padding: 1rem 2rem;
}

#license .c-btn--arrow:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff;
}

#license .c-btn--arrow:hover img {
    filter: brightness(0) invert(1);
}

#license .c-btn--arrow small {
    font-size: 1.2rem;
}



@media (max-width: 768px) {
    .p-biz-section__heading-text {
        display: flex;
        justify-content: center;
        /* width: 100%; */
    }
}



/* ==========================================================================
   Project - Business Sub-section (事業サブセクション共通)
   ========================================================================== */

.p-biz-sub {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.p-biz-sub__title {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.16em;
    padding-left: 20px;
    border-left: 10px solid var(--color-primary);
    line-height: 1.4;
}

.p-biz-sub__row {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.p-biz-sub__photo {
    flex-shrink: 0;
    width: 345px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    align-self: flex-start;
    border-radius: 20px;
    overflow: hidden;
}

.p-biz-sub__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.p-biz-sub__content {
    display: flex;
    flex-direction: column;
    gap: 21px;
    flex: 1;
}

.p-biz-sub__lead {
    /* font-size: clamp(1.63rem, 1.28rem + 0.95vw, 2.8rem); */
    font-size: var(--fz28);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.16em;
    line-height: 1.5;
}

.p-biz-sub__text {
    font-size: var(--fz24);
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.15em;
    color: var(--color-text);
}

/* ==========================================================================
   Project - Business View More Button
   ========================================================================== */

.p-biz-view-more {
    display: inline-flex;
    align-items: center;
    gap: 50px;
    background: #fff;
    border: 1px solid #000;
    border-radius: 80px;
    padding: 19px 35px;
    transition: all var(--transition);
    align-self: flex-end;
}

.p-biz-view-more:hover {
    opacity: 1;
    background: var(--gradient-primary);
    border: 1px solid white;
}

.p-biz-view-more:hover .p-biz-view-more__text,
.p-biz-view-more:hover .p-biz-view-more__sub {
    color: #fff;
}

.p-biz-view-more:hover .p-biz-view-more__arrow img {
    filter: brightness(0) invert(1);
}

.p-biz-view-more__text {
    font-family: var(--font-family-en);
    /* font-size: clamp(1.6rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    transition: color var(--transition);
}

.p-biz-view-more__sub {
    /* font-size: clamp(1.4rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    transition: color var(--transition);
    margin-left: -40px;
}

.p-biz-view-more__arrow svg circle,
.p-biz-view-more__arrow svg path {
    transition: stroke var(--transition);
}

.p-biz-view-more__arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}


@media (max-width: 1400px) {
    .p-biz-view-more {
        gap: 10px;
        flex-wrap: wrap;
        padding: 19px 30px;
        
        
        
        
        
        small {
            margin-left: 0;
        }
    }
}



/* ==========================================================================
   Project - Business Products (取扱い製品)
   ========================================================================== */

.p-biz-products {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.p-biz-products__title {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.16em;
    padding-left: 20px;
    border-left: 5px solid var(--color-primary);
}

.p-biz-products__slider {
    --products-visible: 5;
    --products-gap: 24px;
    position: relative;
    padding: 0;
}

.p-biz-products__viewport {
    overflow: hidden;
}

.p-biz-products__track {
    display: flex;
    gap: var(--products-gap);
}

.p-biz-products__item {
    flex-shrink: 0;
    /* width is set by JS based on --products-visible */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.p-biz-products__thumb {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
}

.p-biz-products__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-biz-products__label {
    /* font-size: clamp(1.4rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.08em;
    white-space: nowrap;
}

/* Navigation arrows (hidden per design) */
.p-biz-products__nav {
    display: none;
}

.p-biz-products__nav:hover {
    background: var(--color-primary);
    color: #fff;
}

.p-biz-products__nav--prev {
    left: 0;
}

.p-biz-products__nav--next {
    right: 0;
}

/* Dot indicators (hidden per design) */
.p-biz-products__dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.p-biz-products__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d9d9d9;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}

.p-biz-products__dot.is-active {
    background: var(--color-primary);
    transform: scale(1.3);
}

.p-biz-products__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    list-style: disc;
    padding: 36px 58px;
    padding-left: calc(58px + 1.5em);
    /* font-size: clamp(1.4rem, 0.73rem + 0.54vw, 1.6rem); */
    font-size: var(--fz16);
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.16em;
    color: #0275be;
    background: rgba(107, 221, 239, 0.2);
}

/* ==========================================================================
   Project - Business Rakuda Card
   ========================================================================== */

.p-biz-rakuda {
    border: 3px solid #e38d00;
    border-radius: 8px;
    overflow: hidden;
    background: #f7f7f0;
}

.p-biz-rakuda__inner {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 30px 50px;
}

.p-biz-rakuda__icon {
    flex-shrink: 0;
    width: 233px;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
}

.p-biz-rakuda__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.p-biz-rakuda__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.p-biz-rakuda__text {
    font-size: var(--fz24);
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-text);
}

.p-biz-rakuda__text strong {
    /* font-size: clamp(1.63rem, 1.28rem + 0.95vw, 2.8rem); */
    font-size: var(--fz28);
    font-weight: 700;
    color: #ff5900;
}

.p-biz-rakuda .p-biz-view-more {
    border: none;
    background: none;
}

.p-biz-rakuda .p-biz-view-more:hover {
    background: #ff5900;
    border-color: #ff5900;
}

.p-biz-rakuda .p-biz-view-more__text,
.p-biz-rakuda .p-biz-view-more__sub {
    color: #ff5900;
}

.p-biz-rakuda .p-biz-view-more:hover .p-biz-view-more__text,
.p-biz-rakuda .p-biz-view-more:hover .p-biz-view-more__sub {
    color: #fff;
}

.p-biz-rakuda .p-biz-view-more__arrow img {
    filter: invert(37%) sepia(93%) saturate(7471%) hue-rotate(14deg) brightness(97%) contrast(112%);
}

.p-biz-rakuda .p-biz-view-more:hover .p-biz-view-more__arrow img {
    filter: brightness(0) invert(1);
}

/* ==========================================================================
   Project - Business EC Box / SNS
   ========================================================================== */

.p-biz-ec-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 50px;
    border: none;
    border-radius: 8px;
    background: #e1f8fc;
}

.p-biz-ec-box__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.p-biz-ec-box__text {
    /* font-size: clamp(1.4rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 500;
    line-height: 1.8;
    color: var(--color-text);
}

.p-biz-ec-box__text strong {
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 700;
}

.p-biz-sns {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0;
    border: none;
    border-radius: 0;
}

.p-biz-sns__label {
    /* font-size: clamp(1.4rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 700;
    color: #215576;
    font-family: var(--font-family-en), var(--font-family-jp);
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.p-biz-sns__icon-inline,
.p-biz-flow__icon-inline {
    display: inline-block;
    vertical-align: middle;
}

.p-biz-sns__icon-inline {
    width: 41px;
    height: 41px;
}

.p-biz-flow__icon-inline {
    width: 29px;
    height: 29px;
    vertical-align: -0.15em;
    margin-right: 2px;
}

.p-biz-sns__badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border-radius: 40px;
    padding: 25px 40px;
}

.p-biz-sns__text {
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 700;
    color: #215576;
    font-family: var(--font-family-en), var(--font-family-jp);
    letter-spacing: 0.1em;
}

.p-biz-sns__icons {
    display: flex;
    gap: 20px;
}

.p-biz-sns__icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #215576;
    border: none;
    color: #fff;
    transition: all var(--transition);
}

.p-biz-sns__icons a:hover {
    opacity: 0.8;
    background: #215576;
    color: #fff;
}

/* ==========================================================================
   Project - Business Docs (J商ひかり約款)
   ========================================================================== */

.p-biz-docs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p-biz-docs__title {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.16em;
    padding-left: 20px;
    border-left: 10px solid var(--color-primary);
    line-height: 1.3;
}




.p-biz-docs__list {
    background: #e1f8fc;
    border-radius: 20px;
    padding: 30px 30px 30px 50px;
}

.p-biz-docs__list--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 80px;
}

.p-biz-docs__list li {
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    line-height: 2;
    color: var(--color-text);
}

.p-biz-docs__list a {
    color: var(--color-text);
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* font-size: clamp(1.4rem, 0.73rem + 0.54vw, 1.6rem); */
    font-size: var(--fz16);
}

.p-biz-docs__list a::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../img/common/icon-download.svg") no-repeat center / contain;
    flex-shrink: 0;
}

.p-biz-docs__list a:hover {
    text-decoration: none;
}


@media (max-width: 768px) {
    .p-biz-docs__title {
        /* font-size: 2rem; */ /* clamp で可変のためコメントアウト */
    }
    .p-biz-section__heading {
        padding-left: 0;
        align-items: center;
    }
}


/* ==========================================================================
   Project - Business License Flow (ライセンスフロー)
   ========================================================================== */

.p-biz-flow {
    display: flex;
    flex-direction: column;
    gap: 43px;
}

.p-biz-flow__heading {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.16em;
    padding-left: 20px;
    border-left: 5px solid var(--color-primary);
    line-height: 1.4;
    align-items: flex-end;
}

.p-biz-flow__heading small {
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
}

.p-biz-flow--timeline .p-biz-flow__steps {
    position: relative;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.p-biz-flow--timeline .p-biz-flow__steps::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 41px;
    background: url("../img/business/icon-arrow-flow.svg") center / contain no-repeat;
}

.p-biz-flow__step {
    display: flex;
    gap: 30px;
    position: relative;
}

.p-biz-flow__badge {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.p-biz-flow__badge-label {
    font-family: var(--font-family-en);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.p-biz-flow__badge-num {
    font-family: var(--font-family-en);
    /* font-size: 3rem; */
    font-size: var(--fz30);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.15em;
}

.p-biz-flow__step-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.p-biz-flow__step-title {
    /* font-size: 3rem; */
    font-size: var(--fz30);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.15em;
}

.p-biz-flow__step-text {
    font-size: var(--fz24);
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.2em;
    color: #434343;
}

.p-biz-flow__step-text a {
    color: #00a3d5;
    text-decoration: underline;
}

.p-biz-flow__step-note {
    /* font-size: clamp(1.4rem, 0.82rem + 0.61vw, 1.8rem); */
    font-size: var(--fz18);
    color: #646464;
    line-height: 1.8;
    letter-spacing: 0.1em;
}

.p-biz-flow__after--icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 69px;
    padding: 0px;
    background: none;
    border-radius: 0;
}

.p-biz-flow__after-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #434343;
}

.p-biz-flow__after-icon {
    width: 200px;
    height: 200px;
    /* border-radius: 50%; */
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-biz-flow__after-icon img,
.p-biz-flow__after-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.p-biz-flow__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-biz-flow__arrow img {
    width: 29px;
    height: auto;
}

.p-biz-flow__note {
    /* font-size: clamp(1.3rem, 0.82rem + 0.61vw, 1.8rem); */
    font-size: var(--fz18);
    line-height: 1.8;
    color: #646464;
    letter-spacing: 0.1em;
}

.p-biz-flow__link {
    text-align: center;
}

/* ==========================================================================
   Project - Business FAQ
   ========================================================================== */

.p-biz-faq-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 50px;
    border: none;
    border-radius: 20px;
    background: #e1f8fc;
}

.p-biz-faq-block .c-accordion {
    border: none;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.p-biz-faq-block .c-accordion__item {
    border: none;
    border-radius: 20px;
    margin-bottom: 0;
    overflow: hidden;
    background: #fff;
    width: 100%;
    max-width: 1000px;
}

.p-biz-faq-block .c-accordion__trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 80px;
    padding: 2rem 3.5rem;
    background: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}

.p-biz-faq-block .c-accordion__body {
    transition: max-height 0.35s ease;
}

.p-biz-faq-block .c-accordion__icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.p-biz-faq-block .c-accordion__icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--color-text);
    transform: translateY(-50%);
}

.p-biz-faq-block .c-accordion__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 20px;
    background: var(--color-text);
    transform: translate(-50%, -50%);
    transition: transform 0.3s;
}

.p-biz-faq-block .c-accordion__item.is-open .c-accordion__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.p-biz-faq__heading {
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    letter-spacing: 0.16em;
}

.p-biz-faq__heading-icon {
    flex-shrink: 0;
    width: 60px;
    height: 52px;
}

.p-biz-faq .c-accordion__q,
.p-biz-faq .c-accordion__a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 1rem;
}

.p-biz-faq .c-accordion__q {
    background: var(--color-primary);
    color: #fff;
}

.p-biz-faq .c-accordion__a {
    background: #ff5900;
    color: #fff;
}

.p-biz-faq .c-accordion__question {
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 700;
    letter-spacing: 0.21em;
    flex: 1;
}

.p-biz-faq .c-accordion__answer {
    display: flex;
    align-items: flex-start;
    padding: 1rem 3.5rem 3.5rem;
    border-top: none;
}

.p-biz-faq .c-accordion__answer p {
    /* font-size: clamp(1.05rem, 0.82rem + 0.61vw, 1.8rem); */
    font-size: var(--fz18);
    line-height: 1.8;
    letter-spacing: 0.16em;
    color: var(--color-text);
}

.p-biz-faq__contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    padding: 0.6rem 1.8rem;
    background: var(--color-primary);
    color: #fff;
    /* font-size: clamp(1.05rem, 0.82rem + 0.61vw, 1.8rem); */
    font-size: var(--fz18);
    font-weight: 600;
    letter-spacing: 0.2em;
    border-radius: 4px;
    border: 2px solid var(--color-primary);
    transition: all var(--transition);
}

.p-biz-faq__contact-btn:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-primary);
}

.p-biz-faq__contact-btn svg {
    transition: stroke var(--transition);
}

.p-biz-faq__contact-btn:hover svg {
    stroke: var(--color-primary);
}

/* ==========================================================================
   Project - Business Notice
   ========================================================================== */

.c-accordion__item--notice .c-accordion__trigger {
    font-weight: 700;
}

.c-accordion__item--notice .c-accordion__trigger .c-accordion__question {
    /* font-size: clamp(1.4rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 700;
    letter-spacing: 0.21em;
}

.c-accordion__item--notice .c-accordion__content {
    padding: 0 3.5rem 0.5rem;
}

.c-accordion__item--notice .c-accordion__content ul {
    list-style: none;
    padding-left: 0;
}

.c-accordion__item--notice .c-accordion__content li {
    /* font-size: clamp(1.4rem, 0.82rem + 0.61vw, 1.8rem); */
    font-size: var(--fz18);
    line-height: 1.8;
    letter-spacing: 0.16em;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.c-accordion__item--notice .c-accordion__content li::before {
    content: "・";
}


@media (max-width: 768px) {
    .c-accordion__item--notice .c-accordion__content {
        padding: 0 1.4rem 0.5rem;
    }

    .c-accordion__item--notice .c-accordion__content li {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
    }
}





/* ==========================================================================
   Project - Business CTA
   ========================================================================== */

.p-biz-sub__cta {
    margin-top: 3rem;
    text-align: center;
}

.p-biz-cta {
    padding: 8rem 2rem;
    text-align: center;
}

.p-biz-cta__inner {
    max-width: 700px;
    margin: 0 auto;
}

.p-biz-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 400px;
    max-width: 100%;
    padding: 2rem 0;
    background: #fff;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 56px;
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: all var(--transition);
}

.p-biz-cta__btn:hover {
    opacity: 1;
    background: var(--color-primary);
    color: #fff;
}

.p-biz-cta__btn-icon {
    display: flex;
}

.p-biz-cta__btn-icon img {
    width: 40px;
    height: auto;
}

.p-biz-cta__btn-text {
    /* font-size: clamp(1.6rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
}

.p-biz-cta__btn-arrow {
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    display: flex;
}

.p-biz-cta__btn-arrow img {
    transition: filter var(--transition);
}

.p-biz-cta__btn:hover .p-biz-cta__btn-arrow img {
    filter: brightness(0) invert(1);
}

/* 2-17: ホバー時も吹き出しアイコンの色は変えない */



@media (max-width: 768px) {
    .p-biz-cta__btn-text {
        /* font-size: 2rem; */ /* clamp で可変のためコメントアウト */
    }
    .p-biz-cta {
        padding: 4rem;
    }
}



/* ==========================================================================
   Project - Business Responsive
   ========================================================================== */

@media (max-width: 1400px) {
    .p-biz-intro__inner {
        padding: 50px 40px;
    }

    .p-biz-intro__img {
        width: 45%;
        height: auto;
    }

    .p-biz-intro__body {
        width: auto;
        flex: 1;
    }

    .p-biz-nav {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 40px;
    }

    .p-biz-section__inner {
        padding: 80px 40px 80px;
    }
}

@media (max-width: 1024px) {
    .p-biz-intro__inner {
        flex-direction: column;
    }

    .p-biz-intro__img {
        width: 100%;
        height: auto;
        max-width: 600px;
    }

    .p-biz-intro__body {
        width: 100%;
    }

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

    .p-biz-section__hero {
        margin-top: 40px;
    }

    .p-biz-sub__row {
        flex-direction: column;
    }

    .p-biz-sub__photo {
        width: 100%;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 768px) {
    .p-biz-lead {
        height: auto;
        padding: 16px 20px;
    }

    .p-biz-lead__text {
        /* font-size: 1.4rem; */
    }

    .p-biz-intro {
        padding-bottom: 0;
    }

    .p-biz-intro__inner {
        padding: 30px 16px;
        gap: 30px;
    }

    .p-biz-intro__img {
        height: auto;
        max-width: 100%;
    }

    .p-biz-intro__body {
        gap: 20px;
        padding: 0;
    }

    .p-biz-intro__em {
        /* font-size: 1.6rem; */
    }

    .p-biz-intro__strength-badge {
        /* font-size: 1.4rem; */
    }

    .p-biz-nav {
        display: none;
    }

    .p-biz-nav__btn {
        padding: 12px 20px;
        min-height: auto;
    }

    .p-biz-nav__icon {
        width: 40px;
        height: 40px;
    }

    .p-biz-nav__label {
        /* font-size: 1.6rem; */
    }

    .p-biz-section__hero {
        height: clamp(200px, 30vh, 400px) !important;
        margin-top: 40px;
    }
    
    .p-biz-section .p-biz-section__hero {
        /* margin-top: 0; */
    }

    .p-biz-section__inner {
        padding: 40px 16px 0;
    }

    .p-biz-section__icon {
        width: 60px;
        height: 55px;
    }

    .p-biz-section__en {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-biz-section__title {
        /* font-size: 2.4rem; */ /* clamp で可変のためコメントアウト */
        padding: 0 16px;
    }

    .p-biz-section__body {
        gap: 40px;
        padding: 0;
    }

    .p-biz-sub__title {
        /* font-size: 2rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-biz-sub__lead {
        /* font-size: 1.8rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-biz-view-more {
        flex-wrap: wrap;
        padding: 16px 20px;
        gap: 4px 12px;
        align-self: stretch;
        align-items: center;
    }

    .p-biz-view-more__text {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-biz-view-more__sub {
        /* font-size: 1.2rem; */ /* clamp で可変のためコメントアウト */
        margin-left: 0;
        flex-basis: auto;
        /* font-size: 1.2rem; */
    }

    .p-biz-view-more__arrow {
        margin-left: auto;
    }

    .p-biz-products__slider {
        --products-visible: 3;
        --products-gap: 16px;
        padding: 0;
    }

    .p-biz-products__nav {
        width: 36px;
        height: 36px;
    }

    .p-biz-products__list {
        grid-template-columns: 1fr;
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
        padding: 2rem 4rem;
    }

    .p-biz-rakuda__inner {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .p-biz-rakuda__icon {
        width: 160px;
        height: auto;
    }

    .p-biz-rakuda__body {
        gap: 12px;
    }

    .p-biz-rakuda__text strong {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-biz-ec-box {
        padding: 20px;
    }

    .p-biz-ec-box__row {
        flex-direction: column;
    }

    .p-biz-sns {
        flex-direction: column;
        gap: 12px;
    }

    .p-biz-sns__label {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
        white-space: nowrap;
    }

    .p-biz-sns__badge {
        padding: 15px 20px;
        gap: 12px;
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }

    .p-biz-sns__text {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-biz-sns__icons {
        gap: 12px;
    }

    .p-biz-sns__icons a {
        width: 40px;
        height: 40px;
    }

    .p-biz-docs__list--grid {
        grid-template-columns: 1fr;
    }

    .p-biz-docs__list li {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-biz-flow {
        gap: 20px;
    }

    .p-biz-flow__heading {
        /* font-size: 2rem; */ /* clamp で可変のためコメントアウト */
        gap: 10px;
        padding-left: 14px;
        border-left-width: 4px;
        letter-spacing: 0.08em;
        flex-direction: column;
        /* justify-content: flex-start; */
        align-items: flex-start;
    }

    .p-biz-flow__heading small {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-biz-flow--timeline .p-biz-flow__steps {
        padding-left: 10px;
        gap: 30px;
    }

    .p-biz-flow--timeline .p-biz-flow__steps::before {
        left: 14px;
        width: 41px;
    }

    .p-biz-flow__step {
        gap: 16px;
    }

    .p-biz-flow__badge {
        width: 48px;
        height: 48px;
    }

    .p-biz-flow__badge-label {
        font-size: 0.9rem;
    }

    .p-biz-flow__badge-num {
        /* font-size: 2rem; */
    }

    .p-biz-flow__step-body {
        gap: 12px;
    }

    .p-biz-flow__step-title {
        /* font-size: 1.6rem; */
        letter-spacing: 0.06em;
    }

    .p-biz-flow__step-text {
        letter-spacing: 0.04em;
    }

    .p-biz-flow__step-note {
        /* font-size: 1.2rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.04em;
    }

    .p-biz-flow__after--icons {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .p-biz-flow__after-item {
        gap: 12px;
        letter-spacing: 0.06em;
    }

    .p-biz-flow__after-icon {
        width: 100px;
        height: 100px;
    }

    .p-biz-flow__arrow img {
        transform: rotate(90deg);
        width: 12px;
    }

    .p-biz-flow__note {
        /* font-size: 1.2rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-biz-faq-block {
        padding: 20px 16px;
        gap: 20px;
        border-radius: 14px;
    }

    .p-biz-faq-block .c-accordion__item {
        min-width: 0;
        min-height: auto;
        border-radius: 12px;
    }

    .p-biz-faq-block .c-accordion__trigger {
        padding: 1.2rem 1.4rem;
        min-height: 56px;
        gap: 8px;
    }

    .p-biz-faq__heading {
        /* font-size: 1.8rem; */ /* clamp で可変のためコメントアウト */
        gap: 10px;
        letter-spacing: 0.08em;
    }

    .p-biz-faq__heading-icon {
        width: 36px;
        height: 30px;
    }

    .p-biz-faq .c-accordion__q,
    .p-biz-faq .c-accordion__a {
        width: 26px;
        height: 26px;
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
        margin-right: 0.6rem;
        /* font-size: 1.4rem; */
    }

    .p-biz-faq .c-accordion__question {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.04em;
        /* font-size: 1.4rem; */
    }

    .p-biz-faq .c-accordion__answer {
        padding: 1rem 1.4rem 1.4rem;
    }

    .p-biz-faq .c-accordion__answer p {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.04em;
        line-height: 1.7;
        /* font-size: 1.4rem; */
    }

    .p-biz-faq__contact-btn {
        /* font-size: 1.3rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.06em;
        padding: 0.5rem 1.4rem;
        font-size: 1.3rem; 
    }

    .p-biz-faq-block .c-accordion__icon {
        width: 16px;
        height: 16px;
    }

    .p-biz-faq-block .c-accordion__icon::before {
        width: 16px;
    }

    .p-biz-faq-block .c-accordion__icon::after {
        height: 16px;
    }

    .p-biz-cta__btn {
        /* font-size: 1.6rem; */
        padding: 1.5rem 3rem;
    }

    .p-biz-intro__nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .p-biz-intro__nav-btn {
        font-size: 1.2rem;
        padding: 0.8rem 1.2rem;
        border-radius: 30px;
    }
}

/* ==========================================================================
   Project - Business Sub-page (下層共通)
   ========================================================================== */

.p-biz-sub__inner {
    max-width: 900px;
    margin: 0 auto;
}

.p-biz-sub__notes {
    margin-top: 2.5rem;
}

.p-biz-sub__supplement {
    /* font-size: clamp(0.82rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    line-height: 1.8;
    color: var(--color-text-light);
    margin-top: 2rem;
}

/* ==========================================================================
   Project - Auto Lease Page
   ========================================================================== */

.p-auto-lease__intro {
    margin-bottom: 4rem;
}

.p-auto-lease__intro p {
    font-size: clamp(1rem, 0.83rem + 0.4vw, 1.5rem);
    line-height: 2;
    color: var(--color-text);
}

/* Features (3-column icons) */
.p-auto-lease__features {
    display: flex;
    gap: 3rem;
}

.p-auto-lease__feature-item {
    flex: 1;
    text-align: center;
    padding: 2.5rem;
    background: var(--color-bg-gray);
    border-radius: 8px;
}

.p-auto-lease__feature-icon {
    margin-bottom: 1.5rem;
}

.p-auto-lease__feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.p-auto-lease__feature-title {
    /* font-size: clamp(0.93rem, 0.73rem + 0.54vw, 1.6rem); */
    font-size: var(--fz16);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
}

.p-auto-lease__feature-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* Merits (icon + text horizontal) */
.p-auto-lease__merit-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.p-auto-lease__merit {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    background: var(--color-bg);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.p-auto-lease__merit-icon {
    flex-shrink: 0;
}

.p-auto-lease__merit-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.p-auto-lease__merit-body {
    flex: 1;
    min-width: 0;
}

.p-auto-lease__merit-title {
    /* font-size: clamp(1.05rem, 0.82rem + 0.61vw, 1.8rem); */
    font-size: var(--fz18);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.8rem;
}

.p-auto-lease__merit-text {
    /* font-size: clamp(0.82rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    line-height: 1.9;
    color: var(--color-text);
}

/* Plans (2-column comparison) */
.p-auto-lease__plans {
    display: flex;
    gap: 2.5rem;
}

.p-auto-lease__plan {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.p-auto-lease__plan-header {
    padding: 1.5rem 2rem;
    text-align: center;
}

.p-auto-lease__plan-header--primary {
    background: var(--color-primary);
    color: #fff;
}

.p-auto-lease__plan-header--accent {
    background: #2ba89c;
    color: #fff;
}

.p-auto-lease__plan-title {
    /* font-size: clamp(0.93rem, 0.73rem + 0.54vw, 1.6rem); */
    font-size: var(--fz16);
    font-weight: 700;
}

.p-auto-lease__plan-body {
    padding: 2rem;
    background: var(--color-bg);
}

.p-auto-lease__plan-body > p {
    /* font-size: clamp(0.82rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.p-auto-lease__plan-list {
    list-style: none;
}

.p-auto-lease__plan-list li {
    /* font-size: clamp(0.82rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    border-bottom: 1px solid var(--color-border-light);
    color: var(--color-text);
}

.p-auto-lease__plan-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
}

.p-auto-lease__plan-list li:last-child {
    border-bottom: none;
}

/* Lineup (car grid) */
.p-auto-lease__lineup-lead {
    font-size: clamp(1rem, 0.83rem + 0.4vw, 1.5rem);
    line-height: 2;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 3rem;
}

.p-auto-lease__lineup {
    display: flex;
    gap: 2.5rem;
}

.p-auto-lease__lineup-item {
    flex: 1;
    text-align: center;
}

.p-auto-lease__lineup-img {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.2rem;
}

.p-auto-lease__lineup-img img {
    width: 100%;
    height: auto;
    display: block;
}

.p-auto-lease__lineup-name {
    font-size: clamp(1rem, 0.83rem + 0.4vw, 1.5rem);
    font-weight: 600;
    color: var(--color-secondary);
}

/* ==========================================================================
   Project - Company Intro
   ========================================================================== */

.p-company-intro {
    padding: 10rem 11rem 5rem;
}

.p-company-intro__catch {
    text-align: center;
    /* font-size: clamp(0.93rem, 0.73rem + 0.54vw, 1.6rem); */
    font-size: var(--fz16);
    font-weight: 600;
    color: var(--color-primary);
    padding: 2.5rem 0;
    background: var(--color-primary-light);
    margin-bottom: 4rem;
}

.p-company-intro__nav-area {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.p-company-intro__nav-heading {
    margin-bottom: 2.5rem;
}

.p-company-intro__nav-en {
    display: block;
    font-family: var(--font-family);
    font-size: var(--font-size-section-title-en);
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.25em;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.p-company-intro__nav-ja {
    display: block;
    font-size: 2.5rem;
    color: var(--color-primary);
    letter-spacing: 3px;
}

.p-company-intro__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1300px;
    margin: 5rem auto;
}

.p-company-intro__nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 3rem;
    min-width: min(300px, 100%);
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 56px;
    background: var(--color-bg);
    transition: all var(--transition);
}

.p-company-intro__nav-btn img {
    transition: filter var(--transition);
}

.p-company-intro__nav-btn:hover {
    background: var(--gradient-primary);
    border: none;
    color: #fff;
}

.p-company-intro__nav-btn:hover img {
    filter: brightness(0) invert(1);
}

@media (max-width: 1510px) {
    .p-company-intro__nav-btn {
        padding: 2rem 2.5rem;
        min-width: min(220px, 100%);
    }
}

@media (max-width: 768px) {
    .p-company-intro__nav-area {
        display: none;
    }
}

/* ==========================================================================
   Project - Company Page
   ========================================================================== */

.p-company-section__inner {
    max-width: 1102px;
    margin: 0 auto;
    overflow: hidden;
}

/* Content Heading (EN/JA pair) — company page: centered, no left bar, blue */
.p-company-section .c-content-heading {
    text-align: center;
    border-left: none;
    padding-left: 0;
    margin-bottom: 4rem;
}

.c-content-heading__en {
    display: block;
    font-family: var(--font-family);
    font-size: var(--font-size-section-title-en);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.25em;
    margin-bottom: 0.3rem;
}

.c-content-heading__ja {
    display: block;
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-primary);
}

/* Philosophy */
.p-company-philosophy__block {
    margin-bottom: 6.4rem;
}

.p-company-philosophy__block:last-child {
    margin-bottom: 0;
}

.p-company-philosophy__block .c-heading-line {
    margin-bottom: 1.2rem;
}

.p-company-philosophy__title {
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    display: inline-block;
    letter-spacing: 8px;
}

.p-company-philosophy__values {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

/* Message */
.p-company-message__body {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.p-company-message__body p {
    margin-bottom: 0;
}

.p-company-message__sign {
    margin-top: 3rem;
    text-align: left;
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    letter-spacing: 0.2em;
}

.p-company-message__position {
    display: inline;
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-text);
    margin-right: 2em;
}

.p-company-message__name {
    display: inline;
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-text);
}

/* Org Chart button */
.p-company-org-btn {
    text-align: center;
    margin-top: 2.5rem;
}

/* Financial */
.p-company-financial {
    text-align: center;
}

.p-company-financial__text {
    margin-bottom: 4.5rem;
    text-align: left;
}

.p-company-financial__btn {
    display: flex;
    justify-content: center;
}

.p-company-financial__btn .c-btn--arrow::after {
    display: none;
}

.p-company-financial__btn .c-btn--arrow:hover {
    background: var(--gradient-primary);
    /* border: none; */
    /* border: 2px solid white; */
}

.p-company-financial__btn .c-btn--arrow:hover img {
    filter: brightness(0) invert(1);
}

/* History Timeline */
.p-company-history-timeline {
    position: relative;
    padding-left: 3.5rem;
}

.p-company-history-timeline::before {
    content: "";
    position: absolute;
    /* Left of year column, inside timeline padding */
    left: 10px;
    top: 10px;
    bottom: 52px;
    width: 2px;
    background: var(--color-primary);
}

.p-company-history-timeline__item {
    display: flex;
    gap: 8rem;
    padding-bottom: 2rem;
    position: relative;
    align-items: flex-start;
    letter-spacing: 16%;
}

.p-company-history-timeline__item::before {
    content: none;
}

.p-company-history-timeline__events p {
    position: relative;
}

.p-company-history-timeline__events p::before {
    content: "";
    position: absolute;
    /* Move dot to left of year: -(events_padding + gap + year_width) + 10px centering offset */
    left: calc(-3.5rem - 8rem - 200px);
    top: 0.2em;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #dbf2f0;
    border: 6px solid var(--color-primary);
    z-index: 1;
}

.p-company-history-timeline__year {
    flex-shrink: 0;
    width: 205px;
    /* font-size: clamp(1.4rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 500;
    color: var(--color-primary);
    padding-top: 0.2rem;
    padding-left: 3rem;
    letter-spacing: 0.16em;
}

.p-company-history-timeline__events {
    flex: 1;
    min-width: 0;
    padding-top: 6px;
}

.p-company-history-timeline__events p {
    /* font-size: clamp(1.4rem, 0.73rem + 0.54vw, 1.6rem); */
    font-size: var(--fz16);
    line-height: 1.8;
    color: var(--color-text);
    font-weight: 500;
    letter-spacing: 0.16em;
}

/* Locations Grid */
.p-company-locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px 14px;
}

.p-company-location-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 20px;
    overflow: hidden;
    background: #6BDDEF80;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    padding: 18px 19px;
    color: var(--color-primary);
    position: relative;
    cursor: pointer;
    transition: box-shadow var(--transition);
}

.p-company-location-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.p-company-location-card__map {
    overflow: hidden;
}

.p-company-location-card__map img,
.p-company-location-card__map iframe {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.p-company-location-card__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    padding: 0;
}

.p-company-location-card__name {
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0;
    letter-spacing: 0.2em;
}

.p-company-location-card__address {
    /* font-size: clamp(0.93rem, 0.73rem + 0.54vw, 1.6rem); */
    font-size: var(--fz16);
    line-height: 1.54;
    color: var(--color-primary);
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: 0.2em;
}

.p-company-location-card__link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    /* font-size: clamp(0.93rem, 0.73rem + 0.54vw, 1.6rem); */
    font-size: var(--fz16);
    color: var(--color-text);
    font-weight: 500;
    transition: opacity var(--transition);
    justify-content: flex-end;
    letter-spacing: 8px;
}

.p-company-location-card__link::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.p-company-location-card__link::after {
    content: "";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: url("../img/common/icon-maparrow.svg") no-repeat center / contain;
    letter-spacing: 0;
    line-height: 1;
    flex-shrink: 0;
    transition: all var(--transition);
}

.p-company-location-card__link:hover {
    opacity: 1;
}

.p-company-location-card__link:hover::after {
    background-image: none;
    background-color: #000;
    /* White arrow via inline SVG background */
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='23' height='23' rx='11.5' fill='%23000' stroke='%23000'/%3E%3Cpath d='M9.29289 6.29289C9.68342 5.90237 10.3164 5.90237 10.707 6.29289L15.707 11.2929C16.0975 11.6834 16.0975 12.3164 15.707 12.707L10.707 17.707C10.3164 18.0975 9.68342 18.0975 9.29289 17.707C8.90237 17.3164 8.90237 16.6834 9.29289 16.2929L13.5859 11.9999L9.29289 7.70696C8.90237 7.31643 8.90237 6.68342 9.29289 6.29289Z' fill='%23fff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


.page-template-page-company {
    #company {
        .p-company-section__inner {
            max-width: 1000px;
        }
        .c-dl {
            .c-dl__row {
                gap: 32px;
            }
            .c-dl__dt {
                width: 203px;
                border-bottom: 1px solid var(--color-primary);
                padding: 1.5rem 0;
                letter-spacing: 16%;
            }
            .c-dl__dd {
                border-bottom: 1px solid var(--color-primary);
                padding: 1.4rem 0;
            }
            .c-dl__row:first-child .c-dl__dt,
            .c-dl__row:first-child .c-dl__dd {
                border-top: 1px solid var(--color-primary);
            }
        }
    }

    #officers {
        .p-company-section__inner {
            max-width: 977px;
        }
        .c-dl {
            .c-dl__row {
                gap: 9px;
                letter-spacing: 16%;
            }
            .c-dl__dt {
                width: 203px;
                border-bottom: 1px solid var(--color-primary);
                padding: 1.5rem 0;
            }
            .c-dl__dd {
                border-bottom: 1px solid var(--color-primary);
                padding: 1.5rem 0;
            }
            .c-dl__row:first-child .c-dl__dt,
            .c-dl__row:first-child .c-dl__dd {
                border-top: 1px solid var(--color-primary);
            }
        }
    }
    #history {
        .p-company-section__inner {
            max-width: 1001px;
        }
    }
    #locations {
        .c-content-heading__en {
            letter-spacing: 12px;
        }
        .p-company-section__inner {
            max-width: 1150px;
        }
    }
}
@media (max-width: 1400px) {
    .p-company-history-timeline__events p::before {
        top: 0.3rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-company #company .c-dl .c-dl__dt,
    .page-template-page-company #officers .c-dl .c-dl__dt {
        border-bottom: none;
        border-top: none;
        font-size: 1.5rem;
        padding: 1rem 0 0;
    }

    .page-template-page-company #company .c-dl .c-dl__dd,
    .page-template-page-company #officers .c-dl .c-dl__dd {
        border-top: none;
        border-bottom: 1px solid var(--color-primary);
        font-size: 1.5rem;
        padding: 0 0 1rem;
    }

    .page-template-page-company #company .c-dl .c-dl__row:first-child .c-dl__dt,
    .page-template-page-company #officers .c-dl .c-dl__row:first-child .c-dl__dt {
        border-top: 1px solid var(--color-primary);
        padding: 1rem 0 0;
        width: 100%;
    }

    .page-template-page-company #company .c-dl .c-dl__row:first-child .c-dl__dd,
    .page-template-page-company #officers .c-dl .c-dl__row:first-child .c-dl__dd {
        border-top: none;
        font-size: 1.5rem;
    }
}


/* ==========================================================================
   Project - Financial (決算公告) Page
   ========================================================================== */

.page-template-page-financial .l-main {
    background: #f7f7f0;
}

.page-template-page-financial .p-financial-section {
    background: #fff;
    max-width: 1300px;
    margin: 11rem auto 4rem;
    border-radius: 20px;
    padding: 8rem 0;
}

.p-financial-heading {
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 5rem;
    letter-spacing: 15%;
}

.p-financial-heading .c-heading-line {
    margin-top: 0.5rem;
}

.p-financial-sub-heading {
    /* font-size: 2.2rem; */
    font-size: var(--fz22);
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.p-financial-sub-heading .c-heading-line {
    margin-top: 0.5rem;
}

.p-financial-section__inner {
    max-width: 900px;
    margin: 0 auto;
}

.p-financial-list {
    margin-bottom: 2rem;
    text-align: center;
}

.p-financial-list__item {
    border-bottom: none;
    font-weight: 500;
    letter-spacing: 15%;
}

.p-financial-list__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 0.5rem;
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    color: var(--color-primary);
    text-decoration: underline;
    transition: opacity var(--transition);
}

.p-financial-list__link:hover {
    opacity: 0.7;
}

.p-financial-list__icon {
    display: none;
}

.p-financial-chart {
    text-align: center;
}

.p-financial-chart img {
    max-width: 100%;
    height: auto;
}

/* Financial SP */
@media (max-width: 768px) {
    .page-template-page-financial .p-financial-section {
        margin: 4rem 1.6rem;
        padding: 4rem 2rem;
        border-radius: 12px;
    }

    .p-financial-heading {
        /* font-size: 2.2rem; */ /* clamp で可変のためコメントアウト */
        margin-bottom: 3rem;
    }

    .p-financial-list__link {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-financial-sub-heading {
        /* font-size: 1.8rem; */
    }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1400px) {
    .p-gnav__link {
        font-size: 1.8rem;
    }
}
@media (max-width: 1300px) {
    .p-gnav__link {
        font-size: 1.6rem;
    }
}
@media (max-width: 1200px) {
    /* ハンバーガーメニュー切替 */
    .l-header__cta-btn {
        min-width: 0;
        padding: 1.0rem 1.2rem;
        flex-direction: row;
        gap: 6px;
        /* font-size: 1.6rem; */
    }

    .l-header__cta-icon {
        width: 24px;
        height: 24px;
    }

    .c-hamburger {
        display: block;
        margin-left: 3.2rem;
        flex-shrink: 0;
    }

    .l-header__nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        width: auto;
        height: calc(100vh - var(--header-height));
        background: var(--color-bg);
        overflow-y: auto;
        padding: 0;
        margin-right: 0;
        z-index: 999;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
    }

    .l-header__nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .p-gnav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 3rem 2.5rem 0;
    }

    .p-gnav__item {
        border-bottom: 1px solid var(--color-border-light);
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .l-header__nav.is-open .p-gnav__item {
        opacity: 1;
        transform: translateY(0);
    }

    .l-header__nav.is-open .p-gnav__item:nth-child(1) { transition-delay: 0.08s; }
    .l-header__nav.is-open .p-gnav__item:nth-child(2) { transition-delay: 0.14s; }
    .l-header__nav.is-open .p-gnav__item:nth-child(3) { transition-delay: 0.20s; }
    .l-header__nav.is-open .p-gnav__item:nth-child(4) { transition-delay: 0.26s; }
    .l-header__nav.is-open .p-gnav__item:nth-child(5) { transition-delay: 0.32s; }

    .p-gnav__link {
        display: flex;
        align-items: center;
        padding: 1.8rem 0;
        /* font-size: 1.6rem; */
        font-weight: 500;
        letter-spacing: 0.08em;
        gap: 2rem;
    }

    .p-gnav__link::after {
        content: '';
        position: static;
        display: block;
        width: 8px;
        height: 8px;
        background: none;
        border-top: 2px solid var(--color-primary);
        border-right: 2px solid var(--color-primary);
        transform: rotate(45deg);
        margin-left: auto;
        flex-shrink: 0;
        display: none;
    }

    .p-gnav__link:hover::after,
    .p-gnav__link.is-current::after {
        width: 8px;
    }

    /* SP: サブメニュー（アコーディオン） */
    .p-gnav__item-row {
        display: flex;
        align-items: center;
    }

    .p-gnav__item.has-submenu .p-gnav__link::after {
        display: none;
    }

    .p-gnav__submenu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin-left: auto;
        flex-shrink: 0;
        background: none;
        border: none;
        cursor: pointer;
        position: relative;
    }

    .p-gnav__submenu-toggle::before,
    .p-gnav__submenu-toggle::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        background: var(--color-primary);
        transition: transform 0.3s ease;
    }

    /* 横棒 */
    .p-gnav__submenu-toggle::before {
        width: 16px;
        height: 2px;
        transform: translate(-50%, -50%);
    }

    /* 縦棒 */
    .p-gnav__submenu-toggle::after {
        width: 2px;
        height: 16px;
        transform: translate(-50%, -50%);
    }

    /* 開いた状態: 両方45度回転で× */
    .p-gnav__submenu-toggle.is-open::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .p-gnav__submenu-toggle.is-open::after {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .p-gnav__submenu {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .p-gnav__submenu.is-open {
        /* max-height set by JS */
    }

    .p-gnav__submenu-item {
        border-top: 1px solid var(--color-border-light);
    }

    .p-gnav__submenu-link {
        display: block;
        padding: 1.2rem 0 1.2rem 2rem;
        /* font-size: 1.4rem; */
        font-size: 1.6rem;
        font-weight: 500;
        color: var(--color-text);
        letter-spacing: 0.05em;
        transition: color var(--transition);
    }

    .p-gnav__submenu-link:hover {
        color: var(--color-primary);
    }

    /* SP用CTA表示 */
    .p-gnav__cta--sp {
        display: flex;
        flex-direction: row;
        gap: 1.2rem;
        padding: 3rem 2.5rem;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease 0.38s, transform 0.3s ease 0.38s;
        justify-content: center;
    }

    .l-header__nav.is-open .p-gnav__cta--sp {
        opacity: 1;
        transform: translateY(0);
    }

    .p-gnav__cta--sp .c-btn {
        padding: 1.4rem;
        font-size: 1.5rem;
        text-align: center;
        border-radius: 8px;
        flex: 0 0 50%;
    }
}

@media (max-width: 1024px) {
    .p-home-business__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    :root {
        --header-height: 60px;
    }

    /* Header SP (size reduction) */
    .l-header__cta {
        display: none;
    }

    .l-header__inner {
        padding: 0 1.5rem;
    }

    .l-header__logo {
        flex-shrink: 1;
        min-width: 0;
    }

    .c-logo__img {
        height: 28px;
    }

    .l-header__nav {
        top: var(--header-height);
        height: calc(100vh - var(--header-height));
    }

    .p-gnav__cta--sp {
        flex-direction: row;
    }

    .p-gnav__cta--sp .c-btn {
        flex: 1;
    }

    /* Footer SP */
    .l-footer__nav-area {
        padding: 3rem 1rem;
    }

    .p-footer-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 0.5rem;
    }

    .p-footer-nav__heading {
        /* font-size: 1.5rem; */ /* clamp で可変のためコメントアウト */
        margin-bottom: 1.2rem;
        padding-bottom: 0.6rem;
    }

    .p-footer-nav__list {
        gap: 0.3rem;
    }

    .p-footer-nav__item,
    .p-footer-nav__item a {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-footer-nav__item--sub {
        /* font-size: 1.2rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-footer-cta {
        flex-direction: row;
        gap: 4%;
    }

    .p-footer-cta__button--recruit,.p-footer-cta__button--contact {
        flex:0 0 48%;
        padding: 2rem 0;
        flex-direction: column;
    }

    .p-footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .p-footer-bottom__logo a {
        justify-content: center;
    }

    .p-footer-bottom__sns {
        text-align: center;
    }

    .p-footer-bottom__address {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-footer-bottom__mascot {
        /* display: none; */
        width: 50vw;
        bottom: -68px;
        height: auto;
    }

    /* Page SP */
    .l-page__title {
        /* font-size: 2.2rem; */ /* clamp で可変のためコメントアウト */
    }

    /* Utility SP */
    .u-pc-only {
        display: none;
    }

    .u-sp-only {
        display: inline;
    }

    /* Hero SP */
    .p-hero {
        min-height: 60vh;
    }

    .p-hero__inner {
        min-height: 60vh;
        padding: 0 2rem;
        padding-bottom: 4rem;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
    }

    .p-hero__catch {
        /* font-size: 2.6rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-hero__sub {
        font-size: 1.3rem;
    }

    .p-hero__scroll {
        display: none;
    }

    /* Home News SP */
    .p-home-news__link {
        flex-wrap: wrap;
        gap: 0.5rem 1rem;
    }

    .p-home-news__title {
        flex-basis: 100%;
        white-space: normal;
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
    }

    /* Home About SP */
    .p-home-about {
        padding: 5rem 2rem;
    }

    .p-home-about__body {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .p-home-about__img {
        order: -1;
    }

    .p-home-about__img img {
        clip-path: none;
    }

    .c-section-heading__en {
        font-size: 2.2rem;
    }

    /* Home Business SP */
    .p-home-business {
        padding: 5rem 2rem;
    }

    .p-home-business__lead {
        margin-bottom: 3rem;
    }

    .p-home-business__list {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .p-home-business__link {
        padding: 1.5rem 2rem;
    }

    .p-home-business__num {
        font-size: 3.8rem;
        min-width: 30px;
    }

    .p-home-business__name {
        letter-spacing: 0.02em;
        flex-shrink: 0;
    }

    .p-home-business__arrow {
        /* font-size: 1.2rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.1em;
        flex-basis: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .p-home-business__arrow img {
        width: 32px;
        height: 32px;
    }

    .p-home-business__text {
        /* font-size: 1.4rem; */
        letter-spacing: 0.05em;
    }

    /* Home Service SP */
    .p-home-service {
        padding: 5rem 2rem;
    }

    .p-home-service__list {
        flex-direction: column;
        gap: 2rem;
    }

    .p-home-service__card {
        padding: 0;
    }

    /* Home Banner SP */
    .p-home-banner__list {
        flex-direction: column;
    }

    /* Home Pickup SP */
    .p-home-pickup {
        padding: 5rem 2rem;
    }

    .p-home-pickup__list {
        flex-direction: column;
        gap: 2rem;
    }

    .p-home-pickup__card-en {
        /* font-size: 1.6rem; */
    }

    .p-news__item a,
    .p-archive__item a {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Page Hero SP */
    .p-page-hero {
        /* min-height: 200px; */
    }

    .p-page-hero__heading-en {
        /* font-size: 2.4rem; */
    }

    /* News Filter SP */
    .p-news-filter {
        padding: 4rem 0.5rem 0rem;
    }

    .p-news-filter__list {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        row-gap: 1rem;
    }

    .p-news-filter__item {
        flex: none;
        max-width: none;
    }

    .p-news-filter__link {
        /* font-size: 1.2rem; */ /* clamp で可変のためコメントアウト */
        padding: 0.6rem 1.1rem;
    }

    /* News Archive SP */
    .p-news-archive__link {
        flex-wrap: wrap;
        gap: 0.5rem 1rem;
    }

    .p-news-archive__title {
        flex-basis: 100%;
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
    }

    /* News Single SP */
    .p-news-single__title {
        /* font-size: 2rem; */
    }

    .p-news-single__nav {
        flex-direction: row;
        gap: 1rem;
    }

    .p-news-single__nav-prev,
    .p-news-single__nav-list,
    .p-news-single__nav-next {
        text-align: center;
        flex: none;
        width: auto;
    }

    .p-news-single__nav a {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
        padding: 0.8rem 2rem;
        display: inline-block;
        min-width: 120px;
    }

    .p-news-single__nav-list a {
        width: auto;
        /* min-width: 200px; */
    }

    /* Scroll to Top SP */
    .c-scroll-top {
        bottom: 2rem;
        right: 2rem;
        width: 15vw;
        height: 15vw;
    }

    .c-page-lead {
        padding: 2rem 1.5rem;
        letter-spacing: 0.1em;
    }

    /* Definition List SP */
    .c-dl__row {
        flex-direction: column;
        border-bottom: none;
        gap: 1rem!important;
    }

    .c-dl__dt {
        width: 100%;
        padding: 1rem 1.5rem;
        border-bottom: none;
    }

    .c-dl__dd {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--color-border);
    }

    .c-dl__row:first-child .c-dl__dt {
        border-top: 1px solid var(--color-border);
    }

    .c-dl__row:first-child .c-dl__dd {
        border-top: none;
    }

    /* Anchor Navigation SP */
    .c-anchor-nav {
        padding: 0;
    }

    .c-anchor-nav__inner {
        padding: 0 1.5rem;
    }

    .c-anchor-nav__link {
        padding: 1.2rem 1.2rem;
        font-size: 1.2rem;
    }

    /* Accordion SP */
    .c-accordion__header {
        padding: 1.2rem 1.5rem;
        /* font-size: 1.4rem; */
    }

    .c-accordion__content {
        padding: 0 1.5rem 1.5rem 4rem;
        /* font-size: 1.3rem; */ /* clamp で可変のためコメントアウト */
    }

    .c-accordion__icon-q {
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
    }

    /* CTA Banner SP */
    .c-cta-banner__list {
        flex-direction: column;
        gap: 1rem;
    }

    .c-cta-banner__item {
        padding: 1.5rem 2.5rem;
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
    }

    /* Section spacing SP */
    .u-section {
        padding: 4rem 1.5rem;
    }

    .u-section--lg {
        padding: 5rem 1.5rem;
    }

    /* Flow Chart SP */
    .c-flow__row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .c-flow__step-label {
        min-width: 140px;
        /* font-size: 1.3rem; */ /* clamp で可変のためコメントアウト */
    }

    /* Content Heading SP */
    .c-content-heading {
        /* font-size: 1.8rem; */
    }

    /* Page Hero Illustration SP */
    .p-page-hero--illust {
        min-height: 180px;
    }


    /* Auto Lease SP */
    .p-auto-lease__features {
        flex-direction: column;
        gap: 1.5rem;
    }

    .p-auto-lease__merit {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }

    .p-auto-lease__plans {
        flex-direction: column;
        gap: 2rem;
    }

    .p-auto-lease__lineup {
        flex-direction: column;
        gap: 2rem;
    }

    /* Company Intro SP */
    .p-company-intro {
        padding: 0 !important;
    }

    .p-company-intro__nav {
        gap: 1rem;
        margin: 2.5rem auto;
    }

    .p-company-intro__nav-btn {
        min-width: 140px;
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
        padding: 0.8rem 1.2rem;
        border-radius: 40px;
        flex-basis: 43%;
    }

    .p-company-intro__nav-en {
        /* font-size: 2.4rem; */
    }

    .p-company-intro__nav-ja {
        /* font-size: 1.6rem; */
    }

    /* Company Section Heading SP */
    .c-content-heading__en {
        font-size: 2.8rem;
        letter-spacing: 0.15em;
    }

    .c-content-heading__ja {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
    }

    /* Company Philosophy SP */
    .p-company-philosophy__block {
        margin-bottom: 3rem;
    }

    .p-company-philosophy__title {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 4px;
    }

    .p-company-philosophy__text,
    .p-company-philosophy__values li {
        /* font-size: 1.4rem; */
    }

    /* Company Message SP */
    .p-company-message__body p {
        /* font-size: 1.4rem; */
    }

    .p-company-message__sign {
        margin-top: 2rem;
    }

    .p-company-message__position {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
        margin-right: 1em;
    }

    .p-company-message__name {
        /* font-size: 1.8rem; */ /* clamp で可変のためコメントアウト */
    }

    /* Company Timeline SP */
    .p-company-history-timeline::before {
        left: 10px;
        top: 4.5rem;
    }

    .p-company-history-timeline__item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .p-company-history-timeline__year {
        width: auto;
        /* font-size: 1.3rem; */ /* clamp で可変のためコメントアウト */
        padding-left: 2.5rem;
        /* font-size: 1.4rem; */
    }

    .p-company-history-timeline__events p {
        /* font-size: 1.3rem; */ /* clamp で可変のためコメントアウト */
        padding-left: 2.5rem;
        /* font-size: 1.4rem; */
    }

    .p-company-history-timeline__events p::before {
        left: -3.5rem;
    }

    /* Company Locations SP */
    .p-company-locations-grid {
        grid-template-columns: 1fr;
    }

    .p-company-location-card {
        padding: 12px;
    }

    .p-company-location-card__name {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-company-location-card__address {
        /* font-size: 1.3rem; */ /* clamp で可変のためコメントアウト */
        font-size: 1.3rem; 
    }

    .p-company-location-card__link {
        /* font-size: 1.3rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 4px;
        font-size: 1.3rem; 
    }
}

/* ==========================================================================
   Project - Autolease Page
   ========================================================================== */

/* ---------- Lead Bar (hero下グラデーション帯) ---------- */

.p-autolease-lead-bar {
    background: linear-gradient(90deg, #007bd0, #6bddef);
    height: 93px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-autolease-lead-bar p {
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    color: #fff;
    letter-spacing: 4.8px;
    text-align: center;
    margin: 0;
}

/* ---------- Wrapper ---------- */

.p-autolease-wrapper {
    max-width: 1612px;
    margin: 0 auto;
    padding: 24px 20px 0;
    display: flex;
    flex-direction: column;
    overflow: visible;
    gap: 24px;
}

/* ---------- Card Containers ---------- */

.p-autolease-card {
    border-radius: 20px;
    overflow: visible;
}

.p-autolease-card--white {
    background: #fff;
    padding: 31px clamp(20px, 10vw, 206px);
}

#rental.p-autolease-card {
    padding: 67px clamp(20px, 10vw, 206px);
}

.p-autolease-card--blue {
    background: #e8faff;
    padding: 140px clamp(20px, 10vw, 206px) 40px;
    border-radius: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.p-autolease-card__inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------- Section Title (リース/オートリース/レンタル) ---------- */

.p-autolease-title {
    font-size: clamp(3.62rem, 2.84rem + 2.1vw, 6.2rem);
    font-weight: 500;
    text-align: center;
    letter-spacing: 18.6px;
    margin-bottom: 31px;
    color: #0275be;
}

#autolease .p-autolease-title,
#rental .p-autolease-title {
    letter-spacing: 9.92px;
}

/* ---------- Lead Text ---------- */

.p-autolease-lead {
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    line-height: 2;
    letter-spacing: 3.6px;
    color: #1f1f1f;
    margin-bottom: 102px;
}

#autolease .p-autolease-lead:nth-of-type(2) {
    margin-bottom: 50px;
}

#autolease .p-autolease-merit-grid {
    row-gap: 7px;
    margin-bottom: 140px;
}

#rental .p-autolease-merit-grid {
    row-gap: 7px;
    margin-bottom: 147px;
}

#rental .p-autolease-items {
    margin-bottom: 97px;
    position: relative;
}

#rental #installment .p-autolease-lead,#rental #payment .p-autolease-lead {
    margin-bottom: 20px;
}

/* ---------- Lease Diagram ---------- */

.p-autolease-diagram {
    margin: 100px 0 40px;
    text-align: center;
}

.p-autolease-diagram__title {
    display: inline-block;
    background: #0275be;
    color: #fff;
    /* font-size: clamp(2.1rem, 1.65rem + 1.22vw, 3.6rem); */
    font-size: var(--fz36);
    font-weight: 700;
    letter-spacing: 5.76px;
    padding: 5px 10px;
    text-align: center;
    margin: 0 auto 24px;
}

.p-autolease-diagram__img {
    max-width: 961px;
    margin: 0 auto;
}

.p-autolease-diagram__img img {
    width: 100%;
    height: auto;
}

/* ---------- Items (取扱物件) ---------- */

.p-autolease-items {
    background: #dbf2f0;
    border-radius: 16px;
    padding: 40px 50px;
    margin: 60px 0 140px;
    text-align: center;
}

.p-autolease-items--rental {
    background: #dbf2f0;
}

.p-autolease-items--rental .p-autolease-items__title {
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    letter-spacing: 4.8px;
}

.p-autolease-items--rental .p-autolease-items__text {
    letter-spacing: 3.6px;
}

.p-autolease-items__title {
    /* font-size: clamp(1.63rem, 1.28rem + 0.95vw, 2.8rem); */
    font-size: var(--fz28);
    font-weight: 700;
    letter-spacing: 5.6px;
    color: #0275be;
    margin-bottom: 20px;
}

.p-autolease-items__text {
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 4.8px;
    color: #1f1f1f;
    line-height: 2;
}

.p-autolease-items__grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.p-autolease-items__thumb {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.p-autolease-items__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- Merit Section Title ---------- */

.p-autolease-merit-title {
    /* font-size: clamp(2.8rem, 2.2rem + 1.62vw, 4.8rem); */
    font-size: var(--fz48);
    font-weight: 700;
    letter-spacing: 7.68px;
    color: #0275be;
    text-align: center;
    margin-bottom: 45px;
    z-index: 100;
    position: relative;
}

/* ---------- Merit Grid (2-column staggered) ---------- */

.p-autolease-merit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    margin-bottom: 180px;
    position: relative;
    row-gap: 42px;
    overflow: visible;
}

.p-autolease-merit-grid::before,
.p-autolease-merit-grid::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: url("../images/merit-bg-deco.png") no-repeat center / contain;
    pointer-events: none;
    z-index: 0;
}

/* --- リースの５つのメリット (#lease) --- */
#lease .p-autolease-merit-grid::before {
    top: -80px;
    left: -100px;
}

#lease .p-autolease-merit-grid::after {
    bottom: -80px;
    right: -100px;
    transform: rotate(180deg);
}

/* --- オートリースの４つのメリット (#autolease) --- */
#autolease .p-autolease-merit-grid::before {
    top: -80px;
    left: -100px;
}

#autolease .p-autolease-merit-grid::after {
    bottom: -280px;
    right: -100px;
    transform: rotate(180deg);
}

/* --- レンタルの４つのメリット (#rental) --- */
#rental .p-autolease-merit-grid::before {
    top: -80px;
    left: -100px;
}

#rental .p-autolease-merit-grid::after {
    bottom: -280px;
    right: -100px;
    transform: rotate(180deg);
}

/* Decorative blob backgrounds on even (right-side) cards */
.p-autolease-merit-grid > .p-autolease-merit-card:nth-child(even) {
    position: relative;
}

/* .p-autolease-merit-grid > .p-autolease-merit-card:nth-child(even)::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -80px;
    width: 930px;
    height: 920px;
    background: url('../images/autolease-blob-bg.png') no-repeat center / contain;
    z-index: -1;
    pointer-events: none;
} */

/* Odd items → column 1, even items → column 2 */
.p-autolease-merit-grid > .p-autolease-merit-card:nth-child(odd) {
    grid-column: 1;
}

.p-autolease-merit-grid > .p-autolease-merit-card:nth-child(even) {
    grid-column: 2;
}

/* Stagger: first even item gets padding-top */
.p-autolease-merit-grid--5 > .p-autolease-merit-card:nth-child(2) {
    padding-top: 300px;
}

.p-autolease-merit-grid--5 > .p-autolease-merit-card:nth-child(4) {
    padding-top: 300px;
}

.p-autolease-merit-grid--4 > .p-autolease-merit-card:nth-child(2) {
    padding-top: 200px;
}
.p-autolease-merit-grid--4 > .p-autolease-merit-card:nth-child(4) {
    padding-top: 200px;
}

.p-autolease-merit__illust {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.p-autolease-merit__illust img {
    max-width: 100%;
    height: auto;
    z-index: 2;
    /* position: absolute; */
}

/* ---------- Merit Card ---------- */

.p-autolease-merit-card {
    position: relative;
    z-index: 1;
}

.p-autolease-merit-card__header {
    display: flex;
    align-items: flex-end;
    gap: 25px;
    margin-bottom: 20px;
}

.p-autolease-merit-card__num-group {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.p-autolease-merit-card__label {
    font-family: var(--font-family-en);
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 700;
    letter-spacing: 3.84px;
    color: #1f1f1f;
    line-height: 1;
    padding-bottom: 4px;
}

.p-autolease-merit-card__number {
    font-family: var(--font-family);
    /* font-size: clamp(2.8rem, 2.2rem + 1.62vw, 4.8rem); */
    font-size: var(--fz48);
    font-weight: 700;
    letter-spacing: 7.68px;
    color: #1f1f1f;
    line-height: 1;
}

.p-autolease-merit-card__icon {
    flex-shrink: 0;
}

.p-autolease-merit-card__icon img {
    width: 150px;
    height: 120px;
    object-fit: contain;
}

.p-autolease-merit-card__heading {
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 700;
    letter-spacing: 3.2px;
    color: #0062a0;
    line-height: 1.5;
    margin-bottom: 16px;
}

.p-autolease-merit-card__text {
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 4.8px;
    color: #1f1f1f;
    line-height: 1.5;
}

/* ---------- Merit More Box ---------- */

.p-autolease-merit-more {
    background: #c2ecff;
    border-radius: 40px;
    padding: 50px 50px 0;
    text-align: center;
    overflow: hidden;
}

.p-autolease-merit-more p {
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 700;
    letter-spacing: 5.12px;
    color: #1875b0;
    margin-bottom: 30px;
}

.p-autolease-merit-more__img {
    display: flex;
    justify-content: center;
}

.p-autolease-merit-more__img img {
    max-width: 380px;
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- Cars ---------- */

.p-autolease-cars {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 46px;
}

.p-autolease-cars__item {
    flex: 1;
    max-width: 100%;
}

.p-autolease-cars__item img {
    border-radius: 8px;
    width: 100%;
    height: auto;
}

/* ---------- Maintenance Diagram (image) ---------- */

.p-autolease-maintenance-diagram {
    max-width: 890px;
    margin: 50px auto 139px;
}

.p-autolease-maintenance-diagram img {
    width: 100%;
    height: auto;
}

/* ---------- Sale and Leaseback ---------- */

.p-autolease-saleback {
    margin: 80px 0 60px;
}

.p-autolease-saleback__diagram {
    max-width: 100%;
    margin: 0 auto;
}

.p-autolease-saleback__diagram img {
    width: 100%;
    height: auto;
    position: relative;
}

/* ---------- Rental Photos ---------- */

.p-autolease-rental-photos {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 154px;
}

.p-autolease-rental-photos__item {
    flex: 1;
    max-width: 100%;
}

.p-autolease-rental-photos__item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ---------- Sub Sections (割賦販売, 支払委託) ---------- */

.p-autolease-sub-section {
    margin-top: 80px;
    overflow: hidden;
}

.p-autolease-other-title {
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 500;
    letter-spacing: 5.12px;
    color: #0275be;
    margin-bottom: 30px;
}

.p-autolease-other-title .c-heading-line {
    margin-top: 0.5rem;
}

.p-autolease-sub-label {
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 3.6px;
    color: #0275be;
    margin-bottom: 16px;
}

/* ---------- Back Button ---------- */

.p-autolease-back {
    padding: 100px 20px;
    text-align: center;
    background: var(--color-bg-gray);
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.page-template-page-autolease .l-footer__top-deco {
    background: var(--color-bg-gray);
}

.page-template-page-sustainability .l-footer__top-deco {
    background-color: #fff;
}

.p-autolease-back__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.p-autolease-back__btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #0275be;
    color: #fff;
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 2.4px;
    padding: 20px 30px;
    border-radius: 56px;
    transition: all var(--transition);
}

.p-autolease-back__btn:hover {
    opacity: 1;
    background: #015f9c;
}

.p-autolease-back__arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ---------- Autolease Responsive ---------- */

@media (max-width: 1100px) {
    .p-autolease-card--white {
        padding: 67px 80px;
    }

    .p-autolease-card--blue {
        padding: 100px 80px;
    }

    #rental.p-autolease-card {
        padding: 100px 80px;
    }

    .p-autolease-merit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .p-autolease-merit-grid > .p-autolease-merit-card:nth-child(odd),
    .p-autolease-merit-grid > .p-autolease-merit-card:nth-child(even) {
        grid-column: 1;
    }

    .p-autolease-merit-grid--5 > .p-autolease-merit-card:nth-child(2),
    .p-autolease-merit-grid--5 > .p-autolease-merit-card:nth-child(4),
    .p-autolease-merit-grid--4 > .p-autolease-merit-card:nth-child(2),
    .p-autolease-merit-grid--4 > .p-autolease-merit-card:nth-child(4) {
        padding-top: 0;
    }

    .p-autolease-merit__illust {
        grid-column: 1;
    }

    .p-autolease-merit-grid::before,
    .p-autolease-merit-grid::after {
        width: 50%;
        height: auto;
        aspect-ratio: 1;
    }
}

@media (max-width: 768px) {
    .p-autolease-lead-bar {
        height: auto;
        padding: 20px;
    }

    .p-autolease-lead-bar p {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 2px;
    }

    .p-autolease-wrapper {
        padding: 16px 10px 0;
        gap: 16px;
    }

    .p-autolease-card--white {
        padding: 40px 20px;
    }

    .p-autolease-card--blue {
        padding: 60px 20px 30px;
    }

    .p-autolease-title {
        /* font-size: 3.2rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 6px;
        margin-bottom: 20px;
    }

    #rental.p-autolease-card {
        padding: 40px 20px;
    }

    .p-autolease-lead {
        /* font-size: 1.5rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 1.5px;
        margin-bottom: 30px;
    }

    .p-autolease-diagram__title {
        /* font-size: 2rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 3px;
    }

    .p-autolease-items {
        padding: 20px;
        margin-bottom: 50px;
    }

    .p-autolease-items__title {
        /* font-size: 2rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-autolease-items__text {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 2px;
    }

    .p-autolease-items__grid {
        gap: 20px;
        flex-wrap: wrap;
    }

    .p-autolease-items__thumb {
        width: 120px;
        height: 120px;
    }

    .p-autolease-merit-title {
        /* font-size: 2.4rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 3px;
        margin-bottom: 40px;
    }

    .p-autolease-merit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 4rem!important;
    }

    .p-autolease-merit-grid > .p-autolease-merit-card:nth-child(odd),
    .p-autolease-merit-grid > .p-autolease-merit-card:nth-child(even) {
        grid-column: 1;
    }

    .p-autolease-merit-grid--5 > .p-autolease-merit-card:nth-child(2),
    .p-autolease-merit-grid--4 > .p-autolease-merit-card:nth-child(2) {
        padding-top: 0;
    }

    .p-autolease-merit-grid > .p-autolease-merit-card:nth-child(even)::before {
        display: none;
    }

    .p-autolease-merit-card__icon img {
        width: 80px;
        height: 80px;
    }

    .p-autolease-merit-card__label {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-autolease-merit-card__number {
        /* font-size: 3.2rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-autolease-merit-card__heading {
        /* font-size: 2rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 1.5px;
    }

    .p-autolease-merit-card__text {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 2px;
    }

    .p-autolease-merit-more {
        border-radius: 20px;
        padding: 30px 20px 0;
    }

    .p-autolease-merit-more p {
        /* font-size: 2rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 2px;
    }

    .p-autolease-cars {
        flex-direction: column;
        align-items: center;
    }

    .p-autolease-rental-photos {
        flex-direction: column;
        align-items: center;
        margin-bottom: 50px;
    }

    .p-autolease-other-title {
        /* font-size: 2rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-autolease-sub-label {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-autolease-back {
        padding: 40px 20px;
    }

    .p-autolease-back__btn {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
        padding: 16px 24px;
    }

    #rental .p-autolease-items {
        
margin-bottom: 30px;
    }

    .p-autolease-sub-section {
        margin-top: 30px;
    }
}

/* ========================================
   Procurement (契約手続き) Page
   ======================================== */

.page-template-page-procurement-php .l-main {
    background: var(--color-bg-gray);
}

/* ---------- Lead Bar ---------- */

.p-procurement-lead {
    background: linear-gradient(90deg, #007bd0, #6bddef);
    height: 93px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-procurement-lead__text {
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.2em;
    text-align: center;
}

/* ---------- Main Content ---------- */

.p-procurement-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px 0 0;
}

.p-procurement-card {
    background: #fff;
    border-radius: 20px;
    padding: 100px;
    overflow: hidden;
}

.p-procurement-card__inner {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

/* ---------- Block ---------- */

.p-procurement-block {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

/* ---------- Section Title ---------- */

.p-procurement-title {
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.16em;
    padding-bottom: 18px;
    border-bottom: 3px solid var(--color-primary);
    display: block;
    width: fit-content;
    position: relative;
}

.p-procurement-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 100%;
    width: 2000px;
    height: 1px;
    background: var(--color-border);
}

/* ---------- Flowchart ---------- */

.p-procurement-flow {
    border-radius: 8px;
    overflow: hidden;
}

.p-procurement-flow img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- Notes ---------- */

.p-procurement-notes {
    list-style: disc;
    padding-left: 36px;
    margin: 0;
    font-size: var(--fz24);
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.15em;
    color: var(--color-text);
}

.p-procurement-notes li {
    margin-bottom: 0;
}

.p-procurement-notes a {
    color: var(--color-primary);
    text-decoration: underline;
}

.p-procurement-notes a:hover {
    text-decoration: none;
}

/* ---------- Back Button ---------- */

.p-procurement-back {
    padding: 6rem 2rem;
    text-align: center;
}

.p-procurement-back__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.p-procurement-back__btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-primary);
    color: #fff;
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    padding: 2rem 5rem;
    border-radius: 56px;
    letter-spacing: 0.1em;
    transition: all var(--transition);
}

.p-procurement-back__btn:hover {
    opacity: 1;
    background: var(--color-primary-dark);
}

.p-procurement-back__arrow {
    width: 16px;
    height: 14px;
    flex-shrink: 0;
}

/* ---------- Procurement Responsive ---------- */

@media (max-width: 1200px) {
    .p-procurement-content {
        padding: 100px 20px 0;
    }

    .p-procurement-card {
        padding: 60px;
    }
}

@media (max-width: 768px) {
    .p-procurement-content {
        padding: 60px 16px;
    }

    .p-procurement-card {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .p-procurement-card__inner {
        gap: 60px;
    }

    .p-procurement-block {
        gap: 24px;
    }

    .p-procurement-title {
        /* font-size: 2.4rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-procurement-notes {
        padding-left: 20px;
    }

    .p-procurement-lead {
        height: auto;
        padding: 16px 20px;
    }

    .p-procurement-lead__text {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-procurement-back__btn {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
        padding: 1.5rem 3rem;
    }

    .p-procurement-back {
        padding: 0 0 4rem;
    }

    .p-autolease-maintenance-diagram {
        margin: 5rem auto;
    }
}

/* ==========================================================================
   Rakuda-net お支払い・お届け・返品
   ========================================================================== */

/* ---------- Section ---------- */

.p-rakuda-payment-wrap {
    background: #dbf2f0;
    padding: 10rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 10rem;
    align-items: center;
}

.p-rakuda-section__inner {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

/* ---------- Title ---------- */

.p-rakuda-title {
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.48rem;
    margin-bottom: 3rem;
    display: block;
}

.p-rakuda-title .c-heading-line {
    margin-top: 1.4rem;
}

/* ---------- Lead ---------- */

.p-rakuda-lead {
    margin-bottom: 3rem;
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.48rem;
    line-height: 2;
    color: #1f1f1f;
}

.p-rakuda-lead__em {
    color: var(--color-primary);
    font-weight: 500;
}

.p-rakuda-lead__list {
    list-style: disc;
    padding-left: 1.5em;
    margin: 1.5rem 0;
}

.p-rakuda-lead__list li {
    margin-bottom: 1rem;
    font-size: var(--fz24);
    line-height: 2;
}

.p-rakuda-lead__list li strong {
    font-size: var(--fz24);
}

.p-rakuda-lead__sub {
    /* font-size: clamp(1.4rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 400;
    letter-spacing: 0.3rem;
}

.p-rakuda-lead__note {
    /* font-size: clamp(1.4rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 400;
    color: #646464;
    letter-spacing: 0.3rem;
    margin-top: 1rem;
}

/* ---------- Card (Accordion) ---------- */

.p-rakuda-card {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 3rem;
    overflow: hidden;
    max-width: 1000px;
}

.p-rakuda-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 3.5rem;
    min-height: 80px;
    cursor: pointer;
    user-select: none;
    transition: background var(--transition);
}

.p-rakuda-card__header:hover {
    background: rgba(0, 0, 0, 0.015);
}

.p-rakuda-card__title {
    /* font-size: clamp(1.4rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 700;
    color: #1E1E1E;
    letter-spacing: 0.42rem;
}

.p-rakuda-card__icon {
    /* font-size: clamp(1.8rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    color: var(--color-text-muted);
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform var(--transition);
}

.p-rakuda-card__body {
    padding: 0 3.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.p-rakuda-card.is-open .p-rakuda-card__body {
    padding-top: 1rem;
    padding-bottom: 3.5rem;
}

/* Card list */

.p-rakuda-card__list {
    list-style: disc;
    padding-left: 1.5em;
    margin-bottom: 1.5rem;
}

.p-rakuda-card__list li {
    margin-bottom: 0.8rem;
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.288rem;
    line-height: 1.8;
}

.p-rakuda-card__list a {
    color: var(--color-primary);
    font-weight: 700;
    /* font-size: clamp(1.05rem, 0.82rem + 0.61vw, 1.8rem); */
    font-size: var(--fz18);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.p-rakuda-card__list a:hover {
    text-decoration: none;
}

/* Plain list (no links) */

.p-rakuda-card__list--plain {
    list-style: disc;
    padding-left: 2.7rem;
}

.p-rakuda-card__list--plain li {
    /* font-size: clamp(1.4rem, 0.82rem + 0.61vw, 1.8rem); */
    font-size: var(--fz18);
    font-weight: 500;
    letter-spacing: 0.288rem;
    line-height: 1.8;
    color: var(--color-text);
}

/* Card text */

.p-rakuda-card__text {
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.288rem;
    line-height: 1.8;
    color: #1E1E1E;
    margin-bottom: 0.5rem;
}

.p-rakuda-card__note {
    font-size: var(--fz24);
    font-weight: 400;
    color: #646464;
    letter-spacing: 0.3rem;
    line-height: 1.8;
    margin-top: 0.3rem;
}

.p-rakuda-card__notes {
    margin-top: 2rem;
    /* font-size: clamp(1.4rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 400;
    color: #646464;
    letter-spacing: 0.3rem;
    line-height: 1.8;
}

.p-rakuda-card__notes p {
    margin-bottom: 0;
}

/* Emphasis */

.p-rakuda-card__em {
    color: var(--color-primary);
    font-weight: 700;
}

.p-rakuda-card__em--orange {
    color: #ff5900;
    /* font-size: clamp(1.63rem, 1.28rem + 0.95vw, 2.8rem); */
    font-size: var(--fz28);
    font-weight: 700;
    letter-spacing: 0.448rem;
}

/* Region & Area */

.p-rakuda-card__region {
    /* font-size: clamp(1.63rem, 1.28rem + 0.95vw, 2.8rem); */
    font-size: var(--fz28);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.448rem;
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
}

.p-rakuda-card__region:first-child {
    margin-top: 0;
}

.p-rakuda-card__area-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.p-rakuda-card__area-list li {
    font-size: var(--fz24);
    line-height: 2;
    letter-spacing: 0.36rem;
    color: #434343;
    margin-bottom: 0.3rem;
}

/* ---------- Contact ---------- */

.p-rakuda-contact {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border-light);
    /* font-size: clamp(1.4rem, 0.82rem + 0.61vw, 1.8rem); */
    font-size: var(--fz18);
    font-weight: 500;
    letter-spacing: 0.288rem;
    line-height: 1.8;
    color: #434343;
}

.p-rakuda-contact p {
    margin-bottom: 0.3rem;
}

/* ---------- CTA ---------- */

.p-rakuda-cta {
    background: var(--color-bg-gray);
}

.p-rakuda-cta__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.p-rakuda-cta__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.p-rakuda-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 390px;
    height: 79px;
    border-radius: 56px;
    /* font-size: clamp(1.6rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.32rem;
    text-decoration: none;
    transition: all var(--transition);
}

.p-rakuda-cta__btn:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.p-rakuda-cta__btn--primary {
    background: #fff;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.p-rakuda-cta__btn--primary:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
}

.p-rakuda-cta__btn--outline {
    background: #fff;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.p-rakuda-cta__btn--outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.p-rakuda-cta__arrow {
    line-height: 0;
    display: flex;
    align-items: center;
}

/* ---------- Rakuda Responsive ---------- */

@media (max-width: 768px) {
    .p-rakuda-payment-wrap {
        padding: 5rem 1.5rem;
        gap: 5rem;
    }

    .p-rakuda-title {
        /* font-size: 2rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-rakuda-card__header {
        padding: 1.5rem 1.8rem;
        min-height: 60px;
    }

    .p-rakuda-card__title {
        /* font-size: 1.5rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-rakuda-card__body {
        padding: 0 1.8rem;
    }

    .p-rakuda-card.is-open .p-rakuda-card__body {
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }

    .p-rakuda-card__region {
        /* font-size: 2rem; */ /* clamp で可変のためコメントアウト */
    }



    .p-rakuda-card__text {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.05em;
        line-height: 2;
    }

    .p-rakuda-card__note {
        /* font-size: 1.3rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.05em;
        /* font-size: 1.3rem; */
    }

    .p-rakuda-card__notes {
        /* font-size: 1.3rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.05em;
        /* font-size: 1.3rem; */
    }

    .p-rakuda-card__em {
        font-size: inherit;
    }

    .p-rakuda-lead {
        letter-spacing: 0.05em;
    }

    .p-rakuda-lead__note {
        /* font-size: 1.3rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.05em;
        /* font-size: 1.3rem; */
    }

    .p-rakuda-lead__sub {
        /* font-size: 1.3rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.05em;
        /* font-size: 1.3rem; */
    }

    .p-rakuda-lead__list li {
        letter-spacing: 0.05em;
    }

    .p-rakuda-cta__grid {
        flex-direction: column;
        align-items: center;
    }

    .p-rakuda-cta__btn {
        width: 100%;
        max-width: 390px;
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
        height: 60px;
        letter-spacing: 0.1em;
        gap: 2rem;
    }
}

/* ==========================================================================
   FAQ よくあるご質問
   ========================================================================== */

/* ---------- Layout ---------- */

.p-faq__inner {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

/* ---------- Category Header ---------- */

.p-faq-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
}

.p-faq-category__title {
    /* font-size: clamp(1.05rem, 0.82rem + 0.61vw, 1.8rem); */
    font-size: var(--fz18);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.1em;
}

.p-faq-category__icon {
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    color: var(--color-text-muted);
}

/* ---------- Section Heading ---------- */

.p-faq-heading {
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.15em;
    margin-top: 5rem;
    margin-bottom: 3rem;
    display: block;
}

.p-faq-heading .c-heading-line {
    margin-top: 0.8rem;
}

.p-faq-heading:first-of-type {
    margin-top: 0;
}

/* ---------- FAQ Item ---------- */

.p-faq-item {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 3rem;
    overflow: hidden;
}

.p-faq-item__header {
    display: flex;
    align-items: center;
    padding: 2.5rem 3.5rem;
    gap: 1rem;
    min-height: 80px;
    cursor: pointer;
    user-select: none;
    transition: background var(--transition);
}

.p-faq-item__header:hover {
    background: rgba(0, 0, 0, 0.015);
}

.p-faq-item__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-family: "Braah One", var(--font-family-en);
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 400;
    color: #fff;
    flex-shrink: 0;
}

.p-faq-item__badge--q {
    background: var(--color-primary);
}

.p-faq-item__badge--a {
    background: #ff5900;
}

.p-faq-item__question {
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 700;
    color: #1E1E1E;
    flex: 1;
    letter-spacing: 0.42rem;
    line-height: 1.6;
}

.p-faq-item__toggle {
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    color: var(--color-text-muted);
    flex-shrink: 0;
    margin-left: auto;
    line-height: 1;
    transition: transform var(--transition);
}

/* ---------- FAQ Item Body ---------- */

.p-faq-item__body {
    display: flex;
    padding: 0 3.5rem;
    gap: 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.p-faq-item.is-open .p-faq-item__body {
    padding-top: 0;
    padding-bottom: 3.5rem;
}

.p-faq-item__body > .p-faq-item__badge {
    margin-top: 0.2rem;
}

.p-faq-item__answer {
    flex: 1;
}

.p-faq-item__answer p {
    /* font-size: clamp(1.05rem, 0.82rem + 0.61vw, 1.8rem); */
    font-size: var(--fz18);
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.288rem;
    color: #1E1E1E;
    margin-bottom: 1rem;
}

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

.p-faq-item__sub-heading {
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 700;
    letter-spacing: 0.288rem;
    margin-top: 1rem;
}

/* ---------- FAQ Buttons ---------- */

.p-faq-item__btn {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 1rem;
    background: var(--color-primary);
    color: #fff;
    /* font-size: clamp(1.05rem, 0.82rem + 0.61vw, 1.8rem); */
    font-size: var(--fz18);
    font-weight: 500;
    letter-spacing: 0.36rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--color-primary);
    text-decoration: none;
    margin-top: 1rem;
    transition: all var(--transition);
}

.p-faq-item__btn:hover {
    background: #fff;
    color: var(--color-primary);
    opacity: 1;
}

.p-faq-item__btn:hover .p-faq-item__btn-icon {
    fill: var(--color-primary);
}

.p-faq-item__btn--link {
    background: var(--color-primary);
}

.p-faq-item__btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ---------- FAQ Responsive ---------- */

@media (max-width: 768px) {
    .p-faq-heading {
        /* font-size: 2rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-faq-item__header {
        padding: 1.5rem 1.8rem;
        gap: 0.8rem;
    }

    .p-faq-item__badge {
        width: 26px;
        height: 26px;
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-faq-item__question {
        /* font-size: 1.5rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.2rem;
    }

    .p-faq-item__body {
        padding: 0 1.8rem;
        gap: 0.8rem;
    }

    .p-faq-item.is-open .p-faq-item__body {
        padding-bottom: 2rem;
    }

    .p-faq-item__answer p {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-faq-item__btn {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
        padding: 0.5rem 1.2rem;
    }
}

/* ==========================================================================
   らくだネット 初めての方へ (p-first-)
   ========================================================================== */

/* --- 入門ガイドセクション --- */
.p-first-guide {
    overflow: hidden;
}

.p-first-guide__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    /* align-items: center; */
}

.p-first-guide__title {
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 0.48rem;
    display: block;
    width: fit-content;
    /* padding-bottom: 1.2rem; */
    position: relative;
    border-bottom: 3px solid var(--color-primary);
}

.p-first-guide__title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 2000px;
    height: 1px;
    background: var(--color-border);
    display: none;
}

.p-first-guide__desc {
    font-size: var(--fz24);
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.36rem;
    line-height: 2;
}

/* スライダーラッパー - 画面幅100% */
.p-first-guide__slider-wrap {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.p-first-guide__track {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 551px;
}

.p-first-guide__slide {
    --drag-offset: 0px;
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(calc(-50% + var(--drag-offset)), -50%);
    transition: all 0.5s ease;
    opacity: 0;
    pointer-events: none;
    width: 688px;
    max-width: 90vw;
    height: auto;
    aspect-ratio: 688 / 405;
}

.p-first-guide__slide.is-center {
    width: 934px;
    max-width: 90vw;
    height: auto;
    aspect-ratio: 934 / 551;
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
    transform: translate(calc(-50% + var(--drag-offset)), -50%);
}

.p-first-guide__slide.is-prev,
.p-first-guide__slide.is-next {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.p-first-guide__slide.is-prev {
    transform: translate(calc(-50% - 826px + var(--drag-offset)), -50%);
}

.p-first-guide__slide.is-next {
    transform: translate(calc(-50% + 826px + var(--drag-offset)), -50%);
}

.p-first-guide__slide-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--color-bg-gray);
    border-radius: 20px;
}

.p-first-guide__slide.is-prev::after,
.p-first-guide__slide.is-next::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    pointer-events: none;
}

/* スライダーナビゲーション */
.p-first-guide__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.p-first-guide__nav-prev,
.p-first-guide__nav-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-text);
    background: #fff;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 0;
}

.p-first-guide__nav-prev:hover,
.p-first-guide__nav-next:hover {
    background: var(--color-text);
    border-color: var(--color-text);
    color: #fff;
}

.p-first-guide__nav-prev:disabled,
.p-first-guide__nav-next:disabled {
    opacity: 0.3;
    cursor: default;
}

.p-first-guide__nav-page {
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.48rem;
    min-width: 8rem;
    text-align: center;
}

/* PDFボタン */
.p-first-guide__pdf-btn {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
    width: 390px;
    height: 79px;
    border: 2px solid var(--color-primary);
    border-radius: 56px;
    color: var(--color-primary);
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.24rem;
    text-decoration: none;
    transition: var(--transition);
}

.p-first-guide__pdf-btn:hover {
    background: var(--color-primary);
    color: #fff;
}

.p-first-guide__pdf-arrow {
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    display: flex;
    align-items: center;
}

/* --- ご利用までの流れセクション --- */
.p-first-flow__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow: hidden;
}

.p-first-flow__inner > .p-rakuda-title {
    /* align-self: center; */
}

.p-first-flow__em {
    color: #ff5900;
    /* font-size: 1.9rem; */
    font-weight: 500;
}

.p-first-flow__doc-list {
    list-style: disc;
    padding-left: 2.7rem;
    margin-top: 1.5rem;
}

.p-first-flow__doc-list li {
    margin-bottom: 0.4rem;
}

.p-first-flow__doc-list a {
    color: var(--color-primary);
    text-decoration: underline;
}

.p-first-flow__doc-list a:hover {
    color: var(--color-primary-dark);
}

/* --- お申し込み後の流れ (STEP1-3) --- */
.p-first-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.p-first-steps__item {
    flex: 1;
    /* min-width: 280px; */
    text-align: center;
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.p-first-steps__label {
    /* font-size: clamp(1.4rem, 0.73rem + 0.54vw, 1.6rem); */
    font-size: var(--fz16);
    font-weight: 500;
    color: #000;
    letter-spacing: 0.256rem;
}

.p-first-steps__name {
    /* font-size: clamp(1.6rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 700;
    color: #000;
    letter-spacing: 0.384rem;
}

.p-first-steps__icon {
    height: 135px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.p-first-steps__icon img {
    max-height: 135px;
    width: auto;
    object-fit: contain;
}

.p-first-steps__desc {
    /* font-size: clamp(1.4rem, 0.73rem + 0.54vw, 1.6rem); */
    font-size: var(--fz16);
    font-weight: 500;
    color: #000;
    text-align: left;
}

.p-first-steps__em {
    color: #ff5900;
    font-weight: 500;
}

.p-first-steps__arrow {
    color: var(--color-text);
    align-self: center;
    flex-shrink: 0;
    padding: 0 0.5rem;
    line-height: 0;
    margin-top: 5rem;
}

/* --- カタログ請求ボタン --- */
.p-first-catalog {
    text-align: center;
    margin-top: 3rem;
}

.p-first-catalog__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 3rem;
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    color: var(--color-primary);
    /* font-size: clamp(1.6rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.288rem;
    text-decoration: none;
    transition: var(--transition);
    background-color: white;
}

.p-first-catalog__btn:hover {
    background: var(--color-primary);
    color: #fff;
}

.p-first-catalog__icon {
    width: 24px;
    height: 24px;
}

.p-first-catalog__arrow {
    /* font-size: clamp(1.0rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    display: flex;
}

span.p-first-catalog__arrow {}

.p-first-catalog__notice {
    margin-top: 0rem;
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 2rem 2rem;
    font-size: var(--fz20);
    background-color: #ffffffcc;
    line-height: 2;
}
.p-first-catalog__notice .p-first-catalog__notice_inner {
    text-align: left;
    text-align: center;
}
.p-first-catalog__notice a {
    color: var(--color-primary);
    text-decoration: underline;
}

.p-first-catalog__notice a:hover {
    text-decoration: none;
}

.p-first-catalog__notice-note {
    font-size: var(--fz18);
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
    .p-first-guide__inner {
        padding: 2rem 2rem;
        gap: 2rem;
    }

    .p-first-guide__title {
        /* font-size: 2.2rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.3rem;
    }

    .p-first-guide__desc {
        letter-spacing: 0.05em;
    }

    .p-first-guide__track {
        gap: 1.5rem;
        height: auto;
        aspect-ratio: 934 / 551;
        max-height: 300px;
    }

    .p-first-guide__slide--center {
        width: 280px;
        height: 165px;
    }

    .p-first-guide__slide--side {
        width: 200px;
        height: 120px;
    }

    .p-first-guide__nav-page {
        /* font-size: 1.8rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-first-guide__pdf-btn {
        width: 100%;
        max-width: 280px;
        height: 55px;
        font-size: 1.5rem;
    }

    .p-first-steps {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .p-first-steps__arrow {
        transform: rotate(90deg);
        margin-top: 0;
    }

    .p-first-steps__item {
        min-width: auto;
        padding: 0;
        gap: 2rem;
    }

    .p-first-steps__desc {
        text-align: center;
    }

    .p-first-catalog__btn {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
        padding: 1.3rem 3rem;
    }

    .p-first-guide__slider-wrap {
        gap: 2rem;
    }

    .p-first-flow__inner {
        gap: 1rem;
        padding: 0 0rem;
    }
    .p-rakuda-card {
        margin-bottom: 2rem;
    }
    .p-first-steps__icon img {
        max-height: 100px;
    }
    .p-first-steps__icon {
        height: auto;
    }
}

/* ==========================================================================
   Service Page (p-service-)
   ========================================================================== */

/* ── アンカーナビ ── */
.p-service-nav {
    background: #f7f7f0;
    padding: 10rem 0;
    /* display: none; */
}

.p-service-nav__inner {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    padding: 0 2rem;
}

.p-service-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    width: 400px;
    min-height: 80px;
    padding: 2rem 3rem;
    border: 2px solid var(--color-primary);
    border-radius: 56px;
    color: var(--color-primary);
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.24rem;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    background-color: white;
}

.p-service-nav__link:hover {
    background: var(--gradient-primary);
    /* border-color: transparent; */
    color: #fff;
}

.p-service-nav__link:hover .p-service-nav__arrow img {
    filter: brightness(0) invert(1);
}

.p-service-nav__arrow {
    /* font-size: clamp(1.05rem, 0.82rem + 0.61vw, 1.8rem); */
    font-size: var(--fz18);
    line-height: 1;
}

.page-template-page-service .p-page-hero__heading-en,
.page-template-page-service .p-page-hero__heading-ja {
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
}

/* ── セクション共通 ── */
.p-service-section {
    padding: 10rem 0 0;
    background: #f7f7f0;
    overflow: clip;
}

.p-service-section--light {
    background: #e9f2ef;
}

.p-service-section__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.p-service-section__en {
    text-align: center;
    font-family: var(--font-family-en);
    /* font-size: clamp(2.8rem, 2.2rem + 1.62vw, 4.8rem); */
    font-size: var(--fz48);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.p-service-section--light .p-service-section__en {
    /* font-size: 6.3rem; */
    font-size: var(--fz63);
    font-weight: 700;
    letter-spacing: 1.575rem;
}

.p-service-section__ja {
    text-align: center;
    /* font-size: clamp(1.6rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    color: var(--color-primary);
    letter-spacing: 0.48rem;
    margin-bottom: 4rem;
}

/* ── What is カード ── */
.p-service-whatis {
    background: #fff;
    border-radius: 20px;
    padding: 5rem 4rem 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    gap: 1rem;
    margin-bottom: 0rem;
    overflow: hidden;
    margin-top: 10rem;
    max-width: 1200px;
}

#rakudanet .p-service-whatis {

margin-top: 4rem;
    
padding-bottom: 2rem;
}
#rakudanet .p-service-section__inner {

padding-bottom: 11rem;
}

#trainbox .p-service-whatis {
    margin-top: 4rem;
    padding: 4rem 4rem;
}

#trainbox .p-service-shop--has-illust .p-service-shop__illust {
    right: -5rem;
    bottom: 0;
}
.p-service-whatis__header {
    text-align: center;
}

.p-service-whatis__content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
}

.p-service-whatis__logo {
    flex: 0 0 425px;
    border-radius: 20px;
    overflow: hidden;
}

.p-service-whatis__logo img {
    width: 100%;
    height: auto;
}

.p-service-whatis__body {
    flex: 1;
    min-width: 0;
}

.p-service-whatis__label {
    font-family: var(--font-family-en);
    /* font-size: clamp(1.4rem, 0.73rem + 0.54vw, 1.6rem); */
    font-size: var(--fz16);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.24rem;
    margin-bottom: 0.5rem;
    text-align: left;
    line-height: 1.2;
}

.p-service-whatis__title {
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.48rem;
}

#trainbox .p-service-whatis__title,
#dwmall .p-service-whatis__title {
    font-weight: 700;
}

#dwmall {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

#dwmall .p-service-section__inner {
    max-width: 1800px;
}

.p-service-whatis__text {
    font-size: var(--fz24);
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.36rem;
    color: var(--color-text);
}

/* ── らくだねット 4つの魅力 ── */
.p-service-appeal {
    background: #f7f7f0;
    border-radius: 20px;
    padding: 10rem 2rem 8rem;
    margin-bottom: 2rem;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.p-service-appeal__heading {
    text-align: center;
    /* font-size: 6.3rem; */
    font-size: var(--fz63);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.945rem;
    margin-bottom: 9rem;
}

.p-service-appeal__grid {
    display: flex;
    gap: 5vw;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1230px;
    margin: 0 auto;
    row-gap: 0;
}

.p-service-appeal__item {
    background: #fff;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    width: 565px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.p-service-appeal__item:nth-child(odd) {
    margin-bottom: 13rem;
}

.p-service-appeal__item:nth-child(even) {
    margin-top: 15rem;
}

.p-service-appeal__header {
    display: flex;
    gap: 1.6rem;
    align-items: flex-end;
}

.p-service-appeal__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.p-service-appeal__num {
    display: inline-block;
    font-family: var(--font-family);
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    color: #007bd0;
    letter-spacing: 0.24rem;
}

.p-service-appeal__title {
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 700;
    color: #007bd0;
    letter-spacing: 0.32rem;
    line-height: 1.5;
}

.p-service-appeal__icon {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
}

.p-service-appeal__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.p-service-appeal__text {
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.48rem;
    line-height: 1.5;
    color: var(--color-text);
}

/* ── ログインセクション ── */
.p-service-login {
    background: #fff;
    border-radius: 20px;
    padding: 9rem 15rem;
    text-align: center;
    margin-bottom: 10rem;
}

.p-service-login__title {
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.48rem;
    margin-bottom: 2.5rem;
}

.p-service-login__sub {
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    color: #1B1B1B;
    letter-spacing: 0.384rem;
    margin-bottom: 8.6rem;
}

.p-service-login__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5.4rem;
}

.p-service-login__card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 3rem 2rem;
    border: 3px solid var(--color-primary);
    border-radius: 16px;
    background: #fff;
    text-decoration: none;
    transition: var(--transition);
    justify-content: space-between;
}

.p-service-login__card:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.p-service-login__card:hover .p-service-login__card-label,
.p-service-login__card:hover .p-service-login__card-btn {
    color: #fff;
}

.p-service-login__card:hover .p-service-login__card-btn svg {
    stroke: #fff;
}

.p-service-login__card-label {
    /* font-size: clamp(1.4rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.4rem;
    text-align: left;
    transition: color var(--transition);
}

.p-service-login__card-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    font-size: var(--fz24);
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.24rem;
    transition: color var(--transition);
}

.p-service-login__card-btn svg {
    width: 24px;
    height: 24px;
    transition: stroke var(--transition);
}

/* ── CTA ボタン ── */
.p-service-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 3.4rem 3rem;
    max-width: 810px;
    margin: 0 auto;
    justify-content: center;
}

.p-service-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 390px;
    height: 79px;
    border-radius: 56px;
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.24rem;
    text-decoration: none;
    transition: var(--transition);
}

.p-service-cta__btn--primary {
    background: var(--gradient-primary);
    color: #fff;
    border: 2px solid transparent;
}

.p-service-cta__btn--primary:hover {
    background: #fff;
    color: var(--color-primary);
    border-color: var(--color-primary);
    opacity: 1;
}

.p-service-cta__btn--outline {
    background: #fff;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.p-service-cta__btn--outline:hover {
    background: var(--gradient-primary);
    border: none;
    color: #fff;
}

.p-service-cta__arrow {
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    line-height: 1;
}

.p-service-cta__arrow img {
    transition: filter var(--transition);
}

.p-service-cta__btn--primary .p-service-cta__arrow img {
    filter: brightness(0) invert(1);
}

.p-service-cta__btn--primary:hover .p-service-cta__arrow img {
    filter: none;
}

.p-service-cta__btn--outline:hover .p-service-cta__arrow img {
    filter: brightness(0) invert(1);
}

/* ── Follow Us SNS ── */
.p-service-sns {
    text-align: center;
    margin-bottom: 0rem;
    padding: 3rem 0;
}

.p-service-sns__label {
    font-family: var(--font-family-en);
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0rem;
}

.p-service-sns__icons {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    background: #dbf2f0;
    padding: 2.5rem 4rem;
    border-radius: 40px;
}

.p-service-sns__text {
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.24rem;
}

.p-service-sns__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #215576;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.p-service-sns__icon:hover {
    opacity: 0.7;
}

/* ── ONLINE SHOP ── */
.p-service-shop {
    text-align: center;
    margin-bottom: 5rem;
    padding-bottom: 11rem;
}

.p-service-shop__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: var(--font-family-en);
    /* font-size: 5.6rem; */
    font-size: var(--fz56);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 1.12rem;
    margin-bottom: 5rem;
    margin-top: 11rem;
}

.p-service-shop__icon {
    width: 95px;
    height: 95px;
    flex-shrink: 0;
}

.p-service-shop__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    max-width: 900px;
    margin: 0 auto;
}

.p-service-shop__grid--single {
    grid-template-columns: 1fr;
    max-width: 400px;
}

.p-service-shop__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 5rem;
    height: 110px;
    border: 1px solid black;
    border-radius: 80px;
    background: #fff;
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 700;
    letter-spacing: 0.32rem;
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
}

#dwmall .p-service-shop__heading {
margin-top: 17rem;
}

#dwmall .p-service-shop__btn {

width: 506px;

max-width: 90%;
}

#dwmall {
    .p-service-shop {
        margin-bottom: 0;
    }
    .p-service-shop__grid {
        display: flex;
        justify-content: center;
    }
    .p-service-shop__grid--single {
        max-width: none;
    }
}

.p-service-shop__btn:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

.p-service-shop__btn:hover .p-service-shop__arrow {
    color: #fff;
}

.p-service-shop__btn:hover .p-service-shop__arrow img {
    filter: brightness(0) invert(1);
}

.p-service-shop__btn--stacked {
    flex-wrap: nowrap;
}

.p-service-shop__btn-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-service-shop__btn-sub {
    /* font-size: clamp(1.4rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    font-weight: 500;
    letter-spacing: 0.14rem;
}

.p-service-shop__arrow {
    display: flex;
    align-items: center;
    color: var(--color-primary);
    /* font-size: clamp(1.05rem, 0.82rem + 0.61vw, 1.8rem); */
    font-size: var(--fz18);
    transition: color var(--transition);
}

.p-service-shop__arrow img {
    display: block;
}

#trainbox .p-service-shop__btn {
    padding: 5rem;
    height: 80px;
    font-size: 3.1rem;
    line-height: 1.4;
}

/* ── トレインボックス 4つの魅力 ── */
.p-service-tb-appeal {
    background: #fff;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 14rem 6rem 16rem;
}

.p-service-tb-appeal__heading {
    text-align: center;
    /* font-size: 6.3rem; */
    font-size: var(--fz63);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.945rem;
    margin-bottom: 8rem;
    /* margin-top: 15rem; */
}

.p-service-tb-appeal__item {
    display: flex;
    align-items: center;
    gap: 7%;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto 10rem;
}

.p-service-tb-appeal__item--reverse {
    flex-direction: row-reverse;
}

.p-service-tb-appeal__item:nth-child(3) {
    gap: 10%;
    margin-bottom: 17rem;
}
.p-service-tb-appeal__item:nth-child(3) .p-service-tb-appeal__image {
    flex: 0 0 46%;
}
.p-service-tb-appeal__item:nth-child(4) {
    gap: 22%;
    margin-bottom: 18rem;
}
.p-service-tb-appeal__item:nth-child(4) .p-service-tb-appeal__image {
    flex: 0 0 40%;
}

.p-service-tb-appeal__item:nth-child(5) .p-service-tb-appeal__image {
    flex: 0 0 53%;
}

.p-service-tb-appeal__image {
    position: relative;
    flex: 0 0 56%;
    border-radius: 16px;
    overflow: visible;
}

.p-service-tb-appeal__image img {
    width: 100%;
    height: auto;
    display: block;
    /* border-radius: 16px; */
}

.p-service-tb-appeal__body {
    flex: 1;
    min-width: 0;
}

.p-service-tb-appeal__num {
    display: inline-block;
    font-family: var(--font-family);
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    color: #007BD0;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.p-service-tb-appeal__title {
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 700;
    color: #007BD0;
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin-bottom: 3.5rem;
}

.p-service-tb-appeal__text {
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 1.5;
    color: var(--color-text);
}

/* ── ico-chan 吹き出し ── */
.p-service-tb-appeal__bubble-img {
    position: absolute;
    top: 2rem;
    left: 0rem;
    width: 269px!important;
    height: auto;
    z-index: 2;
}

/* ── ONLINE SHOP イラスト ── */
.p-service-shop--has-illust {
    position: relative;
}

.p-service-shop--has-illust .p-service-shop__illust {
    position: absolute;
    right: 15vw;
    bottom: 6rem;
    width: 176px;
}

.p-service-shop__illust img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── お問い合わせボタン ── */
.p-service-contact-btn {
    text-align: center;
    margin-top: 4rem;
}

.p-service-contact-btn__link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 2.1rem 4rem;
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    background: #fff;
    color: var(--color-primary);
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    width: 536px;
    max-width: 90%;
    justify-content: space-between;
}

.p-service-contact-btn__link:hover {
    background: var(--color-primary);
    color: #fff;
}

.p-service-contact-btn__link:hover .p-service-contact-btn__arrow {
    filter: brightness(0) invert(1);
}

.p-service-contact-btn__link:hover svg {
    stroke: #fff;
}

.p-service-contact-btn__arrow {
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    line-height: 1;
}

/* ── Service タブレット (769px–1200px) ── */
@media (max-width: 1200px) and (min-width: 769px) {
    .p-service-nav {
        padding: 6rem 0;
    }

    .p-service-nav__inner {
        gap: 1.5rem;
    }

    .p-service-nav__link {
        width: auto;
        flex: 1;
        min-height: 60px;
        padding: 1.5rem 2rem;
        /* font-size: 1.8rem; */
        letter-spacing: 0.1rem;
    }

    .p-service-section {
        padding: 6rem 0 0;
    }

    .p-service-section__inner {
        max-width: 960px;
        padding: 0 3rem;
    }

    .p-service-section__en {
        /* font-size: 3.6rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.6rem;
    }

    .p-service-section--light .p-service-section__en {
        font-size: 4.2rem;
        letter-spacing: 0.8rem;
    }

    .p-service-section__ja {
        /* font-size: 2rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.3rem;
        margin-bottom: 2rem;
    }

    .p-service-whatis {
        padding: 3.5rem 3rem 3rem;
        margin-top: 4rem;
    }

    #rakudanet .p-service-whatis {
        margin-top: 3rem;
    }

    .p-service-whatis__logo {
        flex: 0 0 240px;
    }

    .p-service-whatis__title {
        /* font-size: 2.4rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.3rem;
    }

    .p-service-whatis__text {
        letter-spacing: 0.08em;
        line-height: 1.8;
    }

    #trainbox .p-service-whatis__title,
    #dwmall .p-service-whatis__title {
        /* font-size: 2.4rem; */
    }

    .p-service-appeal {
        padding: 6rem 6rem 4rem;
    }

    .p-service-appeal__heading {
        /* font-size: 3.6rem; */
        letter-spacing: 0.4rem;
        margin-bottom: 4rem;
    }

    .p-service-appeal__grid {
        gap: 3rem;
        row-gap: 0;
    }

    .p-service-appeal__item {
        width: calc(50% - 1.5rem);
        padding: 2.5rem;
        gap: 2rem;
    }

    .p-service-appeal__item:nth-child(odd) {
        margin-bottom: 6rem;
    }

    .p-service-appeal__item:nth-child(even) {
        margin-top: 6rem;
    }

    .p-service-appeal__icon {
        width: 100px;
        height: 100px;
    }

    .p-service-appeal__num {
        /* font-size: 1.8rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-service-appeal__title {
        /* font-size: 2.2rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.15rem;
    }

    .p-service-appeal__text {
        letter-spacing: 0.08em;
    }

    .p-service-login {
        padding: 5rem 4rem;
        margin-bottom: 6rem;
    }

    .p-service-login__title {
        /* font-size: 2.2rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.2rem;
    }

    .p-service-login__sub {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.15rem;
        margin-bottom: 4rem;
    }

    .p-service-login__grid {
        gap: 2.5rem;
    }

    .p-service-login__card-label {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.15rem;
    }

    .p-service-login__card-btn {
        /* font-size: 1.8rem; */ /* clamp で可変のためコメントアウト */
    }

    #rakudanet .p-service-section__inner {
        padding-bottom: 6rem;
    }

    .p-service-cta {
        gap: 2rem;
        max-width: 700px;
    }

    .p-service-cta__btn {
        width: calc(50% - 1rem);
        height: 65px;
        /* font-size: 1.8rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.1rem;
    }

    .p-service-sns__text {
        /* font-size: 1.8rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-service-sns__icons {
        padding: 2rem 3rem;
        gap: 1.5rem;
    }

    .p-service-sns__icon {
        width: 40px;
        height: 40px;
    }

    .p-service-shop__heading {
        /* font-size: 3.6rem; */
        letter-spacing: 0.6rem;
        margin-top: 6rem;
        margin-bottom: 3rem;
    }

    .p-service-shop__icon {
        width: 60px;
        height: 60px;
    }

    .p-service-shop__btn {
        padding: 2rem 3rem;
        height: 80px;
        font-size: 2.2rem;
    }

    #trainbox .p-service-shop__btn {
        padding: 2rem 3rem;
        height: 70px;
        font-size: 2.2rem;
    }

    .p-service-shop--has-illust .p-service-shop__illust {
        right: 2rem;
        bottom: 2rem;
        width: 120px;
    }

    #trainbox .p-service-shop--has-illust .p-service-shop__illust {
        right: 0;
        bottom: 0;
    }

    .p-service-shop {
        padding-bottom: 6rem;
    }

    .p-service-tb-appeal {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .p-service-tb-appeal__heading {
        /* font-size: 3.6rem; */
        letter-spacing: 0.4rem;
        margin-bottom: 5rem;
    }

    .p-service-tb-appeal__item {
        gap: 4%;
        margin: 0 auto 5rem;
        max-width: 960px;
        padding: 0 3rem;
    }

    .p-service-tb-appeal__item:nth-child(3) {
        gap: 6%;
        margin-bottom: 5rem;
    }

    .p-service-tb-appeal__item:nth-child(4) {
        gap: 6%;
        margin-bottom: 5rem;
    }

    .p-service-tb-appeal__item:nth-child(3) .p-service-tb-appeal__image,
    .p-service-tb-appeal__item:nth-child(4) .p-service-tb-appeal__image,
    .p-service-tb-appeal__item:nth-child(5) .p-service-tb-appeal__image {
        flex: 0 0 48%;
    }

    .p-service-tb-appeal__image {
        flex: 0 0 48%;
    }

    .p-service-tb-appeal__body {
        flex: 1;
    }

    .p-service-tb-appeal__num {
        /* font-size: 1.8rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-service-tb-appeal__title {
        /* font-size: 2.2rem; */ /* clamp で可変のためコメントアウト */
        margin-bottom: 2rem;
    }

    .p-service-tb-appeal__text {
        letter-spacing: 0.08em;
    }

    .p-service-tb-appeal__bubble-img {
        width: 180px !important;
    }

    .p-service-contact-btn__link {
        padding: 1.5rem 4rem;
        /* font-size: 1.8rem; */ /* clamp で可変のためコメントアウト */
    }

    #dwmall .p-service-section__inner {
        max-width: 960px;
    }

    #dwmall .p-service-shop__heading {
        margin-top: 8rem;
    }

    #dwmall .p-service-shop__btn {
        width: 400px;
    }
}




@media (max-width: 820px) and (min-width: 769px) {
    .p-home-business__num {
        line-height: 1.0;
    }

    .p-home-business__row {
        gap: 2vw;
    }
    .p-home-business__link {
        row-gap: 0.1rem;
        padding: 1rem 1rem;
    }
    .p-home-business__name {
        font-size: 1.8em;
    }
    .p-home-cta__banner {
        min-height: 33.3vw;
    }

    .p-footer-nav {
        gap: 5vw;
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 5vw;
    }
    .p-footer-nav__column {
        min-width: 180px;
        max-width: 230px;
    }
    .l-footer__nav-area {
        padding: 6rem 2rem;
    }
    .p-footer-nav__heading {
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
    }
    .p-footer-cta__button {
        padding: 4rem 5rem;
    }


    .p-biz-flow__after--icons {
        max-width: 100%;
        gap: 3vw;
    }


    .p-procurement-content {
        padding-top: 6rem;
    }
    .p-biz-rakuda__inner {
        gap: 20px;
        padding: 30px 20px;
    }

    .p-biz-section__body {
        padding: 0 40px;
        gap: 60px;
    }
    .p-biz-ec-box {
        padding: 50px 30px;
    }
    .p-biz-section__inner {
        padding: 40px ;
    }
    .p-biz-docs__list--grid {
        gap: 10px 10px;
    }

    #trainbox .p-service-shop--has-illust .p-service-shop__illust {
        bottom: 130px;
    }

    .u-section {
        padding: 70px 60px;
    }
    .p-biz-products__list {
        padding: 30px 10px 30px 40px;
    }

        .p-home-service__grid {
        gap: 1vw;
    }
    .p-autolease-items__grid {
        flex-wrap: wrap;
        
    }
    #rental.p-autolease-card {
        padding: 40px 80px;
    }

    .l-main {
        min-height: auto;
    }
    .p-biz-ec-box__row {
        flex-wrap: wrap;
    }

    .p-biz-flow__after-icon {
        width: 150px;
    }
    .p-biz-flow__arrow img {
        width: 15px;
    }
    .p-autolease-merit-card {
        margin-bottom: 50px;
    }
    #autolease .p-autolease-merit-grid {
        margin-bottom: 50px;
    }
    .p-autolease-lead {
        margin-bottom: 50px;
    }
    #rental .p-autolease-merit-grid {
        margin-bottom: 50px;
    }
    .p-autolease-back {
        padding: 50px 20px ;
    }
    .p-autolease-card--blue {
        padding: 80px;
    }
    .p-first-flow__inner {
        gap: 0;
    }
    .p-first-guide__track {
        height: 400px;
    }
    .p-sust-nav__link {
        width: 600px!important;
    }
    .p-sust-nav__link--wide {
        width: 600px!important;
    }
    .p-sust-health__inner ,.p-sust-privacy__inner {
        padding: 8rem 6rem 3rem!important;
    }
    .p-sust-nav {
        gap: 2rem!important;
    }
    .p-news-filter {
        padding: 8rem 2rem 5rem;
    }

}

/* ── Service レスポンシブ ── */
@media (max-width: 768px) {
    .p-service-nav {
        padding: 3rem 0 0rem;
        /* display: block; */
        display: none;
    }

    .p-service-nav__inner {
        flex-direction: column;
        gap: 1rem;
    }

    .p-service-nav__link {
        width: 100%;
        min-height: auto;
        padding: 1.2rem 1.5rem;
        /* font-size: 1.4rem; */
        letter-spacing: 0.1rem;
    }

    .p-service-section {
        padding: 0rem 0;
    }

    .p-service-section__en {
        /* font-size: 2.4rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.5rem;
    }

    .p-service-section--light .p-service-section__en {
        /* font-size: 3rem; */
        /* font-size: var(--fz30); */
        letter-spacing: 0.15rem;
    }

    .p-service-section__ja {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-service-whatis {
        padding: 3rem 2rem 2rem!important;
        gap: 1rem;
        margin-top: 4rem;
    }

    .p-service-whatis__content {
        flex-direction: column;
    }

    .p-service-whatis__logo {
        flex: none;
        width: 300px;
    }

    .p-service-whatis__title {
        /* font-size: 2rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.2rem;
    }

    .p-service-whatis__text {
        letter-spacing: 0.15rem;
    }

    .p-service-appeal {
        padding: 4rem 1.5rem 2rem;
        border-radius: 12px;
    }

    .p-service-appeal__heading {
        /* font-size: 2rem; */
        letter-spacing: 0.3rem;
        margin-bottom: 2rem;
    }

    .p-service-appeal__grid {
        flex-direction: column;
        gap: 2rem;
    }

    .p-service-appeal__item {
        width: 100%;
        gap: 2rem;
        margin-bottom: 0!important;
    }

    .p-service-appeal__item:nth-child(even) {
        margin-top: 0;
    }

    .p-service-appeal__header {
        flex-direction: row;
        align-items: flex-start;
    }

    .p-service-appeal__icon {
        width: 100px;
        height: 100px;
    }

    .p-service-appeal__num {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-service-appeal__title {
        /* font-size: 2rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-service-appeal__text {
        letter-spacing: 0.2rem;
    }

    .p-service-login {
        padding: 4rem 2rem;
        margin-bottom: 3rem;
    }

    .p-service-login__title {
        /* font-size: 2rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.2rem;
    }

    .p-service-login__sub {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.15rem;
        margin-bottom: 3rem;
    }

    .p-service-login__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .p-service-login__card-label {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-service-login__card-btn {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-service-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .p-service-cta__btn {
        width: 100%;
        height: auto;
        padding: 1.4rem 1.5rem;
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.1rem;
    }

    .p-service-sns__icons {
        padding: 1.5rem 2rem;
        gap: 1rem;
    }

    .p-service-sns__text {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-service-sns__label {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-service-sns__icon {
        width: 36px;
        height: 36px;
    }

    .p-service-shop__heading {
        /* font-size: 2.4rem; */
        letter-spacing: 0.4rem;
        margin-top: 4rem!important;
        margin-bottom: 3rem;
    }

    .p-service-shop__icon {
        width: 40px;
        height: 40px;
    }

    .p-service-shop__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .p-service-shop__btn {
        padding: 1.5rem 2rem;
        height: auto;
        /* font-size: 1.6rem; */
        border-radius: 150px;
    }

    .p-service-tb-appeal__heading {
        /* font-size: 2rem; */
        letter-spacing: 0.3rem;
    }

    .p-service-tb-appeal__item,
    .p-service-tb-appeal__item--reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .p-service-tb-appeal__image {
        flex: none;
        width: 100%;
    }

    .p-service-tb-appeal__bubble-img {
        position: absolute;
        width: 46%!important;
        display: block!important;
        margin: -1rem auto 0;
    }

    .p-service-shop--has-illust .p-service-shop__illust {
        position: static;
        width: 120px;
        margin: 2rem auto 0;
    }

    .p-service-tb-appeal__title {
        /* font-size: 2rem; */ /* clamp で可変のためコメントアウト */
        margin-bottom: 2rem;
    }

    .p-service-tb-appeal__text {
        letter-spacing: 0.05em;
    }

    .p-service-tb-appeal__num {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-service-tb-appeal__heading {
        margin-bottom: 3rem;
    }

    .p-service-tb-appeal__item {
        margin-bottom: 5rem;
    }

    .p-service-tb-appeal__item:nth-child(3),
    .p-service-tb-appeal__item:nth-child(4),
    .p-service-tb-appeal__item:nth-child(5) {
        margin-bottom: 5rem;
        gap: 0rem;
    }

    .p-service-tb-appeal__item:nth-child(3) .p-service-tb-appeal__image,
    .p-service-tb-appeal__item:nth-child(4) .p-service-tb-appeal__image,
    .p-service-tb-appeal__item:nth-child(5) .p-service-tb-appeal__image {
        flex: none;
        width: 100%;
        margin-bottom: 1rem;
    }

    .p-service-whatis__text {
        letter-spacing: 0.05rem;
    }

    .p-service-contact-btn__link {
        padding: 1.2rem 3rem;
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
        border-width: 2px;
    }

    .p-service-contact-btn__icon {
        width: 24px;
        height: auto;
    }

    .p-service-contact-btn__arrow {
        width: 12px;
        height: auto;
    }

    .p-service-tb-appeal {
        padding: 4rem 2rem;
    }

    #dwmall .p-service-section__inner {
        max-width: none;
        padding-top: 2rem;
    }

    #trainbox .p-service-shop__btn {
        padding: 1.5rem 2rem;
        height: auto;
        font-size: 1.6rem!important;
        gap: 3rem;
    }

    .p-service-section__inner {
        padding: 4rem 2rem 2rem;
    }

    #rakudanet .p-service-section__inner {
        padding-bottom: 5rem;
    }

    .p-service-whatis__header {
        text-align: left;
    }

    .p-service-login__card {
        padding: 2rem 1.5rem;
    }

    .p-service-shop {
        padding-bottom: 0rem;
        margin-bottom: 3rem;
    }

    .p-service-tb-appeal__image img {
        width: 70%;
        margin: 0 0 0 auto;
    }

    .p-service-tb-appeal__item1 .p-service-tb-appeal__image img {
        width: 100%;
        margin: 0 0 0 auto;
    }

    .p-service-tb-appeal__item4 .p-service-tb-appeal__image img {
        width: 100%;
        margin: 0 0 0 auto;
    }

    .p-service-shop__btn-sub {
        line-height: 1.3;
    }
}

/* ==========================================================================
   Sustainability Page (p-sust-)
   ========================================================================== */

/* ── SUSTAINABILITY OVERVIEW ── */
.p-sust-overview {
    background: #dbf2f0;
    padding: 6.2rem 0 3rem;
}

.p-sust-overview__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.p-sust-overview__en {
    /* font-size: clamp(2.8rem, 2.2rem + 1.62vw, 4.8rem); */
    font-size: var(--fz48);
    font-weight: 500;
    color: #0275be;
    letter-spacing: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.p-sust-overview__ja {
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    color: #0275be;
    letter-spacing: 0.48rem;
    margin-bottom: 4rem;
}

/* ── アンカーナビ ── */
.p-sust-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 8rem;
    /* display: none; */
}

.p-sust-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 395px;
    height: 79px;
    padding: 0 3.4rem;
    border: 2px solid #0275be;
    border-radius: 56px;
    background: #fff;
    color: #0275be;
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.24rem;
    text-decoration: none;
    transition: var(--transition);
    /* box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15); */
    white-space: nowrap;
    /* transition: 0.5s; */
}

.p-sust-nav__link--active {
    background: linear-gradient(to right, #0275be, #6bddef);
    border-color: transparent;
    color: #fff;
}

.p-sust-nav__link--active .p-sust-nav__arrow img {
    filter: brightness(0) invert(1);
    transition: filter var(--transition);
}

.p-sust-nav__link--wide {
    width: 820px;
}

.p-sust-nav__link:hover {
    background: var(--gradient-primary);
    /* border: none; */
    color: #fff;
    opacity: 1;
}

.p-sust-nav__link:hover .p-sust-nav__arrow img {
    filter: brightness(0) invert(1);
}

.p-sust-nav__arrow {
    /* font-size: clamp(0.82rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    line-height: 1;
}

/* ── Policy ラッパー ── */
.p-sust-policy-wrap {
    background: #dbf2f0;
}

/* ── セクション（グラデーション内） ── */
.p-sust-section {
    background: linear-gradient(to bottom, #fff, #d6f9ff);
    border-radius: 28vw 0 0 0;
    padding: 15rem 0;
}

.p-sust-section__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 6rem;
}

.p-sust-section__title {
    text-align: center;
    /* font-size: clamp(2.8rem, 2.2rem + 1.62vw, 4.8rem); */
    font-size: var(--fz48);
    font-weight: 700;
    letter-spacing: 0.768rem;
    color: #0275be;
    margin-bottom: 8.5rem;
}

/* ── ポリシー項目 ── */
.p-sust-items {
    max-width: 1200px;
    margin: 0 auto;
}

.p-sust-item {
    padding: 5rem 0.5rem;
    border-bottom: 1px solid #000;
}

.p-sust-item__label {
    display: block;
    /* font-size: clamp(0.93rem, 0.73rem + 0.54vw, 1.6rem); */
    font-size: var(--fz16);
    color: #0275be;
    font-weight: 500;
    letter-spacing: 0.256rem;
    margin-bottom: 0;
}

.p-sust-item__title {
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 700;
    letter-spacing: 0.512rem;
    color: #0275be;
    margin-bottom: 1.5rem;
}

.p-sust-item__title--lg {
    /* font-size: 3.6rem; */
    font-size: var(--fz36);
    font-weight: 700;
    letter-spacing: 0.576rem;
    line-height: 1.2;
}

.p-sust-item__text {
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.48rem;
    line-height: 2;
    color: #1f1f1f;
    margin-bottom: 1.5rem;
}

.p-sust-item__text strong {
    font-weight: 900;
}

/* ── View More リンク ── */
.p-sust-item__viewmore {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    text-decoration: none;
    color: #0275be;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.p-sust-item__viewmore:hover .p-sust-item__viewmore-text {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.p-sust-item__viewmore-text {
    font-family: var(--font-family-en);
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 700;
    letter-spacing: 0.24rem;
}

.p-sust-item__viewmore-sub {
    /* font-size: clamp(0.82rem, 0.64rem + 0.47vw, 1.4rem); */
    font-size: var(--fz14);
    font-weight: 500;
    letter-spacing: 0.14rem;
}

.p-sust-item__viewmore-arrow {
    display: flex;
    align-items: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.p-sust-item__viewmore-arrow svg {
    width: 24px;
    height: 24px;
}

/* ── PDF ボタン ── */
.p-sust-item__pdf-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.p-sust-item__pdf-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 250px;
    padding: 1.5rem 3rem;
    background: #fff;
    border: 1px solid #000;
    border-radius: 80px;
    text-decoration: none;
    color: #333;
    transition: var(--transition);
}

.p-sust-item__pdf-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.p-sust-item__pdf-btn:hover .p-sust-item__pdf-icon {
    background: #fff;
    color: var(--color-primary);
}

.p-sust-item__pdf-label {
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    font-weight: 500;
    letter-spacing: 0.3rem;
}

.p-sust-item__pdf-suffix {
    font-family: var(--font-family-en);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    margin-left: 0.5rem;
}

.p-sust-item__pdf-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #0f82c4;
    border-radius: 100px;
    flex-shrink: 0;
    margin-left: 1.5rem;
    color: #fff;
    transition: background 0.3s ease, color 0.3s ease;
}

/* ── フルワイド写真 ── */
.p-sust-photo {
    width: 100%;
    height: clamp(200px, 40vh, 500px);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: none;
}

/* ── 健康経営セクション ── */
.p-sust-health {
    background: #fff;
    border-radius: 64px 64px 0 0;
    overflow: hidden;
}

.p-sust-health__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 15rem 6rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8rem;
}

.p-sust-health__title {
    /* font-size: clamp(2.8rem, 2.2rem + 1.62vw, 4.8rem); */
    font-size: var(--fz48);
    font-weight: 700;
    letter-spacing: 0.768rem;
    color: #0275be;
    text-align: center;
}

.p-sust-health__blocks {
    display: flex;
    flex-direction: column;
    gap: 4.8rem;
    width: 100%;
}

.p-sust-health__block {
    padding: 2.5rem;
    border-bottom: 1px solid #000;
}

.p-sust-health__badge {
    display: inline-block;
    background: #0275be;
    color: #fff;
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 500;
    letter-spacing: 0.512rem;
    padding: 0.5rem 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.p-sust-health__text {
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.48rem;
    line-height: 2;
    color: #1f1f1f;
}

.p-sust-health__text strong {
    font-weight: 700;
}

.p-sust-health__sign {
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.48rem;
    line-height: 2;
    color: #1f1f1f;
}

.p-sust-health__list {
    list-style: disc;
    padding-left: 3.6rem;
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.48rem;
    line-height: 2;
    color: #1f1f1f;
}

/* ── 個人情報セクション ── */
.p-sust-privacy {
    background: #fff;
}

.p-sust-privacy__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 15rem 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10rem;
}

.p-sust-privacy__title {
    text-align: center;
    /* font-size: clamp(2.8rem, 2.2rem + 1.62vw, 4.8rem); */
    font-size: var(--fz48);
    font-weight: 700;
    letter-spacing: 0.768rem;
    color: #0275be;
    line-height: 1.5;
}

.p-sust-privacy__blocks {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.p-sust-privacy__block {
    padding: 2.5rem;
    border-bottom: 1px solid #000;
}

.p-sust-privacy__badge {
    display: inline-block;
    background: #0275be;
    color: #fff;
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 500;
    letter-spacing: 0.512rem;
    padding: 0rem 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.p-sust-privacy__text {
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.48rem;
    line-height: 2;
    color: #1f1f1f;
}

/* ── Sustainability レスポンシブ ── */
@media (max-width: 768px) {
    .p-sust-overview {
        padding: 3rem 0 1px;
    }

    .p-sust-overview__en {
        /* font-size: 2rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.4rem;
    }

    .p-sust-overview__ja {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-sust-nav {
        flex-direction: column;
        align-items: center;
        padding: 0 1.5rem 3rem;
        row-gap: 1rem;
        display: none;
    }

    .p-sust-nav__link {
        width: 100%;
        height: auto;
        padding: 1.5rem 2rem;
        /* font-size: 1.4rem; */
        white-space: normal;
        text-align: left;
        letter-spacing: 0.1rem;
    }

    .p-sust-nav__link--wide {
        width: 100%;
    }

    .p-sust-section {
        border-radius: 100px 0 0 0;
        padding: 6rem 0;
    }

    .p-sust-section__title {
        /* font-size: 2.4rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.3rem;
        margin-bottom: 4rem;
    }

    .p-sust-item {
        padding: 3rem 1.5rem;
    }

    .p-sust-item__title {
        /* font-size: 2rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.3rem;
    }

    .p-sust-item__title--lg {
        font-size: 2.2rem;
    }

    .p-sust-item__text {
        letter-spacing: 0.15rem;
    }

    .p-sust-item__viewmore-text {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-sust-item__viewmore-sub {
        /* font-size: 1.1rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-sust-item__pdf-links {
        flex-direction: column;
        align-items: flex-end;
    }

    .p-sust-item__pdf-btn {
        min-width: 200px;
        padding: 1.2rem 2rem;
    }

    .p-sust-item__pdf-label {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-sust-photo {
        height: clamp(200px, 30vh, 300px);
        background-attachment: scroll;
    }

    .p-sust-health {
        border-radius: 32px 32px 0 0;
    }

    .p-sust-health__inner {
        padding: 6rem 1.5rem;
        gap: 4rem;
    }

    .p-sust-health__title {
        /* font-size: 2.4rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.3rem;
    }

    .p-sust-health__badge {
        /* font-size: 2rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.3rem;
        padding: 0.6rem 1.5rem;
    }

    .p-sust-health__text,
    .p-sust-health__sign {
        letter-spacing: 0.15rem;
    }

    .p-sust-health__list {
        letter-spacing: 0.15rem;
        padding-left: 2rem;
    }

    .p-sust-privacy__inner {
        padding: 6rem 1.5rem;
        gap: 4rem;
    }

    .p-sust-privacy__title {
        /* font-size: 2.4rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.3rem;
    }

    .p-sust-privacy__badge {
        /* font-size: 2rem; */ /* clamp で可変のためコメントアウト */
        letter-spacing: 0.3rem;
        padding: 0.3rem 1.5rem;
    }

    .p-sust-privacy__text {
        letter-spacing: 0.15rem;
    }

    .p-sust-photo {
        display: block;
    }

    .p-sust-section__inner {
        padding: 0 2rem;
    }
}

/* ==========================================================================
   Contact Page (p-contact-)
   ========================================================================== */

.p-contact {
    padding: 15rem 0 0;
    background: var(--color-bg-gray);
}

.p-contact__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.p-contact__card {
    background: #fff;
    border-radius: 2rem;
    padding: 6rem 10rem;
    text-align: center;
}

.p-contact__card-title {
    font-size: clamp(2.33rem, 1.83rem + 1.35vw, 4rem);
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.16em;
    margin-bottom: 1rem;
}

.p-contact__card-desc {
    margin-bottom: 3rem;
}

.p-contact__card-body {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.p-contact__dept {
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.p-contact__info {
    margin-bottom: 0.5rem;
}

.p-contact__info a {
    color: var(--color-primary);
    text-decoration: underline;
}

.p-contact__info a:hover {
    text-decoration: none;
}

.p-contact__note {
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    color: #646464;
    line-height: 2;
    letter-spacing: 0.15em;
}

.p-contact__form-btn {
    display: inline-flex;
    align-items: center;
    gap: 5rem;
    padding: 3rem 5rem;
    border: 3px solid var(--color-primary);
    border-radius: 80px;
    background: #fff;
    color: var(--color-primary);
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 1rem;
}

.p-contact__form-btn:hover {
    background: var(--color-primary);
    color: #fff;
}

.p-contact__form-btn:hover svg {
    stroke: #fff;
}

.p-contact__form-arrow {
    /* font-size: clamp(1.17rem, 0.92rem + 0.68vw, 2rem); */
    font-size: var(--fz20);
    line-height: 1;
}


/* ── Contact レスポンシブ ── */
@media (max-width: 768px) {
    .p-contact {
        padding: 4rem 0;
    }

    .p-contact__card {
        padding: 3rem 2rem;
    }

    .p-contact__card-title {
        /* font-size: 1.8rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-contact__form-btn {
        padding: 1.2rem 2.5rem;
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
        gap: 6vw;
    }
}

/* ==========================================================================
   Privacy Policy Page (p-privacy-)
   ========================================================================== */

.p-privacy {
    background: var(--color-bg-gray);
    padding: 10rem 0;
}

.p-privacy__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10rem;
    overflow: hidden;
    background: #fff;
    border-radius: 2rem;
}

.p-privacy__main-title {
    /* font-size: clamp(2.8rem, 2.2rem + 1.62vw, 4.8rem); */
    font-size: var(--fz48);
    font-weight: 500;
    letter-spacing: 0.16em;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 5rem;
    margin-left: -5rem;
    margin-right: -5rem;
    line-height: 1.4;
}

.p-privacy__section {
    margin-bottom: 5rem;
}

.p-privacy__heading {
    /* font-size: clamp(1.87rem, 1.47rem + 1.08vw, 3.2rem); */
    font-size: var(--fz32);
    font-weight: 500;
    letter-spacing: 0.16em;
    color: var(--color-primary);
    margin-bottom: 0rem;
}

.p-privacy__text {
    margin-bottom: 1rem;
}

.p-privacy__item {
    margin-bottom: 2.5rem;
}

.p-privacy__item-title {
    /* font-size: clamp(1.4rem, 1.1rem + 0.81vw, 2.4rem); */
    font-size: var(--fz24);
    font-weight: 500;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
}

.p-privacy__item-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p-privacy__item-list li {
    font-size: var(--fz24);
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.15em;
    color: var(--color-text);
    padding-left: 3rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.p-privacy__item-list li::before {
    content: "・";
    position: absolute;
    left: 0;
}

.p-privacy__action {
    text-align: center;
    margin-top: 3rem;
}

.p-privacy__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--color-primary);
    color: #fff;
    padding: 1.4rem 3.5rem;
    border: 2px solid transparent;
    border-radius: 56px;
    /* font-size: clamp(1.05rem, 0.82rem + 0.61vw, 1.8rem); */
    font-size: var(--fz18);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: var(--transition);
}

.p-privacy__btn:hover {
    background: #fff;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.p-privacy__btn svg {
    flex-shrink: 0;
}

/* Privacy Policy Responsive */
@media (max-width: 768px) {
    .p-privacy {
        padding: 4rem 0;
    }

    .p-privacy__main-title {
        /* font-size: 2rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-privacy__heading {
        /* font-size: 1.6rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-privacy__text,
    .p-privacy__item-text,
    .p-privacy__item-title {
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
    }

    .p-privacy__btn {
        padding: 1.2rem 2.5rem;
        /* font-size: 1.4rem; */ /* clamp で可変のためコメントアウト */
    }
}

/* ========================================
   p-mv（TOPページ 新MVセクション）
   ======================================== */
.p-mv {
    position: relative;
    overflow: hidden;
    background: #fff;
    height: calc(31vw + 310px);
    display: flex;
    align-items: stretch;
}




.p-mv__blob {
    position: absolute;
    top: 59%;
    left: 50%;
    transform: translateX(-50%);
    width: 150vw;
    max-width: none;
    z-index: 0;
    display: block;
}

.p-mv__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
    /* padding: 0 0 0 clamp(3rem, 6vw, 10rem); */
}

.p-mv__text {
    /* flex: 0 0 auto; */
    /* width: clamp(300px, 60%, 600px); */
    /* padding-right: clamp(1.5rem, 2vw, 3rem); */
    /* align-self: center; */
    position: absolute;
    left: 4%;
    top: 10%;
    z-index: 1;
}

.p-mv__catch {
    font-size:var(--fz43);
    font-weight: 700;
    color: #0275be;
    line-height: 1.8;
    letter-spacing: 0.05em;
    /* position: absolute; */
}

.p-mv__illust {
    /* flex: 1; */
    /* min-width: 0; */
    /* height: 100%; */
    /* display: flex; */
    position: absolute;
    /* align-items: flex-end; */
    top: calc(3% + 100px);
    right: -1%;
    width: calc(44vw + 276px);
    height: auto;
}

.p-mv__illust img {
    width: 100%;
    height: auto;
    /* object-fit: contain; */
    /* object-position: 10% 17%; */
    display: block;
    /* position: absolute; */
    /* clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); */
    /* transition: clip-path 1.4s cubic-bezier(0.4, 0, 0.2, 1); */
}

.p-mv__illust img.is-trapezoid {
    /* clip-path: polygon(35% 0%, 65% 0%, 100% 100%, 0% 100%); */
}
@media (max-width: 1400px) {
    .p-mv {
        height: calc(35vw + 300px);
    }
    .p-mv__illust {
        bottom: -12%;
    }

    .p-rakuda-payment-wrap {
        padding: 8rem 6rem;
    }

    .page-template-page-financial .p-financial-section {
        padding: 8rem 6rem;
        margin: 6rem;
    }
   

}

@media (max-width: 1200px) {}
@media (max-width: 1200px) {
    .p-mv {
        height: auto;
    }
    .p-mv__inner {
        flex-direction: column;
    }
    .p-mv__text {
        width: 100%;
        padding-left: 7vw;
        align-self: auto;
        position: relative;
        top: auto;
        left: auto;
        margin-top: 4vw;
        margin-bottom: 4vw;
    }

    .p-mv__illust {
        width: 100%;
        max-width: 873px;
        height: auto;
        min-height: auto;
        align-items: flex-end;
        position: relative;
        top: auto;
        left: auto;
        /* margin: 0 auto; */
        padding-left: 6vw;
        bottom: auto;
        right: 3%;
    }
}


@media (max-width: 768px) {
    .p-mv {
        height: auto;
    }

    .p-mv__blob {
        top: auto;
        bottom: -34%;
        left: 50%;
        /* transform: translateX(-50%); */
        width: 140%;
    }

    .p-mv__inner {
        flex-direction: column;
        /* align-items: flex-start; */
        /* padding: 3rem 2rem 0; */
        gap: 1rem;
    }

    .p-mv__text {
        width: 100%;
        padding-left: 7vw;
        align-self: auto;
        position: relative;
        top: auto;
        left: auto;
        margin-top: 4vw;
        margin-bottom: 4vw;
    }

    .p-mv__illust {
        width: 109%;
        height: auto;
        min-height: auto;
        align-items: flex-end;
        position: relative;
        top: auto;
        left: auto;
        /* margin: 0 auto; */
        padding-left: 6vw;
        bottom: auto;
        right: 3%;
    }

    .p-mv__illust img {
        height: auto;
        object-position: bottom center;
    }

    .page-template-page-financial .p-financial-section {
        margin: 4rem 1.6rem;
        padding: 4rem 2rem;
        border-radius: 12px;
    }

    .p-rakuda-payment-wrap {
        padding: 5rem 2rem;
    }
    .p-faq-item {
        margin-bottom: 2rem;
    }

}

/* ========================================
   修正依頼7回目 SP折り返し・表示修正
   ======================================== */

/* ② 決算公告ページ 見出し折り返し防止 */
@media (max-width: 768px) {
    .p-financial-heading {
        word-break: keep-all;
    }
}

/* ④ 会社案内 会社概要 住所折り返し防止 */
@media (max-width: 768px) {
    #company .c-dl__dd {
        word-break: keep-all;
    }
}

/* ⑥ 事業内容 各セクション上部ヒーロー画像をSPで非表示 */
@media (max-width: 768px) {
    .p-biz-section__hero {
        display: none !important;
    }
}

/* ⑦ 事業内容 見出し（デジタルイノベーション等）折り返し防止 */
@media (max-width: 768px) {
    .p-biz-section__title {
        /* word-break: keep-all; */
    }
}

/* ⑨ フッター ナビリンク折り返し防止 */
@media (max-width: 768px) {
    .p-footer-nav__item a {
        white-space: nowrap;
    }
}

/* ⑩⑪⑫ らくだねット 魅力タイトル・ログインタイトル折り返し防止 */
@media (max-width: 768px) {
    .p-service-appeal__title,
    .p-service-login__title {
        /* word-break: keep-all; */
    }
}

/* ⑬ DISCOVER WEST mallとは 折り返し防止 */
@media (max-width: 768px) {
    #dwmall .p-service-whatis__title {
        white-space: nowrap;
        letter-spacing: 0.1rem;
    }
}

/* ⑭ デジタルイノベーション 約款リスト 折り返し防止 */
@media (max-width: 768px) {
    .p-biz-docs__list li {
        word-break: keep-all;
    }
}

/* ⑮ サステナビリティ 個人情報の取扱いについて 折り返し防止 */
@media (max-width: 768px) {
    .p-sust-privacy__title {
        font-size: 2.5rem;
        letter-spacing: 0.1rem;
    }
}


@media (max-width: 768px) {
    .p-privacy__inner {
        padding: 2rem;
    }
}


@media (max-width: 380px) {
    .sf1 {
        font-size: 1.9rem;
    }
    .p-service-appeal__item,.p-service-login {
        padding: 3rem 2rem;
    }
    .p-service-appeal__title {
        font-size: 2rem;
    }
    .p-service-login__title {
        font-size: 2rem;
    }
    .p-biz-docs__list--grid {
        padding: 30px 20px 30px 30px;
    }
    .p-sust-privacy__title {
        font-size: 2.3rem;
    }
    .p-home-business__link {
        padding: 1rem 1rem;
    }
    .p-home-business__num {
        font-size: 2.4rem;
    }
    .p-home-business__name {
        font-size: 2.2rem;
    }
    .p-home-business__arrow {
        font-size: 1.3rem;
    }
    .p-contact__form-btn {
        padding: 1.2rem 2rem;
        gap: 2vw;
    }
    .p-contact__dept {
        font-size: 1.5rem;
    }
    .p-service-login__card {
        padding: 2rem 0.8rem;
    }
    .p-service-login {
        padding: 3rem 1.3rem;
    }
    .p-service-login__card-label {
        /* font-size: 1.3rem; */
    }

    #license .c-btn--arrow {
        gap: 0.5rem;
    }
}

