    @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

====================================================================================================*/
    /*  index
------------------------------------------------------------------*/

    /* 最背面をグラデとする */
    .hero-bg-area {
        position: relative;
        background: linear-gradient(135deg,
                #11a8f5 0%,
                #2172c9 45%,
                #24468f 100%);
        overflow: hidden;
        isolation: isolate;
    }

    .hero-bg-area._orange {
        position: relative;
        background: linear-gradient(135deg,
                #FFD158 0%,
                #FFA52C 45%,
                #FF7E05 100%);
        overflow: hidden;
        isolation: isolate;
    }

    /* 白いエリアを上からかぶせる */
    .hero-bg-area::before {
        --hero-angle-offset: 8.75vw;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 35%;
        background: #fff;
        clip-path: polygon(0 0,
                100% 0,
                100% calc(100% - var(--hero-angle-offset)),
                0 100%);
        z-index: 0;
        pointer-events: none;
    }

    .mv,
    .sec-news {
        position: relative;
        z-index: 1;
    }


    :root {
        --slider-rotation: -5deg;
    }

    .mv {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 55vw;
        overflow: hidden;
        margin-top: 100px;
        background-color: transparent;
    }

    .mv .catch {
        font-size: 3.75rem;
        font-weight: 700;
        display: flex;
        flex-direction: column;
        line-height: 1.5;
        position: absolute;
        top: 4.5vw;
        left: 5.275vw;
    }

    .diagonal-slider {
        position: absolute;
        left: -10vw;
        right: -10vw;
        top: 9.5vw;
        height: 28vw;
        overflow: visible;
        z-index: 10;
    }

    .diagonal-slider__track {
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
        height: 100%;
        animation: diagonal-slider-loop 45s linear infinite;
    }

    .diagonal-slider__item {
        flex: 0 0 auto;
        width: 34vw;
        height: 100%;
        margin-right: 1.2vw;
        overflow: hidden;
    }

    .diagonal-slider__item img {
        width: 120%;
        height: 120%;
        object-fit: cover;
        display: block;
        transform: skewY(calc(var(--slider-rotation) * -1)) translate(-8%, -8%);
        transform-origin: center;
    }

    @keyframes diagonal-slider-loop {
        from {
            transform: skewY(var(--slider-rotation)) translateX(0);
        }

        to {
            transform: skewY(var(--slider-rotation)) translateX(-50%);
        }
    }

    .scroll-circle {
        position: absolute;
        width: 170px;
        height: 170px;
        color: var(--accent-color);
        top: 9vw;
        right: 5vw;
        z-index: 10;
    }

    .scroll-circle._blue {
        color: var(--primary-color);
    }

    .scroll-circle__text {
        position: absolute;
        inset: 0;
        animation: scrollCircleRotate 20s linear infinite;
    }

    .scroll-circle__text span {
        position: absolute;
        top: 0;
        left: 50%;
        font-size: .85rem;
        font-family: var(--en-font);
        font-weight: 600;
        letter-spacing: 0.06em;
        transform-origin: 0 85px;
    }

    .scroll-circle__arrow {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 2rem;
        aspect-ratio: 1 / 1;
        transform: translate(-50%, -50%);
        background-repeat: no-repeat;

        background-color: var(--accent-color);
        mask: url(../images/common/down.svg) no-repeat center / contain;
        -webkit-mask: url(../images/common/down.svg) no-repeat center / contain;
    }

    .scroll-circle._blue .scroll-circle__arrow {
        background-color: var(--primary-color);
    }

    @keyframes scrollCircleRotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    @media print, screen and (max-width: 1199px) {
        .mv {
            height: 60vw;
            margin-top: 88px;
        }

        .mv .catch {
            top: 4.25vw;
            left: 4.5vw;
            font-size: 3rem;
            line-height: 1.4;
        }

        .diagonal-slider {
            top: 11vw;
            height: 31vw;
        }

        .diagonal-slider__item {
            width: 38vw;
            margin-right: 1rem;
        }

        .scroll-circle {
            width: 140px;
            height: 140px;
            top: 7.5vw;
            right: 4vw;
        }

        .scroll-circle__text span {
            font-size: .75rem;
            transform-origin: 0 70px;
        }
    }

    /* =========================================================
    News
========================================================= */

    .p-news {
        position: relative;
    }

    .p-news__inner {
        display: grid;
        grid-template-columns: 12.5rem minmax(0, 1fr);
        gap: 7vw;
        align-items: start;
        margin-inline: auto;
    }

    .p-news__body {
        min-width: 0;
    }

    .p-news__list {
        display: grid;
        gap: .5rem;
        max-height: 34rem;
        overflow-y: auto;
        padding-right: .65rem;
    }

    /* scrollbar */

    .p-news__list::-webkit-scrollbar {
        width: .5rem;
        border-radius: 100%;
    }

    .p-news__list::-webkit-scrollbar-track {
        background-color: rgba(255, 255, 255, .35);
        border-radius: .25rem;
    }

    .p-news__list::-webkit-scrollbar-thumb {
        background-color: var(--gray-color);
        border-radius: 999px;
        border-radius: .25rem;
    }

    /* ---- */

    .p-news__item {
        background-color: var(--white-color);
        padding: 2rem 1.95rem 2.15rem;
    }

    .p-news__head {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: .15rem 1.5rem;
        font-weight: 700;
    }

    .p-news__date {
        flex: 0 0 auto;
        font-family: var(--en-font);
        line-height: 1.4;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .p-news__label {
        flex: 0 0 auto;
        color: var(--accent-color);
        font-family: var(--en-font);
        line-height: 1.4;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .p-news__heading {
        flex: 0 0 100%;
        margin: 0;
        font-size: 1.125rem;
    }

    .p-news__content {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--black-color);
    }

    .p-news__text {
        margin: 0;
        line-height: 1.5;
        letter-spacing: .01em;
    }

    .p-news__text:empty,
    .p-news__content:has(.p-news__text:empty) {
        display: none;
    }

    @media screen and (max-width: 1399px) {
        .mv .catch {
            font-size: 3rem;
        }
    }

    @media screen and (max-width: 991px) {
        .hero-bg-area::before {
            height: 24rem;
            clip-path: polygon(0 0,
                    100% 0,
                    100% calc(100% - var(--hero-angle-offset)),
                    0 100%);
        }

        .mv {
            height: 70vw;
            min-height: 29rem;
            margin-top: 76px;
        }

        .mv .catch {
            top: 2.5rem;
            left: 3vw;
            right: 6vw;
            font-size: 2.75rem;
            line-height: 1.35;
        }

        .diagonal-slider {
            left: -18vw;
            right: -18vw;
            height: 36vw;
            min-height: 13rem;
        }

        .diagonal-slider__item {
            width: 45vw;
        }

        .scroll-circle {
            width: 110px;
            height: 110px;
            top: 5rem;
            right: 2vw;
        }

        .scroll-circle__text span {
            font-size: .62rem;
            transform-origin: 0 55px;
        }

        .scroll-circle__arrow {
            width: 1.4rem;
        }

        .p-news {
            margin-top: 2.5rem !important;
        }

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

        .p-news__title {
            width: 100%;
            margin-inline: auto;
        }

        .p-news__body {
            width: 100%;
            height: 60vh;
            overflow: hidden;
        }

        .p-news__list {
            height: 100%;
            max-height: none;
            overflow-y: auto;
            padding-right: .45rem;
        }

        .p-news__item {
            padding: 1.25rem 1.4rem 1.35rem;
        }

        .p-news__heading {
            font-size: 1rem;
        }
    }

    @media screen and (max-width: 767px) {
        .hero-bg-area::before {
            height: 28rem;
            clip-path: polygon(0 0,
                    100% 0,
                    100% calc(100% - var(--hero-angle-offset)),
                    0 100%);
        }

        .mv {
            height: 100vw;
            min-height: 24rem;
            margin-top: 68px;
        }

        .mv .catch {
            left: 30px;
            top: 3rem;
            font-size: 2.5rem;
            line-height: 1.45;
        }

        .diagonal-slider {
            left: -28vw;
            right: -28vw;
            top: 8.75rem;
            height: 47vw;
            min-height: 10rem;
        }

        .diagonal-slider__item {
            width: 58vw;
            margin-right: .8rem;
        }

        .scroll-circle {
            width: 100px;
            height: 100px;
            top: 9.5rem;
        }

        .scroll-circle__text span {
            font-size: .58rem;
            transform-origin: 0 50px;
        }

        .scroll-circle__arrow {
            width: 1.3rem;
        }

        .p-news {
            margin-top: 2rem !important;
        }

        .p-news__inner {
            gap: 1.25rem;
        }

        .p-news__body {
            height: 55vh;
        }

        .p-news__list {
            height: 100%;
            padding-right: .45rem;
            gap: .75rem;
        }

        .p-news__item {
            padding: 1.2rem;
        }

        .p-news__head {
            gap: .2rem 1rem;
        }

        .p-news__heading {
            font-size: 1rem;
            line-height: 1.6;
        }

        .p-news__content {
            margin-top: .85rem;
            padding-top: .85rem;
        }

        .p-news__text {
            font-size: .875rem;
            line-height: 1.7;
        }
    }

    @media screen and (max-width: 575px) {
        .hero-bg-area::before {
            height: 24rem;
            clip-path: polygon(0 0,
                    100% 0,
                    100% calc(100% - var(--hero-angle-offset)),
                    0 100%);
        }

        .scroll-circle {
            width: 90px;
            height: 90px;
            top: 8rem;
            right: 1rem;
        }

        .scroll-circle__text span {
            font-size: .54rem;
            transform-origin: 0 45px;
        }

        .scroll-circle__arrow {
            width: 1.15rem;
        }

        .mv {
            height: 110vw;
            min-height: 22rem;
            margin-top: 64px;
        }

        .mv .catch {
            top: 2.75rem;
            font-size: 2rem;
        }

        .diagonal-slider {
            left: -32vw;
            right: -32vw;
            top: 7.5rem;
            height: 54vw;
        }

        .diagonal-slider__item {
            width: 65vw;
        }

        .p-news__body {
            height: 52vh;
        }

        .p-news__item {
            padding: 1rem;
        }

        .p-news__head {
            gap: .15rem .8rem;
        }

        .p-news__date,
        .p-news__label {
            font-size: .75rem;
        }

        .p-news__heading {
            font-size: .9375rem;
        }

        .p-news__text {
            font-size: .8125rem;
        }
    }

    @media screen and (max-width: 459px) {
        .hero-bg-area::before {
            height: 19rem;
        }

        .scroll-circle {
            width: 82px;
            height: 82px;
        }

        .scroll-circle__text span {
            font-size: .5rem;
            transform-origin: 0 41px;
        }

        .scroll-circle__arrow {
            width: 1rem;
        }

        .mv {
            height: 120vw;
            min-height: 24rem;
            margin-top: 64px;
        }

        .mv .catch {
            top: 3rem;
            font-size: 1.45rem;
        }
    }

    /*------------------------------------------------------------------
    company
------------------------------------------------------------------*/
    td.address .address__inner {
        display: block;
    }

    td.address .address__text {
        display: inline;
    }

    td.address .address__map-link {
        display: inline-block;
        width: 1em;
        height: 1em;
        margin-left: .3em;
        vertical-align: -.08em;
    }

    td.address .address__map-link::after {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background-color: var(--black-color);
        mask: url(../images/common/icon-map.svg) no-repeat center / contain;
        -webkit-mask: url(../images/common/icon-map.svg) no-repeat center / contain;
        transition: background-color .3s ease;
    }

    .p-office__list {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .p-office__list-item {
        position: relative;
        padding-left: 1em;
    }

    .p-office__list-item::before {
        content: "・";
        position: absolute;
        top: 0;
        left: 0;
    }

    .p-company-history {
        background: url(../images/common/silver.png);
        background-size: cover;
        background-repeat: no-repeat;
    }

    .p-office__timeline {
        width: 100%;
    }

    .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.55rem;
        bottom: 0;
        left: 0.5em;
        width: 1px;
        background: var(--gray-color);
    }

    .p-timeline-item {
        position: relative;
        display: grid;
        grid-template-columns: 13rem minmax(0, 1fr);
        padding-bottom: 2rem;
        align-items: center;
    }

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

    .p-timeline-item::before {
        content: "";
        position: absolute;
        top: 0.55rem;
        left: -2.5rem;
        width: 1.2rem;
        height: 1.2rem;
        background:
            linear-gradient(-12deg,
                #ffad42 0 42%,
                rgba(255, 173, 66, .9) 46%,
                rgba(255, 173, 66, .1) 50%,
                transparent 54%),
            #1976c8;
    }

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

    .p-timeline-era {
        margin-left: .35em;
        font-size: .75em;
        font-weight: 500;
        letter-spacing: 0;
        color: var(--gray-dark-color);
        opacity: .9;
    }

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


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

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

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

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

        .p-timeline {
            width: 100%;
        }
    }


    @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;
            margin-top: .1em;
        }
    }

    .p-access__text {
        font-weight: 500;
        color: var(--white-color);
        padding: 2rem 2.5rem;
        background: var(--gradient-blue);
    }

    .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-access__text {
            padding: 1rem 1.5rem;
        }
    }

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

        .p-access__text {
            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__map iframe {
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1.5;
        }
    }

    /*------------------------------------------------------------------
    facilities
------------------------------------------------------------------*/
    .p-facilities-equipment__list {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 1.5rem;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .p-facilities-equipment__item {
        display: grid;
        gap: .85rem;
    }

    .p-facilities-equipment__figure {
        margin: 0;
        overflow: hidden;
        background-color: var(--white-color);
    }

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

    .p-facilities-equipment__name {
        margin: 0;
        text-align: center;
    }

    .p-facilities-equipment p {
        text-align: justify;
    }

    @media screen and (max-width:991px) {
        .p-facilities-equipment__list {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media screen and (max-width:575px) {
        .p-facilities-equipment__list {
            grid-template-columns: 1fr;
        }
    }

    /*------------------------------------------------------------------
    contact
------------------------------------------------------------------*/

    .sec-tel-fax .container-wide {
        border-bottom: 1px solid var(--gray-light-color);
    }

    .sec-tel-fax .tel-fax {
        display: flex;
        gap: 2rem;
        padding: 4rem 0;
    }

    .sec-tel-fax .tel-area,
    .sec-tel-fax .fax-area {
        width: 50%;
        background: var(--gradient-silver);
        background-image: url(../images/common/silver.png);
        padding: 2rem;
    }

    .tel-area .num,
    .fax-area .num {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.25rem;
        font-weight: 600;
        line-height: 1;
        font-family: var(--en-font);
    }

    .time {
        text-align: center;
    }

    .tel-area .icon,
    .fax-area .icon {
        width: 2rem;
        height: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 1;
    }

    .tel-area .icon {
        margin-right: .25rem;
    }

    .fax-area .icon {
        margin-right: .5rem;
    }

    .tel-area .icon::before {
        content: "";
        display: block;
        mask-image: url(../images/common/icon--tell.png);
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
        background-color: var(--primary-color);
        height: 70%;
        aspect-ratio: 1;
    }

    .fax-area .icon::before {
        content: "";
        display: block;
        mask-image: url(../images/common/icon--fax.png);
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
        background-color: var(--primary-color);
        width: 95%;
        aspect-ratio: 1;
    }

    .confirm-btns {
        display: flex;
        gap: 1rem;
        justify-content: center;
    }

    @media screen and (max-width:991px) {
        .tel-area .num, .fax-area .num {
            font-size: 1.75rem;
        }
    }

    @media screen and (max-width:767px) {
        .sec-tel-fax .tel-fax {
            flex-direction: column;
            gap: .5rem;
            padding: 2.5rem 0;
        }

        .sec-tel-fax .tel-area,
        .sec-tel-fax .fax-area {
            width: 100%;
        }
    }

    @media screen and (max-width:767px) {
        .confirm-btns {
            flex-direction: column-reverse;
            align-items: center;
        }
    }