@charset "UTF-8";

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

html {
    font-size: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden; 
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: #333;
    line-height: 1.8;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden; 
}

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

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

ul, ol {
    list-style: none;
}

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

/* ========================================
   Layout
======================================== */
.l-main {
    overflow: hidden;
}

.l-inner {
    max-width: 1115px;
    margin: 0 auto;
    padding: 0 20px;
}

.l-inner-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.l-section {
    padding: 100px 0;
}

@media screen and (max-width: 768px) {
    .l-section {
        padding: 30px 0;
    }
}

/* ========================================
   Section Title
======================================== */
.c-section-title {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.c-section-title__ja {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.c-section-title__en {
    display: block;
    font-family: 'Shippori Mincho', serif;
    font-size: 4rem;
    font-weight: 400;
    color: #61351b;
    opacity: 0.15;
    mix-blend-mode: color-burn;
    letter-spacing: 0.5em;
    line-height: 1;
    margin-top: -25px;
    pointer-events: none;
    user-select: none;
}

@media screen and (max-width: 768px) {
    .c-section-title__ja {
        font-size: 1.25rem;
        
    }

    .c-section-title__en {
        font-size: 2.5rem;
        letter-spacing: 0.3em;
    }

    .c-section-title {
        margin-bottom: 20px;
    }
}

/* ========================================
   Button
======================================== */
.c-btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: center;
    border: 1px solid #333;
    transition: background 0.3s, color 0.3s;
}

.c-btn:hover {
    background: #333;
    color: #fff;
}



/* ========================================
   Card
======================================== */
.c-card {
    background: #fff;
    padding: 30px;
    transition: box-shadow 0.3s;
}

.c-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.c-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.c-card__text {
    font-size: 0.875rem;
    line-height: 1.8;
}

/* ========================================
   Header
======================================== */
.p-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

.p-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1315px;
    margin: 0 auto;
    padding: 0 20px;
    height: 80px;
}

.p-header__logo img {
    height: 40px;
    width: auto;
}

.p-header__nav-list {
    display: flex;
    gap: 30px;
    font-size: 0.875rem;
    font-weight: 500;
}

.p-header__nav-list a {
    transition: opacity 0.3s;
}

.p-header__nav-list a:hover {
    opacity: 0.6;
}

/* ========================================
   Hamburger
======================================== */
.c-hamburger-btn {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.c-hamburger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    position: absolute;
    left: 0;
    transition: transform 0.3s, opacity 0.3s;
}

.c-hamburger-btn span:nth-child(1) { top: 0; }
.c-hamburger-btn span:nth-child(2) { top: 9px; }
.c-hamburger-btn span:nth-child(3) { bottom: 0; }

.c-hamburger-btn.is-active span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

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

.c-hamburger-btn.is-active span:nth-child(3) {
    bottom: 9px;
    transform: rotate(-45deg);
}


/* PCではドロワー内ボタンは非表示 */
.l-header__nav-contact {
    display: none;
}

@media screen and (max-width: 768px) {
    /* 変更：p-header → l-header に統一 */
    .l-header__inner {
        height: 60px;
    }

    .l-header__logo img {
        height: 30px;
    }

    .c-hamburger-btn {
        display: block;
    }

    /* 変更：p-header__nav → l-header__nav */
    .l-header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        padding: 100px 40px 40px;
        transition: right 0.3s;
        z-index: 1000;
    }

    .l-header__nav.is-open {
        right: 0;
    }

    /* 変更：p-header__nav-list → l-header__nav ul（HTMLに合わせる） */
    .l-header__nav ul {
        flex-direction: column;
        gap: 25px;
        font-size: 1rem;
        display: flex;
    }

    body.is-drawer-open {
        overflow: hidden;
    }
    .l-header__nav-contact {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 40px;
        padding: 14px 24px;
        background: #001769;
        color: #fff;
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 0.9375rem;
        font-weight: 600;
        text-decoration: none;
        letter-spacing: 0.1em;
        transition: opacity 0.3s ease;
    }

    .l-header__nav-contact:hover {
        opacity: 0.85;
        color: #fff;
    }

    .l-header__nav-contact-icon {
        width: 18px;
        height: 18px;
        filter: brightness(0) invert(1);
    }
    
}


/* ========================================
   Footer
======================================== */
.p-footer {
    background: #333;
    color: #fff;
    padding: 60px 0 30px;
}

.p-footer__inner {
    max-width: 1115px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.p-footer__nav-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 30px;
    font-size: 0.875rem;
    margin-bottom: 40px;
}

.p-footer__nav-list a {
    transition: opacity 0.3s;
}

.p-footer__nav-list a:hover {
    opacity: 0.6;
}

.p-footer__copyright {
    font-size: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

/* ========================================
   Pagetop
======================================== */
.c-pagetop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.c-pagetop.is-visible {
    opacity: 1;
    visibility: visible;
}

.c-pagetop img {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .p-footer {
        padding: 40px 0 20px;
    }

    .p-footer__nav-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .c-pagetop {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}



/* ========================================
   Accordion
======================================== */
.c-accordion__item {
    border-bottom: 1px solid #ddd;
}

.c-accordion__trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
}



.c-accordion__trigger.is-active::after {
    content: '−';
}

.c-accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.c-accordion__content-inner {
    padding: 0 0 25px;
    font-size: 0.875rem;
    line-height: 1.8;
}

/* ========================================
   Utility
======================================== */
.u-desktop {
    display: block;
}

.u-mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    .u-desktop {
        display: none;
    }

    .u-mobile {
        display: block;
    }
}

/* ========================================
   FV
======================================== */
.p-fv {
    padding-top: 80px;
}

.p-fv__inner {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-top: 80px;
    padding-bottom: 60px;
}

.p-fv__content {
    position: relative;
    z-index: 2;
    width: 55%;
    padding-left: calc((100vw - 1115px) / 2);
}

.p-fv__title {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 520;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: #001769;
    margin-bottom: 24px;
    white-space: nowrap;
}

.p-fv__text {
    font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
    line-height: 2;
    margin-bottom: 40px;
}

.p-fv__btns {
    display: flex;
    gap: 16px;
}

.p-fv__btn {
    font-size: 0.8125rem;
    padding: 12px 24px;
    line-height: 1.5;
    text-align: left;
    background: #fff;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.3s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.p-fv__btn::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 14px 14px;
    border-color: transparent transparent #001769 transparent;
}

.p-fv__btn:hover {
    background: #fff;
    color: inherit;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* 変更：影をやや強く（浮き感UP） */
    transform: translateY(-6px); /* 追加：上に6px浮き上がる */
}

.p-fv__image {
    position: absolute;
    top: -50px;
    right: 0;
    width: 64%;
    height: 570px;
    max-height: 70vh;
    border-top-left-radius: 60px;
    overflow: hidden;
}

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

.p-fv__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .p-fv {
        padding-top: 0;
    }

    .p-fv__inner {
        flex-direction: column-reverse;
        min-height: auto;
        padding-bottom:0;
    }

    .p-fv__content {
        width: 100%;
        padding: 17px 20px 0;
        top: -50px;
    }

    .p-fv__title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .p-fv__text {
        margin-bottom: 24px;
    }

    .p-fv__btns {
        flex-direction: column;
        gap: 12px;
        padding: 0 30px; 
    }

    .p-fv__image {
        position: relative;
        width: 100%;
        height: 50vw;
        border-top-left-radius: 20px;
    }

    .p-fv__image::before {
        width: 30%;
    }
}
/* ========================================
   Gradient Wrapper（FV〜MISSION）
======================================== */
.p-gradient-wrapper {
    background: linear-gradient(to right, #e1eaf1 0%, #ffffff 50%, #e1eaf1 100%);
}

/* ========================================
   MISSION
======================================== */
.p-mission {
    position: relative;
}

.p-mission__body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: nowrap;
    max-width: 800px;
    margin: 0 auto;
}

.p-mission__text {
    flex: none;
    width: 390px;
    min-width: 0;
}

.p-mission__subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.p-mission__text p {
    font-size: 0.85rem;
    line-height: 2;
    margin-bottom: 16px;
}

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

.p-mission__image {
    flex-shrink: 0;
    width: 360px;
    aspect-ratio: 342 / 214;
    border-top-left-radius: 30px;
    overflow: hidden;
}

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

.p-mission__sub-image {
    position: absolute;
    bottom: -58px;
    left: calc((100vw - 1115px) / 2);
    width: 166px;
    height: 116px;
    border-top-right-radius: 20px;
    overflow: hidden;
    z-index: 2;
}

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


.p-mission .c-section-title__ja {
    font-family: 'Shippori Mincho', serif;
    color: #001769;
    font-size: 1.8rem;
    font-weight: 650;
    margin-top: 40px;
}

.p-mission .c-section-title__en {
    font-weight: 500;
    opacity: 0.85;
    font-size: 2rem;
}

.p-mission.l-section {
    padding-top: 10px;
}

@media screen and (max-width: 768px) {
    .p-mission__body {
        flex-direction: column;
        gap: 30px;
    }

    .p-mission__image {
        width: 100%;
        height: 200px;
    }

    .p-mission__sub-image {
        position: relative;
        bottom: auto;
        left: 20px;
        margin-top: 20px;
        width: 120px;
        height: 84px;
        display: none;
    }
    .p-mission .c-section-title__ja{
        margin-top:-30px;
    }
    .p-mission .c-section-title__en{
        font-size: 1.4rem;
        opacity:0.4;
        margin-top: -5px;
    
    }
    .p-mission__text{
        width: 100%;
        max-width: 100%;
    }
}

/* ========================================
   FRONT — SR Aoki 誘導ボタン
======================================== */
/* ========================================
   FRONT — SR Aoki 誘導ボタン
======================================== */

/* 変更：背景は透明（親セクションのグラデーションを継承） */
.p-sr-link {
    background: transparent;
    padding: 30px 0;
    text-align: center;
}

/* ボタン本体 */
.p-sr-link__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-width: 480px;
    padding: 22px 70px 22px 40px;
    /* 変更：背景色を #cfad60 系のグラデーションに */
    background: linear-gradient(135deg, #cfad60 0%, #d9be7e 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 60px;
    box-shadow:
        0 10px 30px rgba(207, 173, 96, 0.4),
        0 4px 10px rgba(207, 173, 96, 0.25);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: p-sr-link-float 3s ease-in-out infinite;
}

@keyframes p-sr-link-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

.p-sr-link__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 100%
    );
    transform: skewX(-25deg);
    transition: left 0.7s ease;
    pointer-events: none;
}

.p-sr-link__btn:hover {
    animation-play-state: paused;
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(207, 173, 96, 0.55),
        0 8px 16px rgba(207, 173, 96, 0.35);
    color: #fff;
}

.p-sr-link__btn:hover::before {
    left: 125%;
}

.p-sr-link__btn-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.p-sr-link__btn-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 変更：mainテキストを単独で配置 */
.p-sr-link__btn-main {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.p-sr-link__btn-arrow {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 6 15 12 9 18'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.p-sr-link__btn:hover .p-sr-link__btn-arrow {
    transform: translateY(-50%) translateX(6px);
}

/* レスポンシブ */
@media (max-width: 768px) {
    .p-sr-link {
        padding: 30px 0;
        padding-bottom: 50px;
        padding-top: 0;
    }

    .p-sr-link__btn {
        min-width: 0;
        width: 90%;
        max-width: 360px;
        gap: 12px;
        padding: 16px 50px 16px 20px;
    }

    .p-sr-link__btn-icon {
        width: 36px;
        height: 36px;
    }

    .p-sr-link__btn-main {
        font-size: 14px;
        letter-spacing: 0.05em;
    }

    .p-sr-link__btn-arrow {
        right: 18px;
        width: 18px;
        height: 18px;
    }
}


/* ========================================
   OUR SERVICES
======================================== */
.p-services {
    position: relative;
    overflow: visible;
    background: linear-gradient(to right, #e3e3e3 0%, #fcfcfc 50%, #e3e3e3 100%);
}

/* サブタイトル（BUSINESS SUPPORT） */
.c-section-title__sub {
    display: block;
    font-family: 'Shippori Mincho', serif;
    font-size: 1.8rem;
    font-weight: 550;
    letter-spacing: 0.5em;
    color: #61351b;
    opacity: 0.25;
    mix-blend-mode: color-burn;
    margin-top: 8px;
}

/* 英語装飾 */
.p-services .c-section-title__en {
    font-size: 1.8rem;
}

/* 日本語見出し */
.p-services .c-section-title__ja {
    font-family: 'Shippori Mincho', serif;
    color: #001769;
    font-size: 2rem;
    font-weight: 550;
    letter-spacing: 0.2em;
}

/* カードグリッド */
.p-services__cards {
    margin-top: 40px;
}

/* カード行（上段・下段） */
.p-services__cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px; /* 上段と下段の間隔 */
}

.p-services__cards-row:last-child {
    margin-bottom: 0;
}

/* カード */
.p-services__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    padding: 24px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.p-services__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* カードアイコン */
.p-services__card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    flex-shrink: 0;
}


