/* 変数設定 */
:root {
    --color-main: #185EA1;
    --color-main03: #89C4FF;
    --color-sub: #E8630A;
    --color-sub02: #E8330A;
    --color-wh: #FFFFFF;
    --color-bk: #232323;
    --color-dark02: #656565;
    --color-bg02: #F2F3F7;
    --color-bg03: #E9EAEF;
    --color-hover02: #F5F9FD;
    --color-border: #6A7ECB;
    --color-border03: #E4E8FA;
    --font-main: "Noto Sans JP", sans-serif;
    /* yoshi ブランド */
    --color-brand: #185EA1;
    --color-text: #2B2B2B;
    --color-header-bg: rgba(255, 255, 255, .7);
    --color-header-line: rgba(24, 94, 161, .69);
    --font-zen: "Zen Kaku Gothic New", sans-serif;
    --font-en: "Outfit", sans-serif;
    --gheader-h: 6rem;
    --gheader-h-sp: 4.6875rem;
}
/* 全ページ共通: 装飾の食み出しによる横スクロールを抑止 */
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--gheader-h);
    @media (768px > width) {
        scroll-padding-top: var(--gheader-h-sp);
    }
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    padding: 1px 0;
    background-color: var(--color-border03);
}
::-webkit-scrollbar-thumb {
    background-color: var(--color-border);
    border: none;
    border-radius: 5rem;
}
@media (hover: none) {
    * {
      pointer-events: auto; 
    }
    *:hover {
      transform: none !important;
      transition: none !important;
      opacity: 1 !important;
    }
}
.wpcf7-response-output, .wpcf7-spinner {
    display: none!important;
}
.entry-content {
    > p:first-of-type {
        line-height: calc(28/15);
    }
    .no-post {
        padding: 3rem 0;
    }
}
.site-branding {
    width: 100%;
    max-width: 392px;
    @media (768px > width) {
        width: calc(100% - 140px);
    }
}
.breadcrumb {
    margin-top: .8125rem;
    text-align: left;
    @media (768px > width) {
        margin-top: .5rem;
    }
    #breadcrumbs {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        gap: .25rem;
    }
    a, span {
        font-size: .875rem;
        color: var(--color-brand);
        @media (768px > width) {
            font-size: .75rem;
        }
    }
    .breadcrumb_last {
        /* overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        height: 20px; */
        color: var(--color-main);
    }
    /* 区切り: 1本線の右向き山括弧（>） */
    .breadcrumb__sep {
        display: inline-block;
        width: .375rem;
        height: .375rem;
        margin: 0 .375rem;
        border-top: 1px solid currentColor;
        border-right: 1px solid currentColor;
        transform: rotate(45deg);
        color: var(--color-brand);
        vertical-align: middle;
        @media (768px > width) {
            width: .3125rem;
            height: .3125rem;
            margin: 0 .3125rem;
        }
    }
}
.l-pageHeader {
    z-index: 2;
    position: relative;
    overflow: hidden;
    margin-top: var(--gheader-h);
    padding: 5.6875rem 0 5.5rem;
    background: var(--color-wh);
    @media (768px > width) {
        margin-top: var(--gheader-h-sp);
        padding: 1.5625rem 0 2.625rem;
    }
    &::before {
        position: absolute;
        content: "";
        inset: 0;
        /*
         * 背景画像の見せ方について:
         * セクション比（約 5.2:1）と画像比（3072/748 = 約 4.1:1）が異なるため、
         * 「画像全体を見せる」「余白を出さない」「歪ませない」は同時に成立しない。
         *   - cover   → 上下が切れる（画像全体が使えない）
         *   - contain → 左右に余白が出る
         * この画像は輪郭を持つ被写体のない soft なグラデーション装飾で、
         * さらに opacity .4 で敷いているため、非等比の引き伸ばし（100% 100%）が
         * 視覚的に最も破綻しない。画像全体を余白なしで敷ける唯一の方法でもある。
         * ※ 人物や図形など形が重要な画像に差し替える場合は cover に戻すこと。
         */
        background: url('../images/page-header-bg-pc.png') center / 100% 100% no-repeat;
        z-index: -1;
        @media (768px > width) {
            background-image: url('../images/page-header-bg-sp.png');
        }
    }
    & .l-pageHeader__inner {
        box-sizing: content-box;
        max-width: 81rem;
        margin: 0 auto;
        padding: 0 1.25rem;
    }
    & .l-pageHeader__title {
        margin: 0;
        font-family: var(--font-zen);
        font-size: 2.8125rem;
        font-weight: 700;
        line-height: 1.45;
        letter-spacing: .1em;
        color: var(--color-brand);
        @media (768px > width) {
            font-size: 1.75rem;
            letter-spacing: .05em;
        }
        &::after {
            content: attr(data-en);
            display: block;
            margin-top: .75rem;
            font-family: var(--font-en);
            font-size: .875rem;
            font-weight: 500;
            color: var(--color-brand);
            letter-spacing: .2em;
            @media (768px > width) {
                margin-top: .5rem;
                font-size: .75rem;
            }
        }
        &[data-en=""]::after {
            display: none;
        }
    }
}

