@charset "utf-8";

/**
 * スマホ用設定
 */
@media ( width < 768px ) {

    #page-mv {
        position: relative;
        margin: calc( 100vw * 120 / 780 ) auto 0;
        padding: 0;
        width: 100%;
    }
    #page-mv .mv-bg {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }
    #page-mv .mv-bg img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #page-mv .mv-box {
        position: absolute;
        top: 50%;
        left: 5%;
        width: 90%;
        translate: 0 -50%;
    }
    #page-mv .mv-box h1 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 4.0vw 0;
    }
    #page-mv .mv-box h1 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 4.0vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        letter-spacing: 0.15em;
    }
    #page-mv .mv-box h1 span:nth-of-type(2) {
        display: inline-block;
        margin: 0;
        padding: 0;
        font-size: 8.0vw;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.07em;
    }
    #page-mv .mv-box h1 span:nth-of-type(2) span {
        font-size: 3.6vw;
    }
    #page-mv .mv-box .breadcrumbs {
        margin: 4.0em 0 0;
        padding: 0;
        color: #fff;
        font-size: 3.2vw;
        font-weight: 500;
        text-align: left;
    }
    #page-mv .mv-box .breadcrumbs a {
        color: #fff;
    }
    #page-mv .mv-box .breadcrumbs span {
        color: rgba( 255, 255, 255, 0.4 );
    }

    #page-first {
        margin: 0 auto;
        padding: 12.0vw 0;
        width: 100%;
    }
    #page-first h2 {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        font-size: 6.0vw;
        font-weight: 700;
        text-align: center;
    }
    #page-first p {
        margin: 1.0em auto 0;
        padding: 0;
        width: 90%;
        font-size: 3.6vw;
        font-weight: 400;
        text-align: center;
    }

    #service {
        margin: 0 auto;
        padding: 12.0vw 0;
        width: 100%;
        background: linear-gradient( to bottom, #fafafa 60%, transparent 60% );
    }
    #service h2 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        font-size: 3.8vw;
        font-weight: 700;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.0vw 0;
    }
    #service h2 span:nth-of-type(1) {
        display: block;
    }
    #service h2 span:nth-of-type(2) {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #service h2 span:nth-of-type(2)::before,
    #service h2 span:nth-of-type(2)::after {
        content: "";
        width: 2.0em;
        height: 1px;
        background: var(--fg-color);
    }
    #service p {
        margin: 1.5em auto 0;
        padding: 0;
        width: 90%;
        color: #4a5765;
        font-size: 3.6vw;
        font-weight: 400;
        text-align: left;
        line-height: calc( 33 /  16 );
    }
    #service .service-grid {
        margin: 8.0vw auto 0;
        padding: 0;
        width: 90%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 4.0vw 0;
    }
    #service .service-grid .service-item {
        position: relative;
        display: block;
        margin: 0;
        padding: 4.0vw;
        width: 100%;
        background: #fff;
        box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.1 );
    }
    #service .service-grid .service-item::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 12.0vw;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #0083d6;
        clip-path: polygon( 0 0, 100% 0, 0 100% );
        z-index: 1;
    }
    #service .service-grid .service-item .pic {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 864 / 486;
    }
    #service .service-grid .service-item .pic img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #service .service-grid .service-item :is(a,div) {
        position: relative;
        display: block;
        margin: 0.5em 0 0 auto;
        padding: 0 2.0em 0 0;
        width: max-content;
        font-size: 4.0vw;
        font-weight: 700;
        letter-spacing: 0.03em;
    }
    #service .service-grid .service-item :is(a,div)::before {
        position: absolute;
        content: "";
        top: calc( 50% - 0.5em );
        right: 0;
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #0083d6;
        border-radius: 100%;
    }
    #service .service-grid .service-item :is(a,div)::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.15em - 1px );
        right: 0.35em;
        width: 0.3em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        rotate: -45deg;
    }

    #achievements {
        margin: 0 auto;
        padding: 12.0vw 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8.0vw 0;
    }
    #achievements .achievements-info {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        order: 2;
    }
    #achievements .achievements-info h2 {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 1.0vw 0;
    }
    #achievements .achievements-info h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 8.0vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        letter-spacing: 0.15em;
    }
    #achievements .achievements-info h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.03em;
    }
    #achievements .achievements-info h3 {
        margin: 0.5em 0 0;
        padding: 0;
        width: 100%;
        font-size: 6.4vw;
        font-weight: 700;
        text-align: left;
        line-height: 1.2;
    }
    #achievements .achievements-info h3 span {
        display: inline-block;
        margin: 0 0.1em 0 0.2em;
        color: #0083d6;
        font-size: 8.0vw;
        font-weight: 400;
        font-family: var(--font-calsans);
    }
    #achievements .achievements-info h4 {
        margin: 1.0em 0 0;
        padding: 0;
        width: 100%;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: left;
    }
    #achievements .achievements-info p {
        margin: 1.5em auto 0;
        padding: 0;
        width: 100%;
        color: #4a5765;
        font-size: 3.6vw;
        font-weight: 400;
        text-align: left;
        line-height: calc( 33 /  16 );
    }
    #achievements .achievements-info .btn-common  {
        position: relative;
        display: grid;
        place-items: center;
        margin: 8.0vw auto 0;
        padding: 0;
        width: 80%;
        height: auto;
        aspect-ratio: 426 / 61;
        color: #fff;
        font-size: 4.0vw;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
        background: var(--color-theme);
        border-radius: 4.0em;
    }
    #achievements .achievements-info .btn-common::before {
        position: absolute;
        content: "";
        top: calc( 50% - 0.5em );
        right: 1.5em;
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #fff;
        border-radius: 100%;
    }
    #achievements .achievements-info .btn-common::after {
        position: absolute;
        content: "";
        top: calc( 50% - 1px - 0.15em );
        right: 1.9em;
        width: 0.3em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid var(--color-theme);
        border-bottom: 2px solid var(--color-theme);
        rotate: -45deg;
    }
    #achievements .achievements-pic {
        position: relative;
        margin: 0;
        padding: 8.0vw 0;
        width: 100%;
        order: 1;
    }
    #achievements .achievements-pic::after {
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        width: 80vw;
        height: 80vw;
        background: linear-gradient( to bottom, #169bf0, #5dbeed );
        z-index: -1;
    }
    #achievements .achievements-pic .pic {
        position: relative;
        margin: 0 0 0 10%;
        padding: 0;
        width: 66%;
        height: auto;
        aspect-ratio: 1102 / 1064;
    }
    #achievements .achievements-pic .pic::after {
        position: absolute;
        content: "WHY CHOOSE US?";
        bottom: 100%;
        left: calc( 100% + 2.0vw );
        margin: 0;
        padding: 0;
        width: max-content;
        color: #fff;
        font-size: 4.8vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        line-height: 1.0;
        letter-spacing: 0.15em;
        white-space: nowrap;
        transform-origin: left bottom;
        transform: rotate(90deg);
    }

    #requirements {
        margin: 0 auto;
        padding: 12.0vw 0;
        width: 100%;
    }
    #requirements h2 {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 1.0vw 0;
    }
    #requirements h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 8.0vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        letter-spacing: 0.15em;
    }
    #requirements h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.03em;
    }
    #requirements h3 {
        margin: 1.0em auto 0;
        padding: 0;
        width: 90%;
        font-size: 5.2vw;
        font-weight: 700;
        text-align: left;
        line-height: 1.2;
    }
    #requirements .requirements-box {
        margin: 8.0vw auto 0;
        padding: 4.0vw;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4.0vw 0;
        background: #fff;
        box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.1 );
    }
    #requirements .requirements-box + .requirements-box {
        margin-top: 4.0vw;
    }
    #requirements .requirements-box .pic {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 432 / 243;
    }
    #requirements .requirements-box .pic img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #requirements .requirements-box .requirements-info {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    #requirements .requirements-box .requirements-info h4 {
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 4.8vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        letter-spacing: 0.15em;
    }
    #requirements .requirements-box .requirements-info h5 {
        margin: 0.5em 0 0;
        padding: 0;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: left;
    }
    #requirements .requirements-box .requirements-info p {
        margin: 1.0em 0 0;
        padding: 0;
        font-size: 3.6vw;
        font-weight: 400;
        text-align: left;
        line-height: calc( 36 / 18 );
    }

    #voice {
        margin: 0 auto;
        padding: 12.0vw 0;
        width: 100%;
        background: linear-gradient( to right, #169bf0, #5dbeed );
    }
    #voice h2 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        text-align: center;
    }
    #voice h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        color: #fff;
        font-size: 8.0vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: center;
        letter-spacing: 0.15em;
    }
    #voice h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #voice h3 {
        display: block;
        margin: 1.0em 0 0;
        padding: 0;
        color: #fff;
        font-size: 6.0vw;
        font-weight: 700;
        text-align: center;
    }
    #voice p {
        display: block;
        margin: 1.5em auto 0;
        padding: 0;
        width: 90%;
        color: #fff;
        font-size: 3.6vw;
        font-weight: 400;
        text-align: center;
    }
    #voice .voice-table {
        display: grid;
        margin: 8.0vw auto 0;
        padding: 0;
        width: 90%;
        display: grid;
        grid-template-columns: 30.0vw 1fr;
        gap: 0;
    }
    #voice .voice-table > dt {
        margin: 0;
        padding: 3.0vw 0;
        font-size: 3.6vw;
        font-weight: 400;
        text-align: center;
        line-height: 2.0;
        background: #fff;
        border-right: 1px solid #e8e8e8;
        border-bottom: 1px solid #e8e8e8;
    }
    #voice .voice-table > dd {
        margin: 0;
        padding: 3.0vw 4.0vw;
        font-size: 3.6vw;
        font-weight: 400;
        text-align: left;
        line-height: 2.0;
        background: #fff;
        border-bottom: 1px solid #e8e8e8;
    }
    #voice .voice-table > dt:first-of-type {
        font-size: 4.0vw;
        font-weight: 700;
        background: #d5e4ed;
        border-right: 1px solid #fff;
        border-bottom: 0;
    }
    #voice .voice-table > dd:first-of-type {
        font-size: 4.0vw;
        font-weight: 700;
        text-align: center;
        background: #d5e4ed;
        border-bottom: 0;
    }

    #support {
        margin: 0 auto;
        padding: 12.0vw 0;
        width: 100%;
    }
    #support h2 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        text-align: center;
    }
    #support h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        color: #0083d6;
        font-size: 8.0vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: center;
        letter-spacing: 0.15em;
    }
    #support h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #support h3 {
        display: block;
        margin: 1.0em 0 0;
        padding: 0;
        font-size: 6.0vw;
        font-weight: 700;
        text-align: center;
    }
    #support p {
        display: block;
        margin: 1.5em 0 0;
        padding: 0;
        font-size: 3.6vw;
        font-weight: 400;
        text-align: center;
    }
    #support .support-grid {
        margin: 8.0vw auto 0;
        padding: 0;
        width: 90%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 4.0vw;
    }
    #support .support-grid .support-item {
        position: relative;
        margin: 0;
        padding: 4.0vw;
        width: 100%;
        background: #fff;
        border: 2px solid #f0f1f2;
        border-radius: 2.0vw;
    }
    #support .support-grid .support-item .no {
        position: absolute;
        top: 0;
        left: 50%;
        width: 8.0vw;
        height: auto;
        aspect-ratio: 1 / 1;
        color: #fff;
        font-size: 4.0vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        background: linear-gradient( to right, #061b31, #2c4b6a );
        border-radius: 100%;
        display: grid;
        place-items: center;
        z-index: 1;
        translate: -50% -20%;
    }
    #support .support-grid .support-item .pic {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 336 / 184;
    }
    #support .support-grid .support-item .pic img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 1.0vw;
    }
    #support .support-grid .support-item h3 {
        margin: 16px 0 0;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
    }
    #support .support-grid .support-item h3 span:nth-of-type(1) {
        margin: 0;
        padding: 0;
        width: 100%;
        font-size: 4.0vw;
        font-weight: 500;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #support .support-grid .support-item h3 span:nth-of-type(2) {
        margin: 0;
        padding: 0;
        font-size: 6.0vw;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #support .support-grid .support-item p {
        margin: 1.0em 0 0;
        padding: 0;
        width: 100%;
        color: #4a5765;
        font-size: 3.6vw;
        font-weight: 400;
        line-height: calc( 22 / 16 );
    }
    #support .support-grid .support-item a {
        position: relative;
        display: block;
        margin: 1.0em 0 0 auto;
        padding: 0 2.0em 0 0;
        width: max-content;
        color: var(--color-theme);
        font-size: 3.6vw;
        font-weight: 500;
        text-align: right;
        line-height: 1.0;
    }
    #support .support-grid .support-item a::before {
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: var(--color-theme);
        border-radius: 100%;
    }
    #support .support-grid .support-item a::after {
        position: absolute;
        content: "";
        top: calc( 0.35em - 1px );
        right: 0.4em;
        width: 0.3em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        rotate: -45deg;
    }

    #fee {
        margin: 0 auto;
        padding: 12.0vw 0;
        width: 100%;
        background: #fafafa;
    }
    #fee h2 {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 1.0vw 0;
    }
    #fee h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 8.0vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: center;
        letter-spacing: 0.15em;
    }
    #fee h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #fee .fee-table {
        display: grid;
        margin: 8.0vw auto 0;
        padding: 0;
        width: 90%;
        display: grid;
        grid-template-columns: 20.0vw 20.0vw 1fr;
        gap: 0;
    }
    #fee .fee-table > div {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    #fee .fee-table > div:nth-child(1),
    #fee .fee-table > div:nth-child(2) {
        margin: 0;
        padding: 2.0vw 0;
        font-size: 4.0vw;
        font-weight: 600;
        text-align: center;
        line-height: calc( 23 / 16 );
        letter-spacing: 0.02em;
        background: #d5e4ed;
        border-right: 1px solid #fff;
        justify-content: center;
    }
    #fee .fee-table > div:nth-child(3) {
        margin: 0;
        padding: 2.0vw 0;
        font-size: 4.0vw;
        font-weight: 600;
        text-align: center;
        line-height: calc( 23 / 16 );
        letter-spacing: 0.02em;
        background: #d5e4ed;
        justify-content: center;
    }
    #fee .fee-table > div:nth-child(3n+4),
    #fee .fee-table > div:nth-child(3n+5) {
        margin: 0;
        padding: 2.0vw 2.0vw;
        font-size: 3.6vw;
        font-weight: 500;
        text-align: left;
        line-height: calc( 23 / 16 );
        letter-spacing: 0.02em;
        background: #fff;
        border-right: 1px solid #e8e8e8;
        border-bottom: 1px solid #e8e8e8;
    }
    #fee .fee-table > div:nth-child(3n+6) {
        margin: 0;
        padding: 2.0vw 2.0vw;
        font-size: 3.6vw;
        font-weight: 400;
        text-align: left;
        line-height: calc( 23 / 16 );
        letter-spacing: 0.02em;
        letter-spacing: 0.02em;
        background: #fff;
        border-bottom: 1px solid #e8e8e8;
    }
    #fee .memo {
        margin: 0.8em auto 0;
        padding: 0;
        width: 90%;
        color: #4a5765;
        font-size: 3.2vw;
        font-weight: 400;
        line-height: calc( 22 / 15 );
        letter-spacing: 0.02em;
    }

    #area {
        margin: 12.0vw auto 0;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8.0vw 0;
    }
    #area .area-info {
        margin: 0;
        padding: 0;
        width: 90%;
        order: 2;
    }
    #area .area-info h2 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 1.0vw 0;
    }
    #area .area-info h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 8.0vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        letter-spacing: 0.15em;
    }
    #area .area-info h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.03em;
    }
    #area .area-info h3 {
        margin: 0.5em 0 0;
        padding: 0;
        width: 100%;
        font-size: 6.4vw;
        font-weight: 700;
        text-align: left;
        line-height: 1.2;
    }
    #area .area-info h4 {
        margin: 0.5em 0 0;
        padding: 0;
        width: 100%;
        font-size: 5.2vw;
        font-weight: 700;
        text-align: left;
        line-height: 1.0;
    }
    #area .area-info p {
        margin: 1.5em auto 0;
        padding: 0;
        width: 100%;
        color: #4a5765;
        font-size: 3.6vw;
        font-weight: 400;
        text-align: left;
        line-height: calc( 33 /  16 );
    }
    #area .area-info .btn-common  {
        position: relative;
        display: grid;
        place-items: center;
        margin: 8.0vw auto 0;
        padding: 0;
        width: 90%;
        height: auto;
        aspect-ratio: 426 / 61;
        color: #fff;
        font-size: 4.0vw;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
        background: var(--color-theme);
        border-radius: 4.0em;
    }
    #area .area-info .btn-common::before {
        position: absolute;
        content: "";
        top: calc( 50% - 0.5em );
        right: 1.5em;
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #fff;
        border-radius: 100%;
    }
    #area .area-info .btn-common::after {
        position: absolute;
        content: "";
        top: calc( 50% - 1px - 0.15em );
        right: 1.85em;
        width: 0.3em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid var(--color-theme);
        border-bottom: 2px solid var(--color-theme);
        rotate: -45deg;
    }
    #area .area-pic {
        position: relative;
        margin: 0;
        padding: 8.0vw 0;
        width: 100%;
        order: 1;
    }
    #area .area-pic::after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 80vw;
        height: 100%;
        background: linear-gradient( to bottom, #169bf0, #5dbeed );
        z-index: -1;
    }
    #area .area-pic .pic {
        position: relative;
        margin: 0 0 0 24%;
        padding: 0;
        width: 66%;
        height: auto;
        aspect-ratio: 1026 / 772;
    }
    #area .area-pic .pic::after {
        position: absolute;
        content: "SERVICE AREA";
        top: 0;
        left: -2.0vw;
        margin: 0;
        padding: 0;
        width: max-content;
        color: #fff;
        font-size: 4.8vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        line-height: 1.0;
        letter-spacing: 0.15em;
        white-space: nowrap;
        transform-origin: left top;
        transform: rotate(90deg);
    }

    #philosophy {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8.0vw 0;
    }
    #philosophy .philosophy-info {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        order: 2;
    }
    #philosophy .philosophy-info h2 {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 1.0vw 0;
    }
    #philosophy .philosophy-info h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 8.0vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        letter-spacing: 0.15em;
    }
    #philosophy .philosophy-info h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.03em;
    }
    #philosophy .philosophy-info h3 {
        margin: 0.5em 0 0;
        padding: 0;
        width: 100%;
        font-size: 6.4vw;
        font-weight: 700;
        text-align: left;
        line-height: 1.0;
    }
    #philosophy .philosophy-info h3 span {
        color: #0083d6;
    }
    #philosophy .philosophy-info p {
        margin: 1.5em auto 0;
        padding: 0;
        width: 100%;
        color: #4a5765;
        font-size: 3.6vw;
        font-weight: 400;
        text-align: left;
        line-height: calc( 33 /  16 );
    }
    #philosophy .philosophy-pic {
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
        order: 1;
    }
    #philosophy .philosophy-pic .pic {
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }

    #profile {
        margin: 0 auto;
        padding: 16.0vw 5% 8.0vw;
    }
    #profile h2 {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 1.0vw 0;
    }
    #profile h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 8.0vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        line-height: 1.0;
        letter-spacing: 0.15em;
    }
    #profile h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.03em;
    }
    #profile .profile-table {
        margin: 8.0vw auto 0;
        padding: 0;
        width: 100%;
        border-top: 1px solid #e8e8e8;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }
    #profile .profile-table > dt {
        margin: 0;
        padding: 4.0vw 4.0vw 2.0vw;
        width: 100%;
        font-size: 3.6vw;
        font-weight: 700;
        letter-spacing: 0.06em;
    }
    #profile .profile-table > dd {
        margin: 0;
        padding: 2.0vw 4.0vw 4.0vw;
        width: 100%;
        font-size: 3.6vw;
        font-weight: 400;
        letter-spacing: 0.06em;
        border-bottom: 1px solid #e8e8e8;
    }

    #office {
        margin: 0 auto;
        padding: 8.0vw 5%;
    }
    #office h2 {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 1.0vw 0;
    }
    #office h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 8.0vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        line-height: 1.0;
        letter-spacing: 0.15em;
    }
    #office h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.03em;
    }
    #office .office-grid {
        margin: 8.0vw auto 0;
        padding: 0;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8.0vw 0;
    }
    #office .office-grid .office-item {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    #office .office-grid .office-item .head {
        margin: 0;
        padding: 1.0em 0;
        width: 100%;
        font-size: 4.0vw;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.06em;
        border: 1px solid #e8e8e8;
    }
    #office .office-grid .office-item iframe {
        display: block;
        margin: 24px 0 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 480 / 270;
        border: 0;
    }
    #office .office-grid .office-item .pic {
        margin: 4.0vw 0 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 480 / 270;
    }
    #office .office-grid .office-item .pic:empty {
        background: #ccc;
    }
    #office .office-grid .office-item .pic img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #office .office-grid .office-item p {
        margin: 1.0em 0 0;
        padding: 0;
        font-size: 3.6vw;
        font-weight: 400;
        text-align: left;
    }

    #recruit-first {
        margin: 0 auto;
        padding: 8.0vw 0 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.0vw 0;
    }
    #recruit-first .pic:nth-of-type(1) {
        margin: 0;
        padding: 0;
        width: 148px;
        height: auto;
    }
    #recruit-first h2 {
        margin: 0;
        padding: 0;
        width: 100%;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: center;
    }
    #recruit-first .pic:nth-of-type(2) {
        margin: 0;
        padding: 0;
        width: 286px;
        height: auto;
    }

    #merit {
        margin: 0 auto;
        padding: 12.0vw 0;
        width: 100%;
        background: linear-gradient( to bottom, #fafafa 60%, transparent 60% );
    }
    #merit h2 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 1.0vw 0;
    }
    #merit h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        color: #0083d6;
        font-size: 8.0vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: center;
        letter-spacing: 0.15em;
    }
    #merit h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #merit .balloon {
        position: relative;
        margin: 8.0vw auto 12.0vw;
        padding: 0.5em 0;
        width: 90%;
        height: auto;
        color: #fff;
        font-size: 4.0vw;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
        letter-spacing: 0.03em;
        background: #0083d6;
        border-radius: 4.0em;
    }
    #merit .balloon::after {
        position: absolute;
        content: "";
        top: calc( 100% - 1px );
        left: calc( 50% - 2.0vw );
        width: 4.0vw;
        height: 3.4vw;
        background: #0083d6;
        clip-path: polygon( 0 0, 100% 0, 50% 100% );
    }
    #merit .merit-grid {
        margin: 12.0vw auto 0;
        padding: 0;
        width: 90%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8.0vw 0;
    }
    #merit .merit-grid .merit-item {
        position: relative;
        margin: 0;
        padding: 8.0vw 4.0vw 4.0vw;
        width: 100%;
        background: #fff;
        border: 2px solid #f0f1f2;
        border-radius: 16px;
    }
    #merit .merit-grid .merit-item .no {
        position: absolute;
        top: 0;
        left: 50%;
        width: 10.0vw;
        height: auto;
        aspect-ratio: 1 / 1;
        color: #fff;
        font-size: 4.8vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        background: linear-gradient( to right, #061b31, #2c4b6a );
        border-radius: 100%;
        display: grid;
        place-items: center;
        z-index: 1;
        translate: -50% -50%;
    }
    #merit .merit-grid .merit-item .pic {
        margin: 4.0vw 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 336 / 184;
    }
    #merit .merit-grid .merit-item .pic img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
    #merit .merit-grid .merit-item h3 {
        margin: 0;
        padding: 0;
        font-size: 4.0vw;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #merit .merit-grid .merit-item p {
        margin: 1.0em 0 0;
        padding: 0;
        width: 100%;
        color: #4a5765;
        font-size: 3.6vw;
        font-weight: 400;
        line-height: calc( 22 / 16 );
    }

    #voice.recruit-voice h3 {
        font-size: 4.0vw;
    }
    #voice.recruit-voice .recruit-voice-grid {
        margin: 8.0vw auto 0;
        padding: 0;
        width: 90%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8.0vw 0;
    }
    #voice.recruit-voice .recruit-voice-grid .recruit-voice-item {
        position: relative;
        margin: 0 auto;
        padding: 8.0vw 4.0vw 4.0vw;
        width: 98%;
        background: #fff;
        border-radius: 2.0vw;
    }
    #voice.recruit-voice .recruit-voice-grid .recruit-voice-item .balloon {
        position: absolute;
        top: 0;
        left: 0;
        margin: 0;
        padding: 0.5em 1.5em;
        width: max-content;
        color: var(--fg-color);
        font-size: 4.0vw;
        font-weight: 700;
        line-height: 1.0;
        background: #ffdf00;
        border-radius: 4.0em;
        translate: -2% -50%;
    }
    #voice.recruit-voice .recruit-voice-grid .recruit-voice-item .balloon::after {
        position: absolute;
        content: "";
        top: calc( 100% - 1px );
        right: 66%;
        width: 3.0vw;
        height: 3.0vw;
        background: #ffdf00;
        clip-path: polygon( 0 0, 100% 0, 100% 100% );
    }
    #voice.recruit-voice .recruit-voice-grid .recruit-voice-item .balloon span {
        font-size: 3.6vw;
    }
    #voice.recruit-voice .recruit-voice-grid .recruit-voice-item p {
        margin: 0;
        padding: 0;
        width: 100%;
        color: var(--fg-color);
        font-size: 3.6vw;
        font-weight: 400;
        text-align: left;
    }
    #voice.recruit-voice .recruit-voice-grid .recruit-voice-item .pic {
        margin: 2.0vw 0 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 488 / 188;
    }
    #voice.recruit-voice .recruit-voice-grid .recruit-voice-item .pic:empty {
        background: #f8f8f8;
    }
    #voice.recruit-voice .recruit-voice-grid .recruit-voice-item .pic img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 1.0vw;
    }

    #faq {
        margin: 0 auto;
        padding: 12.0vw 0;
        width: 100%;
        background: #fafafa;
    }
    #faq h2 {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 1.0vw 0;
    }
    #faq h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 8.0vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        line-height: 1.0;
        letter-spacing: 0.15em;
    }
    #faq h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.03em;
    }
    #faq .faq-box {
        margin: 8.0vw auto 0;
        padding: 4.0vw;
        width: 90%;
        background: #fff;
        border-radius: 1.0vw;
    }
    #faq .faq-box + .faq-box {
        margin-top: 2.0vw;
    }
    #faq .faq-box .faq-q {
        margin: 0;
        padding: 0;
        font-size: 4.0vw;
        font-weight: 500;
        line-height: calc( 38 / 18 );
        letter-spacing: 0.04em;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0 2.0vw;
    }
    #faq .faq-box .faq-q::before {
        display: grid;
        place-items: center;
        content: "Q";
        margin: 0;
        padding: 0;
        width: 8.0vw;
        height: auto;
        aspect-ratio: 1 / 1;
        color: #fff;
        font-size: 4.0vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        line-height: 1.0;
        background: var(--fg-color);
        border-radius: 100%;
    }
    #faq .faq-box .faq-a {
        margin: 1.5em 0 0;
        font-size: 3.2vw;
        font-weight: 400;
        line-height: calc( 28 / 14 );
        letter-spacing: 0.04em;
    }

    #requirements.w1000 h2 {
    }
    #requirements.w1000 .requirements-table {
        margin: 8.0vw auto 0;
        padding: 0;
        width: 90%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        border-top: 1px solid #e8e8e8;
        border-left: 1px solid #e8e8e8;
    }
    #requirements.w1000 .requirements-table > dt {
        margin: 0;
        padding: 4.0vw 6.0vw;
        width: 100%;
        font-size: 3.6vw;
        font-weight: 500;
        background: #f8f8f8;
        border-right: 1px solid #e8e8e8;
        border-bottom: 1px solid #e8e8e8;
    }
    #requirements.w1000 .requirements-table > dd {
        margin: 0;
        padding: 4.0vw 6.0vw;
        width: 100%;
        font-size: 3.2vw;
        font-weight: 400;
        background: #fff;
        border-right: 1px solid #e8e8e8;
        border-bottom: 1px solid #e8e8e8;
    }

    #contact-form {
        margin: 0 auto;
        padding: 12.0vw 0;
        width: 100%;
        background: #fafafa;
    }
    #contact-form .contact-wrap {
        margin: 0 auto;
        padding: 0;
        width: 90%;
    }
    #contact-form .contact-box {
        margin: 0 auto;
        padding: 6.0vw 4.0vw;
        width: 100%;
        background: #fff;
    }
    #contact-form .contact-box .ws-form-group {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
    #contact-form .contact-box .ws-form-group + .ws-form-group {
        margin-top: 8.0vw;
    }
    #contact-form .contact-box .ws-form-group .ws-form-label {
        margin: 0;
        padding: ;
        width: 100%;
    }
    #contact-form .contact-box .ws-form-group .ws-form-label label {
        display: inline-block;
        width: max-conetnt;
        font-size: 3.6vw;
        font-weight: 700;
        text-align: left;
    }
    #contact-form .contact-box .ws-form-group .ws-form-label label::after {
        display: inline-block;
        content: "任意";
        margin: 0 0 0 1.0em;
        color: #c7c7c7;
        font-size: 2.8vw;
        font-weight: 500;
    }
    #contact-form .contact-box .ws-form-group .ws-form-label.required label::after {
        content: "必須";
        color: #0083d6;
    }
    #contact-form .contact-box .ws-form-group .ws-form-input {
        margin: 2.0vw 0 0;
        padding: 0;
        width: 100%;
    }
    #contact-form .contact-box .ws-form-group .ws-form-input label {
        display: block;
        font-size: 3.6vw;
        font-weight: 400;
        text-align: left;
    }
    #contact-form .contact-box .ws-form-group .ws-form-input:not(.flex) label + label {
        margin-top: 1.0vw;
    }
    #contact-form .contact-box .ws-form-group .ws-form-input.flex {
        display: flex;
        gap: 0 1.0vw;
    }
    #contact-form .contact-box .ws-form-group .ws-form-input :is(input[type="text"],input[type="email"],input[type="tel"],textarea) {
        display: block;
        margin: 0;
        padding: 0.5em 1.0em;
        width: 100%;
        font-size: 16px;
        font-family: inherit;
        background: #f7f7f7;
        border: 0;
        border-radius: 1.0vw;
    }
    #contact-form .contact-box .ws-form-group .ws-form-input textarea {
        height: 10.0em;
    }
    #contact-form .contact-box .ws-form-group .ws-form-input :is(input[type="text"],input[type="email"],input[type="tel"],textarea)::placeholder {
        color: #c7c7c7;
    }
    #contact-form h3 {
        margin: 3.0em 0 0;
        font-size: 4.0vw;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.05em;
    }
    #contact-form p {
        margin: 1.0em 0 0;
        font-size: 3.6vw;
        font-weight: 500;
        text-align: center;
        letter-spacing: 0.02em;
    }
    #contact-form .privacy-policy {
        margin: 8.0vw 0 0;
        padding: 4.0vw;
        border: 1px solid #c7c7c7;
        height: 50.0vw;
        overflow-y: auto;
    }
    #contact-form .privacy-policy h4 {
        margin: 1.0em 0 0;
        font-size: 3.6vw;
        font-weight: 500;
        text-align: left;
        letter-spacing: 0.05em;
    }
    #contact-form .privacy-policy p {
        margin: 0.5em 0 0;
        font-size: 3.2vw;
        font-weight: 400;
        text-align: left;
        letter-spacing: 0.05em;
    }
    #contact-form .ws-agree {
        margin: 8.0vw auto 0;
        width: max-content;
    }
    #contact-form .ws-agree label {
        font-size: 3.6vw;
        font-weight: 500;
    }
    #contact-form .ws-submit {
        position: relative;
        margin: 8.0vw auto 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 426 / 61;
        font-size: 4.0vw;
        background: #0083d6;
        border-radius: 4.0em;
        cursor: pointer;
        transition: opacity 0.3s ease-out;
    }
    #contact-form .ws-submit::before {
        position: absolute;
        content: "";
        top: calc( 50% - 0.5em );
        right: 1.5em;
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #fff;
        border-radius: 100%;
    }
    #contact-form .ws-submit::after {
        position: absolute;
        content: "";
        top: calc( 50% - 1px - 0.15em );
        right: 1.85em;
        width: 0.3em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid var(--color-theme);
        border-bottom: 2px solid var(--color-theme);
        rotate: -45deg;
    }
    #contact-form .ws-submit input[type="submit"] {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        color: #fff;
        font-size: 4.0vw;
        font-weight: 700;
        font-family: inherit;
        background: transparent;
        border: 0;
        cursor: pointer;
    }
    @media ( hover: hover ) {
        #contact-form .ws-submit:hover {
            opacity: 0.5;
        }
    }
    #contact-form p.memo {
        margin: 8.0vw 0 0;
        color: #4a5765;
        font-size: 2.8vw;
        font-weight: 400;
        text-align: center;
    }

    #area-map {
        margin: 0 auto;
        padding: 8.0vw 0;
        width: 100%;
        background: #fafafa;
    }
    #area-map h2 {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 1.0vw 0;
    }
    #area-map h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 8.0vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: center;
        letter-spacing: 0.15em;
    }
    #area-map h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #area-map h3 {
        margin: 1.0em auto 0;
        padding: 0;
        width: 90%;
        font-size: 5.2vw;
        font-weight: 700;
        text-align: left;
    }
    #area-map p {
        margin: 1.5em auto 0;
        padding: 0;
        width: 90%;
        font-size: 3.6vw;
        font-weight: 400;
        text-align: left;
    }
    #area-map .area-map-wrap {
        margin: 8.0vw auto 0;
        padding: 0;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #area-map .area-map-wrap .map-pic {
        margin: 0;
        padding: 2.0vw;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 4;
        background: #fff;
        overflow: hidden;
    }
    #area-map .area-map-wrap .map-pic :is(img,svg) {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        transform: translateX( 5% ) scale( 1.8, 1.8 );
        object-fit: cover;
    }
    #area-map .area-map-wrap .map-info {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    #area-map .area-map-wrap .map-info h4 {
        margin: 4.0vw 0 0;
        padding: 0 0 0 0.5em;
        font-size: 4.0vw;
        font-weight: 500;
        text-align: left;
        border-left: 4px solid #0083d6;
    }
    #area-map .area-map-wrap .map-info h4:first-child {
        margin-top: 0;
    }
    #area-map .area-map-wrap .map-info .map-prefs {
        margin: 4.0vw 0 8.0vw;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
    }
    #area-map .area-map-wrap .map-info .map-prefs .map-pref {
        margin: 0;
        padding: 0 1.0em;
        font-size: 3.6vw;
        font-weight: 400;
        line-height: 1.2;
    }
    #area-map .area-map-wrap .map-info .map-prefs .map-pref + .map-pref {
        border-left: 1px solid var(--fg-color);
    }
    #area-map .area-map-wrap .map-info p {
        margin: 2.0em 0 0;
        color: #061b31;
        font-size: 3.2vw;
        font-weight: 400;
        text-align: left;
    }

    #example {
        margin: 0 auto;
        padding: 8.0vw 0;
        width: 100%;
    }
    #example h2 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 1.0vw 0;
    }
    #example h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        color: #0083d6;
        font-size: 8.0vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: center;
        letter-spacing: 0.15em;
    }
    #example h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #example .example-grid {
        margin: 8.0vw auto 0;
        padding: 0;
        width: 90%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 4.0vw 0;
    }
    #example .example-grid .example-item {
        position: relative;
        margin: 0;
        padding: 2.0vw;
        width: 100%;
        background: #fafafa;
        border: 1px solid #ebebeb;
        border-radius: 2.0vw;
    }
    #example .example-grid .example-item .pic {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 992 / 476;
    }
    #example .example-grid .example-item .pic img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 1.0vw;
    }
    #example .example-grid .example-item h3 {
        margin: 0.8em 0 0;
        padding: 0;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: center;
    }
    #example .example-grid .example-item h3 span {
        font-size: 3.6vw;
        font-weight: 500;
    }

    #available-area {
        margin: 0 auto;
        padding: 8.0vw 0;
        width: 100%;
        background: #fafafa;
    }
    #available-area h2 {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 10px 0;
    }
    #available-area h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 8.0vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: center;
        letter-spacing: 0.15em;
    }
    #available-area h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #available-area .available-table {
        margin: 8.0vw auto 0;
        padding: 0;
        width: 96%;
        display: grid;
        grid-template-columns: 5fr 4fr 4fr 4fr;
        gap: 0;
    }
    #available-area .available-table > div:nth-child(1),
    #available-area .available-table > div:nth-child(2),
    #available-area .available-table > div:nth-child(3),
    #available-area .available-table > div:nth-child(4) {
        margin: 0;
        padding: 2.8vw 0;
        width: 100%;
        font-size: 2.8vw;
        font-weight: 500;
        text-align: center;
        background: #d5e4ed;
    }
    #available-area .available-table > div:nth-child(1),
    #available-area .available-table > div:nth-child(2),
    #available-area .available-table > div:nth-child(3) {
        border-right: 1px solid #fff;
    }
    #available-area .available-table > div:nth-child(4n+5),
    #available-area .available-table > div:nth-child(4n+6),
    #available-area .available-table > div:nth-child(4n+7),
    #available-area .available-table > div:nth-child(4n+8) {
        margin: 0;
        padding: 2.8vw 2.8vw;
        width: 100%;
        font-size: 2.8vw;
        font-weight: 500;
        background: #fff;
        border-bottom: 1px solid #e8e8e8;
    }
    #available-area .available-table > div:nth-child(4n+5),
    #available-area .available-table > div:nth-child(4n+6),
    #available-area .available-table > div:nth-child(4n+7) {
        border-right: 1px solid #e8e8e8;
    }
    #available-area .available-table > div:nth-child(4n+5) {
        text-align: left;
    }
    #available-area .available-table > div:nth-child(4n+6),
    #available-area .available-table > div:nth-child(4n+7),
    #available-area .available-table > div:nth-child(4n+8) {
        text-align: right;
    }

    #strength {
        margin: 0 auto;
        padding: 8.0vw 0;
        width: 100%;
    }
    #strength h2 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 10px 0;
    }
    #strength h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        color: #0083d6;
        font-size: 8.0vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: center;
        letter-spacing: 0.15em;
    }
    #strength h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #strength .strength-box {
        margin: 8.0vw auto 0;
        padding: 4.0vw;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4.0vw 0;
        background: #fff;
        box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.1 );
    }
    #strength .strength-box + .strength-box {
        margin-top: 4.0vw;
    }
    #strength .strength-box .pic {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 432 / 243;
    }
    #strength .strength-box .pic img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #strength .strength-box .strength-info {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    #strength .strength-box .strength-info h3 {
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 4.8vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        letter-spacing: 0.15em;
    }
    #strength .strength-box .strength-info h4 {
        margin: 0.8em 0 0;
        padding: 0;
        font-size: 4.0vw;
        font-weight: 700;
        text-align: left;
    }

    #area-faq {
        margin: 0 auto;
        padding: 12.0vw 0;
        width: 100%;
    }
    #area-faq h2 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        text-align: center;
    }
    #area-faq h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        color: #0083d6;
        font-size: 8.0vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: center;
        letter-spacing: 0.15em;
    }
    #area-faq h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #area-faq h3 {
        display: block;
        margin: 1.0em 0 0;
        padding: 0;
        font-size: 5.2vw;
        font-weight: 700;
        text-align: center;
    }
    #area-faq .faq-grid {
        margin: 8.0vw auto 0;
        padding: 0;
        width: 90%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8.0vw;
    }
    #area-faq .faq-grid .faq-item {
        position: relative;
        margin: 0;
        padding: 4.0vw;
        width: 100%;
        background: #fff;
        border: 2px solid #f0f1f2;
        border-radius: 2.0vw;
    }
    #area-faq .faq-grid .faq-item .no {
        position: absolute;
        top: 0;
        left: 50%;
        width: 8.0vw;
        height: auto;
        aspect-ratio: 1 / 1;
        color: #fff;
        font-size: 4.0vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        background: linear-gradient( to right, #061b31, #2c4b6a );
        border-radius: 100%;
        display: grid;
        place-items: center;
        z-index: 1;
        translate: -50% -20%;
    }
    #area-faq .faq-grid .faq-item .pic {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 336 / 184;
    }
    #area-faq .faq-grid .faq-item .pic img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 1.0vw;
    }
    #area-faq .faq-grid .faq-item h3 {
        margin: 16px 0 0;
        padding: 0;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }

}