.p-services__card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* カード見出し */
.p-services__card-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #001769;
    min-height: 3.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* カード本文 */
.p-services__card-text {
    font-size: 0.85rem;
    line-height: 1.8;
    color: #555;
}

/* ボタン */
.p-services__btn-wrap {
    text-align: center;
    margin-top: 40px;
}

.c-btn--primary {
    display: inline-block;
    background: #0038ff;
    color: #fff;
    padding: 14px 40px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 56, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.c-btn--primary:hover {
    background: #1a4fff;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 56, 255, 0.4);
    opacity: 1;
}

.c-btn--primary::after {
    display: none;
}


.c-btn--primary:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}


/* 右下飾り画像 */
.p-services__deco {
    position: absolute;
    bottom: -60px;
    right: calc((100vw - 1115px) / 2);
    width: 200px;
    z-index: 2;
    opacity: 0; /* 追加 */
    transform: translateY(-30px); /* 追加 */
}

.p-services__deco img {
    width: 100%;
    height: auto;
}
.p-services .c-section-title__sub {
    margin-top: -30px;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
    .p-services__cards-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .p-services__card {
        padding: 20px 16px;
    }

    .p-services__card-title {
        font-size: 1rem;
    }

    .p-services__deco {
        position: relative;
        bottom: auto;
        right: auto;
        width: 140px;
        margin: 10px 0 -70px auto;
    }
    .c-section-title__sub{
        font-size:1.4em;
        opacity: 0.5;
        line-height:1.2;
       
    }
    .p-services.l-section{
        padding-bottom: 20px;
    }
    .p-services .c-section-title__sub{
        margin-top: -5px;
    }
}



.p-services.l-section {
    padding-top: 60px;
}

.p-services__lead {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.8;
    text-align: center;
    margin-top: 40px;
}

.p-services__lead-highlight {
    background: linear-gradient(transparent 60%, #ffed32 60%);
}
.p-services__lead-highlight {
    background: linear-gradient(transparent 60%, #ffed32 60%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    transition: background-size 1.2s ease 0.8s;
}

.p-services__lead-highlight.is-visible {
    background-size: 100% 100%;
}

/* ========================================
   フェードインアニメーション共通
======================================== */
.js-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* 遅延用 */
.js-fade-delay-1 { transition-delay: 0.2s; }
.js-fade-delay-2 { transition-delay: 0.4s; }
.js-fade-delay-3 { transition-delay: 0.6s; }
.js-fade-delay-4 { transition-delay: 0.8s; }


/* ========================================
   CLIENT CONSULTING
======================================== */
.p-consulting {
    background: linear-gradient(to right, #e2ecf2 0%, #fcfeff 50%, #e2ecf2 100%);
}

/* 英語装飾 */
.p-consulting .c-section-title__en {
    font-size: 1.8rem;
    color: #61351b;
    opacity: 0.08;
    mix-blend-mode: color-burn;
}

/* 日本語見出し */
.p-consulting .c-section-title__ja {
    font-family: 'Shippori Mincho', serif;
    color: #001769;
    font-size: 2rem;
    font-weight: 550;
    letter-spacing: 0.1em;
}

/* 写真＋テキスト横並び */
.p-consulting__body {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
}

/* 写真 */
.p-consulting__image {
    flex-shrink: 0;
    width: 420px;
    border-top-left-radius: 30px;
    overflow: hidden;
}

.p-consulting__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* テキスト */
.p-consulting__text {
    flex: 1;
    max-width: 420px;
    font-size: 0.9375rem;
    line-height: 2;
}

.p-consulting__text p {
    margin-bottom: 16px;
}

.p-consulting__note {
    font-size: 0.8125rem;
    color: #666;
}

/* ボタン */
.p-consulting__btn-wrap {
    text-align: center;
    margin-top: 40px;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
    .p-consulting__body {
        flex-direction: column;
        gap: 24px;
    }

    .p-consulting__image {
        width: 100%;
        border-top-left-radius: 20px;
    }

    .p-consulting__text {
        max-width: 100%;
    }
    .p-consulting .c-section-title__en {
    opacity: 0.2;
    margin-top:0;
    }
}

/* 飾り画像バウンドアニメーション */
@keyframes bounce-drop {
    0%   { opacity: 0; transform: translateY(-30px); }
    50%  { opacity: 1; transform: translateY(4px); }
    70%  { transform: translateY(-2px); }
    100% { opacity: 1; transform: translateY(0); }
}

.p-services__deco.is-visible {
    animation: bounce-drop 0.8s ease forwards;
    opacity: 1;
    transform: none;
}

.p-consulting.l-section {
    padding-top: 50px;
}

/* ========================================
   EXECUTION SUPPORT
   ======================================== */
   .p-execution {
    background: linear-gradient(to bottom, #f2f2eb, #fcfeff 50%, #edeef2);
    position: relative;
  
}

.p-execution.l-section {
    padding-top: 0px; /* 値はお好みで調整 */
}

/* --- タイトルエリア --- */
.p-execution__title-area {
    position: relative;
    z-index: 2;
    padding-top: 20px; 
}

.p-execution__en {
    display: block;
    font-family: 'Shippori Mincho', serif; /* 他セクションと同じ */
    font-size: 4.5rem;
    font-weight: 400;
    color: #61351b; /* 他セクションと同じ */
    opacity: 0.10; /* 他セクションと同じ */
    mix-blend-mode: color-burn; /* 他セクションと同じ */
    letter-spacing: 0.2em;
    width: 1100px;
    max-width: 100%;
    line-height: 1;
    margin-top: 60px;

}

.p-execution__ja {
    font-family: 'Shippori Mincho', serif;
    font-size: 3.9rem; /* ≈60px */
    font-weight: 550;
    color: #001769;
    letter-spacing: 0.2em;
    line-height: 1.4;
    margin-top: -20px; /* 英語と重なるように */
    position: relative;
    z-index: 2;
    margin-top: -40px; 
}

/* --- 縦線（伸びても下を押さない） --- */
.p-execution__line {
    width: 2px;
    background: #001769;
    margin: 16px 0 0px 40px;
    height: 235px; /* 最終の長さ */
    clip-path: inset(0 0 100% 0); /* 初期状態：非表示 */
    transition: clip-path 0.8s ease 0.6s;
}

.p-execution__line.is-visible {
    clip-path: inset(0 0 0% 0); /* 上から下に現れる */
}

/* --- リードテキスト --- */
.p-execution__lead {
    margin-top: 16px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease 1.2s, transform 0.6s ease 1.2s; /* 線が伸びた後 */
}

.p-execution__lead.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.p-execution__lead p {
    font-family: 'Shippori Mincho', serif; 
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 2;
    color: #333;
}

/* --- ヒーロー画像（右側配置） --- */
.p-execution__hero-img {
    position: absolute;
    top: 220px; /* 「実行支援」上端あたり */
    right: calc((100% - 1100px) / 2 + 24px); /* l-inner右端に揃える（調整可） */
    width: 400px;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 1.6s, transform 0.6s ease 1.6s;
}

.p-execution__hero-img.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.p-execution__hero-img img {
    width: 100%;
    height: 470px; /* 縦470px */
    object-fit: cover;
    object-position: 30% center;
    border-radius: 0 16px 0 0;
}

/* --- 01-03 ブロック共通 --- */
.p-execution__block {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.p-execution__block-text {
    max-width: 625px;
    flex-shrink: 0;
}

.p-execution__block-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #001769;
    line-height: 1;
    margin-bottom: 8px;
}

.p-execution__block-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.62rem;
    font-weight: 700;
    color: #001769;
    margin-bottom: 12px;
}

.p-execution__block-line {
    border: none;
    border-top: 2px solid #001769;
    width: 625px;
    margin: 0 0 20px 0;
}

.p-execution__block-desc {
    font-size: 0.875rem;
    line-height: 1.8;
    color: #555;
    max-width: 480px; /* 横幅 */
    min-height: 120px; /* 縦目安 */
}

/* ブロック画像 */
.p-execution__block-img {
    flex: 1;
}

.p-execution__block-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* 右上角丸（01, 03） */
.p-execution__block-img--rt img {
    border-radius: 0 16px 0 0;
}

/* 左上角丸（02） */
.p-execution__block-img--lt img {
    border-radius: 16px 0 0 0;
}

/* --- ボタン --- */
.p-execution__btn-wrap {
    text-align: center;
    margin-top: 60px;
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
    .p-execution__en {
        font-size: 2rem;
        margin-top: 20px;
    }

    .p-execution__ja {
        font-size: clamp(1.75rem, 8.5vw, 3rem);
        margin-top: -10px;
        margin-right: -20px;
        letter-spacing: 0.20em;
        white-space: nowrap;
    }

    .p-execution__hero-img {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin-top: 20px;
    }

    .p-execution__hero-img img {
        height: 300px;
    }

    .p-execution__block {
        flex-direction: column;
        gap: 20px;
    }

    .p-execution__block--text-right {
        flex-direction: column;
    }

    .p-execution__block-text {
        max-width: 100%;
    }

    .p-execution__block-line {
        width: 100%;
    }

    .p-execution__block-img img {
        height: 200px;
    }
    .p-execution .l-inner {
        margin-bottom: 0;
    }
    .p-execution__line{
        height: 125px;
    }

    .p-execution__block-text {
        display: contents;
    }
    .p-execution__block-num { order: 1; }
    .p-execution__block-title { order: 2; }
    .p-execution__block-line { order: 3; }
    .p-execution__block-img { order: 4; }
    .p-execution__block-desc { order: 5; }
}

.p-execution__catch {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.7rem; /* ≈30px */
    font-weight: 700;
    color: #001769;
    text-align: center;
    margin-top: 60px;
}

/* ========================================
   COMPANY
   ======================================== */
   .p-company {
    background: url('../images/front-page/bg-cityscape.jpg') center center / cover no-repeat;
    height: 670px;
    display: flex;
    align-items: center;
    position: relative;
}

/* 追加：背景の透明度調整 */
.p-company::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.p-company .l-inner {
    position: relative;
    z-index: 1;
}

/* --- タイトル --- */
.p-company .c-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.p-company .c-section-title__ja {
    font-family: 'Shippori Mincho', serif;
    font-size: 2rem;
    font-weight: 550;
    color: #001769;
    letter-spacing: 0.3em;
}

.p-company .c-section-title__en {
    font-size: 2.5rem;
    color: #61351b;
    opacity: 0.15;
    mix-blend-mode: color-burn;
}

/* --- テーブル --- */
.p-company__table {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-collapse: collapse;
}

.p-company__table tr {
    border-bottom: 1px solid rgba(0, 23, 105, 0.2);
}

.p-company__table th,
.p-company__table td {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    padding: 16px 0;
    text-align: left;
    vertical-align: top;
}

.p-company__table th {
    width: 140px;
    white-space: nowrap;
    font-weight: 500; 
}

.p-company__table td a {
    color: #001769;
    text-decoration: underline;
}

.p-company__table td a:hover {
    text-decoration: none;
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
    .p-company {
        height: auto;
        padding: 60px 0;
    }

    .p-company__table th,
    .p-company__table td {
        font-size: 0.875rem;
        display: block;
        padding: 8px 0;
    }

    .p-company__table th {
        width: 100%;
        padding-bottom: 0;
        font-weight: 700;
    }
}

/* ========================================
   FOOTER
   ======================================== */
   .l-footer {
    background: #202960;
    padding: 60px 0 30px;
}

/* --- コンテンツ3カラム --- */
.l-footer__content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* --- 左カラム --- */
.l-footer__left {
    flex: 0 0 260px;
}

.l-footer__logo {
    margin-bottom: 20px;
}

.l-footer__logo img {
    width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

.l-footer__address {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.75rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 20px;
}

.l-footer__access {
    margin-top: 12px;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.7);
}

.l-footer__links {
    display: flex;
    gap: 24px;
    margin-bottom: 12px;
}

.l-footer__links a {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8125rem;
    color: #fff;
    text-decoration: none;
}

.l-footer__links a:hover {
    opacity: 0.7;
}

/* グループ企業ボタン */
.l-footer__group-btn {
    margin-top: 16px;
}

.l-footer__group-btn a {
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8125rem;
    color: #fff; 
    background: #cfad60; 
    border: 1px solid #cfad60;
    padding: 8px 20px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.l-footer__group-btn a:hover {
    opacity: 0.8; /* ホバーで明るく */
    background: #cfad60;
    color: #fff;
}

/* --- 中央カラム：マップ --- */
.l-footer__map {
    flex: 0 0 340px;
    height: 250px;
    border-radius: 4px;
    overflow: hidden;
}

.l-footer__map iframe {
    display: block;
}

/* --- 右カラム：ナビ --- */
.l-footer__nav {
    flex: 1;
    display: flex;
    gap: 40px;
    justify-content: flex-end;
}

.l-footer__nav-block {
    min-width: 160px;
}

.l-footer__nav-en {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.l-footer__nav-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    padding-bottom: 8px; /* 追加 */
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* 追加 */
}

.l-footer__nav-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.l-footer__nav-block li {
    margin-bottom: 8px;
}

.l-footer__nav-block li a {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.6;
}

.l-footer__nav-block li a:hover {
    color: #fff;
}

/* --- コピーライト --- */
.l-footer__copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.l-footer__copyright p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
    .l-footer__content {
        flex-direction: column;
        gap: 30px;
    }

    .l-footer__left {
        flex: none;
        width: 100%;
    }

    .l-footer__map {
        flex: none;
        width: 100%;
        height: 200px;
    }

    .l-footer__nav {
        flex-direction: column;
        gap: 24px;
    }
}

/* ========================================
   HEADER
   ======================================== */
   .l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 105px;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.l-header__inner {
    max-width: none; /* 追加：幅制限を外す */
    margin: 0 auto;
    padding: 0 40px; /* 左右余白 */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* --- ロゴ --- */
.l-header__logo {
    flex-shrink: 0;
}

.l-header__logo img {
    height: 70px;
    width: auto;
}

/* --- 右エリア --- */
.l-header__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex: 1; 
}

/* --- 上段：TEL + ボタン --- */
.l-header__top {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
}

/* TEL */
.l-header__tel {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-right: 8px;
}

.l-header__tel-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
}

.l-header__tel-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.02em;
}

.l-header__tel-hours {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.625rem;
    color: #888;
    margin-left: 4px;
}

/* ボタン共通 */
.l-header__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    transition: opacity 0.3s ease;
}