.l-inner {
    box-sizing: border-box;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* --------------------------------------------------------------
# News archive
-------------------------------------------------------------- */
.p-newsArchive {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0 8.75rem;
    background:
        linear-gradient(180deg, rgba(234, 245, 255, .52) 0%, rgba(255, 255, 255, 0) 34%),
        var(--color-wh);
    @media (768px > width) {
        padding: 3.25rem 0 5.5rem;
    }
}
.p-newsArchive::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(137, 196, 255, .18), transparent 28rem),
        radial-gradient(circle at left 12% top 18%, rgba(24, 94, 161, .08), transparent 22rem);
    pointer-events: none;
}
.p-newsArchive__inner {
    position: relative;
    z-index: 1;
    width: min(100% - 2.5rem, 81rem);
    margin-inline: auto;
    @media (768px > width) {
        width: min(100% - 2.5rem, 21.75rem);
    }
}
.p-newsArchive__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
    gap: 2rem 4rem;
    align-items: end;
    margin-bottom: 2.75rem;
    @media (768px > width) {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
}
.p-newsArchive__title {
    margin: 0;
    font-size: .9375rem;
    line-height: calc(30 / 15);
    letter-spacing: .05em;
    color: rgba(43, 43, 43, .84);
}
.p-newsArchive__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
    @media (768px > width) {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
.p-newsArchiveCard {
    height: 100%;
}
.p-newsArchiveCard__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 12rem;
    padding: 1.625rem 1.625rem 1.5rem;
    border: 1px solid rgba(24, 94, 161, .12);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 1.25rem 2.5rem rgba(24, 94, 161, .08);
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    @media (768px > width) {
        min-height: auto;
        padding: 1.25rem 1.125rem 1.125rem;
        border-radius: 1rem;
    }
}
.p-newsArchiveCard__link:hover {
    transform: translateY(-.25rem);
    border-color: rgba(24, 94, 161, .28);
    box-shadow: 0 1.5rem 3rem rgba(24, 94, 161, .14);
}
.p-newsArchiveCard__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .625rem .875rem;
    align-items: center;
}
.p-newsArchiveCard__date {
    font-size: .9375rem;
    font-weight: 500;
    letter-spacing: .05em;
    color: #8D97A5;
}
.p-newsArchiveCard__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4.375rem;
    min-height: 1.6875rem;
    padding: .1875rem .875rem;
    border-radius: 999px;
    background: #D5E8FB;
    font-size: .75rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .08em;
    color: #5391d0;
}
.p-newsArchiveCard__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 1rem 0 0;
    font-size: clamp(1.125rem, 1.55vw, 1.375rem);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: .05em;
    color: var(--color-text);
}
.p-newsArchiveCard__excerpt {
    margin: .875rem 0 0;
    font-size: .9375rem;
    line-height: calc(28 / 15);
    letter-spacing: .04em;
    color: rgba(43, 43, 43, .82);
}
.p-newsArchiveCard__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.75rem;
}
.p-newsArchiveCard__more {
    position: relative;
    font-size: .9375rem;
    font-weight: 500;
    letter-spacing: .08em;
    color: var(--color-brand);
}
.p-newsArchiveCard__more::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -.25rem;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .25s ease;
}
.p-newsArchiveCard__link:hover .p-newsArchiveCard__more::after {
    transform: scaleX(1);
}
.p-newsArchiveCard__arrow {
    flex-shrink: 0;
    line-height: 0;
}
.p-newsArchiveCard__arrow img {
    width: 2.125rem;
    height: auto;
}
.p-newsArchive__pagination {
    margin-top: 3rem;
    @media (768px > width) {
        margin-top: 2.25rem;
    }
    & .page-numbers {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: .625rem;
        margin: 0;
        padding: 0;
        list-style: none;
        @media (768px > width) {
            gap: .4375rem;
        }
    }
    & .page-numbers li {
        margin: 0;
    }
    & .page-numbers a,
    & .page-numbers span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 3rem;
        min-height: 3rem;
        padding: .5rem;
        border-radius: 999px;
        border: 1px solid rgba(24, 94, 161, .18);
        background: var(--color-wh);
        font-size: .9375rem;
        font-weight: 500;
        color: var(--color-brand);
        text-decoration: none;
        transition: background .2s ease, color .2s ease, border-color .2s ease;
        @media (768px > width) {
            min-width: 2.5rem;
            min-height: 2.5rem;
            font-size: .875rem;
        }
    }
    & .page-numbers a:hover,
    & .page-numbers .current {
        border-color: var(--color-brand);
        background: var(--color-brand);
        color: var(--color-wh);
    }
    & .page-numbers .dots {
        border-color: transparent;
        background: transparent;
        color: rgba(24, 94, 161, .56);
    }
}
.p-newsArchive__empty {
    padding: 3rem 1.5rem;
    border: 1px solid rgba(24, 94, 161, .12);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, .9);
    text-align: center;
    color: var(--color-text);
}

