    @charset "UTF-8";

    /*====================================================================================================

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。
　- all.min.css         Font Awesome を利用するためのCSS。基本触らないこと。
　- aos.css             AOSを利用するためのCSS。基本触らないこと。

　//基本的には変更しないCSS
　- base.css            基本の文字設定や、Webフォントの読み込みなど。基本触らなくてもOK。

　//メインで利用しているCSS
　- common.css          ヘッダー、フッター、下層ページのタイトルなど、共通ページレイアウトを記載したCSS
　- stlye.css           各ページ固有のレイアウトを記載したCSS

　//補助的に利用しているCSS
　- module.css          見出しやリスト、テーブルなど、共通利用できるパーツをまとめたCSS
　- utility.css         マージンやパディング、文字サイズや文字色など、補助的に利用できるCSS

====================================================================================================*/

    main {
        z-index: 1;
        overflow: hidden;
        position: relative;
    }

    footer {
        z-index: 100 !important;
        position: relative;
    }

    /* 
HOME
*/
    /* MV */
    .mv-wrap {
        padding-bottom: 2.5rem;
    }

    .mv {
        position: relative;
        width: calc(100% - 5rem);
        max-height: calc(100vh - 120px - 1.5rem);
        overflow: hidden;
        margin: 0 auto;
    }

    .mv::before {
        content: "";
        display: block;
        position: absolute;
        inset: 0;
        background: linear-gradient(50deg, rgba(2, 187, 150, 0.4) 0%, rgba(2, 187, 150, 0.1) 35%, rgba(2, 187, 150, 0.0) 100%);
        z-index: 2;
    }

    .catch {
        position: absolute;
        bottom: 5rem;
        left: 4.5rem;
        z-index: 10;
        display: flex;
        flex-direction: column;
        gap: 2.125rem;
        font-size: 3.5rem;
        letter-spacing: .1em;
        color: var(--white-color);
    }

    .catch>span {
        position: relative;
        display: inline-block;
        width: fit-content;
        line-height: 1.1;
        padding-bottom: 0.08em;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }

    .catch>span::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.88);
    }

    .mv .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    @media screen and (max-width: 1199px) {
        .mv-wrap {
            padding-bottom: 2rem;
        }

        .mv {
            width: calc(100% - 2.5rem);
            max-height: calc(100svh - 120px - 1rem);
        }

        .catch {
            bottom: 3.5rem;
            left: 3rem;
            gap: 1.5rem;
            font-size: clamp(2.1rem, 4.6vw, 3rem);
            letter-spacing: 0.08em;
        }
    }

    @media screen and (max-width: 767px) {
        .mv-wrap {
            padding-bottom: 1.25rem;
        }

        .mv {
            width: calc(100% - 1.25rem);
            height: calc(100svh - 72px - 1rem);
            min-height: 520px;
            max-height: 680px;
        }

        .mv .swiper,
        .mv .swiper-wrapper,
        .mv .swiper-slide {
            height: 100%;
        }

        .mv::before {
            background: linear-gradient(42deg, rgba(2, 187, 150, 0.42) 0%, rgba(2, 187, 150, 0.14) 38%, rgba(2, 187, 150, 0) 100%);
        }

        .catch {
            right: 1.25rem;
            bottom: 1.75rem;
            left: 1.25rem;
            gap: 0.85rem;
            font-size: clamp(1.45rem, 6.4vw, 2.2rem);
            letter-spacing: 0.05em;
        }

        .catch>span {
            max-width: 100%;
            white-space: nowrap;
            line-height: 1.2;
        }

        .heroSwiper .swiper-slide._3 img {
            object-position: 65% center;
        }

        .heroSwiper .swiper-slide._4 img {
            object-position: 52% center;
        }
    }

    @media screen and (max-width: 575px) {
        .mv {
            width: calc(100% - 0.75rem);
            height: calc(100svh - 72px - 1rem);
            min-height: 500px;
            max-height: 640px;
        }

        .catch {
            right: 1rem;
            bottom: 1.25rem;
            left: 1rem;
            gap: 0.65rem;
            font-size: clamp(1.2rem, 6vw, 1.7rem);
        }

        .catch>span {
            padding-bottom: 0.06em;
        }

        .catch>span::after {
            background: rgba(255, 255, 255, 0.82);
        }
    }

    /* news */
    .sec-news {
        margin-top: -2.5rem;
    }

    .sec-news__layout {
        display: grid;
        grid-template-columns: minmax(15rem, 26rem) minmax(0, 1fr);
        align-items: start;
        gap: 0;
    }

    .sec-news__body {
        min-width: 0;
        max-height: 24rem;
        overflow-y: auto;
        background-color: var(--white-color);
        scrollbar-gutter: stable;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) var(--white-color);
        overscroll-behavior: contain;
    }

    .sec-news__body::-webkit-scrollbar {
        width: 0.75rem;
    }

    .sec-news__body::-webkit-scrollbar-track {
        background: var(--primary-bg-color);
    }

    .sec-news__body::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
        border: 2px solid var(--primary-bg-color);
    }

    .sec-news__body::-webkit-scrollbar-thumb:hover {
        background: var(--accent-color);
    }

    .sec-news__list {
        margin: 0;
        padding: 0;
        list-style: none;
        background-color: transparent;
    }

    .sec-news__item {
        position: relative;
        display: grid;
        grid-template-columns: 5.5rem 4.5rem minmax(0, 1fr) 2.25rem;
        gap: 0 1.5rem;
        align-items: baseline;
        padding: 1rem 4rem;
        background-color: var(--gray-light-color);
        border-bottom: 1px solid rgba(17, 17, 17, 0.12);
        transition: background-color .3s ease;
    }

    .sec-news__date,
    .sec-news__label,
    .sec-news__text {
        line-height: 1.8;
    }

    .sec-news__date {
        grid-column: 1;
        white-space: nowrap;
        letter-spacing: .02em;
        font-weight: 600;
        font-family: var(--en-font);
    }

    .sec-news__label {
        grid-column: 2;
        color: var(--primary-color);
        font-family: var(--en-font);
        font-weight: 600;
        text-align: center;
    }

    .sec-news__text {
        grid-column: 3;
        min-width: 0;
        line-height: 1.8;
    }

    .sec-news__item>.sec-news__text:nth-child(4) {
        grid-column: 3;
        margin-top: initial;
        line-height: initial;
        padding-top: .5rem;
        text-align: justify;
    }

    .sec-news__item>.sec-news__text:nth-child(4):empty {
        border: none;
        padding-top: 0;
        margin-top: 0;
        display: none;
    }

    .sec-news__item>.sec-news__text:nth-child(4) .ezm_htmlarea,
    .sec-news__item>.sec-news__text:nth-child(4) .ezm_htmlarea>*,
    .sec-news__item>.sec-news__text:nth-child(4) .ezm_htmlarea div {
        width: 100% !important;
        max-width: none !important;
        min-width: 0;
    }


    .sec-news__item:has(.sec-news__link) {
        cursor: pointer;
        padding-right: 4rem;
    }

    .sec-news__link {
        position: absolute;
        inset: 0;
        z-index: 2;
        text-decoration: none;
    }

    .sec-news__link-icon {
        position: absolute;
        top: 50%;
        right: 4rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.25rem;
        height: 2.25rem;
        background-color: var(--primary-color);
        overflow: hidden;
        transform: translateY(-50%);
    }

    .sec-news__link-arrow {
        position: absolute;
        top: 50%;
        left: 50%;
        display: inline-block;
        width: .65em;
        height: .65em;
        background-color: var(--white-color);
        -webkit-mask: url("../images/common/icon-arrow.svg") center / contain no-repeat;
        mask: url("../images/common/icon-arrow.svg") center / contain no-repeat;
        transform: translate(-50%, -50%);
        transition: transform .3s ease, opacity .3s ease;
    }

    .sec-news__link-arrow--new {
        opacity: 0;
        transform: translate(-220%, 60%);
    }

    @media (hover: hover) and (pointer: fine) {
        .sec-news__item:has(.sec-news__link:hover) {
            background-color: var(--primary-bg-color);
        }

        .sec-news__link:hover .sec-news__link-arrow--old {
            opacity: 0;
            transform: translate(125%, -175%);
        }

        .sec-news__link:hover .sec-news__link-arrow--new {
            opacity: 1;
            transform: translate(-50%, -50%);
        }
    }

    @media screen and (max-width: 1199px) {
        .c-heading {
            flex-direction: column;
            align-items: flex-start;
            border: none;
            gap: .5em;
        }

        .c-heading.m-auto {
            flex-direction: column;
            align-items: center;
            border: none;
            gap: .5em;
        }

        .sec-news {
            margin-top: -1.5rem;
        }

        .sec-news__layout {
            grid-template-columns: minmax(13rem, 16rem) minmax(0, 1fr);
            gap: 1.5rem;
        }

        .sec-news__item {
            grid-template-columns: 5rem 3.5rem minmax(0, 1fr);
            gap: 0.75rem 1rem;
            padding: 1rem 1.75rem;
        }

        .sec-news__item:has(.sec-news__link) {
            padding-right: 5rem;
        }

        .sec-news__link-icon {
            right: 1.5rem;
        }
    }


    @media screen and (max-width: 991px) {
        .sec-news__layout {
            grid-template-columns: 1fr;
            gap: 1rem;
        }


        .sec-news__heading .c-heading {
            width: fit-content;
        }

        .sec-news__item {
            padding: 1rem 1.5rem;
        }

        .sec-news__body {
            max-height: 60vh;
        }

        .sec-news__item>.sec-news__text:nth-child(4) {
            margin-top: 0;
        }

        .sec-news__item:has(.sec-news__link) {
            padding-right: 4.75rem;
        }

        .sec-news__link-icon {
            right: 1.5rem;
        }
    }

    @media screen and (max-width: 767px) {
        .sec-news {
            margin-top: -1rem;
        }

        .sec-news__layout {
            gap: 0.75rem;
        }

        .sec-news__item {
            grid-template-columns: max-content max-content minmax(0, 1fr);
            grid-template-areas:
                "date label ."
                "title title title"
                "body body body";
            gap: 0.5rem 0.5rem;
            padding: 1rem 1.25rem;
            align-items: start;
        }

        .sec-news__date {
            grid-column: auto;
            grid-area: date;
        }

        .sec-news__label {
            grid-column: auto;
            grid-area: label;
            min-height: 0;
            min-width: auto;
            text-align: center;
            justify-self: start;
        }

        .sec-news__label:empty {
            display: none;
        }

        /* 3個目：タイトル */
        .sec-news__item>.sec-news__text:nth-child(3) {
            grid-column: auto;
            grid-area: title;
            width: 100%;
            margin-top: 0;
            line-height: 1.75;
        }

        /* 4個目：本文 */
        .sec-news__item>.sec-news__text:nth-child(4) {
            grid-column: auto;
            grid-area: body;
            width: 100%;
            margin-top: 0;
        }

        .sec-news__item:has(.sec-news__link) {
            padding-right: 4.25rem;
        }

        .sec-news__link-icon {
            right: 1.25rem;
            width: 2rem;
            height: 2rem;
        }

        .sec-news__link-arrow {
            width: .7rem;
            height: .7rem;
        }
    }

    @media screen and (max-width: 575px) {
        .sec-news__item {
            gap: 0.45rem 0.45rem;
            padding: 0.95rem 1rem;
        }

        .sec-news__date {
            font-size: 0.9rem;
        }

        .sec-news__label {
            min-width: auto;
            font-size: 0.9rem;
        }

        .sec-news__item:has(.sec-news__link) {
            padding-right: 3.75rem;
        }

        .sec-news__link-icon {
            right: 1rem;
        }
    }

    /* about */
    .sec-about .l-media {
        align-items: center;
        justify-content: center;
        gap: 8rem;
        width: fit-content;
        max-width: 100%;
        margin: 0 auto;
    }

    .sec-about .l-media__content {
        /* width: min(52%, 42rem); */
        max-width: none;
    }

    .sec-about .l-media__image {
        width: 36vw;
        min-width: 31rem;
        max-width: 720px;
    }

    .sec-about .l-media__image img {
        display: block;
        width: 100%;
    }

    .sec-about .l-media__text {
        margin-top: 2rem;
    }

    .sec-about .l-media__text h3 {
        margin-bottom: 1.5rem;
    }

    @media screen and (max-width: 1199px) {
        .sec-about .l-media {
            gap: 2.5rem;
        }

        .sec-about .l-media__content {
            width: 54%;
        }

        .sec-about .l-media__images {
            width: 46%;
        }

        .sec-about .l-media__text h3 {
            font-size: clamp(1.7rem, 2.6vw, 2rem);
            line-height: 1.5;
        }
    }

    @media screen and (max-width: 991px) {
        .sec-about .l-media {
            flex-direction: column;
            align-items: stretch;
            gap: 2rem;
        }

        .sec-about .l-media__content,
        .sec-about .l-media__images,
        .sec-about .l-media__image {
            width: 100%;
            max-width: 100%;
        }

        .sec-about .l-media__image img {
            aspect-ratio: 2 / 1;
            object-fit: cover;
            overflow: hidden;
        }

        .sec-about .l-media__text {
            margin-top: 1.5rem;
        }

        .sec-about .l-media__button {
            margin-top: 2rem;
        }
    }

    @media screen and (max-width: 767px) {
        .sec-about .l-media {
            gap: 1.75rem;
        }

        .sec-about .l-media__images,
        .sec-about .l-media__image {
            width: 100%;
            margin-inline: 0;
            min-width: initial;
        }

        .sec-about .l-media__text {
            margin-top: 1.25rem;
        }

        .sec-about .l-media__text h3 {
            margin-bottom: 1rem;
            font-size: clamp(1.45rem, 5vw, 1.8rem);
            line-height: 1.45;
        }
    }

    @media screen and (max-width: 575px) {
        .sec-about .l-media__image img {
            aspect-ratio: 1.7 / 1;
        }

        .sec-about .l-media__text {
            line-height: 1.85;
        }

        .sec-about .l-media__button {
            margin-top: 1.5rem;
        }
    }

    /* business */
    .sec-business {
        background: linear-gradient(180deg, #ffffff 0%, #f6fffb 100%);
        z-index: 0;
    }

    .business-section {
        position: relative;
        min-width: 0;
    }

    .business-inner {
        position: relative;
        width: 100%;
        margin: 0 auto;
    }

    .business-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 6rem;
    }

    .sec-business .c-heading {
        display: flex;
        align-items: baseline;
        gap: 1.75rem;
        margin: 0;
        border: none;
    }

    .business-header__button {
        margin-top: 0;
    }

    .business-list {
        position: relative;
        width: 100%;
        min-width: 0;
    }

    .business-stage {
        position: relative;
        width: 100%;
        min-height: 38rem;
    }

    .business-item {
        position: absolute;
        inset: 0;
        width: 100%;
    }

    .business-section .pin-spacer {
        width: 100% !important;
        max-width: 100% !important;
    }

    .business-card {
        position: relative;
        border: 1px solid var(--primary-color);
        background-image: url(../images/common/bg.jpg);
        overflow: hidden;
        transform-origin: center top;
        will-change: transform;
    }

    .business-card__body {
        display: flex;
        align-items: center;
        gap: 5rem;
        min-height: 19.5rem;
        padding: 2.75rem 5rem;
    }

    .business-card__badge {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.2rem;
        width: 12.5em;
        height: 12.5rem;
        padding: 1rem 1.25rem;
        background: var(--gradient-primary);
        color: var(--white-color);
        z-index: 2;
    }

    .business-card__badge-label {
        font-family: var(--en-font);
        font-size: 1.25rem;
        letter-spacing: .04em;
        line-height: 1;
        display: inline-block;
        width: fit-content;
    }

    .business-card__badge-number {
        font-family: var(--en-font);
        font-size: 7.5rem;
        font-weight: 500;
        line-height: .92;
        letter-spacing: -.05em;
        display: inline-block;
        width: fit-content;
        margin-left: -.075em;
    }

    .business-card__image {
        max-width: 600px;
        flex-shrink: 0;
    }

    .business-card__image img {
        display: block;
        width: 100%;
        aspect-ratio: 6 / 4;
        object-fit: cover;
    }

    .business-card__content {
        padding-right: 1rem;
    }

    .business-card__title {
        margin: 0 0 1.25rem;
        font-size: 2rem;
        font-weight: 500;
        line-height: 1.5;
        color: var(--black-color);
    }

    .business-card__text {
        margin: 0;
        font-size: 1rem;
        line-height: 2;
        letter-spacing: .04em;
        color: var(--black-color);
        text-align: justify;
    }

    .business-item--01 {
        z-index: 1;
    }

    .business-item--02 {
        z-index: 2;
    }

    .business-item--03 {
        z-index: 3;
    }

    .business-item--04 {
        z-index: 4;
    }

    @media screen and (min-width: 1200px) and (max-width: 1399px) {
        .business-card__image {
            width: clamp(20rem, 32vw, 37.5rem);
        }
    }

    @media screen and (max-width: 1199px) {
        .sec-business .business-header {
            gap: 1.5rem;
            padding-bottom: 5rem;
        }

        .sec-business .c-heading {
            align-items: flex-start;
            gap: 0.5rem;
        }

        .business-card__body {
            flex-direction: column;
            align-items: stretch;
            gap: 1.75rem;
            padding: 3rem 2rem 3rem;
        }

        .business-card__image {
            width: 100%;
            max-width: none;
            padding-left: 0;
        }

        .business-card__image img {
            aspect-ratio: 2 / 1;
        }

        .business-card__content {
            padding-right: 0;
        }

        .sec-business .business-card__body {
            flex-direction: row;
            align-items: center;
            gap: 2rem;
            padding: 2.5rem 2rem;
        }

        .sec-business .business-card__image {
            width: clamp(17rem, 34vw, 28rem);
            max-width: 42%;
            flex: 0 0 auto;
        }

        .sec-business .business-card__image img {
            aspect-ratio: 6 / 4;
        }

        .business-card__badge {
            width: 10.5rem;
            height: 10.5rem;
            padding: 0.9rem 1rem;
        }

        .business-card__badge-label {
            font-size: 1.1rem;
        }

        .business-card__badge-number {
            font-size: 6rem;
        }
    }

    @media screen and (max-width: 991px) {
        .business-inner {
            width: 100%;
        }

        .business-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
            padding-bottom: 2rem;
        }

        .sec-business .c-heading {
            width: fit-content;
            gap: 0;
        }

        .business-stage {
            min-height: 33rem;
        }

        .business-card__body {
            flex-direction: column;
            align-items: stretch;
            gap: 1.5rem;
        }

        .business-card__image {
            width: 100%;
            padding-left: 0;
        }

        .business-card__content {
            padding-right: 0;
        }

        .sec-business .business-card__body {
            flex-direction: row;
            align-items: center;
            gap: 1.5rem;
            padding: 2.25rem 1.5rem;
        }

        .sec-business .business-card__image {
            width: clamp(14rem, 35vw, 20rem);
            max-width: 40%;
        }

        .sec-business .business-card__image img {
            aspect-ratio: 6 / 4;
        }

        .business-card__badge {
            width: 8.5rem;
            height: 8.5rem;
            padding: 0.85rem;
        }

        .business-card__badge-label {
            font-size: 1rem;
        }

        .business-card__badge-number {
            font-size: 4.9rem;
        }
    }

    @media screen and (max-width: 767px) {
        .sec-business .business-header {
            gap: 0.75rem;
            padding-bottom: 3rem;
        }

        .sec-business .business-header__button {
            margin-top: 0;
            width: 100%;
        }

        .sec-business .business-stage {
            min-height: 28rem;
        }

        .sec-business .business-card__body {
            flex-direction: column;
            align-items: stretch;
            gap: 1.25rem;
            min-height: auto;
        }

        .sec-business .business-card__image {
            width: 100%;
            max-width: none;
        }

        .sec-business .business-card__image img {
            aspect-ratio: 2 / 1;
        }

        .business-card {
            box-shadow: none;
        }

        .business-card__body {
            padding: 3rem .75rem 3rem;
        }

        .business-card__badge {
            width: 6.5rem;
            height: 6.5rem;
            padding: 0.8rem;
        }

        .business-card__badge-label {
            font-size: 1rem;
        }

        .business-card__badge-number {
            font-size: 3.4rem;
        }

        .business-card__title {
            font-size: 1.55rem;
            margin: 0 0 .5rem;
        }

        .business-card__text {
            font-size: 0.95rem;
            line-height: 1.85;
        }
    }


    /* links */
    .sec-links .c-heading {
        border: none;
    }

    .sec-links .c-heading .c-heading__en {
        --heading-gradient: none;
        background: none;
        color: var(--black-color);
        -webkit-text-fill-color: initial;
    }

    .sec-links .c-heading .c-heading__en .c-heading__char-inner {
        background: none;
        color: var(--black-color);
        -webkit-text-fill-color: currentColor;
    }

    .sec-links .c-heading .c-heading__jp {
        color: var(--black-color);
    }

    .sec-links__grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .p-link {
        position: relative;
        display: flex;
        align-items: center;
        min-height: clamp(18rem, 28vw, 28rem);
        padding: clamp(1.5rem, 3vw, 2.5rem);
        overflow: hidden;
        color: var(--black-color);
        text-decoration: none;
        isolation: isolate;
    }

    .p-link::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -2;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        transition: transform .5s ease;
    }

    .p-link::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.18) 45%, rgba(255, 255, 255, 0.08) 100%);
        transition: background-color .3s ease;
    }

    .p-link--office::before {
        background-image: url("../images/office.jpg");
    }

    .p-link--contact::before {
        background-image: url("../images/contact.jpg");
    }

    .p-link__content {
        width: 100%;
    }

    .p-link .c-heading {
        display: flex;
        align-items: baseline;
        justify-content: center;
        margin: 0 auto;
        text-align: center;
    }

    .p-link .c-heading__en,
    .p-link .c-heading__jp {
        margin: 0;
    }

    .p-link__icon {
        position: absolute;
        right: 0;
        bottom: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: clamp(4.75rem, 7vw, 6rem);
        height: clamp(4.75rem, 7vw, 6rem);
        background: var(--gradient-primary);
        overflow: hidden;
    }

    .p-link__arrow {
        position: absolute;
        top: 50%;
        left: 50%;
        display: inline-block;
        width: 1.1rem;
        height: 1.1rem;
        background-color: var(--white-color);
        -webkit-mask: url("../images/common/icon-arrow.svg") center / contain no-repeat;
        mask: url("../images/common/icon-arrow.svg") center / contain no-repeat;
        transform: translate(-50%, -50%);
        transition: transform .3s ease, opacity .3s ease;
    }

    .p-link__arrow--new {
        opacity: 0;
        transform: translate(-220%, 60%);
    }

    @media (hover:hover) and (pointer:fine) {
        .p-link:hover::before {
            transform: scale(1.04);
        }

        .p-link:hover .p-link__arrow--old {
            opacity: 0;
            transform: translate(125%, -175%);
        }

        .p-link:hover .p-link__arrow--new {
            opacity: 1;
            transform: translate(-50%, -50%);
        }
    }

    @media screen and (max-width: 991px) {
        .sec-links__grid {
            grid-template-columns: 1fr;
        }

        .p-link {
            min-height: 16rem;
        }

        .p-link .c-heading {
            align-items: center;
        }
    }

    @media screen and (max-width: 767px) {
        .p-link {
            min-height: 14rem;
            padding: 1.25rem;
        }

        .p-link .c-heading {
            flex-direction: column;
            align-items: center;
            gap: 0.4rem;
            text-align: left;
        }

        .p-link .c-heading__jp {
            white-space: normal;
        }
    }



    /* =========================================
land_surveyor
========================================= */

    .p-office-about {
        background-color: var(--section-soft-bg, #f7fbf9);
    }

    .p-business-about {
        background-color: var(--white-color);
    }

    .p-business-about .business-stage,
    .p-business-services .business-stage {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        min-height: auto;
    }

    .p-business-about .business-item,
    .p-business-services .business-item {
        position: static;
    }

    .p-business-about .business-card,
    .p-business-services .business-card {
        height: 100%;
    }

    .p-business-card__services {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin: 1rem 0 0;
        padding: 1rem 0 0;
        border-top: 1px solid rgba(21, 159, 131, 0.18);
    }

    .p-business-card__services li {
        position: relative;
        padding-left: 1rem;
        line-height: 1.5;
    }

    .p-business-card__services li::before {
        content: "";
        position: absolute;
        top: 0.55em;
        left: 0;
        width: 0.35rem;
        height: 0.35rem;
        aspect-ratio: 1 / 1;
        background-color: var(--primary-color);
        transform: translateY(-50%);
    }

    .p-business-card__flow {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 0.5rem .25rem;
        margin: 1rem 0 0;
        padding: 0;
        list-style: none;
        counter-reset: flow-step;
    }

    .p-business-card__flow li {
        position: relative;
        display: inline-block;
        width: fit-content;
        max-width: 100%;
        min-width: 0;
        padding: 0.675rem 1.5rem 0.5rem 3.15rem;
        color: var(--white-color);
        font-weight: 500;
        line-height: 1;
        vertical-align: top;
        isolation: isolate;
    }

    .p-business-card__flow li::before {
        counter-increment: flow-step;
        content: counter(flow-step, decimal-leading-zero);
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        padding: 0 2.05rem 0 1rem;
        background-color: var(--primary-color);
        font-family: var(--en-font);
        font-size: 0.92rem;
        font-weight: 700;
        color: var(--white-color);
        letter-spacing: 0.08em;
        clip-path: polygon(0 0, calc(100% - 0.85rem) 0, 100% 50%, calc(100% - 0.85rem) 100%, 0 100%);
        z-index: -1;
    }

    .p-business-card__flow li:last-child::after {
        content: none;
    }

    @keyframes business-flow-step-in {
        from {
            opacity: 0;
            transform: translateY(0.75rem);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .p-business-faq__list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 3rem;
    }

    .p-business-faq__item {
        background-color: var(--white-color);
        border: 1px solid var(--gray-color);
        border-radius: .25rem;
        overflow: hidden;
        transition: background-color .25s ease, border-color .25s ease;
    }

    .p-business-faq__question {
        position: relative;
        display: flex;
        align-items: center;
        text-align: justify;
        gap: 1rem;
        padding: 1.5rem 4.5rem 1.5rem 1.5rem;
        font-size: 1.15rem;
        font-weight: 600;
        list-style: none;
        cursor: pointer;
        line-height: 1.5;
    }

    .p-business-faq__question::-webkit-details-marker {
        display: none;
    }

    .p-business-faq__question::before {
        content: "Q";
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.75rem;
        height: 2.75rem;
        flex-shrink: 0;
        border-radius: 50%;
        background: var(--accent-color);
        color: var(--white-color);
        font-family: var(--en-font);
        font-size: 1.25rem;
        font-weight: 700;
        transition: transform .25s ease, background-color .25s ease;
    }

    .p-business-faq__question::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 1.5rem;
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 1;
        color: var(--primary-color);
        transform: translateY(-50%);
        transition: transform .28s ease;
    }

    .p-business-faq__item[open] .p-business-faq__question::after {
        content: "";
    }

    .p-business-faq__answer {
        height: 0;
        overflow: hidden;
    }

    .p-business-faq__answer-inner {
        text-align: justify;
        padding: 0 4.5rem 1.5rem 5.25rem;
    }

    .p-business-faq__answer p {
        margin: 0;
    }

    .p-business-faq__answer p+p {
        margin-top: 1rem;
    }

    .p-business-faq__question::after {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1.25rem;
        height: 1.25rem;
        font-size: 1.35rem;
    }

    .p-business-faq__question::after {
        content: "";
        display: block;
        width: 1.26rem;
        height: 1.26rem;
        background-image:
            linear-gradient(var(--accent-color), var(--accent-color)),
            linear-gradient(var(--accent-color), var(--accent-color));
        background-position: center;
        background-repeat: no-repeat;
        background-size: 70% 2px, 2px 70%;
        transition: background-size .15s ease;
    }

    .p-business-faq__item[open] .p-business-faq__question::after {
        background-size: 70% 2px, 0 70%;
    }

    @media (hover: hover) {
        .p-business-faq__item:hover {
            background-color: var(--primary-bg-color);
            border-color: var(--primary-color);
        }

        .p-business-faq__item:hover .p-business-faq__question::before {
            background-color: var(--primary-color);
        }
    }

    @media screen and (max-width: 575px) {
        .p-business-faq__question {
            gap: .75rem;
            padding-right: 3.75rem;
        }

        .p-business-faq__answer-inner {
            padding: 0 3.75rem 1.5rem 4.25rem;
        }

        .p-business-faq__question::before {
            width: 2rem;
            height: 2rem;
            font-size: 0.95rem;
        }

        .p-business-faq__question::after {
            right: 1.25rem;
        }
    }

    .p-land-about .container {
        display: flex;
        align-items: stretch;
        gap: clamp(2rem, 4vw, 6rem);
    }

    .p-about__image {
        flex: 0 0 clamp(16rem, 28%, 24rem);
        align-self: stretch;
    }

    .p-about__image figure {
        height: 100%;
        margin: 0;
    }

    .p-about__image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left center;
    }

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

    .p-land-about .c-section-intro-column {
        margin-bottom: 2rem;
        gap: 1rem;
    }

    .p-land__info {
        display: flex;
        flex-direction: column;
        gap: .5rem;
        width: 100%;
    }

    .p-land__info>div {
        padding: 2rem 2.25rem;
        background-color: var(--gray-light-color);
        border: 1px solid var(--primary-color);
    }

    .p-land__info .table-ttl {
        margin-bottom: 1rem;
    }

    .p-land__info p {
        margin: 0;
        text-align: justify;
    }

    .p-land__profile {
        width: 100%;
        background-color: var(--gray-light-color);
        padding: 4rem 6rem;
        border: 1px solid var(--primary-color);
    }

    .p-land__profile-content {
        display: flex;
        align-items: center;
        gap: 6rem;
    }

    .p-land__profile-person {
        width: 200px;
        flex-shrink: 0;
    }

    .p-land__profile-person figure {
        margin: 0 auto;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        /* max-width: 80%; */
    }

    .p-land__profile-person img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .p-land__profile-name {
        margin-top: 1rem;
        text-align: center;
    }

    .p-land__profile-text {
        flex: 1;
    }

    .p-land__profile-message {
        line-height: 2;
        text-align: justify;
    }

    .p-land__consultation {
        width: 100%;
        margin-top: clamp(2rem, 3vw, 3rem);
    }

    .p-land__consultation-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(1.5rem, 2vw, 2rem);
        margin: 0;
        padding: 0;
        list-style: none;
        align-items: stretch;
    }

    .p-land__consultation-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100%;
        padding: 3rem clamp(1.25rem, 2vw, 2rem) 3rem;
        border: 1px solid var(--primary-color);
        background-color: var(--white-color);
    }

    .p-land__consultation-list.is-stagger-ready .p-land__consultation-item {
        opacity: 0;
        transform: translateY(1.25rem);
        transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: var(--stagger-delay, 0ms);
        will-change: opacity, transform;
    }

    .p-land__consultation-list.is-stagger-ready .p-land__consultation-item.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .p-land__consultation-label {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 0.5rem;
        margin-bottom: 2rem;
        background: var(--gradient-primary);
        color: var(--white-color);
        font-family: var(--en-font);
        font-weight: 600;
        letter-spacing: 0.075em;
        line-height: 1;
    }

    .p-land__consultation-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: clamp(8rem, 10vw, 9.75rem);
        margin: 1rem auto 0;
        padding-bottom: 1.25rem;
        border-bottom: 1px solid rgba(49, 74, 87, 0.22);
    }

    .p-land__consultation-icon img {
        display: block;
        width: min(100%, 14.75rem);
        height: auto;
    }

    .p-land__consultation-problem,
    .p-land__consultation-solution {
        width: 100%;
        padding: 0;
        background: none;
        border: 0;
    }

    .p-land__consultation-problem {
        font-weight: 600;
        font-size: 1.25rem;
        line-height: 1;
        letter-spacing: .075em;
        text-align: center;
    }

    .p-land__consultation-problem::before {
        content: none;
    }

    .p-land__consultation-solution {
        margin-top: 1rem;
        text-align: justify;
    }

    .p-land__consultation-solution::before {
        content: "↓";
        position: absolute;
        top: -4.25rem;
        left: 50%;
        color: var(--border-color);
        font-size: 2.5rem;
        font-weight: 400;
        line-height: 1;
        transform: translateX(-50%);
        content: none;
    }

    .p-land__consultation-solution::after {
        content: "\f00c";
        position: absolute;
        top: 0;
        left: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        background: var(--primary-color);
        color: var(--white-color);
        font-family: "Font Awesome 6 Free";
        font-size: 1.25rem;
        font-weight: 900;
        transform: translate(-50%, -50%);
        box-shadow: 0 5px 10px rgba(21, 159, 131, 0.1);
        content: none;
    }


    @media screen and (max-width: 991px) {
        .p-land-about .container {
            flex-direction: column-reverse;
            gap: 2rem;
        }

        .p-about__image {
            flex-basis: auto;
            width: 100%;
            align-self: auto;
        }

        .p-about__image figure {
            height: auto;
            aspect-ratio: 2 / 1;
        }

        .p-land__profile {
            padding: 2.5rem 2rem;
        }

        .p-land__profile-content {
            gap: 2rem;
        }

        .p-land__profile-person {
            width: 240px;
        }

        .p-land__consultation {
            margin-top: 1.75rem;
        }

        .p-land__consultation-list {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1.5rem;
        }

        .p-land__consultation-item {
            padding: 2.25rem 1.35rem 2.25rem;
        }

        .p-land__consultation-label {
            margin-bottom: 1rem;
        }

        .p-land__consultation-icon {
            min-height: 8.75rem;
            margin: 1rem auto 0;
        }

        .p-land__consultation-problem {
            font-size: 1.2rem;
            line-height: 1.2;
        }

        .p-land__consultation-solution {
            margin-top: 0.95rem;
            font-size: 1rem;
            line-height: 1.8;
        }

        .p-land__profile-person figure {
            max-width: 200px;
        }

    }

    @media screen and (max-width: 767px) {
        .p-business-card__flow {
            flex-direction: column;
            align-items: flex-start;
        }

        .p-business-card__flow li {
            width: 100%;
            padding-right: 1.25rem;
            line-height: 1.4;
        }

        .p-business-card__flow.is-scroll-ready li {
            opacity: 0;
            transform: translateY(0.75rem);
        }

        .p-business-card__flow.is-scroll-ready li.is-visible {
            animation: business-flow-step-in 0.5s ease forwards;
        }

        .p-business-card__flow li::before {
            padding-right: 1.25rem;
            clip-path: none;
        }

        .p-business-card__flow li::after {
            content: none;
        }

        .p-land__info>div {
            padding: 1.5rem .75rem;
        }

        .p-land__profile {
            padding: 2.5rem 1.5rem;
        }

        .p-land__profile-content {
            flex-direction: column;
            align-items: flex-start;
        }

        .p-land__profile-person {
            width: 100%;
            max-width: 280px;
            margin: 0 auto;
        }

        .p-land__profile-name {
            margin-top: 1rem;
            font-weight: 600;
        }

        .p-land__profile-message {
            line-height: 1.9;
        }

        .p-land__consultation {
            margin-top: 1.5rem;
        }

        .p-land__consultation-list {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .p-land__consultation-item {
            padding: 2rem 1.25rem;
        }

        .p-land__consultation-icon {
            min-height: 8rem;
            margin: 1rem auto 0;
            padding-inline: 0.5rem;
        }

        .p-land__consultation-icon img {
            width: min(100%, 14rem);
        }

        .p-land__consultation-problem {
            font-size: 1.2rem;
            line-height: 1.2;
        }

        .p-land__consultation-solution {
            margin-top: 0.95rem;
            font-size: 1rem;
            line-height: 1.8;
        }
    }

    @media (prefers-reduced-motion: reduce) and (max-width: 767px) {

        .p-business-card__flow.is-scroll-ready li,
        .p-business-card__flow.is-scroll-ready li.is-visible {
            opacity: 1;
            transform: none;
            animation: none;
        }
    }

    /* =========================================
CTA
========================================= */

    .l-cta {
        background: linear-gradient(135deg, #014e34 0%, #016342 45%, #005437 100%);
    }

    .l-cta__intro {
        margin-bottom: 3.5rem;
        color: var(--white-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .l-cta__intro .c-heading {
        margin-bottom: initial;
    }

    .l-cta__heading {
        margin-bottom: 3rem;
    }

    .l-cta__lead {
        margin: 0;
        font-size: 1.75rem;
        font-weight: 500;
        line-height: 1.9;
        letter-spacing: 0.03em;
        text-align: center;
    }

    .l-cta__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .l-cta__card {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        min-height: 11rem;
        padding: 2rem 2.25rem;
        background-color: var(--white-color);
        /* border-radius: 1rem; */
        color: var(--accent-color);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
    }

    .l-cta__card--tel {
        cursor: default;
    }

    .l-cta__icon-circle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 4rem;
        height: 4rem;
        flex-shrink: 0;
        border-radius: 50%;
        background: linear-gradient(180deg, #e8f7ee 0%, #dff1e6 100%);
    }

    .l-cta__icon-circle .icon,
    .l-cta__icon-circle .c-contact-button__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .l-cta__icon-circle .icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .l-cta__icon-circle .icon--tel::before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        -webkit-mask: url("../images/common/icon-tel.svg") center / contain no-repeat;
        mask: url("../images/common/icon-tel.svg") center / contain no-repeat;
        background-color: var(--accent-color);
    }

    .l-cta__icon-circle .c-contact-button__icon {
        width: 1.8rem;
    }

    .l-cta__icon-circle .c-contact-button__icon::before {
        width: 1.8rem;
        -webkit-mask: url("../images/common/icon-mail.svg") center / contain no-repeat;
        mask: url("../images/common/icon-mail.svg") center / contain no-repeat;
        background-color: var(--accent-color);
    }

    .l-cta__card-main {
        min-width: 0;
        flex: 1;
    }

    .l-cta__tel {
        display: block;
        font-size: 1.8rem;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0;
        color: var(--accent-color);
    }

    .l-cta__card-side {
        display: flex;
        flex-direction: column;
        gap: 0.45rem;
        min-width: 9rem;
        padding: .5rem 1.25rem;
        border-left: 1px solid rgba(0, 84, 55, 0.18);
        color: var(--black-color);
    }

    .l-cta__card-label,
    .l-cta__card-time {
        line-height: 1;
    }

    .l-cta__mail-text {
        flex: 1;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.4;
        color: var(--accent-color);
        white-space: nowrap;
        transition: color .25s ease;
    }

    .l-cta__arrow {
        width: 1.25rem;
        height: 1.25rem;
        flex-shrink: 0;
        background-color: var(--accent-color);
        -webkit-mask: url("../images/common/icon-arrow.svg") center / contain no-repeat;
        mask: url("../images/common/icon-arrow.svg") center / contain no-repeat;
        transition: background-color .25s ease;
    }

    .l-cta__card--mail {
        transition: background-color .25s ease, border-color .25s ease, color .25s ease;
    }

    @media (hover: hover) {
        .l-cta__card--mail:hover {
            background-color: var(--primary-color);
            border-color: var(--accent-color);
        }

        .l-cta__card--mail:hover .l-cta__mail-text {
            color: var(--white-color);
        }

        .l-cta__card--mail:hover .l-cta__arrow {
            background-color: var(--white-color);
        }
    }

    @media screen and (max-width: 1199px) {

        .l-cta__heading {
            margin-bottom: 2.5rem;
        }

        .l-cta__lead {
            font-size: 1.5rem;
        }

        .l-cta__actions {
            grid-template-columns: 1fr;
            max-width: 600px;
            margin: 0 auto;
        }

        .l-cta__card {
            min-height: 9.5rem;
        }

    }

    @media screen and (max-width: 991px) {
        .l-cta__actions {
            grid-template-columns: 1fr;
            max-width: 100%;
            margin: 0 auto;
        }
    }

    @media screen and (max-width: 767px) {

        .l-cta__heading {
            margin-bottom: 1.5rem;
        }

        .l-cta__lead {
            font-size: 1.25rem;
        }

        .l-cta__card-label {
            font-size: 0.95rem;
        }

        .l-cta__card-time {
            font-size: 1.25rem;
        }

        .l-cta__arrow {
            width: 1rem;
            height: 1rem;
        }

        .l-cta__card {
            min-height: 6rem;
            padding: 1.5rem 2rem 1.5rem 1.5rem;
            gap: 1rem;
        }

        .l-cta__card-side {
            padding: .5rem .75rem;
        }
    }

    @media screen and (max-width: 575px) {

        .l-cta__actions {
            gap: 0.875rem;
        }

        .l-cta__card {
            gap: 1rem;
            min-height: auto;
            padding: 1.25rem;
            max-width: 100%;
            box-sizing: border-box;
        }

        .l-cta__icon-circle {
            width: 3rem;
            height: 3rem;
        }

        .l-cta__icon-circle .icon,
        .l-cta__icon-circle .c-contact-button__icon,
        .l-cta__icon-circle .c-contact-button__icon::before {
            width: 1.35rem;
            height: 1.35rem;
        }

        /* 電話カード */
        .l-cta__card--tel {
            display: grid;
            grid-template-columns: auto auto;
            justify-content: center;
            align-items: center;
            column-gap: 1rem;
            row-gap: 1rem;
            text-align: center;
        }

        .l-cta__card--tel .l-cta__icon-circle {
            grid-column: 1;
        }

        .l-cta__card--tel .l-cta__card-main {
            grid-column: 2;
            width: auto;
            min-width: 0;
            flex: initial;
        }

        .l-cta__tel {
            font-size: 1.8rem;
            line-height: 1.1;
            text-align: center;
        }

        .l-cta__card--tel .l-cta__card-side {
            grid-column: 1 / -1;
            width: 100%;
            min-width: 0;
            padding: 1rem 0 0;
            border-left: none;
            border-top: 1px solid rgba(0, 84, 55, 0.18);
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 0.45rem;
            text-align: center;
        }

        .l-cta__card-label {
            font-size: 0.95rem;
        }

        .l-cta__card-time {
            font-size: 1.25rem;
        }

        /* メールカード */
        .l-cta__mail-text {
            font-size: 1rem;
            line-height: 1.5;
        }

        .l-cta__arrow {
            width: .75rem;
            height: .75rem;
        }
    }



    /* =========================================
office
========================================= */

    .p-office__table {
        width: 100%;
        background-color: var(--gray-light-color);
        padding: 4rem 6rem;
        border: 1px solid var(--primary-color);
    }

    .p-office__timeline {
        margin-top: 2rem;
        width: 100%;
        background-color: var(--gray-light-color);
        padding: 4rem 6rem;
        border: 1px solid var(--primary-color);
    }

    .p-timeline-content {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        align-items: stretch;
        gap: clamp(2rem, 3vw, 4rem);
    }

    .p-timeline {
        flex: 1;
        min-width: 0;
        position: relative;
        margin: 0;
        padding: 0 0 0 2.5rem;
        list-style: none;
    }

    .p-timeline::before {
        content: "";
        position: absolute;
        top: 0.35em;
        bottom: 0.35em;
        left: 0.5em;
        width: 1px;
        background: linear-gradient(to bottom, rgba(21, 159, 131, 0.2), rgba(21, 159, 131, 0.7));
    }

    .p-timeline-item {
        position: relative;
        display: grid;
        grid-template-columns: 7rem minmax(0, 1fr);
        gap: 1.5rem;
        padding-bottom: 2rem;
    }

    .p-timeline-item:last-child {
        padding-bottom: 0;
    }

    .p-timeline-item::before {
        content: "";
        position: absolute;
        top: 0.36rem;
        left: -2.5rem;
        width: 1.2rem;
        height: 1.2rem;
        border: 4px solid var(--primary-soft-color, #deffed);
        border-radius: 50%;
        background: var(--primary-color);
        box-shadow: 0 0 0 1px rgba(21, 159, 131, 0.18);
    }

    .p-timeline-year {
        font-family: var(--en-font);
        font-size: 1.4rem;
        font-weight: 600;
        line-height: 1.4;
        letter-spacing: 0.04em;
        color: var(--accent-color);
    }

    .p-timeline-body {
        padding-top: 0.08rem;
        line-height: 1.8;
    }

    .p-timeline-image {
        flex: 0 0 clamp(16rem, 32%, 20rem);
        align-self: stretch;
        width: auto;
        max-width: none;
        aspect-ratio: auto;
        margin: 0;
    }

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

    @media screen and (max-width: 1199px) {
        .p-timeline-content {
            gap: 2rem;
        }

        .p-timeline-item {
            grid-template-columns: 5.2rem minmax(0, 1fr);
            gap: 1rem;
        }
    }

    @media screen and (max-width: 991px) {

        .p-office__table,
        .p-office__timeline {
            padding: 3.5rem 1.5rem;
        }

        .p-timeline-content {
            flex-direction: column;
            align-items: stretch;
            gap: 2rem;
        }

        .p-timeline {
            width: 100%;
        }

        .p-timeline-image {
            flex-basis: auto;
            align-self: auto;
            aspect-ratio: 6 / 4;
            width: 100%;
            max-width: initial;
        }
    }


    @media screen and (max-width: 767px) {
        .p-timeline-content {
            gap: 1.5rem;
        }

        .p-timeline {
            padding-left: 2rem;
        }

        .p-timeline-item {
            grid-template-columns: 1fr;
            gap: 0.35rem;
            padding-bottom: 1.5rem;
        }

        .p-timeline-item::before {
            left: -2rem;
            width: 1rem;
            height: 1rem;
        }

        .p-timeline-year {
            font-size: 1.15rem;
        }
    }

    .p-office .c-heading {
        margin-bottom: initial;
    }

    .p-access__text {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        background-color: var(--white-color);
        padding: 1.75rem 3rem;
        border-left: 6px solid var(--primary-color);
    }

    .p-access__text span {
        line-height: 1;
    }

    .p-access__text span:last-of-type {
        font-size: 1.125rem;
        font-weight: 600;
        margin-left: .5rem;
        color: var(--primary-color);
    }

    .p-access__map {
        margin-top: 3rem;
        width: 100%;
    }

    .p-access__map iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 1;
    }

    @media screen and (max-width:991px) {
        .p-company__table {
            padding: 1.5rem 1rem 1rem 1rem;
        }
    }

    @media screen and (max-width:767px) {
        .p-access__text {
            margin-top: 0rem;
            padding-block: 1rem;
            padding-inline: 1.75rem 2.25rem;
            width: fit-content;
        }

        .p-access__map {
            margin-top: 1rem;
        }

        .p-access__map iframe {
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1;
        }
    }

    @media screen and (max-width:575px) {
        .p-access__text {
            margin-top: 0rem;
            padding-block: 1rem;
            padding-inline: 1.75rem 2.25rem;
            width: 100%;
        }

        .p-access__text {
            font-size: .9rem;
        }

        .p-access__text span:last-of-type {
            font-size: 1.125rem;
            letter-spacing: 0;
            margin-left: 6px;
        }

        .p-access__map iframe {
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1.5;
        }
    }



    /* =========================================
contact 
========================================= */

    .p-contact__contact {
        text-align: center;
    }

    .p-contact__contact-list {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin-block: 4rem;
    }

    .p-contact__contact-item {
        display: flex;
        flex-direction: column;
        gap: .5rem;
        background-image: url(../images/common/bg.jpg);
        border: 1px solid var(--primary-color);
        overflow: hidden;
        padding: 2rem 2rem;
    }

    .p-contact__contact-label {
        font-size: 2rem;
        font-weight: 600;
        font-family: var(--en-font);
        color: var(--primary-color);
        letter-spacing: .1em;
        border-bottom: 1px solid var(--primary-color);
        padding-bottom: .75rem;
        margin-bottom: .5rem;
    }

    .p-contact__contact-number {
        display: flex;
        justify-content: center;
        gap: .5rem;
        font-size: 2.25rem;
        font-weight: 600;
        padding-inline: 1.5rem;
    }

    .caution {
        color: #dd527c;
    }

    .contact-info {
        font-size: 1.05rem;
        line-height: 2;
    }

    .h-adr {
        max-width: 1200px;
        margin: 0 auto;
    }

    @media screen and (max-width: 991px) {
        .p-contact__contact-list {
            margin-block: 4rem 3rem;
        }

        .p-contact__contact-item {
            width: 320px;
        }

        .p-contact__contact-number {
            font-size: 1.65rem;
        }

        .caution {
            text-align: justify;
        }
    }

    @media screen and (max-width: 767px) {
        .p-contact__contact-list {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .p-contact__contact-item {
            width: 100%;
            min-width: 320px;
            padding: 1rem 1rem;
        }

        .contact-info {
            font-size: 1rem;
            line-height: 2;
        }
    }

    @media screen and (max-width: 575px) {
        .p-contact__contact-list {
            margin-block: 2rem 1rem;
        }

    }

    .sec-mail .c-button .c-button__icon::before {
        transform: translateY(-1.5px);
    }

    .sec-mail .back.c-button {
        flex-direction: row-reverse;
    }

    .sec-mail .back.c-button .c-button__icon::before {
        transform: translateY(-2px) rotate(180deg);
    }

    /* =========================================
news detail
========================================= */
    .p-news-detail {
        /* width: 70%;
        min-width: ; */
        width: 82.5rem;
        max-width: 80%;
        margin: 0 auto;
    }

    .p-news-detail .item-info {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem 1.25rem;
        margin-bottom: 1.25rem;
    }

    .p-news-detail .item-info .__date {
        font-family: var(--en-font);
        font-weight: 600;
        line-height: 1;
    }

    .p-news-detail .label-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem;
    }

    .p-news-detail .__label-style {
        align-items: center;
        justify-content: center;
        padding: 0.28rem 0.75rem 0.22rem;
        font-weight: 600;
        line-height: 1;
    }

    .p-news-detail .__label-style.__navy {
        background: var(--gradient-primary);
        color: var(--white-color);
    }

    .p-news-detail .item-ttl {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--border-color);
    }

    .p-news-detail .item-ttl .__ttlstyle02 {
        margin: 0;
        font-size: clamp(1.7rem, 2.6vw, 2rem);
        font-weight: 500;
        line-height: 1.55;
        letter-spacing: 0.04em;
        color: var(--black-color);
    }

    .p-news-detail .sec-content {
        display: flex;
        flex-direction: column;
        gap: 2.25rem;
        margin-top: 1.5rem;
    }

    .p-news-detail .item-content a {
        color: var(--primary-color);
        text-underline-offset: 0.2em;
    }

    .p-news-detail .item-link {
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: .5em;
        margin-top: 3rem;
    }

    .p-news-detail .file-link a {
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        width: fit-content;
        min-width: 10rem;
        max-width: 100%;
        color: var(--black-color);
        line-height: 1;
        text-decoration: none;
        transition: color .25s ease;
        padding: 1em 1.5em;
        border: 1px solid var(--border-color);
        background-color: var(--primary-bg-color);
        transition: all .3s ease;
    }

    .p-news-detail .file-link i {
        color: var(--primary-color);
        font-size: 1.5em;
        transition: all .3s ease;
    }

    @media (hover: hover) {
        .p-news-detail .file-link a:hover {
            color: var(--white-color);
            background-color: var(--primary-color);
        }

        .p-news-detail .file-link a:hover i {
            color: var(--white-color);
        }
    }

    .p-news-detail .back-btn {
        display: flex;
        justify-content: center;
        margin-top: 6rem;
    }

    .p-news-detail .back-btn .c-button {
        cursor: pointer;
    }

    @media screen and (max-width: 1199px) {
        .p-news-detail {
            width: 90%;
            max-width: initial;
        }
    }


    @media screen and (max-width: 991px) {
        .p-news-detail {
            width: 100%;
        }
    }

    @media screen and (max-width: 767px) {
        .p-news-detail .item-ttl .__ttlstyle02 {
            font-size: clamp(1.45rem, 5vw, 1.8rem);
        }

        .p-news-detail .back-btn {
            margin-top: 5rem;
        }
    }

    @media screen and (max-width: 576px) {
        .p-news-detail .back-btn {
            margin-top: 5rem;
        }

        .p-news-detail .file-link {
            width: 100%;
        }

        .p-news-detail .file-link a {
            min-width: 100%;
        }
    }