.l-header__btn:hover {
    opacity: 0.85;
}

.l-header__btn-icon {
    width: 18px;
    height: 18px;
}

/* お問い合わせボタン */
.l-header__btn--contact {
    background: linear-gradient(to bottom, #004098, #172540);
}

/* 社労士法人ボタン */
.l-header__btn--sr {
    background: #cfad60;
}

/* --- 下段：グローバルナビ --- */
.l-header__nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
    justify-content: flex-end; 
    
}

.l-header__nav li a {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.2em;
}

.l-header__nav li a:hover {
    color: #004098;
}

.l-header__nav {
    margin-top:40px;
    align-self: flex-end;
}

/* --- ヘッダー分の余白 --- */
.l-main {
    padding-top: 105px;
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
    .l-header {
        height: 60px;
    }

    .l-header__logo img {
        height: 40px;
    }

    .l-header__top { display: none; }
    .l-header__right {
        display: block;
    }

    .l-main {
        padding-top: 60px;
    }
}


/* ========================================
   SERVICE PAGE - FV
   ======================================== */
   .p-service-fv {
    position: relative;
    height: 450px;
    
    overflow: visible;
    z-index: 2; 
}

.p-service-fv .l-inner {
    position: relative;
    z-index: 2;
    height: 100%;
}

/* --- コンテンツ（左右並び） --- */
.p-service-fv__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    padding-top: 60px;
}

/* --- 左：タイトルエリア --- */
.p-service-fv__title-area {
    max-width: 500px;
}

.p-service-fv__ja {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.9rem;
    font-weight: 550;
    color: #001769;
    letter-spacing: 0.2em;
    line-height: 1.4;
}

.p-service-fv__en {
    display: block;
    font-family: 'Shippori Mincho', serif;
    font-size: 1.8rem;
    color: #61351b;
    opacity: 0.15;
    mix-blend-mode: color-burn;
    letter-spacing: 0.3em;
    margin-top: -10px;
}

.p-service-fv__lead {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    margin-top: 24px;
}

/* --- 右：説明テキスト --- */
.p-service-fv__desc {
    position: absolute;
    right: 5%;
    bottom: -130px;
    width: 29%;
    background: #fff;
    padding: 24px;
    z-index: 10;
}

.p-service-fv__desc p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #333;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* --- 背景写真（右下端＋上端にくっつく） --- */
.p-service-fv__img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60%;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 30%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 30%);
}

.p-service-fv__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* 左側から透明→不透明のグラデーションマスク */
.p-service-fv__img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        to right,
        rgba(227, 227, 227, 1) 0%,
        rgba(227, 227, 227, 0) 30%
    );
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
    .p-service-fv {
        height: auto;
        padding-bottom: 0px;
        display: flex;
        flex-direction: column;
    }

    .p-service-fv__content {
        flex-direction: column;
        padding-top: 40px;
        gap: 24px;
    }

    .p-service-fv__ja {
        font-size: 2rem;
    }

    .p-service-fv__lead {
        font-size: 0.9rem;
    }

    .p-service-fv__desc {
        order: 3;
        position: static;
        width: 100%;
        max-width: 90%;
        padding: 20px;
        margin: -30px auto 0;

    }

    .p-service-fv__img {
        width: 100%;
        height: 250px;
        position: relative;
        order: 2;
    }
    .p-service-fv__en {
        line-height: 1;
        margin-top: 0;
    }
}

/* ========================================
   SERVICE CARDS (8 items zigzag)
   ======================================== */
   .p-service-cards {
    padding: 50px 0 60px;
}

.p-service-cards .l-inner {
    position: relative;
}

/* --- 2カラムGrid --- */
.p-service-cards__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 0; 
}

/* 右カラム（偶数）を77px下にオフセット */
.p-service-cards__grid > .p-service-cards__item:nth-child(even) {
    margin-top: 77px;
}

/* 左カラム（奇数）の1個目以外は上に詰める */
.p-service-cards__grid > .p-service-cards__item:nth-child(odd):not(:first-child) {
    margin-top: 0;
}

/* --- 各カード --- */
.p-service-cards__item {
    position: relative;
    width: 100%;
}

/* --- 番号 --- */
.p-service-cards__num {
    display: block;
    font-family: 'Futura', 'Century Gothic', sans-serif;
    font-size: 3.5rem;
    font-weight:550;
    color: #202960;
    line-height: 1;
    margin-bottom: 8px;
}

/* --- 写真ラッパー --- */
.p-service-cards__img {
    position: relative;
    width: 490px;
    height: 310px;
    overflow: visible;
    cursor: pointer;
}

.p-service-cards__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
    transition: filter .3s ease, transform .3s ease;
}

.p-service-cards__img:hover img {
    filter: brightness(1.1);
    transform: scale(1.05); 
}

/* --- 見出し（白背景、右寄せ、写真に半分被る） --- */
.p-service-cards__title {
    position: absolute;
    top: -24px;
    right: -40px;
    z-index: 2;
    font-family: 'Shippori Mincho', serif;
    font-size: 1.75rem;
    font-weight: 550;
    color: #202960;
    line-height: 1.5;
    background: #fff;
    padding: 4px 8px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    white-space: nowrap;
    transition: background-color .3s ease, color .3s ease;
}

.p-service-cards__img:hover .p-service-cards__title {
    background-color: #00bfff; /* ★追加：白→水色 */
    color: #fff; /* ★追加：紺→白 */
}

/* --- 説明文（白背景、左に突き出し、写真下端から88px上） --- */
.p-service-cards__desc {
    position: absolute;
    bottom: 27px;
    left: -38px;
    display: block;
    flex-direction: column; /* ★追加 */
    gap: 4px; /* ★追加：行間4pxの隙間 */
    padding: 0; /* ★変更 */
    background: transparent; /* ★変更 */
}

.p-service-cards__desc-line {
    display: block; /* ★変更：inline → block */
    width: fit-content; /* ★追加：文字幅ぴったり */
    background: #fff;
    padding: 4px 8px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    transition: background-color .3s ease, color .3s ease;
}

.p-service-cards__desc-line + .p-service-cards__desc-line { 
    margin-top: 4px;
}

.p-service-cards__img:hover .p-service-cards__desc-line {
    background-color: #00bfff; /* ★追加：白→水色 */
    color: #fff; /* ★追加：黒→白 */
}

/* --- ボタン --- */
.p-service-cards__btn-wrap {
    text-align: center;
    margin-top: 60px;
}

.c-btn__icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
}

/* --- deco --- */
.p-service-cards__deco {
    position: absolute;
    bottom: -130px;
    right: calc((100vw - 1500px) / 2);
    width: 230px;
    z-index: 10;
    opacity: 0;
    transform: translateY(-30px);
}

.p-service-cards__deco.is-visible {
    animation: bounce-drop 0.8s ease forwards;
    opacity: 1;
    transform: none;
}


/* --- レスポンシブ --- */
@media (max-width: 768px) {
    .p-service-cards__grid {
        grid-template-columns: 1fr;
        gap: 40px 0;
    }
    .p-service-cards__grid > .p-service-cards__item:nth-child(even) {
        margin-top: 0;
    }
    .p-service-cards__grid > .p-service-cards__item:nth-child(odd):not(:first-child) {
        margin-top: 0;
    }

    /* 変更：アイテム全体に position: relative を確保 */
    .p-service-cards__item {
        position: relative;
        padding-top: 0;
    }

    /* 変更：番号を写真左上に絶対配置 */
    .p-service-cards__num {
        position: absolute;
        top: 8px;
        left: 8px;
        z-index: 3;
        font-size: 2.5rem;
        color: #fff;
        text-shadow: 0 2px 4px rgba(0,0,0,0.4);
        margin-bottom: 0;
    }

    /* 変更：写真コンテナ */
    .p-service-cards__img {
        width: 100%;
        height: 220px;
        position: relative;
    }

    /* 変更：タイトルを写真の上端右に重ねる */
    .p-service-cards__title {
        position: absolute;
        top: 0;
        right: 0;
        left: auto;
        white-space: normal;
        font-size: 1.125rem;
        padding: 6px 12px;
        z-index: 2;
        max-width: 80%;
    }

    /* 変更：説明文を写真の下に通常配置 */
    .p-service-cards__desc {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: -50px;
        padding-left: 0;
        z-index: 2;
    }

    .p-service-cards__desc-line {
        font-size: 0.9rem;
        padding: 4px 8px;
    }

    .p-service-cards__deco {
        display: none;
    }
}

.p-service-bg {
    background: linear-gradient(to right, #e3e3e3, #fcfcfc 50%, #e3e3e3);
}

/* ========== MODAL ========== */
.c-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    justify-content: center;
    align-items: flex-start;
}