/**
 * PC用設定
 */
@media ( width >= 768px ) {

    #page-mv {
        position: relative;
        margin: 96px auto 0;
        padding: 0;
        width: 100%;
        overflow: hidden;
    }
    #page-mv .mv-bg {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 3840 / 980;
    }
    #page-mv .mv-bg img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #page-mv .mv-box {
        position: absolute;
        top: 50%;
        left: max( 5vw, calc( 50.0vw - 600px ) );
        width: 90%;
        max-width: 1200px;
        translate: 0 -50%;
    }
    #page-mv .mv-box h1 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 20px 0;
    }
    #page-mv .mv-box h1 > span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 24px;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        letter-spacing: 0.15em;
    }
    #page-mv .mv-box h1 > span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 48px;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.07em;
    }
    #page-mv .mv-box h1 span:nth-of-type(2) span {
        font-size: 20px;
    }
    #page-mv .mv-box .breadcrumbs {
        margin: 4.0em 0 0;
        padding: 0;
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        text-align: left;
    }
    #page-mv .mv-box .breadcrumbs a {
        color: #fff;
    }
    #page-mv .mv-box .breadcrumbs span {
        color: rgba( 255, 255, 255, 0.4 );
    }

    #page-first {
        margin: 0 auto;
        padding: 70px 0;
        width: 100%;
    }
    #page-first h2 {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        max-width: 1200px;
        font-size: 26px;
        font-weight: 700;
        text-align: center;
    }
    #page-first p {
        margin: 1.5em auto 0;
        padding: 0;
        width: 90%;
        max-width: 1200px;
        font-size: 16px;
        font-weight: 400;
        text-align: center;
    }

    #service {
        margin: 0 auto;
        padding: 70px 0;
        width: 100%;
        background: linear-gradient( to bottom, #fafafa 60%, transparent 60% );
    }
    #service h2 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        font-size: 26px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0 0;
    }
    #service h2 span:nth-of-type(1) {
        display: block;
    }
    #service h2 span:nth-of-type(2) {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #service h2 span:nth-of-type(2)::before,
    #service h2 span:nth-of-type(2)::after {
        content: "";
        width: 2.5em;
        height: 1px;
        background: var(--fg-color);
    }
    #service p {
        margin: 1.5em auto 0;
        padding: 0;
        width: 100%;
        color: #4a5765;
        font-size: 16px;
        font-weight: 400;
        text-align: center;
        line-height: calc( 33 /  16 );
    }
    #service .service-grid {
        margin: 40px auto 0;
        padding: 0;
        width: 90%;
        max-width: 1440px;
        display: grid;
        grid-template-columns: repeat( 3, 1fr );
        gap: 0 24px;
    }
    #service .service-grid .service-item {
        position: relative;
        display: block;
        margin: 0;
        padding: 16px;
        width: 100%;
        background: #fff;
        box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.1 );
    }
    #service .service-grid .service-item::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 48px;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #0083d6;
        clip-path: polygon( 0 0, 100% 0, 0 100% );
        z-index: 1;
    }
    #service .service-grid .service-item .pic {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 864 / 486;
    }
    #service .service-grid .service-item .pic img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #service .service-grid .service-item :is(a,div) {
        position: relative;
        display: block;
        margin: 0.5em 0 0 auto;
        padding: 0 2.0em 0 0;
        width: max-content;
        font-size: 21px;
        font-weight: 700;
        letter-spacing: 0.03em;
    }
    #service .service-grid .service-item :is(a,div)::before {
        position: absolute;
        content: "";
        top: calc( 50% - 0.5em );
        right: 0;
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #0083d6;
        border-radius: 100%;
    }
    #service .service-grid .service-item :is(a,div)::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.15em - 1px );
        right: 0.4em;
        width: 0.3em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        rotate: -45deg;
    }

    #achievements {
        margin: 0 auto;
        padding: 40px 0;
        width: 100%;
        background: #fafafa;
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        gap: 0;
    }
    #achievements .achievements-info {
        margin: 0;
        padding: 0 0 0 max( 5.0vw, calc( 50.0vw - 540px ) );
        width: 50%;
    }
    #achievements .achievements-info h2 {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 10px 0;
    }
    #achievements .achievements-info h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 40px;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        letter-spacing: 0.15em;
    }
    #achievements .achievements-info h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 24px;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.03em;
    }
    #achievements .achievements-info h3 {
        margin: 0.5em 0 0;
        padding: 0;
        width: 100%;
        font-size: 46px;
        font-weight: 700;
        text-align: left;
        line-height: 1.2;
    }
    #achievements .achievements-info h3 span {
        display: inline-block;
        margin: 0 0.1em 0 0.2em;
        color: #0083d6;
        font-size: 71px;
        font-weight: 400;
        font-family: var(--font-calsans);
    }
    #achievements .achievements-info h4 {
        margin: 1.0em 0 0;
        padding: 0;
        width: 100%;
        font-size: 31px;
        font-weight: 700;
        text-align: left;
    }
    #achievements .achievements-info p {
        margin: 1.5em auto 0;
        padding: 0;
        width: 100%;
        color: #4a5765;
        font-size: 16px;
        font-weight: 400;
        text-align: left;
        line-height: calc( 33 /  16 );
    }
    #achievements .achievements-info .btn-common  {
        position: relative;
        display: grid;
        place-items: center;
        margin: 40px auto 0 0;
        padding: 0;
        width: 90%;
        max-width: 426px;
        height: auto;
        aspect-ratio: 426 / 61;
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
        background: var(--color-theme);
        border-radius: 4.0em;
    }
    #achievements .achievements-info .btn-common::before {
        position: absolute;
        content: "";
        top: calc( 50% - 0.5em );
        right: 1.5em;
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #fff;
        border-radius: 100%;
    }
    #achievements .achievements-info .btn-common::after {
        position: absolute;
        content: "";
        top: calc( 50% - 1px - 0.15em );
        right: 1.9em;
        width: 0.3em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid var(--color-theme);
        border-bottom: 2px solid var(--color-theme);
        rotate: -45deg;
    }
    #achievements .achievements-pic {
        position: relative;
        margin: 0;
        padding: 40px 0;
        width: calc( 50% - 50px );
    }
    #achievements .achievements-pic::after {
        position: absolute;
        content: "";
        top: 80px;
        right: 0;
        width: calc( 100% - 200px );
        height: calc( 100% - 80px );
        background: linear-gradient( to bottom, #169bf0, #5dbeed );
    }
    #achievements .achievements-pic .pic {
        position: relative;
        margin: 0;
        padding: 0;
        width: min( 45.0vw - 50px, 550px );
        height: auto;
        aspect-ratio: 1102 / 1064;
        z-index: 1;
    }
    #achievements .achievements-pic .pic::after {
        position: absolute;
        content: "OUR ACHIEVEMENTS";
        bottom: calc( 100% - 80px );
        left: calc( 100% + 17px );
        margin: 0;
        padding: 0;
        width: max-content;
        color: #fff;
        font-size: 24px;
        font-weight: 400;
        font-family: var(--font-calsans);
        line-height: 1.0;
        letter-spacing: 0.15em;
        white-space: nowrap;
        transform-origin: left bottom;
        transform: rotate(90deg);
    }

    #requirements {
        margin: 0 auto;
        padding: 70px 0;
        width: 100%;
    }
    #requirements h2 {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        max-width: 1080px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 10px 0;
    }
    #requirements h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 40px;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        letter-spacing: 0.15em;
    }
    #requirements h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 24px;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.03em;
    }
    #requirements h3 {
        margin: 1.0em auto 0;
        padding: 0;
        width: 90%;
        max-width: 1080px;
        font-size: 31px;
        font-weight: 700;
        text-align: left;
        line-height: 1.0;
    }
    #requirements .requirements-box {
        margin: 60px auto 0;
        padding: 24px;
        width: 90%;
        max-width: 1080px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #fff;
        box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.1 );
    }
    #requirements .requirements-box + .requirements-box {
        margin-top: 24px;
    }
    #requirements .requirements-box .pic {
        margin: 0;
        padding: 0;
        width: 42%;
        height: auto;
        aspect-ratio: 432 / 243;
    }
    #requirements .requirements-box .pic img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #requirements .requirements-box .requirements-info {
        margin: 0;
        padding: 0;
        width: calc( 58% - 40px );
    }
    #requirements .requirements-box .requirements-info h4 {
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 26px;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        letter-spacing: 0.15em;
    }
    #requirements .requirements-box .requirements-info h5 {
        margin: 0.8em 0 0;
        padding: 0;
        font-size: 26px;
        font-weight: 700;
        text-align: left;
    }
    #requirements .requirements-box .requirements-info p {
        margin: 1.0em 0 0;
        padding: 0;
        font-size: 18px;
        font-weight: 400;
        text-align: left;
        line-height: calc( 36 / 18 );
    }

    #voice {
        margin: 0 auto;
        padding: 70px 0;
        width: 100%;
        background: linear-gradient( to right, #169bf0, #5dbeed );
    }
    #voice h2 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px 0;
    }
    #voice h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        color: #fff;
        font-size: 40px;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: center;
        letter-spacing: 0.15em;
    }
    #voice h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #voice h3 {
        display: block;
        margin: 1.0em 0 0;
        padding: 0;
        color: #fff;
        font-size: 31px;
        font-weight: 700;
        text-align: center;
    }
    #voice p {
        display: block;
        margin: 1.5em 0 0;
        padding: 0;
        color: #fff;
        font-size: 18px;
        font-weight: 400;
        text-align: center;
    }
    #voice .voice-table {
        display: grid;
        margin: 50px auto 0;
        padding: 0;
        width: 90%;
        max-width: 1000px;
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 0;
    }
    #voice .voice-table > dt {
        margin: 0;
        padding: 16px 0;
        font-size: 18px;
        font-weight: 400;
        text-align: center;
        line-height: 2.0;
        background: #fff;
        border-right: 1px solid #e8e8e8;
        border-bottom: 1px solid #e8e8e8;
    }
    #voice .voice-table > dd {
        margin: 0;
        padding: 16px 40px;
        font-size: 18px;
        font-weight: 400;
        text-align: left;
        line-height: 2.0;
        background: #fff;
        border-bottom: 1px solid #e8e8e8;
    }
    #voice .voice-table > dt:first-of-type {
        font-size: 20px;
        font-weight: 700;
        background: #d5e4ed;
        border-right: 1px solid #fff;
        border-bottom: 0;
    }
    #voice .voice-table > dd:first-of-type {
        font-size: 20px;
        font-weight: 700;
        text-align: center;
        background: #d5e4ed;
        border-bottom: 0;
    }

    #support {
        margin: 0 auto;
        padding: 70px 0 0;
        width: 100%;
    }
    #support h2 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 10px 0;
    }
    #support h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        color: #0083d6;
        font-size: 40px;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: center;
        letter-spacing: 0.15em;
    }
    #support h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #support h3 {
        display: block;
        margin: 1.0em 0 0;
        padding: 0;
        font-size: 31px;
        font-weight: 700;
        text-align: center;
    }
    #support p {
        display: block;
        margin: 1.5em 0 0;
        padding: 0;
        font-size: 18px;
        font-weight: 400;
        text-align: center;
    }
    #support .support-grid {
        margin: 40px auto 0;
        padding: 0;
        width: 90%;
        max-width: 1200px;
        display: grid;
        grid-template-columns: repeat( 3, 1fr );
        gap: 0 24px;
    }
    #support .support-grid .support-item {
        position: relative;
        margin: 0;
        padding: 24px;
        width: 100%;
        background: #fff;
        border: 2px solid #f0f1f2;
        border-radius: 16px;
    }
    #support .support-grid .support-item .no {
        position: absolute;
        top: 0;
        left: 50%;
        width: 44px;
        height: auto;
        aspect-ratio: 1 / 1;
        color: #fff;
        font-size: 28px;
        font-weight: 400;
        font-family: var(--font-calsans);
        background: linear-gradient( to right, #061b31, #2c4b6a );
        border-radius: 100%;
        display: grid;
        place-items: center;
        z-index: 1;
        translate: -50% -20%;
    }
    #support .support-grid .support-item .pic {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 336 / 184;
    }
    #support .support-grid .support-item .pic img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
    #support .support-grid .support-item h3 {
        margin: 16px 0 0;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
    }
    #support .support-grid .support-item h3 span:nth-of-type(1) {
        margin: 0;
        padding: 0;
        width: 100%;
        font-size: 18px;
        font-weight: 500;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #support .support-grid .support-item h3 span:nth-of-type(2) {
        margin: 0;
        padding: 0;
        font-size: 26px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #support .support-grid .support-item p {
        margin: 1.0em 0 0;
        padding: 0;
        width: 100%;
        color: #4a5765;
        font-size: 16px;
        font-weight: 400;
        line-height: calc( 22 / 16 );
    }
    #support .support-grid .support-item a {
        position: relative;
        display: block;
        margin: 1.0em 0 0 auto;
        padding: 0 2.0em 0 0;
        width: max-content;
        color: var(--color-theme);
        font-size: 15px;
        font-weight: 500;
        text-align: right;
        line-height: 1.0;
    }
    #support .support-grid .support-item a::before {
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: var(--color-theme);
        border-radius: 100%;
    }
    #support .support-grid .support-item a::after {
        position: absolute;
        content: "";
        top: calc( 0.35em - 1px );
        right: 0.35em;
        width: 0.3em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        rotate: -45deg;
    }

    #fee {
        margin: 0 auto;
        padding: 70px 0;
        width: 100%;
        background: #fafafa;
    }
    #fee h2 {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        max-width: 1000px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 10px 0;
    }
    #fee h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 40px;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: center;
        letter-spacing: 0.15em;
    }
    #fee h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #fee .fee-table {
        display: grid;
        margin: 50px auto 0;
        padding: 0;
        width: 90%;
        max-width: 1000px;
        display: grid;
        grid-template-columns: 250px 250px 1fr;
        gap: 0;
    }
    #fee .fee-table > div:nth-child(n+4) {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    #fee .fee-table > div:nth-child(1),
    #fee .fee-table > div:nth-child(2) {
        margin: 0;
        padding: 16px 0;
        font-size: 20px;
        font-weight: 600;
        text-align: center;
        line-height: calc( 23 / 16 );
        letter-spacing: 0.02em;
        background: #d5e4ed;
        border-right: 1px solid #fff;
    }
    #fee .fee-table > div:nth-child(3) {
        margin: 0;
        padding: 16px 0;
        font-size: 20px;
        font-weight: 600;
        text-align: center;
        line-height: calc( 23 / 16 );
        letter-spacing: 0.02em;
        background: #d5e4ed;
    }
    #fee .fee-table > div:nth-child(3n+4),
    #fee .fee-table > div:nth-child(3n+5) {
        margin: 0;
        padding: 16px 40px;
        font-size: 18px;
        font-weight: 500;
        text-align: left;
        line-height: calc( 23 / 16 );
        letter-spacing: 0.02em;
        background: #fff;
        border-right: 1px solid #e8e8e8;
        border-bottom: 1px solid #e8e8e8;
    }
    #fee .fee-table > div:nth-child(3n+6) {
        margin: 0;
        padding: 16px 40px;
        font-size: 16px;
        font-weight: 400;
        text-align: left;
        line-height: calc( 23 / 16 );
        letter-spacing: 0.02em;
        letter-spacing: 0.02em;
        background: #fff;
        border-bottom: 1px solid #e8e8e8;
    }
    #fee .memo {
        margin: 0.8em auto 0;
        padding: 0;
        width: 90%;
        max-width: 1000px;
        color: #4a5765;
        font-size: 15px;
        font-weight: 400;
        line-height: calc( 22 / 15 );
        letter-spacing: 0.02em;
    }

    #area {
        margin: 110px auto 0;
        padding: 0;
        width: 100%;
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        gap: 0;
    }
    #area .area-info {
        margin: 0;
        padding: 40px max( 5.0vw, calc( 50.0vw - 600px ) ) 0 40px;
        width: 50%;
    }
    #area .area-info h2 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 10px 0;
    }
    #area .area-info h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 40px;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        letter-spacing: 0.15em;
    }
    #area .area-info h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 24px;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.03em;
    }
    #area .area-info h3 {
        margin: 0.5em 0 0;
        padding: 0;
        width: 100%;
        font-size: 35px;
        font-weight: 700;
        text-align: left;
        line-height: 1.2;
    }
    #area .area-info h4 {
        margin: 0.5em 0 0;
        padding: 0;
        width: 100%;
        font-size: 35px;
        font-weight: 700;
        text-align: left;
        line-height: 1.2;
    }
    #area .area-info p {
        margin: 1.5em auto 0;
        padding: 0;
        width: 100%;
        color: #4a5765;
        font-size: 16px;
        font-weight: 400;
        text-align: left;
        line-height: calc( 33 /  16 );
    }
    #area .area-info .btn-common  {
        position: relative;
        display: grid;
        place-items: center;
        margin: 40px auto 0 0;
        padding: 0;
        width: 90%;
        max-width: 426px;
        height: auto;
        aspect-ratio: 426 / 61;
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
        background: var(--color-theme);
        border-radius: 4.0em;
    }
    #area .area-info .btn-common::before {
        position: absolute;
        content: "";
        top: calc( 50% - 0.5em );
        right: 1.5em;
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #fff;
        border-radius: 100%;
    }
    #area .area-info .btn-common::after {
        position: absolute;
        content: "";
        top: calc( 50% - 1px - 0.15em );
        right: 1.9em;
        width: 0.3em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid var(--color-theme);
        border-bottom: 2px solid var(--color-theme);
        rotate: -45deg;
    }
    #area .area-pic {
        position: relative;
        margin: 0;
        padding: 52px 0;
        width: calc( 50% - 50px );
    }
    #area .area-pic::after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: calc( 100% - 200px );
        height: 100%;
        background: linear-gradient( to bottom, #169bf0, #5dbeed );
        z-index: -1;
    }
    #area .area-pic .pic {
        position: relative;
        margin: 0 0 0 auto;
        padding: 0;
        width: min( 45.0vw - 50px, 550px );
        height: auto;
        aspect-ratio: 1026 / 772;
    }
    #area .area-pic .pic::after {
        position: absolute;
        content: "SERVICE AREA";
        top: 0;
        left: -17px;
        margin: 0;
        padding: 0;
        width: max-content;
        color: #fff;
        font-size: 24px;
        font-weight: 400;
        font-family: var(--font-calsans);
        line-height: 1.0;
        letter-spacing: 0.15em;
        white-space: nowrap;
        transform-origin: left top;
        transform: rotate(90deg);
    }

    #philosophy {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        background: #fafafa;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }
    #philosophy .philosophy-info {
        margin: 0;
        padding: 0 0 0 max( 5.0vw, calc( 50.0vw - 540px ) );
        width: 50%;
    }
    #philosophy .philosophy-info h2 {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 10px 0;
    }
    #philosophy .philosophy-info h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 40px;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        line-height: 1.0;
        letter-spacing: 0.15em;
    }
    #philosophy .philosophy-info h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 24px;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.03em;
    }
    #philosophy .philosophy-info h3 {
        margin: 0.5em 0 0;
        padding: 0;
        width: 100%;
        font-size: 46px;
        font-weight: 700;
        text-align: left;
        line-height: 1.2;
    }
    #philosophy .philosophy-info h3 span {
        color: #0083d6;
    }
    #philosophy .philosophy-info p {
        margin: 1.5em auto 0;
        padding: 0;
        width: 100%;
        color: #4a5765;
        font-size: 16px;
        font-weight: 400;
        text-align: left;
        line-height: calc( 33 /  16 );
    }
    #philosophy .philosophy-pic {
        position: relative;
        margin: 0;
        padding: 0;
        width: 50%;
        overflow: hidden;
    }
    #philosophy .philosophy-pic .pic {
        position: relative;
        margin: 0;
        padding: 0;
        width: 133%;
        height: auto;
        z-index: 1;
    }

    #profile {
        margin: 0 auto;
        padding: 120px max( 5.0vw, calc( 50.0vw - 500px ) ) 60px;
        width: 100%;
    }
    #profile h2 {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 10px 0;
    }
    #profile h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 40px;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        line-height: 1.0;
        letter-spacing: 0.15em;
    }
    #profile h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 24px;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.03em;
    }
    #profile .profile-table {
        margin: 60px auto 0;
        padding: 0;
        width: 100%;
        border-top: 1px solid #e8e8e8;
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: 0;
    }
    #profile .profile-table > dt {
        margin: 0;
        padding: 20px 40px;
        width: 100%;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.06em;
        border-bottom: 1px solid #e8e8e8;
    }
    #profile .profile-table > dd {
        margin: 0;
        padding: 20px 100px;
        width: 100%;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0.06em;
        border-bottom: 1px solid #e8e8e8;
    }

    #office {
        margin: 0 auto;
        padding: 120px max( 5.0vw, calc( 50.0vw - 500px ) ) 60px;
        width: 100%;
    }
    #office h2 {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 10px 0;
    }
    #office h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 40px;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        line-height: 1.0;
        letter-spacing: 0.15em;
    }
    #office h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 24px;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.03em;
    }
    #office .office-grid {
        margin: 60px auto 0;
        padding: 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat( 2, 1fr );
        gap: 56px 40px;
    }
    #office .office-grid .office-item {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    #office .office-grid .office-item .head {
        margin: 0;
        padding: 1.0em 0;
        width: 100%;
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.06em;
        border: 1px solid #e8e8e8;
    }
    #office .office-grid .office-item iframe {
        display: block;
        margin: 24px 0 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 480 / 270;
        border: 0;
    }
    #office .office-grid .office-item .pic {
        margin: 24px 0 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 480 / 270;
    }
    #office .office-grid .office-item .pic:empty {
        background: #ccc;
    }
    #office .office-grid .office-item .pic img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #office .office-grid .office-item p {
        margin: 1.0em 0 0;
        padding: 0;
        font-size: 16px;
        font-weight: 400;
        text-align: left;
    }

    #recruit-first {
        margin: 0 auto;
        padding: 40px 0 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #recruit-first .pic:nth-of-type(1) {
        margin: 0;
        padding: 0;
        width: 148px;
        height: auto;
        flex: 0 0 148px;
    }
    #recruit-first h2 {
        margin: 0;
        padding: 0;
        width: 580px;
        font-size: 32px;
        font-weight: 700;
        text-align: center;
        flex: 0 1 580px;
    }
    #recruit-first .pic:nth-of-type(2) {
        margin: 0;
        padding: 0;
        width: 286px;
        height: auto;
        flex: 0 0 286px;
    }

    #merit {
        margin: 0 auto;
        padding: 70px 0;
        width: 100%;
        background: linear-gradient( to bottom, #fafafa 60%, transparent 60% );
    }
    #merit h2 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 10px 0;
    }
    #merit h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        color: #0083d6;
        font-size: 40px;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: center;
        letter-spacing: 0.15em;
    }
    #merit h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #merit .balloon {
        position: relative;
        margin: 40px auto 60px;
        padding: 0.5em 0;
        width: 680px;
        height: auto;
        color: #fff;
        font-size: 26px;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
        letter-spacing: 0.03em;
        background: #0083d6;
        border-radius: 4.0em;
    }
    #merit .balloon::after {
        position: absolute;
        content: "";
        top: calc( 100% - 1px );
        left: calc( 50% - 10px );
        width: 20px;
        height: 17px;
        background: #0083d6;
        clip-path: polygon( 0 0, 100% 0, 50% 100% );
    }
    #merit .merit-grid {
        margin: 80px auto 0;
        padding: 0;
        width: 90%;
        max-width: 1200px;
        display: grid;
        grid-template-columns: repeat( 3, 1fr );
        gap: 0 24px;
    }
    #merit .merit-grid .merit-item {
        position: relative;
        margin: 0;
        padding: 24px;
        width: 100%;
        background: #fff;
        border: 2px solid #f0f1f2;
        border-radius: 16px;
    }
    #merit .merit-grid .merit-item .no {
        position: absolute;
        top: 0;
        left: 50%;
        width: 44px;
        height: auto;
        aspect-ratio: 1 / 1;
        color: #fff;
        font-size: 28px;
        font-weight: 400;
        font-family: var(--font-calsans);
        background: linear-gradient( to right, #061b31, #2c4b6a );
        border-radius: 100%;
        display: grid;
        place-items: center;
        z-index: 1;
        translate: -50% -50%;
    }
    #merit .merit-grid .merit-item .pic {
        margin: 16px 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 336 / 184;
    }
    #merit .merit-grid .merit-item .pic img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
    #merit .merit-grid .merit-item h3 {
        margin: 0;
        padding: 0;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #merit .merit-grid .merit-item p {
        margin: 1.0em 0 0;
        padding: 0;
        width: 100%;
        color: #4a5765;
        font-size: 16px;
        font-weight: 400;
        line-height: calc( 22 / 16 );
    }

    #voice.recruit-voice h3 {
        font-size: 26px;
    }
    #voice.recruit-voice .recruit-voice-grid {
        margin: 60px auto 0;
        padding: 0;
        width: 90%;
        max-width: 1180px;
        display: grid;
        grid-template-columns: repeat( 2, 1fr );
        gap: 0 40px;
    }
    #voice.recruit-voice .recruit-voice-grid .recruit-voice-item {
        position: relative;
        margin: 0 auto;
        padding: 48px 32px 32px;
        width: 98%;
        background: #fff;
        border-radius: 16px;
    }
    #voice.recruit-voice .recruit-voice-grid .recruit-voice-item .balloon {
        position: absolute;
        top: 0;
        left: 0;
        margin: 0;
        padding: 0.5em 1.5em;
        width: max-content;
        color: var(--fg-color);
        font-size: 24px;
        font-weight: 700;
        line-height: 1.0;
        background: #ffdf00;
        border-radius: 4.0em;
        translate: -2% -50%;
    }
    #voice.recruit-voice .recruit-voice-grid .recruit-voice-item .balloon::after {
        position: absolute;
        content: "";
        top: calc( 100% - 1px );
        right: 66%;
        width: 16px;
        height: 16px;
        background: #ffdf00;
        clip-path: polygon( 0 0, 100% 0, 100% 100% );
    }
    #voice.recruit-voice .recruit-voice-grid .recruit-voice-item .balloon span {
        font-size: 16px;
    }
    #voice.recruit-voice .recruit-voice-grid .recruit-voice-item p {
        margin: 0;
        padding: 0;
        width: 100%;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 400;
        text-align: left;
    }
    #voice.recruit-voice .recruit-voice-grid .recruit-voice-item .pic {
        margin: 20px 0 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 488 / 188;
    }
    #voice.recruit-voice .recruit-voice-grid .recruit-voice-item .pic:empty {
        background: #f8f8f8;
    }
    #voice.recruit-voice .recruit-voice-grid .recruit-voice-item .pic img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

    #faq {
        margin: 0 auto;
        padding: 100px 0;
        width: 100%;
        background: #fafafa;
    }
    #faq h2 {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        max-width: 1000px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 10px 0;
    }
    #faq h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 40px;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        line-height: 1.0;
        letter-spacing: 0.15em;
    }
    #faq h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 24px;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.03em;
    }
    #faq .faq-box {
        margin: 60px auto 0;
        padding: 32px;
        width: 90%;
        max-width: 1000px;
        background: #fff;
        border-radius: 8px;
    }
    #faq .faq-box + .faq-box {
        margin-top: 17px;
    }
    #faq .faq-box .faq-q {
        margin: 0;
        padding: 0;
        font-size: 18px;
        font-weight: 500;
        line-height: calc( 38 / 18 );
        letter-spacing: 0.04em;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0 24px;
    }
    #faq .faq-box .faq-q::before {
        display: grid;
        place-items: center;
        content: "Q";
        margin: 0;
        padding: 0;
        width: 40px;
        height: auto;
        aspect-ratio: 1 / 1;
        color: #fff;
        font-size: 20px;
        font-weight: 400;
        font-family: var(--font-calsans);
        line-height: 1.0;
        background: var(--fg-color);
        border-radius: 100%;
    }
    #faq .faq-box .faq-a {
        margin: 1.5em 0 0;
        font-size: 15px;
        font-weight: 400;
        line-height: calc( 28 / 14 );
        letter-spacing: 0.04em;
    }

    #requirements.w1000 h2 {
        max-width: 1000px;
    }
    #requirements.w1000 .requirements-table {
        margin: 60px auto 0;
        padding: 0;
        width: 90%;
        max-width: 1000px;
        display: grid;
        grid-template-columns: 230px 1fr;
        gap: 0;
        border-top: 1px solid #e8e8e8;
        border-left: 1px solid #e8e8e8;
    }
    #requirements.w1000 .requirements-table > dt {
        margin: 0;
        padding: 32px 40px;
        width: 100%;
        font-size: 16px;
        font-weight: 500;
        background: #f8f8f8;
        border-right: 1px solid #e8e8e8;
        border-bottom: 1px solid #e8e8e8;
    }
    #requirements.w1000 .requirements-table > dd {
        margin: 0;
        padding: 32px 40px;
        width: 100%;
        font-size: 14px;
        font-weight: 400;
        background: #fff;
        border-right: 1px solid #e8e8e8;
        border-bottom: 1px solid #e8e8e8;
    }

    #contact-form {
        margin: 0 auto;
        padding: 100px 0;
        width: 100%;
        background: #fafafa;
    }
    #contact-form .contact-wrap {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        max-width: 1040px;
    }
    #contact-form .contact-box {
        margin: 0 auto;
        padding: 80px;
        width: 100%;
        background: #fff;
    }
    #contact-form .contact-box .ws-form-group {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    #contact-form .contact-box .ws-form-group + .ws-form-group {
        margin-top: 32px;
    }
    #contact-form .contact-box .ws-form-group .ws-form-label {
        margin: 0;
        padding: ;
        width: 280px;
    }
    #contact-form .contact-box .ws-form-group .ws-form-label label {
        display: inline-block;
        width: max-conetnt;
        font-size: 16px;
        font-weight: 700;
        text-align: left;
    }
    #contact-form .contact-box .ws-form-group .ws-form-label label::after {
        display: inline-block;
        content: "任意";
        margin: 0 0 0 1.0em;
        color: #c7c7c7;
        font-size: 14px;
        font-weight: 500;
    }
    #contact-form .contact-box .ws-form-group .ws-form-label.required label::after {
        content: "必須";
        color: #0083d6;
    }
    #contact-form .contact-box .ws-form-group .ws-form-input {
        margin: 0;
        padding: 0;
        width: calc( 100% - 280px );
    }
    #contact-form .contact-box .ws-form-group .ws-form-input label {
        display: block;
        font-size: 16px;
        font-weight: 400;
        text-align: left;
    }
    #contact-form .contact-box .ws-form-group .ws-form-input:not(.flex) label + label {
        margin-top: 0.8em;
    }
    #contact-form .contact-box .ws-form-group .ws-form-input.flex {
        display: flex;
        gap: 0 16px;
    }
    #contact-form .contact-box .ws-form-group .ws-form-input :is(input[type="text"],input[type="email"],input[type="tel"],textarea) {
        display: block;
        margin: 0;
        padding: 0.5em 1.0em;
        width: 100%;
        font-size: 16px;
        font-family: inherit;
        background: #f7f7f7;
        border: 0;
        border-radius: 8px;
    }
    #contact-form .contact-box .ws-form-group .ws-form-input textarea {
        height: 10.0em;
    }
    #contact-form .contact-box .ws-form-group .ws-form-input :is(input[type="text"],input[type="email"],input[type="tel"],textarea)::placeholder {
        color: #c7c7c7;
    }
    #contact-form h3 {
        margin: 3.0em 0 0;
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.05em;
    }
    #contact-form p {
        margin: 1.0em 0 0;
        font-size: 16px;
        font-weight: 500;
        text-align: center;
        letter-spacing: 0.02em;
    }
    #contact-form .privacy-policy {
        margin: 40px 0 0;
        padding: 40px;
        border: 1px solid #c7c7c7;
        height: 300px;
        overflow-y: auto;
    }
    #contact-form .privacy-policy h4 {
        margin: 1.0em 0 0;
        font-size: 16px;
        font-weight: 500;
        text-align: left;
        letter-spacing: 0.05em;
    }
    #contact-form .privacy-policy p {
        margin: 0.5em 0 0;
        font-size: 14px;
        font-weight: 400;
        text-align: left;
        letter-spacing: 0.05em;
    }
    #contact-form .ws-agree {
        margin: 40px auto 0;
        width: max-content;
    }
    #contact-form .ws-agree label {
        font-size: 16px;
        font-weight: 500;
    }
    #contact-form .ws-submit {
        position: relative;
        margin: 40px auto 0;
        padding: 0;
        width: 426px;
        height: auto;
        aspect-ratio: 426 / 61;
        font-size: 18px;
        background: #0083d6;
        border-radius: 4.0em;
        cursor: pointer;
        transition: opacity 0.3s ease-out;
    }
    #contact-form .ws-submit::before {
        position: absolute;
        content: "";
        top: calc( 50% - 0.5em );
        right: 1.5em;
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #fff;
        border-radius: 100%;
    }
    #contact-form .ws-submit::after {
        position: absolute;
        content: "";
        top: calc( 50% - 1px - 0.15em );
        right: 1.85em;
        width: 0.3em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid var(--color-theme);
        border-bottom: 2px solid var(--color-theme);
        rotate: -45deg;
    }
    #contact-form .ws-submit input[type="submit"] {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        font-family: inherit;
        background: transparent;
        border: 0;
        cursor: pointer;
    }
    @media ( hover: hover ) {
        #contact-form .ws-submit:hover {
            opacity: 0.5;
        }
    }
    #contact-form p.memo {
        margin: 40px 0 0;
        color: #4a5765;
        font-size: 15px;
        font-weight: 400;
        text-align: center;
    }

    #area-map {
        margin: 0 auto;
        padding: 70px 0;
        width: 100%;
        background: #fafafa;
    }
    #area-map h2 {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        max-width: 1200px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 10px 0;
    }
    #area-map h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 40px;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: center;
        letter-spacing: 0.15em;
    }
    #area-map h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #area-map h3 {
        margin: 1.0em auto 0;
        padding: 0;
        width: 90%;
        max-width: 1200px;
        font-size: 31px;
        font-weight: 700;
        text-align: left;
    }
    #area-map p {
        margin: 1.5em auto 0;
        padding: 0;
        width: 90%;
        max-width: 1200px;
        font-size: 18px;
        font-weight: 400;
        text-align: left;
    }
    #area-map .area-map-wrap {
        margin: 40px auto 0;
        padding: 0;
        width: 90%;
        max-width: 1200px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    #area-map .area-map-wrap .map-pic {
        margin: 0;
        padding: 20px;
        width: 55%;
        height: auto;
        aspect-ratio: 4 / 3;
        background: #fff;
        overflow: hidden;
    }
    #area-map .area-map-wrap .map-pic :is(img,svg) {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        transform: scale( 1.5, 1.5 );
        object-fit: cover;
    }
    #area-map .area-map-wrap .map-info {
        margin: 0;
        padding: 0 0 0 20px;
        width: 45%;
    }
    #area-map .area-map-wrap .map-info h4 {
        margin: 16px 0 0;
        padding: 0 0 0 0.5em;
        font-size: 18px;
        font-weight: 500;
        text-align: left;
        border-left: 4px solid #0083d6;
    }
    #area-map .area-map-wrap .map-info h4:first-child {
        margin-top: 0;
    }
    #area-map .area-map-wrap .map-info .map-prefs {
        margin: 16px 0 32px;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
    }
    #area-map .area-map-wrap .map-info .map-prefs .map-pref {
        margin: 0;
        padding: 0 1.0em;
        font-size: 16p;
        font-weight: 400;
        line-height: 1.2;
    }
    #area-map .area-map-wrap .map-info .map-prefs .map-pref + .map-pref {
        border-left: 1px solid var(--fg-color);
    }
    #area-map .area-map-wrap .map-info p {
        margin: 2.0em 0 0;
        color: #061b31;
        font-size: 14px;
        font-weight: 400;
        text-align: left;
    }

    #example {
        margin: 0 auto;
        padding: 70px 0;
        width: 100%;
    }
    #example h2 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 10px 0;
    }
    #example h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        color: #0083d6;
        font-size: 40px;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: center;
        letter-spacing: 0.15em;
    }
    #example h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #example .example-grid {
        margin: 60px auto 0;
        padding: 0;
        width: 90%;
        max-width: 1080px;
        display: grid;
        grid-template-columns: repeat( 2, 1fr );
        gap: 24px;
    }
    #example .example-grid .example-item {
        position: relative;
        margin: 0;
        padding: 16px;
        width: 100%;
        background: #fafafa;
        border: 1px solid #ebebeb;
        border-radius: 16px;
    }
    #example .example-grid .example-item .pic {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 992 / 476;
    }
    #example .example-grid .example-item .pic img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
    #example .example-grid .example-item h3 {
        margin: 0.8em 0 0;
        padding: 0;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
    }
    #example .example-grid .example-item h3 span {
        font-size: 16px;
        font-weight: 500;
    }

    #available-area {
        margin: 0 auto;
        padding: 70px 0;
        width: 100%;
        background: #fafafa;
    }
    #available-area h2 {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        max-width: 1000px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 10px 0;
    }
    #available-area h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 40px;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: center;
        letter-spacing: 0.15em;
    }
    #available-area h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #available-area .available-table {
        margin: 60px auto 0;
        padding: 0;
        width: 90%;
        max-width: 1000px;
        display: grid;
        grid-template-columns: 5fr 4fr 4fr 4fr;
        gap: 0;
    }
    #available-area .available-table > div:nth-child(1),
    #available-area .available-table > div:nth-child(2),
    #available-area .available-table > div:nth-child(3),
    #available-area .available-table > div:nth-child(4) {
        margin: 0;
        padding: 20px 0;
        width: 100%;
        font-size: 20px;
        font-weight: 500;
        text-align: center;
        background: #d5e4ed;
    }
    #available-area .available-table > div:nth-child(1),
    #available-area .available-table > div:nth-child(2),
    #available-area .available-table > div:nth-child(3) {
        border-right: 1px solid #fff;
    }
    #available-area .available-table > div:nth-child(4n+5),
    #available-area .available-table > div:nth-child(4n+6),
    #available-area .available-table > div:nth-child(4n+7),
    #available-area .available-table > div:nth-child(4n+8) {
        margin: 0;
        padding: 20px 24px;
        width: 100%;
        font-size: 18px;
        font-weight: 500;
        background: #fff;
        border-bottom: 1px solid #e8e8e8;
    }
    #available-area .available-table > div:nth-child(4n+5),
    #available-area .available-table > div:nth-child(4n+6),
    #available-area .available-table > div:nth-child(4n+7) {
        border-right: 1px solid #e8e8e8;
    }
    #available-area .available-table > div:nth-child(4n+5) {
        text-align: left;
    }
    #available-area .available-table > div:nth-child(4n+6),
    #available-area .available-table > div:nth-child(4n+7),
    #available-area .available-table > div:nth-child(4n+8) {
        text-align: right;
    }

    #strength {
        margin: 0 auto;
        padding: 70px 0;
        width: 100%;
    }
    #strength h2 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 10px 0;
    }
    #strength h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        color: #0083d6;
        font-size: 40px;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: center;
        letter-spacing: 0.15em;
    }
    #strength h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #strength .strength-box {
        margin: 60px auto 0;
        padding: 24px;
        width: 90%;
        max-width: 1080px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #fff;
        box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.1 );
    }
    #strength .strength-box + .strength-box {
        margin-top: 24px;
    }
    #strength .strength-box .pic {
        margin: 0;
        padding: 0;
        width: 42%;
        height: auto;
        aspect-ratio: 432 / 243;
    }
    #strength .strength-box .pic img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #strength .strength-box .strength-info {
        margin: 0;
        padding: 0;
        width: calc( 58% - 40px );
    }
    #strength .strength-box .strength-info h3 {
        margin: 0;
        padding: 0;
        color: #0083d6;
        font-size: 26px;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        letter-spacing: 0.15em;
    }
    #strength .strength-box .strength-info h4 {
        margin: 0.8em 0 0;
        padding: 0;
        font-size: 26px;
        font-weight: 700;
        text-align: left;
    }

    #area-faq {
        margin: 0 auto;
        padding: 70px 0;
        width: 100%;
    }
    #area-faq h2 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 10px 0;
    }
    #area-faq h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        color: #0083d6;
        font-size: 40px;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: center;
        letter-spacing: 0.15em;
    }
    #area-faq h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #area-faq h3 {
        display: block;
        margin: 1.0em 0 0;
        padding: 0;
        font-size: 31px;
        font-weight: 700;
        text-align: center;
    }
    #area-faq .faq-grid {
        margin: 40px auto 0;
        padding: 0;
        width: 90%;
        max-width: 1200px;
        display: grid;
        grid-template-columns: repeat( 3, 1fr );
        gap: 0 24px;
    }
    #area-faq .faq-grid .faq-item {
        position: relative;
        margin: 0;
        padding: 24px;
        width: 100%;
        background: #fff;
        border: 2px solid #f0f1f2;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
    }
    #area-faq .faq-grid .faq-item .no {
        position: absolute;
        top: 0;
        left: 50%;
        width: 44px;
        height: auto;
        aspect-ratio: 1 / 1;
        color: #fff;
        font-size: 28px;
        font-weight: 400;
        font-family: var(--font-calsans);
        background: linear-gradient( to right, #061b31, #2c4b6a );
        border-radius: 100%;
        display: grid;
        place-items: center;
        z-index: 1;
        translate: -50% -20%;
    }
    #area-faq .faq-grid .faq-item .pic {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 336 / 184;
    }
    #area-faq .faq-grid .faq-item .pic img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
    #area-faq .faq-grid .faq-item h3 {
        margin: 16px 0 0;
        padding: 0;
        font-size: 26px;
        font-weight: 500;
        text-align: center;
        letter-spacing: 0.03em;
    }

}


/* for Contact Form 7 */
#contact-form .wpcf7-list-item {
    margin: 0;
    display: block;
}
#contact-form .wpcf7-list-item + .wpcf7-list-item {
    margin-top: 0.5em;
}
#contact-form .wpcf7-spinner {
    position: absolute;
    top: 100%;
    left: 50%;
    margin: 0;
    translate: -50% 0;
}
#contact-form .wpcf7-form-control-wrap {
    display: inline-block;;
    margin: 0.5em 0 0;
}
