    :root {
        /* text-size */
        --text-large-size: clamp(30px, 3.125vw, 40px);
        --text-h2title-size: 20px;
        --text-middle-size: 16px;
        --text-small-size: 12px;
        /* text-color */
        --middle-text-color: #1c1c1c;
        /* gradation */
        --gradation-color: linear-gradient(90deg, #E200A4, #00DDFF);
        /* header */
        --header-padding: clamp(30px, 3.125vw, 40px);
        /* content */
        --content-padding: 10vw;
        /* solution */
        --container-size: 720px;
        --circle-size: 217px;
        --large-circle-size: 230px;
        --radius: calc((var(--container-size) - var(--circle-size)) / 2);
    }

    body {
        font-family: "Noto Sans JP", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        overflow-x: hidden;
        color: var(--middle-text-color);
        background-image: url(../img/white_bg.png);
        background-color: rgba(255, 255, 255, 0.7);
        background-blend-mode: lighten;
        background-size: contain;
        background-repeat: repeat-y;
    }

    video {
        object-fit: cover;
        height: 100vh;
    }

    /* 汎用 */
    .tag-item {
        border-radius: 100px;
        border: 1px solid #fff;
        padding: 7px 14px;
    }

    .tag-item:hover {
        background-color: #fff;
        transition: all 0.3s ease;
    }

    .tag-item a {
        color: #fff;
        font-size: 16px;
        display: inline-block;
    }

    .tag-item:hover a {
        color: #1C1C1C;
        transition: all 0.3s ease;
    }

    .black__text {
        color: #000 !important;
    }

    .black__background {
        background-color: #000 !important;
    }

    .scroll-top-btn {
        position: fixed;
        bottom: 40px;
        right: 30px;
        width: 50px;
        height: 50px;
        background-color: #333;
        color: #fff;
        font-size: 24px;
        text-align: center;
        line-height: 50px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 1000;
        display: none;
        transition: opacity 0.3s ease;
    }

    .scroll-top-btn:hover {
        background-color: #555;
    }


    /* --------- ボタン本体 --------- */
    .btn {
        border: none;
        border-radius: 9999px;
        padding: 14px 24px 14px 24px;
        display: inline-flex;
        align-items: center;
        gap: 26px;
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 1px;
        cursor: pointer;
        transition: background .25s;
        width: fit-content;
        min-height: 64px;
    }

    .more-btn {
        background: #1c1c1c;
        color: #fff;
    }

    .more-btn:hover {
        background: #282828;
    }

    .all-view {
        background: linear-gradient(90deg, #E200A4, #00DDFF);
        color: #fff;
    }

    /* --------- アロー部分 --------- */
    .arrow {
        --travel: 40px;

        position: relative;
        width: calc(var(--travel) + 12.5px);
        height: 26px;
    }

    .line {
        position: absolute;
        top: 50%;
        left: 0;
        width: var(--travel);
        height: 1px;
        background: #fff;
        transform: translateY(-50%);
        pointer-events: none;
    }

    /* 円 と 点 をまとめるラッパー */
    .circle-wrap {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        transition: transform .6s cubic-bezier(.65, .05, .36, 1);
    }

    /* 円（境界線だけで中は透明） */
    .circle {
        width: 26px;
        height: 26px;
        border: 1px solid #fff;
        border-radius: 50%;
        position: relative;
        /* 中の点を中央配置するため */
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        pointer-events: none;
    }

    /* 中央の点 */
    .dot {
        width: 4px;
        height: 4px;
        background: #fff;
        border-radius: 50%;
        pointer-events: none;
    }

    /* ------ ホバー時：円＋点を左へスライド ------ */
    .btn:hover .circle-wrap {
        /* X方向に －travel 分だけ移動（＝線の長さ分）*/
        transform: translate(calc(-1 * var(--travel)), -50%);
    }

    /* ハンバーガーメニュー */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        color: #fff;
        z-index: 1000;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: opacity 0.3s ease;
    }

    .menu-overlay.is-active {
        display: flex;
    }

    .menu-overlay__list {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .menu-overlay__item {
        margin: 20px 0;
        font-size: 1.8rem;
    }


    body.is-fixed {
        overflow: hidden;
        height: 100vh;
    }

    .menu-overlay {}

    .menu-overlay__list {}

    .menu-overlay__item {}

    .menu-overlay__item a:hover {
        opacity: 0.7;
    }

    #hamburger.is-active {
        display: flex;
    }

    /* トップ */

    .header {
        position: absolute;
        justify-content: space-between;
        align-items: center;
        top: 0;
        z-index: 9999;
        display: flex;
        width: 100%;
        padding: 25px var(--header-padding);
    }

    .header__logo {
        font-size: clamp(22px, 2.34375vw, 30px);
        color: #fff;
        font-weight: bold;
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        position: relative;
        z-index: 9999;
    }

    .header__logo-link {}

    .header__nav {
        position: relative;
        z-index: 9999;
    }

    .header__nav-list {
        display: flex;
        align-items: center;
        gap: 25px;
    }

    .header__nav-item {}

    .header__nav-link {
        display: block;
    }

    .hamburger {
        width: 33.75px;
        height: 24px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        cursor: pointer;
    }


    .header__nav-link--solid {
        height: 1px;
        background-color: #fff;
        display: block;
        width: 33.75px;
        transform: translateY(0) rotate(0);
    }

    .hamburger.is-active {
        gap: 0;
        height: 48px;
    }

    .hamburger.is-active .header__nav-link--solid:first-child {
        transform: translateY(16.875px) rotate(45deg);
        background-color: #fff !important;
    }

    .hamburger.is-active .header__nav-link--solid:last-child {
        transform: translateY(16.875px) rotate(-45deg);
        background-color: #fff !important;
    }

    .is-active.header__logo .black__text {
        color: #fff !important;
    }

    .header__nav-image {}

    .kv {
        position: relative;
        width: 100vw;
        height: 100vh;
        overflow-y: hidden;
    }

    .kv__video-wrapper {
        position: relative;
        width: 100%;
        z-index: 1;
    }

    .kv__video {
        width: 100%;
    }

    .kv__fallback-image {}

    .kv__text-wrapper {
        position: absolute;
        z-index: 2;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .kv__heading {}

    .kv__heading-image {}

    .problem {
        width: 100vw;
        height: 100vh;
        max-height: 1280px;
        min-height: 720px;
        overflow-y: hidden;
        background-image: url(../img/problem_bg.png);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        position: relative;
    }

    .problem__wrapper {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .problem__heading-wrapper {
        margin-bottom: 60px;
    }

    .problem__heading {
        font-size: clamp(22px, 2.34375vw, 30px);
        font-weight: bold;
        text-align: center;
    }

    .problem__highlight {
        position: relative;
        display: inline-block;
    }

    .problem__image {
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%) translateY(30%);
        width: 90%;
        pointer-events: none;
        z-index: -1;
    }

    .problem__list-wrapper {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
        padding: clamp(0px, 9.74359vh, 76px) clamp(0px, 13.90625vw, 178px);
        width: max-content;
    }

    .problem__list {
        display: flex;
        flex-direction: column;
        gap: 26px;
    }

    .problem__item {
        font-size: clamp(20px, 1.5625vw, 18px);
        font-weight: bold;
        display: flex;
        align-items: center;
    }

    .problem__item::before {
        content: url(../img/problem_check.png);
        display: block;
        margin-right: 1em;
    }

    .solution {
        background-image: url(../img/solution_bg.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        height: clamp(0px, 141.4103vh, 1103px);
        position: relative;
    }

    .solution__inner {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: clamp(0px, 104.2308vh, 813px);
    }

    .solution__heading-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 36px;
    }

    .solution__heading {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
        gap: 0.2em;
    }

    .solution__heading__text {
        font-size: clamp(22px, 4.230769vw, 33px);
        font-weight: bold;
        color: #fff;
    }

    .solution__text {
        font-family: "Share Tech Mono", monospace;
        font-size: clamp(20px, 1.875vw, 24px);
        color: #fff;
    }

    .solution-circle {
        position: relative;
        width: var(--container-size);
        height: var(--container-size);
    }

    /* 全ての円の共通スタイル */
    .solution-circle__item {
        position: absolute;
        top: 50%;
        left: 50%;
        width: var(--circle-size);
        height: var(--circle-size);
        transform: translate(-50%, -50%);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.8);
        outline-offset: 5px;
        outline: 2px solid #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .solution-circle__item--center {
        background-color: transparent;
        background-image: url(../img/solution_center.png);
        background-size: auto;
        background-repeat: no-repeat;
        background-position: center center;
        width: var(--large-circle-size);
        height: calc(24px + var(--large-circle-size));
        outline: none;
        outline-offset: 0px;
    }

    .solution-circle__item--ring {
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        word-break: keep-all;
        line-height: 2;
    }

    .solution-circle__item--ring:nth-of-type(2) {
        transform: translate(-50%, -50%) rotate(270deg) translate(var(--radius)) rotate(-270deg);
    }

    .solution-circle__item--ring:nth-of-type(3) {
        transform: translate(-50%, -50%) rotate(342deg) translate(var(--radius)) rotate(-342deg);
    }

    .solution-circle__item--ring:nth-of-type(4) {
        transform: translate(-50%, -50%) rotate(54deg) translate(var(--radius)) rotate(-54deg);
    }

    .solution-circle__item--ring:nth-of-type(5) {
        transform: translate(-50%, -50%) rotate(126deg) translate(var(--radius)) rotate(-126deg);
    }

    .solution-circle__item--ring:nth-of-type(6) {
        transform: translate(-50%, -50%) rotate(198deg) translate(var(--radius)) rotate(-198deg);
    }

    .solution-circle__icon {
        margin-bottom: 0.5em;
    }

    .solution-circle__center-text {
        color: white;
        font-family: "Montserrat", sans-serif;
        font-weight: bold;
        font-size: 33px;
        position: relative;
        top: 5%;
    }


    .solution__image-wrapper {}

    .solution__image {}

    .about {
        background-image: url(../img/white_bg.png);
        background-color: rgba(255, 255, 255, 0.7);
        background-blend-mode: lighten;
        background-size: contain;
        background-repeat: repeat-y;
    }

    .about__inner {
        overflow: hidden;
        padding: 160px var(--content-padding);
    }

    .about__section {
        display: flex;
        justify-content: space-between;
    }

    .about__section--company {}

    .about__heading-wrapper {}

    .about__heading {
        display: flex;
        flex-direction: column;
    }

    .about__heading-image {
        margin-bottom: 8px;
    }

    .about__heading-sub {
        font-size: clamp(16px, 1.5625vw, 20px);
        font-weight: bold;
        margin-bottom: 50px;
    }

    .about__content {
        width: 48.4375vw;
        margin-top: clamp(0px, 8.974359vh, 70px);
    }

    .about__text {
        font-size: 16px;
        font-weight: bold;
        line-height: 2.8125;
    }

    .about__text:last-of-type {
        margin-bottom: clamp(0px, 6.666667vw, 52px);
    }

    .about__more-link {}

    .about__more-image {}

    .about__visual {
        position: relative;
        overflow: visible;
        width: 100%;
        height: clamp(0px, 18.46154vh, 144px);
        margin: clamp(0px, 19.48718vh, 152px) 0;
    }

    .about__visual-track {
        display: flex;
        width: calc(200% + 40px);
        animation: scroll-left 20s linear infinite;
    }

    .about__visual-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-right: 40px;
    }

    @keyframes scroll-left {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-100vw - 40px));
        }
    }


    .about__section--business {}

    .about__lead {
        font-size: clamp(16px, 1.5625vw, 20px);
        font-weight: bold;
        margin-bottom: 50px;
    }

    .about__services {}

    .about__service {
        width: 43.125vw;
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 0 0 clamp(0px, 7.435897vh, 58px) clamp(0px, 3.125vw, 40px);
        background-image: none;
        transition: all 0.3s ease;
    }

    .about__service:hover {
        background-image: url(../img/business_hover.jpg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        color: #fff;
        transition: all 0.3s ease;
    }

    .about__service img {
        opacity: 0.1;
    }



    .about__service-header {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
    }

    .about__service-title {
        font-size: 25px;
        font-weight: bold;
    }

    .about__service-number {}

    .about__service-description {
        font-size: 16px;
        line-height: 1.75;
        padding-right: 4em;
    }

    .about__service-link {
        font-size: 16px;
        font-weight: bold;
    }

    .about__service-link span {
        padding-bottom: 0.3em;
        border-bottom: 1px solid #1C1C1C;
    }

    .about__service:hover .about__service-link span {
        border-bottom: 1px solid #fff;
    }

    .about__service-link::after {
        content: url(../img/business_deco_b.png);
        display: inline-block;
        margin-left: 1em;
    }

    .about__service:hover .about__service-link::after {
        content: url(../img/business_deco_w.png);
        transition: all 0.3s ease;
    }

    .records {
        background-image: url(../img/records_bg.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .records__inner {
        padding: clamp(0px, 17.94872vh, 140px) 0;
    }

    .records__heading {
        margin-bottom: 44px;
    }

    .records__title-image {
        position: relative;
        margin-bottom: 0.5em;
        padding-bottom: 0.5em;
    }

    .records__title-image img {
        display: block;
        margin: 0 auto;
    }

    .records__title-image::after {
        display: block;
        width: 1em;
        height: 1px;
        content: "";
        background-color: #fff;
        margin: 0 auto;
    }

    .records__title-text {
        color: #fff;
        font-size: 20px;
        font-weight: bold;
        text-align: center;
    }

    .records__tags {
        display: flex;
        flex-direction: column;
        width: clamp(0px, 50.3125vw, 644px);
        margin: 0 auto 40px;
        gap: 20px;
    }

    .records__tag-list {
        display: flex;
        justify-content: space-around;
    }

    .records__slider {
        overflow: visible;
        margin-bottom: 40px;
    }


    .js-records-slider {}

    .records__slide {
        background-color: #fff;
        width: clamp(0px, 80vw, 1024px);
        padding: clamp(0px, 11.79487vh, 92px) var(--content-padding);
        border-radius: 20px;
        display: flex !important;
        gap: 50px;
        margin: 0 clamp(0px, 3.90625vw, 50px);
    }

    .slick-slide {
        height: inherit !important;
    }

    .records__slide-content {
        width: 60%;
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .records__slide-tag {
        border-radius: 100px;
        border: 1px solid #1c1c1c;
        padding: 7px 14px;
        display: inline-block;
        width: fit-content;
        transition: all 0.3s ease;
    }

    .records__slide-tag a {
        font-size: 16px;
        color: #1C1C1C;
        transition: all 0.3s ease;
    }

    .records__slide-tag:hover {
        background-color: #1C1C1C;
        transition: all 0.3s ease;
    }

    .records__slide-tag:hover a {
        color: #fff;
        transition: all 0.3s ease;
    }

    .records__slide-title {
        font-size: clamp(20px, 1.953125vw, 25px);
        font-weight: bold;
    }

    .records__slide-text {
        font-size: 16px;
    }

    .records__more-link {}

    .records__slide-image-wrapper {
        width: 40%;
    }

    .records__slide-image {
        width: 100%;
        /* height: 100%; */
        object-fit: cover;
    }

    .records__controls {
        display: flex;
        justify-content: end;
        margin-right: var(--content-padding);
        gap: 20px;
    }

    .records__control {}

    .records__control--prev {
        cursor: pointer;
    }

    .records__control--next {
        cursor: pointer;
    }

    .records__allview {}

    .records__allview-link {
        display: flex;
        justify-content: center;
    }

    .records__allview-link img {
        display: inline-block;
    }

    .news {
        background-image: url(../img/white_bg.png);
        background-color: rgba(255, 255, 255, 0.7);
        background-blend-mode: lighten;
        background-size: contain;
        background-repeat: repeat-y;
    }

    .news__inner {
        overflow: hidden;
        padding: 160px var(--content-padding);
    }

    .news__header {
        display: flex;
        justify-content: space-between;
    }

    .news__heading {}

    .news__title {
        display: flex;
        flex-direction: column;
    }

    .news__title-img {
        margin-bottom: 8px;
    }

    .news__subtitle {
        font-size: clamp(16px, 1.5625vw, 20px);
        font-weight: bold;
        margin-bottom: 50px;
    }

    .news__link {}

    .news__link-img {}

    .news__list {
        display: flex;
        flex-direction: column;
    }

    .news__item {
        padding: clamp(0px, 6.410256vh, 50px) clamp(0px, 3.125vw, 40px);
        border-bottom: 1px solid #707070;
        width: 51.95313vw;
    }

    .news__item:last-of-type {
        border-bottom: none;
    }

    .news__item:hover {
        background-color: #1C1C1C;
        transition: all 0.3s ease;
        color: #fff;
    }

    .news__meta {
        margin-bottom: 1em;
    }

    .news__date {
        font-size: 16px;
        margin-right: 1em;
    }

    .news__category {
        font-size: 16px;
        border-radius: 100px;
        width: fit-content;
        display: inline-block;
        padding: 5px 10px;
        border: 1px solid #1c1c1c;
    }

    .news__item:hover .news__category {
        border: 1px solid #fff;
    }

    .news__item-title {
        font-size: 16px;
        font-weight: bold;
    }

    .contact {
        position: relative;
        width: 100vw;
        height: 100vh;
        overflow-y: hidden;
    }

    .contact__inner {
        position: relative;
        width: 100%;
        z-index: 1;
    }

    .contact__video {
        width: 100%;
    }

    .contact__content {
        position: absolute;
        z-index: 2;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .contact__heading {
        padding-bottom: 0.5em;
        margin-bottom: 1em;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact__heading::after {
        content: "";
        width: 2em;
        height: 1px;
        display: inline-block;
        background-color: #fff;
    }

    .contact__heading-image {
        margin-bottom: 20px;
    }

    .contact__sub {
        font-size: 20px;
        color: #fff;
        font-weight: bold;
        text-align: center;
        margin-bottom: 58px;
    }

    .contact__text {
        font-size: 16px;
        color: #fff;
        font-weight: bold;
        text-align: center;
        margin-bottom: 58px;
    }

    .contact__button {
        display: flex;
        justify-content: center;
    }

    .contact__button-image {}

    .footer {
        background-color: #292929;
        padding: 80px var(--content-padding) 40px;
    }

    .footer__inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
    }

    .footer__logo {}

    .footer__logo-text {
        font-size: 30px;
        font-weight: bold;
        font-family: "Montserrat", sans-serif;
        color: #fff;
        text-align: center;
    }

    .footer__nav {
        display: flex;
        justify-content: center;
        gap: clamp(0px, 5.3125vw, 68px);
    }

    .footer__nav-item {}

    .footer__nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__nav-en {
        font-size: 20px;
        color: #fff;
        margin-bottom: 0.5em;
    }

    .footer__nav-ja {
        font-size: 14px;
        color: #fff;
    }

    .footer__copyright {
        display: flex;
        justify-content: space-between;
    }

    .footer__copyright-text {
        font-size: 12px;
        color: #fff;
    }

    .sp {
        display: none;
    }

    @media screen and (max-width:1024px) {
        .kv__text-wrapper {
            height: 51.87406vh;
            width: 80vw;
        }

        .kv__heading {
            display: flex;
            height: inherit;
        }

        .kv__heading-image {
            width: 100%;
            height: auto;
            display: block;
            margin: auto 0;
        }

        .problem {
            padding: 0;
        }

        .problem__wrapper {
            width: calc(100vw - clamp(20px, 5.333333vw, 178px) * 2);
        }

        .problem__heading-wrapper {
            width: inherit;
        }

        .problem__list-wrapper {
            padding: clamp(0px, 9.74359vh, 76px) clamp(38px, 10.133333vw, 178px);
            width: calc(100vw - clamp(20px, 5.333333vw, 178px) * 2);
        }

        .solution {
            position: static;
            height: inherit;
        }

        .solution__inner {
            width: calc(100vw - clamp(20px, 5.333333vw, 178px));
            position: static;
            transform: none;
            height: inherit;
            display: flex;
            align-items: center;
            flex-direction: column;
            margin: 0 auto;
            padding: 70px 0;
            box-sizing: content-box;
        }

        .solution__heading {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: nowrap;
            gap: 0.2em;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
        }

        .solution__img {
            height: 1.5em;
            width: auto;
            flex-shrink: 0;
        }

        .solution__text {
            white-space: nowrap;
            font-size: 1.5rem;
        }

        .solution__image-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 32px;
        }

        .solution-circle {
            position: static;
            width: var(--container-size);
            height: var(--container-size);
        }

        /* 全ての円の共通スタイル */
        .solution-circle__item {
            position: static;
            top: 0;
            left: 0;
            width: var(--circle-size);
            height: var(--circle-size);
            transform: translate(0);
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.8);
            outline-offset: 5px;
            outline: 2px solid #fff;
            display: flex !important;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .solution-circle__item--center {
            background-color: transparent;
            background-image: url(../img/solution_center.png);
            background-size: auto;
            background-repeat: no-repeat;
            background-position: center center;
            width: var(--large-circle-size);
            height: calc(24px + var(--large-circle-size));
            outline: none;
            outline-offset: 0px;
        }

        .solution-circle__item--ring {
            font-size: 14px;
            font-weight: bold;
            text-align: center;
            word-break: keep-all;
            line-height: 2;
        }

        .solution-circle__item--ring:nth-of-type(2) {
            transform: none;
        }

        .solution-circle__item--ring:nth-of-type(3) {
            transform: none;
        }

        .solution-circle__item--ring:nth-of-type(4) {
            transform: none;
        }

        .solution-circle__item--ring:nth-of-type(5) {
            transform: none;
        }

        .solution-circle__item--ring:nth-of-type(6) {
            transform: none;
        }

        .about__inner {
            overflow: hidden;
            padding: 75px clamp(20px, 5.333333vw, 178px);
            width: calc(100vw - clamp(20px, 5.333333vw, 178px) * 2);
            box-sizing: content-box;
        }

        .about__section {
            flex-direction: column;
        }

        .about__heading-image {
            width: 70%;
            display: block;
        }

        .about__heading-sub {
            margin-bottom: 30px;
        }

        .about__heading {
            width: fit-content;
        }

        .about__content {
            width: 100%;
            margin-top: 0;
        }

        .about__visual {
            position: relative;
            overflow: visible;
            height: auto;
            margin: 67px 0;
        }

        .about__visual-track {
            height: 20vh;
        }

        .about__lead {
            word-break: keep-all;
            margin-bottom: 50px;
        }

        .about__service {
            position: relative;
            width: 100vw;
            left: clamp(-5.333333vw, -5.333333vw, -178px);
            padding: 0 0 clamp(0px, 7.435897vh, 58px) clamp(20px, 5.333333vw, 178px);
        }

        .about__service-title {
            word-break: keep-all;
        }

        .about__service-description {
            padding-right: 2em;
        }

        .records__inner {
            padding: clamp(0px, 11vh, 140px) clamp(20px, 5.333333vw, 178px);
            overflow-x: hidden;
        }

        .records__title-image {
            margin-bottom: 0em;
            padding-bottom: 0em;
        }

        .records__title-image::after {
            display: none;
        }

        .records__title-text {
            text-align: left;
        }

        .records__tags {
            width: 100%;
        }

        .records__tag-list {
            flex-wrap: wrap;
            justify-content: start;
            gap: 16px;
        }

        .records__title-image img {
            display: block;
            margin: 0;
        }

        .tag-item a {
            font-size: 13px;
        }

        .slick-list.draggable {
            overflow: visible;
        }

        .records__slide {
            display: flex !important;
            flex-direction: column-reverse;
            margin: 0 14px;
            padding: clamp(0px, 11.79487vh, 92px) clamp(20px, 5.333333vw, 178px);
            gap: 20px;
        }

        .records__slide-image-wrapper {
            width: 100%;

        }

        .records__slide-content {
            width: 100%;
            gap: 20px;
        }

        .records__slide-tag a {
            font-size: 13px;
        }

        .news__inner {
            overflow: hidden;
            padding: 75px clamp(20px, 5.333333vw, 178px);
        }

        .news__header {
            flex-direction: column;
        }

        .news__subtitle {
            margin-bottom: 20px;
        }

        .news__title-img {
            width: 60%;
        }

        .news__item {
            position: relative;
            left: clamp(-5.333333vw, -5.333333vw, -178px);
            padding: clamp(0px, 6.410256vh, 50px) clamp(20px, 5.333333vw, 178px) 0;
            border-bottom: 1px solid #707070;
            width: 100vw;
            border: none;
        }

        .news__item-title {
            border-bottom: 1px solid #707070;
            padding-bottom: clamp(0px, 6.410256vh, 50px);
        }

        .news__list {
            margin-bottom: 32px;
        }

        .contact {
            min-height: 0;
        }

        .contact__content {
            position: absolute;
            z-index: 2;
            top: 50%;
            left: 50%;
            transform: translate(0, -50%);
            width: calc(100vw - clamp(20px, 5.333333vw, 178px) * 2);
            left: clamp(20px, 5.333333vw, 178px);
            padding: 0 0 clamp(0px, 7.435897vh, 58px) 0;
        }

        .footer__nav {
            flex-direction: column;
        }

        .footer__copyright {
            flex-direction: column-reverse;
            align-items: center;
            gap: clamp(0px, 5.3125vw, 68px);
        }

        .solution__heading__text {
            text-align: center;
        }

        .sp {
            display: block;
        }

        .pc {
            display: none;
        }
    }

    /* aboutページ */

    .about {}

    #about .about__inner {
        padding: 160px var(--content-padding) 0;
        overflow: hidden;
    }

    .about__heading {}

    #about .about__title {
        display: flex;
        flex-direction: column;
        width: fit-content;
    }

    .about__title-image {
        margin-bottom: 8px;
    }

    #about .about__title-sub {
        font-size: 20px;
        font-weight: bold;
    }

    #about .about__content {
        margin-top: 0;
        margin-left: 30vw;
        width: calc(100% - 30vw);
    }

    #about .about__lead {
        font-size: clamp(30px, 3.125vw, 40px);
        font-weight: bold;
        letter-spacing: 0.1em;
        line-height: 1.5;
        margin-bottom: 40px;
    }

    #about .about__text {
        font-size: 16px;
        font-weight: normal;
        line-height: 2.8125;
    }

    #about .about__visual {
        margin: 30px 0 0;
        height: auto;
    }

    .message {
        padding: 24px clamp(0px, 15.15625vw, 500px) 140px;
        background-image: url(../img/white_bg.png);
        background-color: rgba(255, 255, 255, 0.7);
        background-blend-mode: lighten;
        background-size: contain;
        background-repeat: repeat-y;
    }

    .message__inner {}

    .message__heading {
        margin-bottom: 100px;
    }

    .message__title {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .message__title-image {
        display: block;
        width: fit-content;
        margin-bottom: 8px;
    }

    .message__title-sub {
        text-align: center;
        font-size: clamp(16px, 1.5625vw, 20px);
        font-weight: bold;
    }

    .message__content {
        display: flex;
        justify-content: space-between;
        gap: 68px;
    }

    .message__image {
        width: clamp(0px, 29.45313vw, 1280px);
        overflow: hidden;
    }

    .message__image img {
        object-fit: cover;
        max-width: 377px;
        max-height: 457px;
    }

    .message__text-group {
        width: calc(100% - clamp(0px, 29.45313vw, 1280px) - 68px);
    }

    .message__lead {
        font-size: clamp(30px, 3.125vw, 40px);
        font-weight: bold;
        letter-spacing: 0.1em;
        line-height: 1.5;
        margin-bottom: 40px;
    }

    .message__text {
        font-size: 16px;
        font-weight: normal;
        line-height: 2.8125;
    }

    .message__ceo {
        text-align: right;
        font-size: 16px;
        font-weight: bold;
        letter-spacing: 0.1;
    }

    .message__ceo-name {
        font-size: clamp(18px, 1.953125vw, 25px);
        font-weight: bold;
        letter-spacing: 0.1;
        margin-left: 0.5em;
    }

    .mission {
        padding: 15.55556vw 0 13.33333vw;
        background-image: url(../img/mission_bg.png);
        background-size: cover;
        background-position: center center;
        position: relative;
        z-index: 1;
    }

    .mission::after {
        position: absolute;
        z-index: 2;
        background-color: rgb(0, 0, 0, 0.7);
        width: 100%;
        height: 100%;
        content: "";
        top: 0;
        left: 0;
    }

    .mission__inner {
        position: relative;
        z-index: 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .mission__heading {
        margin-bottom: 60px;
    }

    .mission__title {
        display: flex;
        flex-direction: column;
        align-items: center;

    }

    .mission__title-image {
        margin-bottom: 8px;
    }

    .mission__title-sub {
        font-size: clamp(16px, 1.5625vw, 20px);
        text-align: center;
        color: #fff;
    }

    .mission__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mission__lead {
        font-size: clamp(20px, 2.34375vw, 30px);
        font-weight: bold;
        color: #fff;
        text-align: center;
        margin-bottom: 40px;
    }

    .mission__text {
        font-size: 16px;
        color: #fff;
        line-height: 2.1875;
        margin: 0 20vw;
    }

    .company {
        padding: 120px 20vw 140px;
        background-image: url(../img/white_bg.png);
        background-color: rgba(255, 255, 255, 0.7);
        background-blend-mode: lighten;
        background-size: contain;
        background-repeat: repeat-y;
    }

    .company__inner {}

    .company__heading {}

    .company__title {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .company__title-image {
        width: fit-content;
        display: block;
        margin-bottom: 20px;
    }

    .company__title-sub::before {
        content: "";
        display: block;
        height: 1px;
        background-color: #1c1c1c;
        width: 1em;
        margin: 0 auto 0.8em;
    }

    .company__title-sub {
        font-size: clamp(16px, 1.5625vw, 20px);
        text-align: center;
    }

    .company__info {}

    .company__item {
        display: flex;
    }

    .company__item-label {
        position: relative;
        padding: 36px;
        font-size: 16px;
        font-weight: bold;
        text-align: center;
        width: 10em;
    }

    .company__item-label::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, #E200A4, #00DDFF);
    }

    .company__item-data {
        padding: 36px;
        font-size: 16px;
        width: calc(100% - 10em);
        border-bottom: 1px solid rgba(28, 28, 28, 0.1);
    }

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

        #about .about__inner {
            box-sizing: border-box;
            padding: 160px var(--content-padding) 0;
            width: 100%;
        }

        #about .about__content {
            margin-top: 0;
            margin-left: 0;
            width: 100%;
        }

        #about .about__lead {
            word-break: normal;
        }

        .message {
            padding: 0px var(--content-padding) 80px;
        }

        .message__heading {
            margin-bottom: 40px;
        }

        .message__title {
            display: flex;
            flex-direction: column;
            justify-content: start;
            align-items: start;
        }

        .message__title-sub {
            text-align: left;
        }

        .message__content {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .message__image {
            width: 100%;
        }

        .message__text-group {
            width: 100%;
        }


        .message__text {
            margin-bottom: 16px;
        }

        .message__ceo {
            margin-bottom: 30px;
        }

        .mission {
            padding: 80px var(--content-padding) 80px;
        }

        .mission__lead {
            text-align: left;
        }

        .mission__text {
            margin: 0;
        }

        .company {
            padding: 80px var(--content-padding) 80px;
        }

        .company__item {
            flex-direction: column;
        }

        .company__item-label {
            padding: 12px;
            text-align: left;
            width: 100%;
        }

        .company__item-data {
            padding: 12px;
            width: 100%;
        }
    }

    .business {
        background-image: url(../img/white_bg.png);
        background-color: rgba(255, 255, 255, 0.7);
        background-blend-mode: lighten;
        background-size: contain;
        background-repeat: repeat-y;
    }

    .business__inner {
        padding: 160px var(--content-padding) 0;
        overflow: hidden;
    }

    .business__header {}

    .business__title {
        display: flex;
        flex-direction: column;
        width: fit-content;
    }

    .business__title-img {
        margin-bottom: 8px;
    }

    .business__title-sub {
        font-size: 20px;
        font-weight: bold;
    }

    .business__lead {
        margin-top: 0;
        margin-left: 30vw;
        width: calc(100% - 30vw);
    }

    .business__lead-heading {
        font-size: clamp(30px, 3.125vw, 40px);
        font-weight: bold;
        letter-spacing: 0.1em;
        line-height: 1.5;
        margin-bottom: 40px;
    }

    .business__lead-text {
        font-size: 16px;
        font-weight: normal;
        line-height: 2.8125;
    }

    .business .about__visual {
        margin: 30px 0 0;
        height: auto;
    }

    .business-detail {
        display: flex;
        gap: 40px;
        padding: 160px var(--content-padding) 160px;
        position: relative;
        background-image: url(../img/white_bg.png);
        background-color: rgba(255, 255, 255, 0.7);
        background-blend-mode: lighten;
        background-size: contain;
        background-repeat: repeat-y;
    }

    .business-detail__items {
        margin-left: 10vw;
        width: 60vw;
        display: flex;
        flex-direction: column;
        gap: 100px;
    }


    .business-detail__item {
        display: flex;
        flex-direction: column;
        gap: 32px;
        scroll-margin-top: 160px;
    }

    .business-detail__image--main {
        width: 100%;
        overflow: hidden;
        object-fit: cover;
        margin-bottom: 12px;
        max-height: 390px;
    }

    .business-detail__image--text {
        width: fit-content;
    }



    .business-detail__title {
        font-size: clamp(20px, 2.34375vw, 30px);
        font-weight: bold;
    }

    .business-detail__text {
        font-size: 16px;
        font-weight: normal;
        line-height: 2.8125;
    }

    .business-detail__nav {
        position: sticky;
        left: 0;
        top: 100px;
        align-self: flex-start;
        width: fit-content;
    }

    .business-detail__nav-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .business-detail__nav-item {}

    .business-detail__nav-link {
        display: flex;
        align-items: center;
        width: max-content;
        color: #707070;
        font-weight: bold;
        font-size: 14px;
        text-decoration: none;
        border-left: 4px solid transparent;
        transition: all 0.3s;
    }

    .business-detail__nav-link.is-active {
        color: var(--middle-text-color);
    }

    .business-detail__nav-link.is-active::before {
        content: "";
        width: 1em;
        height: 1px;
        display: inline-block;
        background: var(--gradation-color);
        margin-right: 1em;
    }

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

        .business__title-sub {
            margin-bottom: 8px;
        }

        .business__lead {
            margin-left: 0;
            width: 100%;
        }

        .business-detail {
            padding: 80px var(--content-padding) 80px;
        }

        .business-detail__nav {
            display: none;
        }

        .business-detail__items {
            margin-left: 0;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 100px;
        }

    }

    .records__archive {
        background-image: url(../img/white_bg.png);
        background-color: rgba(255, 255, 255, 0.7);
        background-blend-mode: lighten;
        background-size: contain;
        background-repeat: repeat-y;
        margin-bottom: 96px;
    }

    .records__archive__inner {
        padding: 160px var(--content-padding) 0;
        overflow: hidden;
    }

    .records__archive__header {}

    .records__archive__title {
        display: flex;
        flex-direction: column;
        width: fit-content;
    }

    .records__archive__title-img {
        margin-bottom: 8px;
    }

    .records__archive__title-sub {
        font-size: 20px;
        font-weight: bold;
    }

    .records__archive-tags {
        padding: 0 var(--content-padding) 0;
    }

    .records__archive-tags__list {
        width: 65%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin: 0 auto 72px;
    }

    .records__archive-tags__item {
        padding: 12px;
        border-radius: 9999px;
        border: 1px solid var(--middle-text-color);
        width: fit-content;
    }

    .records__archive-tags__item--active {
        background: #1C1C1C;
        color: #fff;
    }

    .records__archive-tags__link {
        font-size: 16px;
    }

    .records__archive-list {}

    .records__archive-list__inner {
        padding: 0 var(--content-padding) 0;
        overflow: hidden;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 100px;
    }

    .record-item {
        width: calc(100% / 3 - 28px);
        padding: 40px 32px;
        display: flex;
        flex-direction: column;
        gap: 28px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        background: #fff;
        margin-bottom: 28px;
    }

    .record-thumbnail img {
        display: block;
        width: -webkit-fill-available;
        overflow: hidden;
        aspect-ratio: 1 / 1;
    }

    .record-title {
        font-size: var(--text-h2title-size);
        font-weight: bold;
    }

    .record-detail-btn {
        cursor: pointer;
        width: 100%;
        border-radius: 9999px;
        border: 1px solid var(--middle-text-color);
        background: #1C1C1C;
        color: #fff;
        padding: 16px 0;
        text-align: center;
        position: relative;
        font-size: 14px;
    }

    .record-detail-btn::after {
        position: absolute;
        right: 16px;
        top: 0;
        content: "+";
        font-size: 32px;
    }

    .record-modal {
        display: none;
        position: fixed;
        z-index: 9999;
        inset: 0;
    }

    .record-modal__overlay {
        position: absolute;
        inset: 0;
        background: var(--gradation-color);
        opacity: 0.9;
    }

    .record-modal__content {
        position: relative;
        z-index: 1;
        background: #fff;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 10vw;
        width: 80vw;
        border-radius: 20px;
        display: flex;
        justify-content: space-between;
    }

    .record-modal__close {
        position: absolute;
        top: 1em;
        right: 1em;
        font-size: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        border: 1px solid #000;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        text-align: center;
    }

    .record-modal__item {
        width: 30vw;
    }

    .record-modal__tags {
        border: 1px solid #000;
        border-radius: 100px;
        width: fit-content;
        padding: 7px 14px;
        margin-bottom: 28px;
    }

    .record-modal__tags li {
        color: #000;
        font-size: 14px;
    }

    .record-modal__title {
        font-size: 25px;
        font-weight: bold;
        color: #000;
        margin-bottom: 28px;
    }

    .record-modal__text {
        color: #000;
        font-size: 16px;
        line-height: 2.0625;
    }

    .record-modal__thumbnail {
        overflow: hidden;
    }

    .record-thumbnail img {
        max-height: 258px;
        object-fit: cover;
    }

    .record-modal__thumbnail img {
        display: block;
        /* height: fit-content; */
        width: 100%;
        max-height: 258px;
        max-width: 258px;
        object-fit: cover;
    }

    body.modal-open {
        overflow: hidden;
    }

    .pagination {
        padding: 0 0 156px;
    }

    .pagination__list {
        display: flex;
        justify-content: center;
    }

    .screen-reader-text {
        display: none;
    }

    .page-numbers {
        font-size: var(--text-middle-size);
        font-weight: bold;
        padding: 8px;
        margin-right: 16px;
    }

    .prev {
        font-weight: normal;
        margin-right: 80px;
    }

    .next {
        font-weight: normal;
        margin-left: 80px;
    }

    .dots {
        transform: translateY(4px);
        display: block;
    }

    .current {
        border: 1px solid var(--middle-text-color);
    }


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

        .records__archive {
            margin-bottom: 48px;
        }

        .records__archive__inner {}

        .records__archive__header {}

        .records__archive__title {}

        .records__archive__title-img {}

        .records__archive__title-sub {}

        .records__archive-tags {}

        .records__archive-tags__list {
            justify-content: start;
            width: 100%;
        }

        .records__archive-tags__item {}

        .records__archive-tags__item--active {}

        .records__archive-tags__link {}

        .records__archive-list {}

        .records__archive-list__inner {
            flex-direction: column;
        }

        .record-item {
            gap: 14px;
            width: 100%;
        }

        .record-thumbnail img {}

        .record-title {}

        .record-detail-btn {}

        .record-detail-btn::after {}

        .record-modal {}

        .record-modal__overlay {}

        .record-modal__content {
            padding: 10vw;
            display: flex;
            justify-content: space-between;
            flex-direction: column-reverse;
        }

        .record-modal__close {}

        .record-modal__item {
            width: 100%;
        }

        .record-modal__tags {
            margin-bottom: 16px;
        }

        .record-modal__tags li {
            font-size: 14px;
        }

        .record-modal__title {
            font-size: 18px;
            margin-bottom: 14px;
        }

        .record-modal__text {
            line-height: 1.6;
        }

        .record-modal__thumbnail {
            margin-bottom: 14px;
        }

        .record-modal__thumbnail img {}

        body.modal-open {
            overflow: hidden;
        }

        .pagination {
            padding: 0 0 80px;
        }

        .pagination__list {}

        .screen-reader-text {}

        .page-numbers {}

        .prev {
            margin-right: 16px;
        }

        .next {
            margin-left: 16px;
        }

        .dots {}

        .current {}

    }

    .news__archive {
        background-image: url(../img/white_bg.png);
        background-color: rgba(255, 255, 255, 0.7);
        background-blend-mode: lighten;
        background-size: contain;
        background-repeat: repeat-y;
    }

    .news__archive__inner {
        padding: 160px var(--content-padding) 0;
        overflow: hidden;
    }

    .news__archive__header {
        margin-bottom: 100px;
    }

    .news__archive__title {
        display: flex;
        flex-direction: column;
        width: fit-content;
    }

    .news__archive__title-img {
        margin-bottom: 8px;
    }

    .news__archive__title-sub {
        font-size: 20px;
        font-weight: bold;
    }

    .news__archive__list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 32px;
    }

    .news__archive-item {
        width: calc(100% / 3 - (62px * 2) / 3);
        margin-bottom: 68px;
    }

    .news__archive-item__thumbnail {
        overflow: hidden;
        margin-bottom: 20px;
    }

    .news__archive-item__img {
        display: block;
        width: -webkit-fill-available;
        object-fit: cover;
        max-height: 200px;
    }

    .news__archive-item__meta {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .news__archive-item__date {
        font-size: 16px;
        color: #000;
        margin-right: 1em;
    }

    .news__archive-item__tag {
        font-size: 12px;
        color: #000;
        border: 1px solid #000;
        border-radius: 100px;
        padding: 5px 10px;
    }

    .news__archive-item__title {
        color: #000;
        font-size: 16px;
        font-weight: bold;
        line-height: 1.75;
    }

    .news__archive-item__title:hover {
        opacity: 0.8;
    }

    .news__archive-item__link {}

    .news__archive__notfound {}

    @media screen and (max-width:1024px) {
        .news__archive {
            background-image: url(../img/white_bg.png);
            background-color: rgba(255, 255, 255, 0.7);
            background-blend-mode: lighten;
            background-size: contain;
            background-repeat: repeat-y;
        }

        .news__archive__inner {
            padding: 160px var(--content-padding) 0;
            overflow: hidden;
        }

        .news__archive__header {
            margin-bottom: 50px;
        }

        .news__archive__title {
            display: flex;
            flex-direction: column;
            width: fit-content;
        }

        .news__archive__title-img {}

        .news__archive__title-sub {
            font-size: 20px;
            font-weight: bold;
        }

        .news__archive__list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 32px;

            flex-direction: column;
        }

        .news__archive-item {
            margin-bottom: 68px;

            width: 100%;
        }

        .news__archive-item__thumbnail {
            margin-bottom: 12px;
        }

        .news__archive-item__img {
            display: block;
            width: -webkit-fill-available;
        }

        .news__archive-item__meta {
            margin-bottom: 12px;
        }

        .news__archive-item__date {}

        .news__archive-item__tag {}

        .news__archive-item__title {}

        .news__archive-item__title:hover {}

        .news__archive-item__link {}

        .news__archive__notfound {}

    }

    .post {
        background-image: url(../img/white_bg.png);
        background-color: rgba(255, 255, 255, 0.7);
        background-blend-mode: lighten;
        background-size: contain;
        background-repeat: repeat-y;
    }

    .post__inner {
        padding: 160px var(--content-padding) 0;
    }

    .post__inner__meta {
        display: flex;
        margin-bottom: 36px;
    }

    .post__inner__date {
        color: #000;
        font-size: var(--text-middle-size);
        margin-right: 1em;
    }

    p.post__inner__date {
        margin-bottom: 0 !important;
    }

    .post__inner__tag {
        color: #000;
        font-size: var(--text-small-size);
        border: 1px solid #000;
        padding: 5px 10px;
        border-radius: 100px;
    }

    /* 投稿記事のカスタムcss */

    .post h2 {
        font-size: var(--text-large-size);
        font-weight: bold;
        margin-bottom: 80px;
    }

    .post h3 {
        font-size: var(--text-h2title-size);
        font-weight: bold;
        margin-bottom: 80px;
    }

    .post h4 {
        font-size: var(--text-middle-size);
        font-weight: bold;
        margin-bottom: 80px;
    }

    .post p {
        font-size: var(--text-middle-size);
        line-height: 2.0625;
        margin-bottom: 80px;
    }

    .post figure {
        margin-bottom: 80px;
    }

    .post img {
        display: block;
        width: -webkit-fill-available;
    }

    .post blockquote {
        background-color: #F5F5F5;
        position: relative;
        padding: 64px 36px;
    }

    .post blockquote::before {
        position: absolute;
        content: url(../img/prequate.png);
        left: 8px;
        top: 8px;
    }

    .post blockquote::after {
        position: absolute;
        content: url(../img/backquate.png);
        bottom: 8px;
        right: 8px;
    }

    .post blockquote p {
        margin-bottom: 0;
        opacity: 0.5;
    }

    /* other news */
    .other-news {
        background-image: url(../img/white_bg.png);
        background-color: rgba(255, 255, 255, 0.7);
        background-blend-mode: lighten;
        background-size: contain;
        background-repeat: repeat-y;
    }

    .other-news__inner {
        padding: 160px var(--content-padding) 0;
    }

    .other-news__header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 60px;
        overflow: hidden;
    }

    .other-news__img {
        display: block;
        width: fit-content;
        margin: 0 auto 8px;
        max-height: 200px;
    }

    .other-news__title {
        font-size: var(--text-h2title-size);
        color: #000;
        font-weight: bold;
        text-align: center;
    }

    .other-news__list {
        display: flex;
        justify-content: space-between;
        margin-bottom: 60px;
    }

    .other-news__item {
        width: calc(100% / 3 - 28px);
        padding: 40px 32px;
        display: flex;
        flex-direction: column;
        gap: 28px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        background: #fff;
        margin-bottom: 28px;
    }

    .other-news__thumb {
        display: block;
        width: -webkit-fill-available;
    }

    .other-news__tag {
        padding: 5px 10px;
        border-radius: 9999px;
        border: 1px solid var(--middle-text-color);
        width: fit-content;
        font-size: var(--text-middle-size);
    }

    .other-news__item-title {
        font-size: var(--text-h2title-size);
        font-weight: bold;
    }

    .other-news__btn {
        cursor: pointer;
        width: 100%;
        border-radius: 9999px;
        border: 1px solid var(--middle-text-color);
        background: #1C1C1C;
        color: #fff;
        padding: 16px 0;
        text-align: center;
        position: relative;
        font-size: 14px;
    }

    .other-news__btn::after {
        position: absolute;
        right: 16px;
        top: 0;
        content: "+";
        font-size: 32px;
    }

    .other-news__none {}

    .other-news__more {
        display: flex;
        justify-content: center;
        margin-bottom: 160px;
    }

    .other-news__more-link {
        display: block;
    }

    @media screen and (max-width:1024px) {
        .post {}

        .post__inner {}

        .post__inner__meta {

            margin-bottom: 36px;
        }

        .post__inner__date {}

        p.post__inner__date {}

        .post__inner__tag {}



        /* 投稿記事のカスタムcss */

        .post h2 {

            margin-bottom: 40px;
        }

        .post h3 {

            margin-bottom: 40px;
        }

        .post h4 {

            margin-bottom: 40px;
        }

        .post p {

            margin-bottom: 40px;
        }

        .post figure {
            margin-bottom: 40px;
        }

        .post img {
            height: auto;
        }

        .post blockquote {
            padding: 32px 18px;
        }

        .post blockquote::before {}

        .post blockquote::after {}

        .post blockquote p {}

        /* other news */
        .other-news {}

        .other-news__inner {
            padding: 0 var(--content-padding) 0;
        }

        .other-news__header {}

        .other-news__img {}

        .other-news__title {}

        .other-news__list {
            margin-bottom: 60px;

            flex-direction: column;
        }

        .other-news__item {

            width: 100%;
            gap: 14px;
        }

        .other-news__thumb {}

        .other-news__tag {}

        .other-news__item-title {}

        .other-news__btn {}

        .other-news__btn::after {}

        .other-news__none {}

        .other-news__more {
            margin-bottom: 80px;
        }

        .other-news__more-link {}
    }

    .contact-section {
        background-image: url(../img/white_bg.png);
        background-color: rgba(255, 255, 255, 0.7);
        background-blend-mode: lighten;
        background-size: contain;
        background-repeat: repeat-y;
        margin-bottom: 124px;
    }

    .contact-section__inner {
        padding: 160px var(--content-padding) 0;
        overflow: hidden;
    }

    .contact-section__header {
        display: flex;
        flex-direction: column;
        width: fit-content;
    }

    .contact-section__img {
        margin-bottom: 8px;
    }

    .contact-section__title {
        font-size: var(--text-h2title-size);
        font-weight: bold;
    }

    .contact-section__text {
        margin-top: 0;
        margin-left: 30vw;
        width: calc(100% - 30vw);
    }

    .contact-section__text p {
        font-size: var(--text-middle-size);
        font-weight: normal;
        line-height: 2.8125;
    }

    .contact-form {
        background-image: url(../img/white_bg.png);
        background-color: rgba(255, 255, 255, 0.7);
        background-blend-mode: lighten;
        background-size: contain;
        background-repeat: repeat-y;
        margin-bottom: 100px;
    }

    .contact-form__inner {
        padding: 0 calc(10vw + var(--content-padding)) 0;
        overflow: hidden;
    }

    .contact-form__group {
        display: flex;
        flex-direction: column;
        width: 60vw;
    }

    .contact-form__group p {
        margin-bottom: 20px;
    }

    .contact-form__label {
        color: #000;
        font-size: var(--middle-text-color);
        font-weight: bold;
        padding-bottom: 12px;
    }

    .contact-form__label::after {
        content: "";
        display: block;
        width: 2em;
        height: 2px;
        background: var(--gradation-color);
        margin-top: 8px;
    }

    .wpcf7-radio {
        display: flex;
        flex-wrap: wrap;
    }

    .wpcf7-list-item {
        margin-bottom: 16px;
    }

    /* ラジオボタン本体を非表示 */
    .contact-form__radio input[type="radio"] {
        display: none;
    }

    /* ラベル表示位置と○を描画 */
    .contact-form__radio .wpcf7-list-item-label {
        position: relative;
        padding-left: 2em;
        display: inline-block;
        cursor: pointer;
    }

    /* 外枠の○ */
    .contact-form__radio .wpcf7-list-item-label::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 26px;
        height: 26px;
        transform: translateY(-50%);
        border: 1px solid var(--middle-text-color);
        border-radius: 50%;
        box-sizing: border-box;
        background-color: #fff;
    }

    /* チェック時の黒丸（inputがcheckedのとき） */
    .contact-form__radio input[type="radio"]:checked+.wpcf7-list-item-label::after {
        content: "";
        position: absolute;
        left: 4px;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        background-color: #000;
        border-radius: 50%;
    }


    .contact-form__field input {
        width: 100%;
        height: 62px;
        background-color: #F9F9F9;
        padding: 2em;
        color: #000;
        font-size: var(--text-middle-size);
        border: 1px solid rgba(28, 28, 28, 0.2);
    }

    .contact-form__field input::placeholder {
        font-size: var(--text-middle-size);
        color: var(--middle-text-color);
        opacity: 0.3;
    }

    .contact-form__field textarea {
        width: 100%;
        height: clamp(200px, 20vh, 288px);
        background-color: #F9F9F9;
        padding: 2em;
        color: #000;
        font-size: var(--text-middle-size);
        border: 1px solid rgba(28, 28, 28, 0.2);
        margin-bottom: 68px;
    }

    .contact-form__field textarea::placeholder {
        font-size: var(--text-middle-size);
        color: var(--middle-text-color);
        opacity: 0.3;
    }

    .contact-form__privacy {}

    .contact-form__privacy-title {
        color: #000;
        font-size: var(--text-middle-size);
        font-weight: bold;
        text-align: center;
        margin-bottom: 24px;
    }

    .contact-form__privacy-text {
        overflow-y: scroll;
        width: 40vw;
        height: 166px;
        margin: 0 auto;
        border: 1px solid rgba(28, 28, 28, 0.2);
        color: #000;
        font-size: 14px;
        line-height: 2.357142857142857;
        margin-bottom: 40px;
    }

    .wpcf7-list-item.first.last {
        margin: 0 auto;
    }

    .contact-form__submit {
        background: var(--gradation-color);
        color: #fff;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        border-radius: 9999px;
        margin: 40px auto 100px;
        width: 33%;
    }

    .contact-form__submit p input {
        padding: 28px 64px;
        width: 100%;
    }

    @media screen and (max-width:1024px) {
        .contact-section {
            margin-bottom: 62px;
        }

        .contact-section__inner {}

        .contact-section__header {}

        .contact-section__img {
            margin-bottom: 12px;
        }

        .contact-section__title {}

        .contact-section__text {
            margin-left: 0;
            width: 100%;
        }

        .contact-section__text p {
            font-size: var(--text-middle-size);
            font-weight: normal;
            line-height: 2.8125;
        }

        .contact-form {
            margin-bottom: 100px;
        }

        .contact-form__inner {
            padding: 0 var(--content-padding) 0;
        }

        .contact-form__group {
            width: 100%;
        }

        .contact-form__group p {
            margin-bottom: 12px;
        }

        .contact-form__label {
            padding-bottom: 12px;
        }

        .contact-form__label::after {}

        .wpcf7-radio {}

        .wpcf7-list-item {
            margin-bottom: 16px;
        }

        /* ラジオボタン本体を非表示 */
        .contact-form__radio input[type="radio"] {}

        /* ラベル表示位置と○を描画 */
        .contact-form__radio .wpcf7-list-item-label {}

        /* 外枠の○ */
        .contact-form__radio .wpcf7-list-item-label::before {}

        /* チェック時の黒丸（inputがcheckedのとき） */
        .contact-form__radio input[type="radio"]:checked+.wpcf7-list-item-label::after {}


        .contact-form__field input {
            height: 56px;
            padding: 1em;
        }

        .contact-form__field input::placeholder {}

        .contact-form__field textarea {
            height: clamp(200px, 20vh, 288px);
            padding: 1em;
            margin-bottom: 40px;
        }

        .contact-form__field textarea::placeholder {}

        .contact-form__privacy {}

        .contact-form__privacy-title {}

        .contact-form__privacy-text {
            width: 100%;
            height: 166px;
            margin-bottom: 40px;
        }

        .wpcf7-list-item.first.last {
            font-size: 14px;
        }

        .contact-form__submit {
            width: 100%;
            margin: 40px auto 60px;
        }
    }