.c-modal.is-open {
    display: flex;
}

.c-modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.c-modal__content {
    position: relative;
    z-index: 1;
    background: #fff;
    width: 1080px;
    max-width: 90vw;
    max-height: 85vh;
    overflow-y: auto;
    margin-top: 5vh;
    padding: 60px;
    box-sizing: border-box;
}

.c-modal__close {
    position: absolute;
    top: 18px;
    right: 24px;
    background: none;
    border: none;
    font-size: 3rem;
    color: #333;
    cursor: pointer;
    line-height: 1;
    z-index: 2;
}

.c-modal__close:hover {
    color: #000;
}

/* モーダルFV */
.c-modal__fv {
    position: relative;
    margin-bottom: 36px;
    overflow: hidden; 
    padding-left: 30px; 
    padding-right: 30px; 
}

.c-modal__fv-img {
    position: relative;
    width: 100%;
    height: 465px;
    overflow: visible;
}

.c-modal__fv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-modal__fv .p-service-cards__num {
    display: block;
    margin-bottom: 12px;
    font-size: 5.9rem;
}

.c-modal__fv .p-service-cards__title {
    position: absolute;
    top: -40px;
    right: 0;
    background: #fff;
    padding: 6px 12px;
    z-index: 1;
    font-size: 2.625rem;
}

.c-modal__fv .p-service-cards__desc {
    position: absolute;
    bottom: 40px;
    left: 0;
}

.c-modal__fv .p-service-cards__desc-line { /* ★新規 */
    font-size: 1.6875rem;
    padding: 6px 12px;
}

/* 説明文 */
.c-modal__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    
    margin-bottom: 15px;
}

/* 実績紹介 見出し */
.c-modal__case-heading {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #202960;
    margin-bottom: 24px;
}

/* 実績カード */
.c-modal__case {
    display: flex;
    gap: 30px;
}

.c-modal__case-img {
    width: 360px;
    flex-shrink: 0;
}

.c-modal__case-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.c-modal__case-info {
    flex: 1;
}

.c-modal__case-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #000;
    margin-bottom: 3px;
}

.c-modal__case-industry {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    color: #666;
    margin-bottom: 12px;
}

.c-modal__case-hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 12px 0;
}

.c-modal__case-detail {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16.5px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
}

.c-modal__case-body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16.5px;
    line-height: 1.6;
    color: #333;
}

/* モーダル内テキストブロックの幅制御 */
.c-modal__text-block {
    max-width: 660px;
    margin: 0 auto 0 50px;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .c-modal__content {
        width: 95vw;
        padding: 24px 16px;
    }

    .c-modal__fv-img {
        height: 200px;
    }

    /* 変更：番号をカード用の絶対配置から通常配置に戻す */
    .c-modal__fv .p-service-cards__num {
        position: static;
        font-size: 3.5rem;
        color: #202960;
        text-shadow: none;
        margin-bottom: 12px;
    }

    /* 変更：タイトル小さめ＋写真上端に重ねる */
    .c-modal__fv .p-service-cards__title {
        font-size: 1rem;
        top: -28px;
        right: 0;
        left: auto;
        padding: 4px 10px;
        max-width: 90%;
        white-space: normal;
    }

    /* 変更：説明文は写真の下端付近に絶対配置 */
    .c-modal__fv .p-service-cards__desc {
        position: absolute;
        bottom: 5px;
        left: 0;
        margin-top: 0;
        z-index: 2;
    }

    .c-modal__fv .p-service-cards__desc-line {
        font-size: 0.875rem;
        padding: 4px 8px;
    }

    .c-modal__text {
        font-size: 13px;
    }

    .c-modal__case-heading {
        font-size: 20px;
    }

    .c-modal__case {
        flex-direction: column;
    }

    .c-modal__case-img {
        width: 100%;
    }

    .c-modal__case-name {
        font-size: 16px;
    }

    .c-modal__case-industry {
        font-size: 12px;
    }

    .c-modal__case-detail {
        font-size: 11px;
    }

    .c-modal__case-body {
        font-size: 11px;
    }

    .c-modal__text-block {
        max-width: 100%;
        margin:0 auto;
        
    }
}



.p-service-cards__btn-wrap .c-btn--primary { 
    padding: 15px 40px;
    font-size: 1rem;
}

.p-service-cards__btn-wrap .c-btn__icon { 
    width: 26px;
    height: 26px;
    margin-right: 10px;
}

/* 実績紹介セクションを一時的に非表示 */
.c-modal__case-heading,
.c-modal__case {
    display: none;
}

/* ========== CONSULTING SECTION ========== */

/* セクション全体 */
.p-service-consulting {
    background: #fff;
    padding: 80px 0 60px;
}

/* ヘッダー */
.p-service-consulting__header {
    margin-bottom: 60px;
}

.p-service-consulting__title {
    font-family: 'Shippori Mincho', serif;
    font-size: 55px;
    font-weight: 600;
    color: #001769;
    line-height: 1.6;
    margin-bottom: -10px;
    letter-spacing: 0.2em;
}

.p-service-consulting__en {
    display: block;
    font-family: 'Shippori Mincho', serif;
    font-size: 33px;
    font-weight: 500;
    color: #001769;
    letter-spacing: 0.1em;
    opacity: 0.5;
    margin-bottom: 20px;
}

.p-service-consulting__lead {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 2;
}

.p-service-consulting__lead small {
    background: #f4e9ef;
    padding: 2px 6px;  
    font-size: 12px;
    color: #666;
}

/* ========== 4ブロック ========== */

.p-service-consulting__blocks {
    max-width: 907px;
    margin: 0 auto;
}

.p-service-consulting__block {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* 写真 */
.p-service-consulting__block-img {
    width: 46.4%; /* 421/907 レスポンシブ対応 */
    flex-shrink: 0;
}

.p-service-consulting__block-img img {
    width: 100%;
    height: 216px;
    object-fit: cover;
}

/* テキスト側 */
.p-service-consulting__block-body {
    flex: 1;
}

/* 見出し */
.p-service-consulting__block-heading {
    display: flex;
    align-items: center;
    font-family: 'Shippori Mincho', serif;
    font-size: 28px;
    font-weight: 600;
    color: #001769;
    margin-bottom: 40px;
}

/* 見出し左の青縦線 */
.p-service-consulting__block-bar {
    display: inline-block;
    width: 5px;
    height: 44px;
    background: #001769;
    margin-right: 12px;
    flex-shrink: 0;
}

/* 説明文（太字） */
.p-service-consulting__block-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* テキスト文（本文） */
.p-service-consulting__block-sub {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #000;
    line-height: 1.8;
}

/* 区切り線 */
.p-service-consulting__hr {
    border: none;
    border-top: 1px solid #9fa0a0;
    margin: 25px 0;
}

/* ========== パートナーコンサルタント ========== */

.p-service-consulting__partner {
    position: relative;
    width: 100%;
    max-width: 940px; /* ★変更 */
    height: 180px;    /* ★変更 */
    margin: 60px auto 0; /* ★変更: 中央配置 */
    overflow: hidden;
}

.p-service-consulting__partner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-service-consulting__partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 23, 105, 0.55);
    mix-blend-mode: overlay;
}

.p-service-consulting__partner-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.p-service-consulting__partner-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 34px;
    font-weight: 600;
    color: #fff;
    line-height: 1.6;
    margin-bottom: -10px;
    margin-top: 20px;
}

.p-service-consulting__partner-en {
    font-family: 'Shippori Mincho', serif;
    font-size: 23px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.1em;
    opacity: 0.5;
    mix-blend-mode: overlay; 
}

/* ========== 注釈文 ========== */

.p-service-consulting__note {
    max-width: 450px; 
    margin: 40px auto; 
}

.p-service-consulting__note p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    line-height: 1.8;
}

/* ========== ボタン ========== */

.p-service-consulting__btn-wrap {
    text-align: center;
    margin-top: 40px;
}

/* ========== レスポンシブ ========== */

@media (max-width: 768px) {
    .p-service-consulting {
        padding: 48px 0 40px;
    }

    .p-service-consulting__title {
        font-size: 24px;
    }

    .p-service-consulting__block {
        flex-direction: column;
        gap: 20px;
    }

    .p-service-consulting__block-img {
        width: 100%;
    }

    .p-service-consulting__block-img img {
        height: auto;
    }

    .p-service-consulting__block-heading {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .p-service-consulting__block-text {
        margin-bottom: 24px;
    }

    .p-service-consulting__partner {
        height: 220px;
        margin-top: 40px;
    }

    .p-service-consulting__partner-title {
        font-size: 22px;
    }
}


/* ========================================
   ABOUT (page-company) — FV〜会社情報表
======================================== */

/* ★追加：FV〜会社情報表 共通グラデーション背景 */
.p-about-fv-wrap {
    background: linear-gradient(to bottom, #edeef2 0%, #fcfeff 50%, #f2f2eb 100%);
}

/* ★追加：FV */
.p-about-fv {
    position: relative;
    height: 325px;
    overflow: hidden;
    z-index: 2;
}

.p-about-fv .l-inner {
    position: relative;
    z-index: 2;
    height: 100%;
}

.p-about-fv__title-area {
    padding-top: 40px;
}

.p-about-fv__ja {
    font-family: 'Shippori Mincho', serif;
    font-size: 55px;
    font-weight: 600;
    color: #001769;
    letter-spacing: 0.15em;
    line-height: 1.4;
    margin: 0;
}

.p-about-fv__en {
    display: block;
    font-family: 'Shippori Mincho', serif;
    font-size: 28px;
    font-weight: 400;
    color: #61351b;
    opacity: 0.6;
    letter-spacing: 0.3em;
    margin-top: 4px;
}

/* ★追加：FV右側のデスク画像（右端ぴったり、左端から30%まで白→透明グラデ） */
.p-about-fv__img {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 30%);  
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 30%);   
}

.p-about-fv__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}


/* ★追加：会社情報表ブロック */
.p-about-profile {
    padding: 50px 0 80px;
}

.p-about-profile__table {
    width: auto;
    margin: 0 auto;  
    border-collapse: collapse;
}

.p-about-profile__table tr {
    border-bottom: 1px solid #9fa0a0;
}

.p-about-profile__table th,
.p-about-profile__table td {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #333;
    padding: 18px 0;
    text-align: left;
    vertical-align: middle;
    line-height: 1.6;
    white-space: nowrap; 
    padding-right: 8px;
}

.p-about-profile__table th {
    width: 160px;
    white-space: nowrap;
    font-weight: 500;
    padding-right: 20px;
}

.p-about-profile__table td a {
    color: #001769;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.p-about-profile__table td a:hover {
    opacity: 0.7;
}

/* ★追加：レスポンシブ */
@media (max-width: 768px) {
    .p-about-fv {
        height: 140px;
    }

    .p-about-fv__title-area {
        padding-top: 20px;
    }

    .p-about-fv__ja {
        font-size: 2rem;
        letter-spacing: 0.1em;
    }

    .p-about-fv__en {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }

    .p-about-fv__img {
        width: 75%;
    }

    .p-about-profile {
        padding: 30px 0 50px;
    }

    .p-about-profile__table th,
    .p-about-profile__table td {
        display: block;
        padding: 8px 0;
        font-size: 0.875rem;
        white-space: normal;  
        padding-right: 0;  
    }

    .p-about-profile__table th {
        width: 100%;
        padding-bottom: 0;
        font-weight: 700;
    }

    .p-about-profile__table tr {
        padding: 8px 0;
    }
}

/* ========================================
   ABOUT — 設立の背景
======================================== */

/* ★追加：セクション全体 */
.p-about-background {
    background: #fff;
    padding: 60px 0 0;
}

/* ★追加：見出し（中央寄せ） */
.p-about-background__heading {
    text-align: center;
    margin-bottom: 40px;
}

.p-about-background__ja {
    font-family: 'Shippori Mincho', serif;
    font-size: 38px;
    font-weight: 600;
    color: #001769;
    letter-spacing: 0.2em;
    line-height: 1.4;
    margin: 0;
}