/* フッター */
.l-footer {
    position: relative;
    background: var(--color-wh);
}
.l-footer__cta {
    position: relative;
    overflow: hidden;
    padding: 4.625rem 0 0;
    background: var(--color-wh);
    @media (768px > width) {
        padding-top: 3rem;
    }
}
.l-footer__cta::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 11.25rem;
    background: var(--color-brand);
    @media (768px > width) {
        height: 5.125rem;
    }
}
.l-footer__ctaInner {
    position: relative;
    z-index: 1;
    width: min(100% - 2.5rem, 76rem);
    margin-inline: auto;
    @media (768px > width) {
        width: min(100% - 2.5rem, 20.9375rem);
    }
}
.l-footer__ctaHead {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.l-footer__ctaMark {
    width: 6rem;
    height: auto;
    @media (768px > width) {
        width: 4.6875rem;
    }
}
.l-footer__ctaText {
    margin: 1.625rem 0 0;
    font-family: var(--font-zen);
    font-size: clamp(1.375rem, 2vw, 1.625rem);
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: .05em;
    text-align: center;
    color: var(--color-brand);
    @media (768px > width) {
        margin-top: 1.0625rem;
        font-size: 1.375rem;
        line-height: 1.5;
    }
}
.l-footer__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 20.25rem));
    justify-content: center;
    gap: 2.375rem;
    margin-top: 2.5625rem;
    padding-bottom: 2.5rem;
    @media (768px > width) {
        grid-template-columns: 1fr;
        gap: 1.375rem;
        margin-top: 2.3125rem;
    }
}
.l-footerCard {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: .75rem;
    min-height: 16.25rem;
    padding: 1.6875rem 2.3125rem 0 2.4375rem;
    border: 2px solid var(--color-brand);
    border-radius: 1.875rem;
    background: #F7FBFF;
    box-shadow: .1875rem .3125rem 0 0 #114476;
    text-decoration: none;
    overflow: hidden;
    @media (1024px > width) {
        padding: 1.6875rem 1.5rem 0;
    }
    @media (768px > width) {
        justify-content: left;
        min-height: 6.3125rem;
        padding: 1rem 1.4375rem 0 7.0625rem;
        border-radius: 1.0625rem;
    }
    /*
     * hover 時はカード全体の opacity を変えると背景色と境界線が透けて汚くなるため、
     * 内部要素（body/visual）だけを半透明にし、矢印は右にスライドさせる。
     */
    & .l-footerCard__body,
    & .l-footerCard__visual {
        transition: opacity .25s ease;
    }
    &:hover .l-footerCard__body,
    &:hover .l-footerCard__visual {
        opacity: .7;
    }
    &:hover .l-footerCard__arrow {
        translate: .375rem -50%;
    }
}
@media (hover: none) {
    .l-footerCard:hover .l-footerCard__body,
    .l-footerCard:hover .l-footerCard__visual {
        opacity: 1;
    }
    .l-footerCard:hover .l-footerCard__arrow {
        translate: 0 -50%;
    }
}
.l-footerCard__body {
    position: relative;
    z-index: 1;
    text-align: center;
    @media (768px > width) {
        text-align: left;
    }
}
.l-footerCard__title {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    gap: 0; /* span 間の HTML 空白を消す */
    margin: 0;
    padding-right: 1.75rem; /* 矢印分の余白 */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .05em;
    color: var(--color-text);
    @media (768px > width) {
        white-space: nowrap;
        padding-right: 1.5rem;
    }
}
.l-footerCard__titleMain,
.l-footerCard__titleTail {
    font-size: 1.5rem;
    white-space: nowrap;
    @media (1024px > width) {
        font-size: 1.25rem;
    }
    @media (768px > width) {
        font-size: 1.125rem;
    }
}
.l-footerCard__titleMain {
    color: var(--color-brand);
}
.l-footerCard__titleSub {
    white-space: nowrap;
    font-size: 1.25rem;
    @media (768px > width) {
        font-size: 1.125rem;
    }
}
.l-footerCard__text {
    margin: .75rem 0 0;
    font-size: .9375rem;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: .05em;
    color: var(--color-text);
    @media (768px > width) {
        margin-top: .4375rem;
        font-size: .875rem;
        line-height: 1.2857;
    }
}
.l-footerCard__visual {
    position: absolute;
    left: 4.875rem;
    right: 4.875rem;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
    @media (768px > width) {
        left: .375rem;
        right: auto;
        width: 6rem;
    }
}
.l-footerCard__visual img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
}
.l-footerCard.is-line .l-footerCard__visual img {
    width: 7.625rem;
    @media (768px > width) {
        width: 5.125rem;
    }
}
.l-footerCard.is-mail .l-footerCard__visual img {
    width: 8.25rem;
    @media (768px > width) {
        width: 5.3905rem;
    }
}
.l-footerCard.is-phone .l-footerCard__visual img {
    width: 12.0625rem;
    @media (768px > width) {
        width: 8.1875rem;
    }
}
/* 矢印は .l-footerCard__title の子として配置され、title の右端に絶対配置 */
.l-footerCard__arrow {
    position: absolute;
    right: 0;
    top: 50%;
    width: .625rem;   /* 10px */
    height: .9375rem; /* 15px */
    background: url('../images/cta-arrow.png') center / contain no-repeat;
    translate: 0 -50%;
    transition: translate .25s ease;
}
.l-footer__bottom {
    padding: 2.625rem 0 1rem;
    background: var(--color-wh);
    @media (768px > width) {
        padding: 2.4375rem 0 .625rem;
    }
}
.l-footer__bottomInner {
    width: min(100% - 2.5rem, 76rem);
    margin-inline: auto;
    text-align: center;
    @media (768px > width) {
        width: min(100% - 2.5rem, 20.9375rem);
    }
}
.l-footer__logo {
    margin: 0;
}
.l-footer__logo a {
    display: inline-block;
}
.l-footer__logo img {
    width: 10rem;
    height: auto;
    @media (768px > width) {
        width: 9.3125rem;
    }
}
.l-footer__nav {
    margin-top: 1.4375rem;
    @media (768px > width) {
        margin-top: 1.5rem;
    }
}
.l-footer__navList {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}
.l-footer__navItem {
    position: relative;
}
.l-footer__navItem + .l-footer__navItem::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: .875rem;
    background: var(--color-brand);
    transform: translateY(-50%);
}
.l-footer__navItem a {
    display: block;
    padding: 0 1.125rem;
    font-size: .9375rem;
    font-weight: 600;
    letter-spacing: .15em;
    color: var(--color-brand);
    text-decoration: none;
    transition: opacity .2s ease;
    @media (768px > width) {
        padding: 0 .625rem;
        font-size: .8125rem;
    }
}
.l-footer__navItem a:hover {
    opacity: .7;
}
.l-footer__copyright {
    margin: 2.1875rem 0 0;
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: .15em;
    color: #888;
    @media (768px > width) {
        margin-top: 1.5rem;
        font-size: .625rem;
    }
}

