.section-wrap {
    border-top: 1px solid #707070;
    padding-top: 50px;
}

.section-wrap.-white {
    border-top: 1px solid #FFF;
}

.container-content {
    max-width: 80%;
    margin-left: auto;
}

@media screen and (max-width: 768px) {
    .container-content {
        max-width: 100%;
    }  
}
/**
 * Common Title Component
 */
.c-common-title {
    margin-bottom: clamp(30px, 5vw, 50px);
}

.c-common-title__sub {
    font-size: 14px;
    font-weight: bold;
    color: var(--color-main);
    margin-bottom: 80px;
    display: block;
}

.c-common-title__main {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    color: var(--color-main);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
    .c-common-title__sub {
        margin-bottom: 20px;
    }  
}

/* 白文字パターン */
.c-common-title.-white .c-common-title__sub,
.c-common-title.-white .c-common-title__main {
    color: var(--color-white);
}

/**
 * Common Section Header (他のセクションでも利用可能)
 */
.c-section-header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 60px);
}

.c-section-header__sub {
    display: inline-block;
    background-color: var(--color-key);
    color: var(--color-white);
    font-weight: 800;
    padding: 4px 20px;
    font-size: 14px;
    border-radius: 4px;
    position: relative;
    margin-bottom: 20px;
}

/* 吹き出しの三角部分 */
.c-section-header__sub::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 6px 6px 0 6px;
    border-color: var(--color-key) transparent transparent transparent;
}

.c-section-header__main {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--color-main);
    font-weight: 800;
}


/**
 * ABOUT Section
 */
.p-about {
    padding: clamp(60px, 10vw, 120px) 0;
    background-color: var(--color-white);
}

.p-about__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(30px, 5vw, 80px);
}

/* 画像側 */
.p-about__image {
    flex: 2;
    max-width: 540px;
}

.p-about__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

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

.p-about__title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.4;
    color: var(--color-main);
    font-weight: 800;
    margin-bottom: 25px;
}

.p-about__lead {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-main);
    margin-bottom: 30px;
}

.p-about__text {
    font-size: 15px;
    line-height: 2;
    color: var(--color-font);
    margin-bottom: 40px;
}

.p-about__text p + p {
    margin-top: 20px;
}

/**
 * 共通テキストリンク Component
 */
.c-link-text {
    display: inline-flex;
    align-items: center;
    font-weight: 400;
    color: var(--color-main);
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

/* 黄色のアンダーライン */
.c-link-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-key);
    transition: width 0.3s;
}

/* 矢印アイコン（円形） */
.c-link-text__icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: var(--color-main);
    border-radius: 50%;
    margin-left: 15px;
    position: relative;
    transition: transform 0.3s;
}

.c-link-text__icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 35%;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--color-white);
    border-right: 2px solid var(--color-white);
    transform: translateY(-50%) rotate(45deg);
}

.c-link-text:hover .c-link-text__icon {
    transform: translateX(5px);
}

/**
 * レスポンシブ (SP)
 */
@media screen and (max-width: 768px) {
    .p-about__inner {
        flex-direction: column;
    }
    .p-about__content {
        order: 2; /* 2番目に表示 */
        width: 100%;
    }
    .p-about__image {
        max-width: 100%;
        margin-bottom: 0;
        order: 1;
    }

    .p-about__title {
        font-size: 1.6rem;
    }

    .p-about__text {
        font-size: 16px;
        text-align: justify;
        line-height: 1.75;
    }
}
@media screen and (max-width: 468px) {
    .p-about__title {
        font-size: 2.0rem;
    }
    .p-about__lead {
        font-size: 1.5rem;
    }
}

/**
 * 汎用フェードインユーティリティ
 */
.u-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform; /* パフォーマンス最適化 */
}

/* JSで付与されるクラス */
.u-fade-in.is-active {
    opacity: 1;
    transform: translateY(0);
}

/* 必要に応じて遅延用クラスも用意しておくと便利です */
.u-delay-100 { transition-delay: 0.1s; }
.u-delay-200 { transition-delay: 0.2s; }
.u-delay-300 { transition-delay: 0.3s; }
.u-delay-400 { transition-delay: 0.4s; }