.p-about-background__en {
    display: block;
    font-family: 'Shippori Mincho', serif;
    font-size: 28px;
    font-weight: 400;
    color: #a17459;
    letter-spacing: 0.3em;
    margin-top: 4px;
}

/* ★追加：本体レイアウト */
.p-about-background__body {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(20px, 5vw, 70px);
    padding: 0 0 60px;
}

/* ★追加：左 縦書き見出し（2カラム） */
.p-about-background__catch {
    display: flex;
    flex-direction: row;          /* 右列→左列の順に並ぶよう row-reverse 不要：HTML順で「士業が、」が右に来るよう row-reverse を使う */
    flex-direction: row-reverse;
    gap: 12px ;
    flex-shrink: 0;
    margin-top: 20px;
    align-items: flex-start; 
}

.p-about-background__catch-col {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    font-family: 'Shippori Mincho', serif;
    font-size: 34px;
    font-weight: 600;
    color: #fff;
    background: #000066;
    letter-spacing: 0.15em;
    line-height: 1;
    padding: 16px 8px;            /* 1文字につき1本の縦四角になるよう、文字幅ぴったり */
    
}

/* ★追加：中央 メイン画像＋本文 */
.p-about-background__main {
    width: 434px;
    flex-shrink: 0;
}

.p-about-background__main-img {
    width: 434px;
    height: 272px;
    border-top-left-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

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

.p-about-background__texts {
    font-family: 'Noto Sans JP', sans-serif;
}

.p-about-background__text {
    font-size: 13px;
    line-height: 2;
    color: #333;
    margin-bottom: 24px;
}

.p-about-background__text:last-child {
    margin-bottom: 0;
}

/* ★追加：太字リード文 */
.p-about-background__text--lead {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    line-height: 1.9;
    letter-spacing: 0.1em;
}

/* ★追加：黄色ハイライト（front-page p-services__lead 参考） */
.p-about-background__highlight {
    background: linear-gradient(transparent 60%, #ffed32 60%);
}




/* ★追加：右下 サブ画像 */
.p-about-background__sub-img {
    width: 200px;
    height: 134px;
    border-top-right-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    margin-top: 490px;              /* この数値で縦位置調整。小さく→上、大きく→下 */
}

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

/* ★追加：下端のhr（セクション横幅いっぱい・グレー） */
.p-about-background__hr {
    border: none;
    border-top: 1px solid #9fa0a0;
    margin: 0;
}

/* ★追加：レスポンシブ */
@media (max-width: 768px) {
    .p-about-background {
        padding: 40px 0 0;
    }

    .p-about-background__ja {
        font-size: 24px;
    }

    .p-about-background__en {
        font-size: 16px;
        letter-spacing: 0.2em;
    }

    .p-about-background__body {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding-bottom: 40px;
    }

    .p-about-background__catch {
        position: absolute;
        top: -30px;
        left: 10px;
        flex-direction: row-reverse;
        margin-top: 0;
        z-index: 2;
    }

    .p-about-background__catch-col {
        font-size: 18px;
        padding: 8px 5px 0 5px;
        padding-bottom: 0;
    }

    .p-about-background__main {
        width: 100%;
        position: relative;
    }

    .p-about-background__main-img {
        width: 100%;
        height: auto;
        aspect-ratio: 434 / 272;
        margin-bottom: 70px;
    }

    .p-about-background__text--lead {
        font-size: 16px;
    }

    .p-about-background__sub-img {
        width: 60%;
        height: auto;
        aspect-ratio: 200 / 134;
        margin-top: 0;
        align-self: flex-end;
    }
}

/* ========================================
   ABOUT — 私たちの役割
======================================== */

/* ★追加：セクション全体 */
.p-about-mission {
    position: relative;
    background: #fff;
    height: 750px;
    padding: 60px 0 0;
    margin-bottom: 80px;
}

.p-about-mission .l-inner {
    position: relative;
    height: 100%;
}

/* ★追加：左上 deco画像（フロントページのdecoと同じバウンドアニメ） */
.p-about-mission__deco {
    position: absolute;
    top: -80px;
    left: 0;
    width: 250px;
    z-index: 1;
    opacity: 0;
    transform: translateY(-30px);
}

.p-about-mission__deco img {
    width: 100%;
    height: auto;
}

.p-about-mission__deco.is-visible {
    animation: bounce-drop 0.8s ease forwards;
    opacity: 1;
    transform: none;
}

/* ★追加：見出し（中央寄せ） */
.p-about-mission__heading {
    text-align: center;
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.p-about-mission__ja {
    font-family: 'Shippori Mincho', serif;
    font-size: 38px;
    font-weight: 600;
    color: #001769;
    letter-spacing: 0.2em;
    line-height: 1.4;
    margin: 0;
}

.p-about-mission__en {
    display: block;
    font-family: 'Shippori Mincho', serif;
    font-size: 28px;
    font-weight: 400;
    color: #a17459;
    letter-spacing: 0.3em;
    margin-top: 4px;
}

/* ★追加：右上 縦書きキャッチ（設立の背景と同スタイル） */
.p-about-mission__catch {
    position: absolute;
    top: 0;
    right: 80px;
    display: flex;
    flex-direction: row-reverse;
    gap: 12px;
    align-items: flex-start;
    z-index: 2;
}

.p-about-mission__catch-col {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    font-family: 'Shippori Mincho', serif;
    font-size: 34px;
    font-weight: 600;
    color: #fff;
    background: #000066;
    letter-spacing: 0.15em;
    line-height: 1;
    padding: 16px 8px;
}

/* ★追加：中央本文 */
.p-about-mission__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #333;
    line-height: 2;
    text-align: center;
    margin-top: 40px;
}

/* ★追加：黄色ハイライト（出しっぱなし） */
.p-about-mission__highlight {
    background: linear-gradient(transparent 60%, #ffed32 60%);
}

/* ★追加：吹き出し */
.p-about-mission__fukidashi {
    position: relative;
    width: 283px;
    margin: 40px auto 30px;
    text-align: center;
}

.p-about-mission__fukidashi img {
    width: 100%;
    height: auto;
    display: block;
}

.p-about-mission__fukidashi-text {
    position: absolute;
    top:45%;
    left: 50%;
    transform: translate(-50%, -65%);  /* 吹き出しの「上の三角分」を考慮して少し上寄せ */
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    letter-spacing: 0.1em;
}

/* ★追加：カード3枚 */
.p-about-mission__cards {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 30px;
}

/* ★追加：個別カード */
.p-about-mission__card {
    position: relative;
    width: 307px;
    min-height: 212px;
    background: #e4e7eb;
    border-radius: 12px;
    padding: 24px 20px 20px 100px;  /* 左にアイコン領域80px分の余白 */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
}

/* ★追加：カード左の青いアイコン領域 */
.p-about-mission__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    background: #001769;
    border-radius: 12px 0 0 12px;
}

/* ★追加：アイコン */
.p-about-mission__card-icon {
    position: absolute;
    top: 24px;
    left: 16px;
    width: 48px;
    height: 48px;
    z-index: 1;
}

.p-about-mission__card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ★追加：カードタイトル */
.p-about-mission__card-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #001769;
    line-height: 1.5;
    margin: 0 0 12px;
}

/* ★追加：カード本文 */
.p-about-mission__card-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

/* ★追加：下端hr（このセクション横幅いっぱい・グレー） */
.p-about-mission__hr {
    border: none;
    border-top: 1px solid #9fa0a0;
    margin: 60px 0 0;
}

/* ★追加：レスポンシブ */
@media (max-width: 768px) {
    .p-about-mission {
        height: auto;
        padding: 40px 0 0;
    }

    .p-about-mission__deco {
        position: absolute;
        top: -78px;
        left: 0;
        width: 140px;
        order: 0;
    }

    .p-about-mission__ja {
        font-size: 24px;
    }

    .p-about-mission__en {
        font-size: 16px;
        letter-spacing: 0.2em;
    }

    /* 変更：l-innerをflex化せず、catchとtextだけ横並びにする */
    /* catchをfloat or 絶対配置ではなく、textとflexで包むためl-innerを使う */
    .p-about-mission .l-inner {
        display: flex;
        flex-wrap: wrap;
        position: relative;
    }

    /* deco, heading, fukidashi, cards, hr は全幅で通常表示 */
    
    .p-about-mission__heading,
    .p-about-mission__fukidashi,
    .p-about-mission__cards,
    .p-about-mission__hr {
        width: 100%;
    }

    /* 変更：catch を左に配置 */
    .p-about-mission__catch {
        position: relative;
        top: auto;
        right: auto;
        margin: 20px 0;
        flex-shrink: 0;
        order: 3;
    }

    .p-about-mission__catch-col {
        font-size: 22px;
        padding: 12px 6px;
    }

    /* 変更：text を catch の右に配置 */
    .p-about-mission__text {
        font-size: 15px;
        text-align: left;
        margin-top: 20px;
        flex: 1;
        min-width: 0;
        padding-left: 16px;
        order: 4;
    }

    /* order指定で表示順を制御 */

    .p-about-mission__heading { order: 2; }
    .p-about-mission__fukidashi { order: 5; width: 100%; }
    .p-about-mission__cards { order: 6; }
    .p-about-mission__hr { order: 7; }

    .p-about-mission__cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 0;
    }

    .p-about-mission__card {
        width: 100%;
        max-width: 360px;
    }
}


/* ========================================
   ABOUT — 社労士法人との関係について
======================================== */

/* ★追加：セクション全体（背景グラデーション、このセクション内で完結） */
.p-about-relation {
    background: linear-gradient(to bottom, #edeef2 0%, #fcfeff 50%, #f2f2eb 100%);
    height:  auto; 
  
    padding: 60px 0;
    box-sizing: border-box;
    margin-top: 80px;
}

.p-about-relation .l-inner {
    height: 100%;
}

/* ★追加：本体レイアウト */
.p-about-relation__body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    height: 100%;
}

/* ★追加：左テキストエリア */
.p-about-relation__left {
    width: 380px;
    flex-shrink: 0;
}

/* ★追加：セクション見出し */
.p-about-relation__title {
    font-family: 'Shippori Mincho', serif;
    font-size: 38px;
    font-weight: 600;
    color: #001769;
    letter-spacing: 0.2em;
    line-height: 1.4;
    margin: 0 0 24px;
    white-space: nowrap;
}

/* ★追加：バッジ風サブ見出し */
.p-about-relation__badge {
    display: block; 
    width: fit-content;
    margin: 0 auto 20px;    
    background: #cfad60;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 6px 16px;
    
    line-height: 1.5;
    white-space: nowrap;  
}

/* ★追加：本文 */
.p-about-relation__texts p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #333;
    line-height: 1.9;
    margin: 0 0 20px;
}

.p-about-relation__texts p:last-child {
    margin-bottom: 0;
}

/* ★追加：握手写真 */
.p-about-relation__handshake {
    width: 300px;
    margin: 30px auto 0;  
    border-top-left-radius: 12px;
    overflow: hidden;
}

.p-about-relation__handshake img {
    width: 100%;
    height: auto;
    display: block;
}

/* ★追加：右 建物イラスト */
.p-about-relation__right {
    flex-shrink: 0;
    align-self: flex-start;
    width: 500px;  
}

/* ★追加：建物イラスト */
.p-about-relation__illust {
    width: 100%;
    height: auto;
    display: block;
}

/* ★追加：PNG下の吹き出し */
.p-about-relation__fukidashi {
    position: relative;
    width: 300px;
    margin: 10px auto 0;
    text-align: center;
    left: 16px;
}

/* ★追加：吹き出しSVG */
.p-about-relation__fukidashi img {
    width: 100%;
    height: auto;
    display: block;
    transform: scaleY(-1); 
}

/* ★追加：吹き出し内テキスト */
.p-about-relation__fukidashi-text {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -65%);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    letter-spacing: 0.1em;
}