.c-pagination {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    text-align: center;
    margin-top: 6.25rem;
    @media (768px > width) {
        margin-top: 3.75rem;
    }
    a {
        display: block;
        align-content: center;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        border: 1px solid var(--color-main);
        background: var(--color-wh);
        color: var(--color-main);
        &.current {
            background: var(--color-main);
            color: var(--color-wh);
        }
    }
    span {
        display: block;
        align-content: center;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        &.current {
            background: var(--color-main);
            color: var(--color-wh);
        }
    }
}
.c-category__title {
    padding-bottom: 2.125rem;
    text-align: center;
    font-size: 1.375rem;
    color: var(--color-main);
}
.c-category__list {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .75rem;
    padding-bottom: 2.125rem;
    border-bottom: 2px solid var(--color-bg02);
    &::before {
        position: absolute;
        content: "";
        bottom: -2px;
        left: 0;
        width: 80px;
        height: 2px;
        background: linear-gradient(to right, var(--color-main03) 0%, var(--color-main) 100%);
    }
    & .c-category__item {
        a {
            display: inline-block;
            padding: .625rem .9375rem;
            border: 1px solid var(--color-main);
            border-radius: 1.875rem;
            font-weight: 600;
            background: var(--color-wh);
            color: var(--color-bk);
            @media (768px > width) {
                padding: .375rem .875rem;
            }
            &:hover {
                background: var(--color-main);
                color: var(--color-wh);
            }
        }
    }
}
.p-blog__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.75rem 2.5rem;
    max-width: 980px;
    margin: 3.75rem auto 0;
    @media (1024px > width) {
        gap: 2rem;
        margin: 1.5rem auto 0;
    }
    @media (768px > width) {
        grid-template-columns: repeat(1, 1fr);
        place-items: center;
    }
    & .p-blog__item {
        overflow: hidden;
        max-width: 300px;
        border-radius: .625rem;
        box-shadow: 0 0 .625rem #00000040;
        @media (768px > width) {
            width: 90%;
        }
        & .p-blog__link {
            display: flex;
            flex-direction: column;
            font-size: .875rem;
            transition: .4s ease;
            > div {
                &:first-of-type {
                    width: 100%;
                    height: 200px;
                }
            }
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: .4s ease;
            }
            & .p-blog__content {
                padding: 0 1.375rem .8125rem;
                & .p-blog__subject {
                    overflow: hidden;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 3;
                    height: 72px;
                    margin-top: .8125rem;
                    color: var(--color-bk);
                    @media (768px > width) {
                        height: 48px;
                        -webkit-line-clamp: 2;
                    }
                }
                & .p-blog__date {
                    position: relative;
                    display: block;
                    margin-top: .75rem;
                    color: var(--color-dark02);
                    transition: .4s ease;
                    &::before {
                        position: absolute;
                        content: "";
                        top: 50%;
                        left: 90%;
                        transform: translateY(-50%);
                        width: 0;
                        height: 2px;
                        background: transparent;
                        transition: .3s ease;
                    }
                    &::after {
                        transition: .4s ease;
                        position: absolute;
                        content: "";
                        top: 50%;
                        right: 0;
                        transform: translateY(-50%);
                        width: 8px;
                        height: 16px;
                        background: url(../images/arrow-navy.png), top center / contain no-repeat;
                    }
                }
            }
            &:hover {
                img {
                    @media (768px < width) {
                        transform: scale(1.05);
                    }
                }
                & .p-blog__content {
                    @media (768px < width) {
                        background: var(--color-hover02);
                    }
                }
                & .p-blog__date {
                    &::before {
                        @media (768px < width) {
                            width: 24px;
                            height: 2px;
                            background: var(--color-main);
                        }
                    }
                }
            }
        }
    }
}
.u-text--center {
    text-align: center;
}
/* 蛍光マーカー（キーフレーズ強調。[[mark]]〜[[/mark]] トークンで出力） */
.c-marker {
    background: linear-gradient(transparent 55%, #FFFBD5 55%);
    color: inherit;
}
.u-pc--hidden {
    display: none!important;
    @media (768px > width) {
        display: block!important;
    }
}
.u-sp--hidden {
    display: block!important;
    @media (768px > width) {
        display: none!important;
    }
}
/* --------------------------------------------------------------
# グローバルヘッダー（yoshi / Figma 540:1548, 540:1549）
-------------------------------------------------------------- */
.l-gHeader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background: var(--color-header-bg);
    border-bottom: 1px solid var(--color-header-line);
    backdrop-filter: blur(4px);
}
.l-gHeader__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--gheader-h);
    width: min(100%, 96rem);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 3.8125rem); /* Figma: logo x61 */
    @media (768px > width) {
        height: var(--gheader-h-sp);
        padding-inline: 1.25rem;
    }
}
.l-gHeader__logo {
    margin: 0;
    line-height: 1;
    a {
        display: block;
    }
    img {
        display: block;
        width: 7.9375rem; /* Figma PC 127px */
        height: auto;
        @media (1024px > width) {
            width: 6.8125rem; /* Figma SP 108.94px */
        }
    }
}
.l-gHeader__nav {
    display: flex;
    align-items: center;
}
.l-gHeader__menu {
    display: flex;
    align-items: center;
    column-gap: 2rem; /* Figma: 強み右端1301 → ボタン1333 */
}
.l-gHeader__list {
    display: flex;
    align-items: center;
    column-gap: 3.375rem; /* Figma: 項目間 約54px */
    margin: 0;
    padding: 0;
    list-style: none;
    @media (1024px > width) {
        column-gap: 1.5rem;
    }
    a {
        font-size: .9375rem; /* 15px */
        font-weight: 600;
        letter-spacing: .05em;
        color: var(--color-brand);
        text-decoration: none;
        transition: opacity .2s;
        &:hover {
            opacity: .7;
        }
    }
}
.l-gHeader__contact {
    display: grid;
    place-items: center;
    width: 9.875rem;  /* Figma 158px */
    height: 3.75rem;  /* Figma 60px */
    border: 1px solid var(--color-brand);
    border-radius: 62.5rem;
    font-size: .9375rem;
    font-weight: 600;
    letter-spacing: .05em;
    color: var(--color-brand);
    text-decoration: none;
    background: var(--color-wh);
    transition: background .2s, color .2s;
    &:hover {
        background: var(--color-brand);
        color: var(--color-wh);
    }
}
.l-gHeader__menuToggle {
    display: none;
}
@media (768px > width) {
    .l-gHeader__menuToggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        row-gap: .375rem; /* Figma: 線間 7px */
        width: 3.75rem;   /* Figma 60px */
        height: 2.8125rem; /* Figma 45px */
        border: 1px solid var(--color-brand);
        border-radius: 1.40625rem; /* Figma 22.5px */
        background: var(--color-wh);
        cursor: pointer;
    }
    .l-gHeader__menuBar {
        display: block;
        width: 1.3125rem; /* Figma 21px */
        height: 1px;
        background: var(--color-brand);
        transition: transform .25s, opacity .25s;
    }
    .l-gHeader__menuToggle[aria-expanded="true"] {
        .l-gHeader__menuBar:nth-child(1) {
            transform: translateY(.4375rem) rotate(20deg);
        }
        .l-gHeader__menuBar:nth-child(2) {
            opacity: 0;
        }
        .l-gHeader__menuBar:nth-child(3) {
            transform: translateY(-.4375rem) rotate(-20deg);
        }
    }
    .l-gHeader__menu {
        position: fixed;
        top: var(--gheader-h-sp);
        left: 0;
        z-index: 99;
        flex-direction: column;
        align-items: stretch;
        row-gap: 1.5rem;
        width: 100%;
        padding: 2rem 1.25rem 2.5rem;
        background: rgba(255, 255, 255, .96);
        border-bottom: 1px solid var(--color-header-line);
        visibility: hidden;
        opacity: 0;
        transform: translateY(-.5rem);
        transition: opacity .25s, transform .25s, visibility .25s;
    }
    .l-gHeader__menu.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
    .l-gHeader__list {
        flex-direction: column;
        align-items: stretch;
        row-gap: 1.25rem;
        a {
            display: block;
            padding: .25rem 0;
        }
    }