/* ★追加：レスポンシブ */
@media (max-width: 768px) {
    .p-about-relation {
        height: auto;
        padding: 40px 0;
    }

    .p-about-relation__body {
        flex-direction: column;
        gap: 30px;
    }

    .p-about-relation__left {
        width: 100%;
    }

    .p-about-relation__title {
        font-size: 24px;
        white-space: normal;
    }

    .p-about-relation__badge {
        font-size: 14px;
    }

    .p-about-relation__handshake {
        width: 60%;
    }

    .p-about-relation__right {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .p-about-relation__right img {
        height: auto;
        width: 100%;
    }
    .p-about-relation__fukidashi {
        left: 0;
    }
}


/* ========================================
   ABOUT — 今後について
======================================== */

/* ★追加：セクション全体 */
.p-about-future {
    position: relative;
    background: #fff;
    padding: 60px 0 0px;
}

.p-about-future .l-inner {
    position: relative;
    min-height: 810px;
}

/* ★追加：見出し */
.p-about-future__title {
    font-family: 'Shippori Mincho', serif;
    font-size: 38px;
    font-weight: 600;
    color: #001769;
    letter-spacing: 0.2em;
    line-height: 1.4;
    text-align: center;
    margin: 0 0 40px;
}

/* ★追加：リード文 */
.p-about-future__lead {
    width: 570px;
    margin: 0 auto;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 23px;
    font-weight: 700;
    color: #136aa3;
    line-height: 1.8;
    text-align: center;
}

/* ★追加：本文 */
.p-about-future__texts {
    width: 570px;
    margin: 65px auto 0;
}

.p-about-future__texts p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.9;
    margin: 0 0 24px;
}

.p-about-future__texts p:last-child {
    margin-bottom: 0;
}

/* ★追加：写真共通 */
.p-about-future__img {
    position: absolute;
    overflow: hidden;
}

.p-about-future__img img {
    width: 100%;
    height: auto;
    display: block;
}

/* ★追加：左上 meeting */
.p-about-future__img--meeting {
    top: 90px;
    left: 0;
    width: 186px;
    border-top-left-radius: 12px;
}

/* ★追加：右上 desk */
.p-about-future__img--desk {
    top: 200px;
    right: 0;
    width: 263px;
    border-top-right-radius: 12px;
}

/* ★追加：左下 staff */
.p-about-future__img--staff {
    top: 360px;
    left: -120px;
    width: 354px;
    height: 200px; 
    border-top-left-radius: 12px;
}

.p-about-future__img--staff img {
    width: 100%;
    height: 100%;       /* ★追加：親に合わせる */
    object-fit: cover;  /* ★追加：はみ出しは切り取り */
}

/* ★追加：右下 deco（バウンドアニメ） */
.p-about-future__deco {
    position: absolute;
    top: 420px;
    right: 30px;
    width: 148px;
    z-index: 1;
    opacity: 0;
    transform: translateY(-30px);
}

.p-about-future__deco img {
    width: 100%;
    height: auto;
    display: block;
}

.p-about-future__deco.is-visible {
    animation: bounce-drop 0.8s ease forwards;
    opacity: 1;
    transform: none;
}

/* ★追加：お問い合わせボタンエリア */
.p-about-future__btn-wrap {
    text-align: center;
    margin-top: 120px;
    position: relative;
    z-index: 2;
}

/* ★追加：お問い合わせボタン */
.p-about-future__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #001769;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 22px 80px;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 23, 105, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-about-future__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 23, 105, 0.35);
    color: #fff;
}

.p-about-future__btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.p-about-future__btn-icon svg {
    width: 100%;
    height: 100%;
}

/* ★追加：レスポンシブ */
@media (max-width: 768px) {
    .p-about-future {
        padding: 40px 0 60px;
    }

    .p-about-future .l-inner {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .p-about-future__title {
        font-size: 24px;
        order: 1;
        margin-bottom: 10px;
    }

    .p-about-future__img--desk {
        order: 2;
    }


    .p-about-future__lead {
        width: auto;
        margin-left: -12px;
        margin-right: -12px;
        font-size: min(4vw, 1.5rem);
        white-space: nowrap;
        order: 3;
    }

    .p-about-future__texts {
        width: 100%;
        margin-top: 30px;
        order: 4;
    }

    .p-about-future__img--meeting,
    .p-about-future__img--staff,
    .p-about-future__deco {
        order: 5;
    }

    .p-about-future__btn-wrap {
        order: 6;
        margin-top: 40px;
    }

    .p-about-future__img,
    .p-about-future__deco {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin: 20px auto;
        width: 80%;
    }

    .p-about-future__btn {
        font-size: 16px;
        padding: 16px 40px;
    }
    .p-about-future__img--meeting,
    .p-about-future__img--staff,
    .p-about-future__deco {
        display: none;
    }

    
}

/* ========================================
   RECRUIT 採用情報ページ 
   ======================================== */

/* ★追加：FV ラッパー（背景グラデ／about同値） */
.p-recruit-fv-wrap {
    background:  #ffffff;
}

/* ★追加：FV（about同値） */
.p-recruit-fv {
    position: relative;
    height: 325px;
    overflow: hidden;
    z-index: 2;
}

.p-recruit-fv .l-inner {
    position: relative;
    z-index: 2;
    height: 100%;
}

/* ★追加：タイトルエリア（about同値） */
.p-recruit-fv__title-area {
    padding-top: 40px;
}

/* ★追加：日本語タイトル（about同値） */
.p-recruit-fv__ja {
    font-family: 'Shippori Mincho', serif;
    font-size: 55px;
    font-weight: 600;
    color: #001769;
    letter-spacing: 0.15em;
    line-height: 1.4;
    margin: 0;
}

/* ★追加：英語サブタイトル（about同値） */
.p-recruit-fv__en {
    display: block;
    font-family: 'Shippori Mincho', serif;
    font-size: 28px;
    font-weight: 400;
    color: #61351b;
    opacity: 0.6;
    letter-spacing: 0.3em;
    margin-top: 4px;
}

/* ★追加：リード文（about FVには無い新規要素／ゴシック体／25px・#98765d） */
.p-recruit-fv__lead {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: #000000;
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin: 16px 0 0;
}

/* ★追加：FV右側の画像（about同値：左0%透明 → 30%で完全不透明） */
.p-recruit-fv__img {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 30%);
            mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 30%);
}
.p-recruit-fv__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* ★採用情報-FVレスポンシブ */
@media (max-width: 768px) {
    .p-recruit-fv { height: 197px; }
    .p-recruit-fv__ja { font-size: 36px; }
    .p-recruit-fv__en { font-size: 20px; }
    .p-recruit-fv__lead { font-size: 16px; margin-top: 12px; }
    .p-recruit-fv__img { width: 75%; }

    p-recruit-fv__lead{
        z-index: 10;
    }
}

/* ========================================
   RECRUIT — 社労士法人の「土台」をつくる仕事
   ======================================== */

/* ★追加：セクション本体（高さ固定795px） */
.p-recruit-foundation {
    position: relative;
    height: 795px;
    background: #fff;
    box-sizing: border-box;
    padding: 80px 0;
    overflow: hidden;
}

.p-recruit-foundation .l-inner {
    position: relative;
    height: 100%;
}

/* 左カラム */
.p-recruit-foundation__left {
    position: absolute;
    top: 0;
    left: 0;
    width: 360px;
}

/* ★追加：見出し（25px ゴシック 細め 色#35699e） */
.p-recruit-foundation__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 25px;
    font-weight: 300;
    color: #35699e;
    line-height: 1.6;
    letter-spacing: 0.1em;
    margin: 0 0 30px;
}

/* ★追加：本文（14px ゴシック 細め 色 黒） */
.p-recruit-foundation__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #000;
    line-height: 2;
    letter-spacing: 0.05em;
    margin: 0;
}

/* ★追加：deco（落下バウンドアニメ用） */
.p-recruit-foundation__deco {
    position: absolute;  
    bottom: 220px;       
    right: 0;            
    width: 185px;       
    opacity: 0;
    transform: translateY(-40px);
    z-index: 2;           /* ★追加 */
}
.p-recruit-foundation__deco.is-visible {
    animation: recruit-deco-bounce 0.8s ease-out forwards;
}
.p-recruit-foundation__deco img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes recruit-deco-bounce {
    0%   { opacity: 0; transform: translateY(-40px); }
    60%  { opacity: 1; transform: translateY(10px); }
    80%  { transform: translateY(-5px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ★追加：銀座写真 */
.p-recruit-foundation__ginza {
    margin-top: 30px;
    width: 283px;
}
.p-recruit-foundation__ginza img {
    width: 100%;
    height: auto;
    display: block;
}

/* 右カラム */
.p-recruit-foundation__right {
    position: absolute;
    top: 0;
    left: 420px;
    right: 0;
}

/* ★追加：会議写真 */
.p-recruit-foundation__meeting {
    width: 430px;
}
.p-recruit-foundation__meeting img {
    width: 100%;
    height: auto;
    display: block;
}

/* ★追加：キャッチコピー（20px ゴシック 細め 下線 色#35699e） */
.p-recruit-foundation__catch {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #35699e;
    line-height: 2;
    letter-spacing: 0.1em;
    margin: 40px 0 0;
}

/* ★追加：下線対象（文字色と同色） */
.p-recruit-foundation__catch-underline {
    text-decoration: underline;
    text-decoration-color: #35699e;
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
}

/* ★追加：オフィス写真（314×163でトリミング） */
.p-recruit-foundation__office {
    margin-top: 40px;
    width: 314px;
    height: 163px;
    overflow: hidden;
    margin-left: auto;
}
.p-recruit-foundation__office img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* ★追加：レスポンシブ */
@media (max-width: 768px) {
    .p-recruit-foundation {
        height: auto;
        padding: 25px 0;
    }
    .p-recruit-foundation .l-inner { height: auto; }
    .p-recruit-foundation__left,
    .p-recruit-foundation__right {
        position: static;
        width: 100%;
    }
    .p-recruit-foundation__title { font-size: 20px; }
    .p-recruit-foundation__text { font-size: 13px; }
    .p-recruit-foundation__meeting,
    .p-recruit-foundation__ginza,
    .p-recruit-foundation__office {
        width: 100%;
        max-width: 430px;
        margin-left: auto;
        margin-right: auto;
    }
    .p-recruit-foundation__catch { font-size: 18px; }
    .p-recruit-foundation__title{
        margin-bottom: 20px;
    }
    .p-recruit-foundation__ginza{
        display:none;
    }
    .p-recruit-foundation__deco{
        width:110px;
        right: 10px;
    }
}

/* ========================================
   RECRUIT — 3つのポイント
   ======================================== */

/* ★追加：セクション本体 */
.p-recruit-points {
    position: relative;
    margin-top: -100px;
 
    padding: 60px 0 80px;
    box-sizing: border-box;
}

.p-recruit-points .l-inner {
    position: relative;
}

/* ★追加：見出し（25px ゴシック regular 色#35699e） */
.p-recruit-points__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 25px;
    font-weight: 400;
    color: #35699e;
    line-height: 1.6;
    letter-spacing: 0.1em;
    margin: 0 0 50px;
}

/* ★追加：「3」だけ大きく */
.p-recruit-points__title-num {
    font-size: 50px;
    font-weight: 700;
    color: #35699e;
    margin: 0 6px;
    line-height: 1;
    vertical-align: -4px;
}

/* ★追加：3つのポイント リスト */
.p-recruit-points__list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 600px;
    margin-left: 80px;
}

/* ★追加：各ポイント item */
.p-recruit-points__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}
.p-recruit-points__item:last-child {
    margin-bottom: 0;
}

/* ★追加：番号バッジ（青四角・色#35699e・中の数字33px） */
.p-recruit-points__num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #35699e;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 33px;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
    margin-top: 4px;
}

/* ★追加：右側本文ブロック */
.p-recruit-points__body {
    flex: 1;
}

/* ★追加：item見出し（20px bold 黒） */
.p-recruit-points__item-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin: 0 0 10px;
}

/* ★追加：item本文（14px regular 黒） */
.p-recruit-points__item-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.9;
    letter-spacing: 0.05em;
    margin: 0;
}

/* ★追加：右側 books写真（160×85トリミング・絶対配置） */
.p-recruit-points__books {
    position: absolute;
    top: 280px;
    right: 60px;
    width: 140px;
    height: 185px;
    overflow: hidden;
}
.p-recruit-points__books img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* ★追加：レスポンシブ */
@media (max-width: 768px) {
    .p-recruit-points { padding: 110px 0 0 0 ; }
    .p-recruit-points__title { font-size: 20px; margin-bottom: 30px; }
    .p-recruit-points__title-num { font-size: 40px; }
    .p-recruit-points__list { margin-left: 0; }
    .p-recruit-points__item { gap: 12px; }
    .p-recruit-points__num { width: 30px; height: 30px; font-size: 24px; line-height: 30px; }
    .p-recruit-points__item-title { font-size: 16px; }
    .p-recruit-points__item-text { font-size: 13px; }
    .p-recruit-points__books {
        position: static;
        width: 100%;
        max-width: 240px;
        height: auto;
        margin: 30px auto 0;
    }
    .p-recruit-points__books {
        position: static;
        width: 40%;
        max-width: 240px;
        height: auto;
        margin: 30px 0 20px 0;
    }

    .p-recruit-points__books img {
        width: 100%;
    }
}

/* ========================================
   RECRUIT — 募集要項
   ======================================== */

/* ★追加：セクション本体（背景グラデーションこのセクションだけ） */
.p-recruit-recruitment {
    position: relative;
    background: linear-gradient(to bottom, #ecedf1 0%, #fbfdff 50%, #f1f1eb 100%);
    padding: 60px 0 80px;
    box-sizing: border-box;
}
.p-recruit-recruitment .l-inner {
    position: relative;
}

/* ★追加：左上 会議写真（静止） */
.p-recruit-recruitment__meeting-img {
    position: absolute;
    top: -170px;
    left: 0;
    width: 200px;
    z-index: 1;
}
.p-recruit-recruitment__meeting-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* ★追加：右上 deco2（落下バウンド） */
.p-recruit-recruitment__deco {
    position: absolute;
    top: -50px;
    right: 0;
    width: 220px;
    opacity: 0;
    transform: translateY(-40px);
    z-index: 1;
}
.p-recruit-recruitment__deco.is-visible {
    animation: recruit-deco-bounce 0.8s ease-out forwards;
}
.p-recruit-recruitment__deco img {
    width: 100%;
    height: auto;
    display: block;
}

/* ★追加：募集要項バッジ見出し（背景#35699e 白文字 32px） */
.p-recruit-recruitment__title {
    display: block;
    width: fit-content;
    margin: 60px auto 50px;
    background: #35699e;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.3em;
    padding: 14px 60px;
    text-align: center;
    line-height: 1.2;
}

/* ★追加：アコーディオン全体 */
.p-recruit-recruitment__accordion {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ★追加：アコーディオン item */
.p-recruit-recruitment__acc {
    margin-bottom: 10px;
}

/* ★追加：アコーディオン開閉ボタン */
.p-recruit-recruitment__acc-trigger {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: transparent;
    border: none;
    border-bottom: 1px solid #9fa0a0;
    padding: 16px 50px 16px 8px;  /* ★変更：右に余白確保 */
    cursor: pointer;
    text-align: left;
    font-family: 'Noto Sans JP', sans-serif;
}

/* ★追加：見出し（20px ゴシック） */
.p-recruit-recruitment__acc-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.05em;
}

/* ★追加：右側 ▼アイコン（青丸＋白下向き矢印） */
.p-recruit-recruitment__acc-icon {
    position: absolute;   /* ★変更：absolute */
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #35699e;
    flex-shrink: 0;
}
.p-recruit-recruitment__acc-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -70%) rotate(45deg);
    transition: transform 0.3s ease;
}
/* 開いた状態：上向きに反転 */
.p-recruit-recruitment__acc-trigger.is-active .p-recruit-recruitment__acc-icon::before {
    transform: translate(-50%, -30%) rotate(-135deg);
}

/* ★追加：アコーディオン中身（初期は閉じる） */
.p-recruit-recruitment__acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* ★追加：テーブル（14px ゴシック regular 黒） */
.p-recruit-recruitment__table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}
.p-recruit-recruitment__table tr {
    border-bottom: 1px solid #d8d8d8;
}
.p-recruit-recruitment__table th,
.p-recruit-recruitment__table td {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    padding: 14px 8px;
    text-align: left;
    vertical-align: top;
    line-height: 1.8;
}
.p-recruit-recruitment__table th {
    width: 140px;
    font-weight: 400;
    color: #555;
    white-space: nowrap;
}

/* ★追加：右下 meeting-desk（静止／アコーディオン下） */
.p-recruit-recruitment__desk-img {
    width: 190px;
    margin: 40px 0 0 auto;
}
.p-recruit-recruitment__desk-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* ★追加：レスポンシブ */
@media (max-width: 768px) {
    .p-recruit-recruitment { padding: 0 0 60px; }
    .p-recruit-recruitment__meeting-img { display: none; }
    .p-recruit-recruitment__deco { width: 140px; top: -80px; right:20px}
    .p-recruit-recruitment__title { font-size: 22px; padding: 10px 36px; margin: 30px auto; }
    .p-recruit-recruitment__acc-title { font-size: 16px; }
    .p-recruit-recruitment__table th,
    .p-recruit-recruitment__table td { font-size: 13px; padding: 10px 6px; }
    .p-recruit-recruitment__table th { width: 100px; }
    .p-recruit-recruitment__desk-img { display: none; }
    .p-recruit-recruitment .l-inner{
        padding-top: 10px;
    }
}

/* ★追加：RECRUIT — ENTRYボタン（画面幅いっぱい） */
.p-recruit-entry {
    display: block;
    width: 100%;
    height: 200px;
    background: #14a227;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.p-recruit-entry:hover {
    background: #18bb2e; /* 多少明るく */
}
.p-recruit-entry__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 8px;
}
.p-recruit-entry__ja {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 29px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.15em;
    line-height: 1;
}
.p-recruit-entry__en {
    position: relative; 
    display: inline-block;
    align-items: center;
    gap: 40px;
    font-family: 'Shippori Mincho', serif;
    font-size: 65px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.15em;
    line-height: 1;
}
.p-recruit-entry__arrow {
    position: absolute;
    top: 50%;
    left: calc(100% + 32px);  /* ENTRYの右に余白を取って配置 */
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='8 4 18 12 8 20'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
}
.p-recruit-entry:hover .p-recruit-entry__arrow {
    transform: translateY(-50%) translateX(12px);
}
/* ★追加：ENTRYボタン レスポンシブ */
@media (max-width: 768px) {
    .p-recruit-entry { height: 140px; }
    .p-recruit-entry__ja { font-size: 18px; }
    .p-recruit-entry__en { font-size: 40px; }
    .p-recruit-entry__arrow {
        width: 32px;
        height: 32px;
        left: calc(100% + 20px);
    }
    .p-recruit-entry:hover .p-recruit-entry__arrow {
        transform: translateY(-50%) translateX(8px);
    }
}

/* 現在募集中 */
.p-recruit-recruitment__current {
    max-width: 840px;
    margin: 0 auto 40px;
    padding: 24px 32px;
    background: #fff;
    border: 2px solid #cfad60;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    position: relative;
}

.p-recruit-recruitment__current-label {
    display: inline-block;
    position: absolute;
    top: -14px;
    left: 24px;
    padding: 4px 16px;
    background: #cfad60;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
}

.p-recruit-recruitment__current-body {
    padding-top: 4px;
}

.p-recruit-recruitment__current-position {
    font-size: 20px;
    font-weight: 700;
    color: #001769;
    margin-bottom: 12px;
}

.p-recruit-recruitment__current-conditions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 12px;
    list-style: none;
    padding: 0;
}

.p-recruit-recruitment__current-conditions li {
    padding: 4px 14px;
    background: #f5efe0;
    color: #001769;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
}

.p-recruit-recruitment__current-note {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .p-recruit-recruitment__current {
        margin: 0 16px 30px;
        padding: 20px 20px 18px;
    }
    .p-recruit-recruitment__current-label {
        font-size: 12px;
        padding: 3px 12px;
        top: -12px;
    }
    .p-recruit-recruitment__current-position {
        font-size: 17px;
    }
    .p-recruit-recruitment__current-conditions li {
        font-size: 13px;
        padding: 3px 12px;
    }
    .p-recruit-recruitment__current-note {
        font-size: 12px;
    }
}


/* ===== ENTRY — 共通グラデーション背景（FV〜フォーム最下部） ===== */
.p-entry-wrap {
    background: linear-gradient(to bottom, #ecedf1 0%, #fbfdff 50%, #f1f1eb 100%);
}

/* ===== ENTRY — FV ===== */
.p-entry-fv {
    position: relative;
    height: 325px;
    overflow: hidden;
    z-index: 2;
}
.p-entry-fv .l-inner {
    position: relative;
    z-index: 2;
    height: 100%;
}
.p-entry-fv__title-area { padding-top: 40px; }
.p-entry-fv__ja {
    font-family: 'Shippori Mincho', serif;
    font-size: 55px;
    font-weight: 600;
    color: #071865;
    letter-spacing: 0.15em;
    line-height: 1.4;
    margin: 0;
}
.p-entry-fv__en {
    display: block;
    font-family: 'Shippori Mincho', serif;
    font-size: 28px;
    font-weight: 400;
    color: #98765d;
    opacity: 0.6;
    letter-spacing: 0.3em;
    margin-top: 4px;
}
.p-entry-fv__img {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 30%);
            mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 30%);
}
.p-entry-fv__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
/* ===== ENTRY — フォーム本体（背景は親 .p-entry-wrap のグラデを継承） ===== */
.p-entry-form { padding: 60px 0 120px; }
.p-entry-form__lead {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: #000;
    text-align: center;
    margin: 0 0 50px;
}
.p-entry-form__body { max-width: 720px; margin: 0 auto; }