.l-gHeader__contact {
        width: min(100%, 15rem);
        margin-inline: auto;
    }
}

/* --------------------------------------------------------------
# FAQ Section
-------------------------------------------------------------- */
.p-faq {
    position: relative;
    padding: 6rem 0 8.0625rem;
    background: var(--color-wh);
    overflow: hidden;
    @media (768px > width) {
        padding: 3.75rem 0;
    }
}
.p-faqSection__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(13rem, 18rem) minmax(0, 48.5625rem);
    justify-content: space-between;
    align-items: start;
    gap: 2.5rem;
    width: min(100% - 2.5rem, 81rem);
    margin-inline: auto;
    @media (768px > width) {
        grid-template-columns: 1fr;
        gap: 1.625rem;
        width: calc(100% - 2.5rem);
    }
}
.p-faqSection__heading {
    position: relative;
    z-index: 1;
}
.p-faqSection__eyebrow {
    display: flex;
    align-items: center;
    column-gap: .4375rem;
    margin: 0;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: #97BFE5;
}
.p-faqSection__title {
    margin: .5rem 0 0;
    font-family: var(--font-zen);
    font-size: clamp(1.625rem, 3vw, 2.8125rem);
    font-weight: 700;
    letter-spacing: .05em;
    color: var(--color-brand);
}
.p-faqSection__content {
    position: relative;
    z-index: 1;
}
.p-faqSection__item {
    border-top: 1px solid rgba(24, 94, 161, .85);
    @media (768px > width) {
        border-top-style: dotted;
    }
}
.p-faqSection__item:last-child {
    border-bottom: 1px solid rgba(24, 94, 161, .85);
    @media (768px > width) {
        border-bottom-style: dotted;
    }
}
.p-faqSection__questionWrap {
    margin: 0;
}
.p-faqSection__question {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
    column-gap: .875rem;
    width: 100%;
    padding: 1.125rem 0 1.1875rem;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    @media (768px > width) {
        column-gap: .625rem;
        padding: .9375rem 0 1rem;
    }
}
.p-faqSection__label {
    display: inline-block;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .05em;
}
.p-faqSection__label--q {
    margin-top: .0625rem;
    font-size: 1.375rem;
    color: var(--color-brand);
    @media (768px > width) {
        font-size: 1.25rem;
    }
}
.p-faqSection__label--a {
    margin-top: .0625rem;
    font-size: 1.25rem;
    color: #97BFE5;
    @media (768px > width) {
        font-size: 1.125rem;
    }
}
.p-faqSection__questionText {
    padding-top: .1875rem;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: calc(26 / 18);
    letter-spacing: .05em;
    color: var(--color-text);
    @media (768px > width) {
        font-size: 1rem;
        line-height: calc(23 / 16);
    }
}
.p-faqSection__toggle {
    position: relative;
    width: 2rem;
    height: 2rem;
    margin-top: .0625rem;
    border-radius: 50%;
    background: #A9CDED;
    flex-shrink: 0;
    @media (768px > width) {
        width: 1.125rem;
        height: 1.125rem;
        margin-top: 0;
        align-self: center; /* SPのみ質問行の上下中央に配置 */
    }
}
.p-faqSection__toggle::before,
.p-faqSection__toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--color-wh);
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
}
.p-faqSection__toggle::before {
    width: .875rem;
    height: .125rem;
    @media (768px > width) {
        width: .5rem;
        height: .09375rem;
    }
}
.p-faqSection__toggle::after {
    width: .125rem;
    height: .875rem;
    @media (768px > width) {
        width: .09375rem;
        height: .5rem;
    }
}
.p-faqSection__item.is-open .p-faqSection__toggle::after {
    transform: translate(-50%, -50%) scaleY(0);
}
.p-faqSection__answer {
    height: 0;
    overflow: hidden;
    transition: height .36s ease;
    @media (768px > width) {
        transition-duration: .32s;
    }
}
.p-faqSection__answerInner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    column-gap: .875rem;
    padding: 0 0 1.6875rem;
    @media (768px > width) {
        column-gap: .625rem;
        padding-bottom: 1.25rem;
    }
}
.p-faqSection__answerText {
    margin: 0;
    font-size: 1rem;
    line-height: calc(26 / 16);
    letter-spacing: .05em;
    color: var(--color-text);
    @media (768px > width) {
        font-size: .9375rem;
        line-height: 1.6;
        letter-spacing: .02em;
    }
}
.p-faqSection__cta {
    margin-top: 2.25rem;
    @media (768px > width) {
        margin-top: 1.875rem;
    }
}
.p-faqSection__cta .c-btnPill {
    margin: 0 auto;
}
.p-faqSection__watermark {
    position: absolute;
    right: 0;
    bottom: 1.25rem;
    margin: 0;
    font-weight: 700;
    font-size: clamp(4rem, 8vw, 6.75rem);
    line-height: .9;
    letter-spacing: -.03em;
    text-transform: capitalize;
    white-space: nowrap;
    color: #F5F5F5;
    pointer-events: none;
    @media (768px > width) {
        display: none;
    }
}
.p-faq .p-faqSection__watermark {
    /* bottom: 1rem; */
}
.c-single .c-btnPill {
    margin: 2.4375rem auto 0;
}
/* 一覧に戻るボタン: 矢印は擬似要素で描画し、hover で右にスライド */
.c-btnPill--back {
    position: relative;
    padding-right: 3rem;
}
.c-btnPill--back::after {
    content: "";
    position: absolute;
    right: 1.875rem;
    top: 50%;
    width: .75rem;
    height: .75rem;
    background: url(../images/arrow-btn.svg) center / contain no-repeat;
    translate: 0 -50%;
    transition: translate .25s ease;
}
.c-btnPill--back:hover::after {
    translate: .375rem -50%;
}
@media (hover: none) {
    .c-btnPill--back:hover::after {
        translate: 0 -50%;
    }
}
.c-btnPill, input[type="submit"].c-btnPill {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 17.8125rem); /* Figma 285px */
    height: 4.4375rem; /* 71px */
    margin-top: 2.4375rem; /* Figma: 本文下端873 → 912 */
    border: 1px solid var(--color-brand);
    border-radius: 62.5rem;
    background: var(--color-wh);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .11em;
    color: var(--color-brand);
    text-decoration: none;
    transition: opacity .25s ease;
    img {
        position: absolute;
        right: 1.875rem; /* Figma: 245/285 */
        top: 50%;
        translate: 0 -50%;
        transition: translate .25s ease;
    }
    &:hover {
        opacity: .7;
    }
    &:hover img {
        translate: .375rem -50%;
    }
}
@media (hover: none) {
    .c-btnPill:hover, input[type="submit"].c-btnPill:hover {
        opacity: 1;
    }
    .c-btnPill:hover img {
        translate: 0 -50%;
    }
}
/*
 * <input type="submit"> は子要素（img）を持てないため、矢印は背景画像で描画し、
 * hover 時は background-position で右にスライドさせて他ボタンと挙動を揃える。
 */
input[type="submit"].c-btnPill {
    width: min(280px, 17.8125rem); /* Figma 285px */
    padding-right: 3rem;
    background: var(--color-wh) url('../images/arrow-btn.svg') no-repeat right 1.875rem center / .75rem auto;
    transition: opacity .25s ease, background-position .25s ease;
    cursor: pointer;
}
input[type="submit"].c-btnPill:hover {
    background-position: right 1.5rem center; /* 30px → 24px（右へ6px） */
}
@media (hover: none) {
    input[type="submit"].c-btnPill:hover {
        background-position: right 1.875rem center;
    }
}