/* ===== ENTRY — Snow Monkey Forms カスタム ===== */
.p-entry-form__body .smf-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
    margin: 0;
}
.p-entry-form__body .smf-item__col--label {
    flex: 0 0 180px;
    padding-top: 14px;
}
.p-entry-form__body .smf-item__col--controls {
    flex: 1;
    min-width: 0;
}
.p-entry-form__body .smf-item__label {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.p-entry-form__body .smf-item__label__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

/* テキスト入力 */
.p-entry-form__body input[type="text"],
.p-entry-form__body input[type="email"],
.p-entry-form__body input[type="tel"] {
    width: 100%;
    max-width: 360px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #c8c9ca;
    border-radius: 4px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: #000;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.p-entry-form__body input[type="text"]:focus,
.p-entry-form__body input[type="email"]:focus,
.p-entry-form__body input[type="tel"]:focus {
    outline: none;
    border-color: #35699e;
    box-shadow: 0 0 0 2px rgba(53,105,158,0.15);
}
.p-entry-form__body .smf-placeholder[data-name="address"] input[type="text"] {
    max-width: 480px;
}

/* テキストエリア */
.p-entry-form__body textarea {
    width: 100%;
    min-height: 200px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #c8c9ca;
    border-radius: 4px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: #000;
    box-sizing: border-box;
    resize: vertical;
    transition: border-color 0.2s;
}
.p-entry-form__body textarea:focus {
    outline: none;
    border-color: #35699e;
    box-shadow: 0 0 0 2px rgba(53,105,158,0.15);
}

/* ラジオボタン */
.p-entry-form__body .smf-radio-buttons-control__control {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 10px;
}
.p-entry-form__body .smf-radio-buttons-control__control .smf-label { margin: 0; }
.p-entry-form__body .smf-radio-button-control {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.p-entry-form__body .smf-radio-button-control__control {
    width: 18px;
    height: 18px;
    accent-color: #35699e;
}
.p-entry-form__body .smf-radio-button-control__label { font-size: 14px; }

/* チェックボックス（同意行=最後の項目） */
.p-entry-form__body .smf-item:last-of-type {
    border-bottom: none;
    justify-content: center;
    margin-top: 20px;
}
.p-entry-form__body .smf-item:last-of-type .smf-item__col--label { display: none; }
.p-entry-form__body .smf-item:last-of-type .smf-item__col--controls {
    flex: none;
    text-align: center;
}
.p-entry-form__body .smf-checkboxes-control__control {
    display: flex;
    justify-content: center;
}
.p-entry-form__body .smf-checkbox-control {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.p-entry-form__body .smf-checkbox-control__control {
    width: 18px;
    height: 18px;
    accent-color: #35699e;
}
.p-entry-form__body .smf-checkbox-control__label { font-size: 14px; }

/* 同意リンク */
.p-entry-form__agreement-link {
    color: #35699e;
    text-decoration: underline;
}
.p-entry-form__agreement-link:hover { opacity: 0.7; }

/* 送信ボタン */
.p-entry-form__body .smf-action {
    text-align: center;
    margin-top: 40px;
}
.p-entry-form__body .smf-button-control__control,
.p-entry-form__body button[type="submit"] {
    display: inline-block;
    min-width: 320px;
    padding: 18px 40px;
    background: #35699e;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.p-entry-form__body .smf-button-control__control:hover,
.p-entry-form__body button[type="submit"]:hover { background: #4a7eb3; }

/* ===== ENTRY レスポンシブ ===== */
@media (max-width: 768px) {
    .p-entry-fv { height: 240px; }
    .p-entry-fv__ja { font-size: 36px; }
    .p-entry-fv__en { font-size: 20px; }
    .p-entry-fv__img { width: 75%; }

    .p-entry-form { padding: 40px 0 80px; }
    .p-entry-form__lead {
        font-size: 13px;
        margin-bottom: 30px;
        text-align: left;
    }
    .p-entry-form__body .smf-item {
        flex-direction: column;
        gap: 8px;
        padding: 14px 0;
    }
    .p-entry-form__body .smf-item__col--label {
        flex: none;
        padding-top: 0;
    }
    .p-entry-form__body input[type="text"],
    .p-entry-form__body input[type="email"],
    .p-entry-form__body input[type="tel"],
    .p-entry-form__body .smf-placeholder[data-name="address"] input[type="text"] {
        max-width: 100%;
    }
    .p-entry-form__body .smf-button-control__control,
    .p-entry-form__body button[type="submit"] {
        min-width: 80%;
        padding: 16px 30px;
        font-size: 15px;
    }
}

/* reCAPTCHA 注意書き */
.p-entry-form__recaptcha-note {
    margin-top: 30px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    line-height: 1.6;
    color: #888;
    text-align: center;
}
.p-entry-form__recaptcha-note a {
    color: #888;
    text-decoration: underline;
}
.p-entry-form__recaptcha-note a:hover {
    opacity: 0.7;
}

/* reCAPTCHAバッジ非表示 */
.grecaptcha-badge {
    visibility: hidden !important;
}

@media (max-width: 768px) {
    .p-entry-form__recaptcha-note {
        font-size: 10px;
        text-align: left;
        padding: 0 10px;
    }
}


/* ===== CONTACT NEW — フォーム本体（背景は親 .p-contact-wrap のグラデを継承） ===== */
.p-contact-form { padding: 20px 0 120px; }
.p-contact-form__lead {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: #000;
    text-align: center;
    margin: 0 0 50px;
}
.p-contact-form__body { max-width: 720px; margin: 0 auto; }

/* ===== CONTACT NEW — Snow Monkey Forms カスタム ===== */
.p-contact-form__body .smf-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
    margin: 0;
}
.p-contact-form__body .smf-item__col--label {
    flex: 0 0 180px;
    padding-top: 14px;
}
.p-contact-form__body .smf-item__col--controls {
    flex: 1;
    min-width: 0;
}
.p-contact-form__body .smf-item__label {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.p-contact-form__body .smf-item__label__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

/* ===================================
   フォームの必須・任意バッジ（is-requiredクラス連動）
   =================================== */

/* 必須バッジ：is-required クラスがついた項目のみ */
.p-contact-form__body .smf-item.is-required .smf-item__label::after,
.p-entry-form__body .smf-item.is-required .smf-item__label::after {
    content: "必須";
    display: inline-block;
    background: #35699e;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 3px;
    letter-spacing: 0.05em;
    margin-left: 8px;
}

/* 任意バッジ：is-required がなく、ラベルが空でない項目のみ */
.p-contact-form__body .smf-item:not(.is-required) .smf-item__label__text:not(:empty)::after,
.p-entry-form__body .smf-item:not(.is-required) .smf-item__label__text:not(:empty)::after {
    content: "任意";
    display: inline-block;
    background: #999;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 3px;
    letter-spacing: 0.05em;
    margin-left: 8px;
}

/* テキスト入力 */
.p-contact-form__body input[type="text"],
.p-contact-form__body input[type="email"],
.p-contact-form__body input[type="tel"] {
    width: 100%;
    max-width: 360px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #c8c9ca;
    border-radius: 4px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: #000;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.p-contact-form__body input[type="text"]:focus,
.p-contact-form__body input[type="email"]:focus,
.p-contact-form__body input[type="tel"]:focus {
    outline: none;
    border-color: #35699e;
    box-shadow: 0 0 0 2px rgba(53,105,158,0.15);
}
.p-contact-form__body .smf-placeholder[data-name="company"] input[type="text"] {
    max-width: 480px;
}

/* テキストエリア */
.p-contact-form__body textarea {
    width: 100%;
    min-height: 200px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #c8c9ca;
    border-radius: 4px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: #000;
    box-sizing: border-box;
    resize: vertical;
    transition: border-color 0.2s;
}
.p-contact-form__body textarea:focus {
    outline: none;
    border-color: #35699e;
    box-shadow: 0 0 0 2px rgba(53,105,158,0.15);
}

/* ラジオボタン */
.p-contact-form__body .smf-radio-buttons-control__control {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 10px;
}
.p-contact-form__body .smf-radio-buttons-control__control .smf-label { margin: 0; }
.p-contact-form__body .smf-radio-button-control {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.p-contact-form__body .smf-radio-button-control__control {
    width: 18px;
    height: 18px;
    accent-color: #35699e;
}
.p-contact-form__body .smf-radio-button-control__label { font-size: 14px; }

/* チェックボックス（同意行=最後の項目） */
.p-contact-form__body .smf-item:last-of-type {
    border-bottom: none;
    justify-content: center;
    margin-top: 20px;
}
.p-contact-form__body .smf-item:last-of-type .smf-item__col--label { display: none; }
.p-contact-form__body .smf-item:last-of-type .smf-item__col--controls {
    flex: none;
    text-align: center;
}
.p-contact-form__body .smf-checkboxes-control__control {
    display: flex;
    justify-content: center;
}
.p-contact-form__body .smf-checkbox-control {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.p-contact-form__body .smf-checkbox-control__control {
    width: 18px;
    height: 18px;
    accent-color: #35699e;
}
.p-contact-form__body .smf-checkbox-control__label { font-size: 14px; }

/* 同意リンク */
.p-contact-form__agreement-link {
    color: #35699e;
    text-decoration: underline;
}
.p-contact-form__agreement-link:hover { opacity: 0.7; }

/* 送信ボタン */
.p-contact-form__body .smf-action {
    text-align: center;
    margin-top: 40px;
}
.p-contact-form__body .smf-button-control__control,
.p-contact-form__body button[type="submit"] {
    display: inline-block;
    min-width: 320px;
    padding: 18px 40px;
    background: #35699e;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.p-contact-form__body .smf-button-control__control:hover,
.p-contact-form__body button[type="submit"]:hover { background: #4a7eb3; }

/* reCAPTCHA 注意書き */
.p-contact-form__recaptcha-note {
    margin-top: 30px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    line-height: 1.6;
    color: #888;
    text-align: center;
}
.p-contact-form__recaptcha-note a {
    color: #888;
    text-decoration: underline;
}
.p-contact-form__recaptcha-note a:hover {
    opacity: 0.7;
}

/* ===== CONTACT NEW レスポンシブ ===== */
@media (max-width: 768px) {
    .p-contact-fv { height: 180px; }
    .p-contact-fv__ja { font-size: 36px; }
    .p-contact-fv__en { font-size: 20px; }
    .p-contact-fv__img { width: 75%; }

    .p-contact-form { padding: 40px 0 80px; }
    .p-contact-form__lead {
        font-size: 13px;
        margin-bottom: 30px;
        text-align: left;
    }
    .p-contact-form__body .smf-item {
        flex-direction: column;
        gap: 8px;
        padding: 14px 0;
    }
    .p-contact-form__body .smf-item__col--label {
        flex: none;
        padding-top: 0;
    }
    .p-contact-form__body input[type="text"],
    .p-contact-form__body input[type="email"],
    .p-contact-form__body input[type="tel"],
    .p-contact-form__body .smf-placeholder[data-name="company"] input[type="text"] {
        max-width: 100%;
    }
    .p-contact-form__body .smf-button-control__control,
    .p-contact-form__body button[type="submit"] {
        min-width: 80%;
        padding: 16px 30px;
        font-size: 15px;
    }
    .p-contact-form__recaptcha-note {
        font-size: 10px;
        text-align: left;
        padding: 0 10px;
    }
}

/* ===== CONTACT NEW — 共通グラデーション背景（FV〜フォーム最下部） ===== */
.p-contact-wrap {
    background: linear-gradient(to bottom, #ecedf1 0%, #fbfdff 50%, #f1f1eb 100%);
}

/* ===== CONTACT NEW — FV（写真なし） ===== */
.p-contact-fv {
    position: relative;
    height: 240px;
    overflow: hidden;
    z-index: 2;
    padding-top: 50px;
}
.p-contact-fv .l-inner {
    position: relative;
    z-index: 2;
    height: 100%;
}
.p-contact-fv__title-area { padding-top: 80px; }
.p-contact-fv__ja {
    font-family: 'Shippori Mincho', serif;
    font-size: 46px;
    font-weight: 600;
    color: #071865;
    letter-spacing: 0.15em;
    line-height: 1.4;
    margin: 0;
}
.p-contact-fv__en {
    display: block;
    font-family: 'Shippori Mincho', serif;
    font-size: 20px;
    font-weight: 400;
    color: #98765d;
    opacity: 0.6;
    letter-spacing: 0.3em;
    margin-top: 4px;
}

/* ===== CONTACT NEW FV レスポンシブ ===== */
@media (max-width: 768px) {
    .p-contact-fv {
        height: 240px;
    }
    .p-contact-fv__ja {
        font-size: 36px;
    }
    .p-contact-fv__en {
        font-size: 20px;
    }
}

/* ===== アンカー位置調整 ===== */

.page-service #card01 {
    scroll-margin-top: 100px;
  }
  .page-service #card02 {
    scroll-margin-top: 100px;
  }
  .page-service #card03 {
    scroll-margin-top: 100px;
  }
  .page-service #card04 {
    scroll-margin-top: 100px;
  }
  .page-service #card05 {
    scroll-margin-top: 100px;
  }
  .page-service #card06 {
    scroll-margin-top: 100px;
  }
  .page-service #card07 {
    scroll-margin-top: 100px;
  }
  .page-service #card08 {
    scroll-margin-top: 100px;
  }
  .page-about #about-background {
    scroll-margin-top: 80px;
  }

  .page-service #support {
    scroll-margin-top: 50px;
  }
  .page-about #our-role {
    scroll-margin-top: 80px;
  }
  .page-about #relation {
    scroll-margin-top: 80px;
  }

  /* 追加：SPのみ表示される改行 */
.u-br-sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .u-br-sp {
        display: inline;
    }
}
@media screen and (max-width: 768px) {
    /* 変更：clampの値を大きめに調整。下限を上げ、可変値も拡大 */
    .c-section-title__ja-sub {
        font-size: clamp(1.25rem, 6.5vw, 1.75rem);
    }
}
