@charset "utf-8";


:root {
    --color-theme:       #38c1ac;
    --color-light-theme: #f0ffff;
    --color-accent:      #000099;
    --fg-color:          #333;
    --bg-color:          #fff;
    --color-white:       #fff;
    --color-lightgray:   #f0f0f0;
    --font-alphabet: 'Inter', 'Noto Sans JP', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
    --font-gothic: 'Noto Sans JP', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
    --font-mincho: 'Noto Serif JP', 'Times New Roman', 'YuMincho', 'Hiragino Mincho ProN', 'Yu Mincho', 'MS PMincho', serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    display: block;
    margin: 0;
    vertical-align: middle;
    width: 100%;
    max-width: 100%;
    height: auto;
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
    shape-margin: 0.75rem;
}

a {
    color: var(--fg-color);
    text-decoration: none;
    transition: opacity 0.5s ease-out;
}
button {
    cursor: pointer;
    transition: opacity 0.5s ease-out;
}

@media ( hover: hover ) {
    a:hover, button:hover {
        opacity: 0.5;
    }
}

ul, p {
    line-height: 1.8;
}

section {
    position: relative;
}

em {
    color: var(--color-theme);
    font-style: normal;
    font-weight: 700;
}

u {
    text-decoration-color: #d5fcdc;
    text-decoration-thickness: 0.5em;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-underline-offset: -0.1em;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}


@media ( width < 768px ) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

@media ( width >= 768px ) {
    .pc {
        display: block;
    }
    .sp {
        display: none;
    }
}


/* スクロールアニメーション */
.ws-scroll-fadeIn {
    opacity: 0.0;
    /*transform: scale( 0.5, 0.5 ); */
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn.ws-scroll-show {
    opacity: 1.0;
    /* transform: scale( 1.0, 1.0 ); */
}

.ws-scroll-fadeIn-l {
    opacity: 0.0;
    transform: translateX( -200px );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-r {
    opacity: 0.0;
    transform: translateX( 200px );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-l.ws-scroll-show,
.ws-scroll-fadeIn-r.ws-scroll-show {
    opacity: 1.0;
    transform: translateX( 0 );
}

.ws-scroll-fadeIn-u {
    opacity: 0.0;
    transform: translateY( -200px ) scale( 0.8, 0.8 );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-d {
    opacity: 0.0;
    transform: translateY( 200px ) scale( 0.8, 0.8 );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-u.ws-scroll-show,
.ws-scroll-fadeIn-d.ws-scroll-show {
    opacity: 1.0;
    transform: translateY( 0 )  scale( 1.0, 1.0 );
}

.ws-goto-top {
    position: fixed;
    z-index: 20;
    margin: 0;
    padding: 0 0 2px;
    top: auto;
    bottom: 10px;
    left: auto;
    right: 10px;
    width: clamp( 30px, 5.0vw, 60px );
    height: clamp( 30px, 5.0vw, 60px );
    background: var(--color-theme);
    border: 2px solid #fff;
    border-radius: clamp( 15px, 2.5vw, 30px );
    opacity: 0.0;
    transform-origin: right bottom;
    transform: scale( 0.01, 0.01 );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 1.0s;
}
.ws-goto-top::before {
    position: absolute;
    content: "";
    left: 40%;
    top: 42%;
    width: 20%;
    height: 20%;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    rotate: -45deg;
}
.ws-goto-top.ws-scroll-show {
    transform: scale( 1.0, 1.0 );
    opacity: 0.9;
}
@media ( hover: hover ) {
    .ws-goto-top:hover {
        opacity: 0.5;
    }
}

.ws-scroll-top-menu {
    opacity: 0.0;
    transform: translateY( -150px );
    transition: 0.5s;
}
.ws-scroll-top-menu.ws-scroll-show {
    opacity: 1.0;
    transform: translateY( 0 );
}



/* 以下サイトごと */

html {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: min( 18px, 3.0vw );
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    color: var(--fg-color);
    font-family: var(--font-gothic);
    font-weight: 500;
    line-height: 1.5;
    background: var(--bg-color);
    opacity: 0.0;
    animation: anim-fadein 1.0s ease-out 0s forwards;
}

@keyframes anim-fadein {
    0%   { opacity: 0.01; }
    100% { opacity: 1.00; }
}


header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
}


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

    header {
        height: 60px;
    }
    header .header-wrap {
        margin: 0 auto;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .header-logo {
        padding: 0 0 0 20px;
        height: 100%;
        text-align: center;
    }
    header .header-logo img {
        width: auto;
        height: 100%;
    }
    header .header-menu {
        display: none;
    }
    header .header-btns {
        display: none;
    }
    header .header-sp-menu {
        position: relative;
        height: 100%;
        aspect-ratio: 1 / 1;
    }
    header .header-sp-menu #sp-menu-check {
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
    }
    header .header-sp-menu #sp-menu-check ~ .header-sp-menu-back {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area {
        display: block;
        position: absolute;
        top: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area > .sp-menu-icon {
        position: absolute;
        top: 50%;
        left: 15%;
        width: 70%;
        height: 3px;
        background: var(--fg-color);
        border-radius: 2px;
        transition: background 0.5s ease-out;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area > .sp-menu-icon::before {
        position: absolute;
        content: "";
        top: -8px;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--fg-color);
        border-radius: 2px;
        transition: transform 0.5s ease-out;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area > .sp-menu-icon::after {
        position: absolute;
        content: "";
        top: 8px;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--fg-color);
        border-radius: 2px;
        transition: transform 0.5s ease-out;
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu-area > .sp-menu-icon {
        background: transparent;
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu-area > .sp-menu-icon::before {
        transform: translateY( 8px ) rotate( 45deg );
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu-area > .sp-menu-icon::after {
        transform: translateY( -8px ) rotate( -45deg );
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu {
        position: absolute;
        top: 60px;
        right: 0;
        width: 90vw;
        padding: 2.0em 4.0em;
        background: #fffe;
        list-style: none;
        transform-origin: top center;
        transform: scaleY( 0.0 );
        transition: transform 0.5s ease-out;
        z-index: 99;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li {
        list-style: none;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > a {
        display: block;
        margin: 0;
        padding: 0.2em 0;
        font-size: min( 16px, 3.6vw );
        text-align: center;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > a img {
        margin: 0 auto;
        width: 80%;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-contact > a {
        margin: 1.0em auto 0;
        padding: 0.5em 2.0em;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-regist > a {
        margin: 1.0em auto 0;
        padding: 0.5em 2.0em;
        color: #fff;
        text-align: center;
        background: var(--color-theme);
        border-radius: 4.0em;
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu {
        transform: scaleY( 1.0 );
    }

    #mv {
        margin: 0 auto;
        width: 100%;
        overflow: hidden;
    }
    #mv .mv-bg {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 10 / 19;
    }
    #mv .mv-bg img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #mv .mv-txt {
        position: absolute;
        top: 10%;
        left: 8%;
        width: 84%;
        height: auto;
    }
    #mv .mv-txt img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    #mv .mv-pic {
        position: absolute;
        top: 35%;
        left: 1%;
        width: 108%;
        height: auto;
    }
    #mv .mv-pic img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    #mv .mv-btn {
        position: absolute;
        top: 67%;
        left: 8%;
        display: block;
        width: 28%;
        height: auto;
    }
    #mv .mv-btn img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }

    main {
        margin: 0 auto;
        width: 90%;
    }

    #main-contents {
        margin: 0 auto;
        padding: 16.0vw 0;
        width: 100%;
    }

    .common-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 0.1em;
        margin: 6.0vw auto 0;
        padding: 1.0em 0;
        width: 40%;
        height: auto;
        aspect-ratio: 180 / 40;
        color: #fff;
        font-size: 3.2vw;
        font-weight: 700;
        background: linear-gradient( to right, #00c6a0, #3cf088 );
        border-radius: 4.0em;
        box-shadow: 5px 5px 15px rgba( 0, 255, 118, 0.35 );
    }
    .common-btn::after {
        display: block;
        content: "";
        margin: 0;
        padding: 0;
        width: 1.0em;
        height: 1.0em;
        background: url(../images/arrow-d-white.svg) no-repeat center / contain;
    }

    #first {
        margin: 0 auto;
        padding: 80px 0 40px;
        width: 100%;
    }
    #first p {
        font-size: 3.6vw;
        text-align: center;
        line-height: calc( 38 / 18 );
    }

    #about {
        margin: 0 auto;
        padding: 8.0vw 0;
        width: 100%;
    }
    #about > .sec-head {
        margin: 0 0 -0.4em;
        color: #ccfadc;
        font-size: 16.0vw;
        font-weight: 900;
        text-align: center;
        line-height: 1.0;
    }
    #about > .sec-title {
        margin: 0;
        font-size: 8.0vw;
        font-weight: 900;
        text-align: center;
    }
    #about > .sec-subtitle {
        margin: 6.0vw 0 0;
        padding: 0.5em 1.0em;
        color: #fff;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: left;
        background: linear-gradient( to right, #00c6a0, #3cf088 );
        border-radius: 10px;
    }
    #about > .sec-txt {
        margin: 1.0em 0 0;
        font-size: 3.6vw;
        font-weight: 500;
        text-align: center;
        line-height: calc( 38 / 18 );
    }
    #about > .about-box {
        margin: 6.0vw 0;
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    #about > .about-box .about-icon {
        margin: 0;
        width: 14%;
        height: auto;
        aspect-ratio: 3 / 2;
        overflow: hidden;
    }
    #about > .about-box .about-icon img {
        margin: 0;
        width: 100%;
        height: auto;
    }
    #about > .about-box .about-icon.no1 img {
        translate: 0 1%;
    }
    #about > .about-box .about-icon.no2 img {
        translate: 0 -28%;
    }
    #about > .about-box .about-icon.no3 img {
        translate: 0 -57%;
    }
    #about > .about-box .about-icon.no4 img {
        translate: 0 -86%;
    }
    #about > .about-box .about-info {
        margin: 0;
        width: 82%;
    }
    #about > .about-box .about-info h4 {
        margin: 0 0 0.5em;
        color: var(--color-theme);
        font-size: 4.0vw;
        font-weight: 700;
    }
    #about > .about-box .about-info p {
        margin: 1.0em 0 0;
        font-size: 3.2vw;
        font-weight: 400;
        line-height: calc( 26 / 16 );
    }

    .common-box {
        margin: 8.0vw 0 0;
        padding: 0;
        width: 100%;
        background: #fff;
        box-shadow: 2px 2px 10px #00000029;
        border-radius: 4.0vw;
        overflow: hidden;
    }
    .common-box .common-box-head {
        margin: 0;
        padding: 0.5em 1.0em;
        color: #fff;
        font-size: 6.0vw;
        font-weight: 700;
        text-align: center;
        background: linear-gradient( to right, #00c6a0, #3cf088 );
    }
    .common-box .common-box-info {
        margin: 0;
        padding: 6.0vw 4.0vw;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6.0vw 0;
    }
    .common-box .common-box-small {
        margin: 0 0 4.0vw;
        width: 100%;
        font-size: 3.6vw;
        font-weight: 400;
        text-align: center;
    }
    .common-box .common-box-small em {
        color: #38c1ac;
        font-weight: 700;
    }
    .common-box .common-box-info .pic {
        margin: 0 auto;
        width: 100%;
        height: auto;
    }
    .common-box .common-box-info .pic img {
        width: 100%;
        height: auto;
    }
    .common-box .common-box-info .pic.shadow img {
        box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.16 );
    }
    .common-box .common-box-info .txt {
        margin: 0;
        width: 100%;
    }
    .common-box .common-box-info .txt > h4 {
        color: #38c1ac;
        font-size: 4.0vw;
        font-weight: 700;
        text-align: left;
        line-height: calc( 35 / 24 );
    }
    .common-box .common-box-info .txt > h4 span {
        color: var(--fg-color);
        font-size: 2.8vw;
        font-weight: 400;
    }
    .common-box .common-box-info .txt > ul {
        margin: 1.0vw 0 0;
        list-style: none;
    }
    .common-box .common-box-info .txt > ul li {
        position: relative;
        padding: 0 0 0 1.2em;
        list-style: none;
        width: calc( 100% - 1.0em );
        font-size: 3.2vw;
        font-weight: 400;
        text-align: left;
        line-height: calc( 24 / 16 );
    }
    .common-box .common-box-info .txt > ul li::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 0.5em;
        height: 0.5em;
        background: #38c1ac;
        border-radius: 100%;
        translate: 0 0.5em;
    }
    .common-box .common-box-info .txt > :is(ul,figure,p) + h4 {
        margin-top: 1.0em;
    }
    .common-box .common-box-info .txt > p {
        margin: 0.5em 0 0;
        width: 100%;
        font-size: 3.2vw;
        font-weight: 400;
        text-align: left;
        line-height: calc( 24 / 16 );
    }
    .common-box .common-box-info .txt > p em {
        color: #38c1ac;
        font-weight: 700;
    }
    .common-box .common-box-info .txt > .table {
        margin: 2.0vw auto 0;
        width: 100%;
        height: auto;
    }
    .common-box .common-box-info .common-box-colored {
        margin: 6.0vw 0 0;
        padding: 4.0vw 6.0vw;
        width: 100%;
        background: #00bfc612;
    }
    .common-box .common-box-info .common-box-colored > h4 {
        color: var(--fg-color);
        font-size: 4.0vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 40 / 24 );
    }
    .common-box .common-box-info .common-box-colored > p {
        margin: 1.0em 0 0;
        font-size: 3.2vw;
        font-weight: 400;
        text-align: center;
        line-height: calc( 24 / 16 );
    }
    .common-box .common-box-info .common-box-colored > ul {
        margin: 1.0em auto 0;
        width: max-content;
        max-width: 100%;
    }
    .common-box .common-box-info .common-box-colored > ul li {
        font-size: 3.2vw;
        font-weight: 400;
        text-align: left;
        line-height: calc( 24 / 16 );
    }
    .common-box .common-box-info .common-box-memo {
        margin: 6.0vw 0 0;
        width: 100%;
        font-size: 4.0vw;
        font-weight: 500;
        text-align: center;
        line-height: calc( 40 / 24 );
    }
    .common-box .common-box-info .common-box-memo em {
        color: #38c1ac;
    }

    #final {
        margin: 0 auto;
        padding: 4.0vw 0;
        width: 100%;
    }
    #final > p {
        font-size: 4.8vw;
        font-weight: 500;
        text-align: center;
        line-height: calc( 46 / 32 );
    }
    #final .final-btn {
        margin: 4.0vw auto 0;
        display: block;
        width: 360px;
        height: auto;
    }
    #final .final-btn img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }

    footer {
        margin: 0 auto;
        width: 100%;
    }
    footer .footer-wrap {
        margin: 0 auto;
        padding: 8.0vw 5.0vw;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0 4.0vw;
        background: url(../images/mv-bg.png) no-repeat center / cover;
    }
    footer .footer-logo {
        padding: 0;
        width: 130px;
        height: 100%;
        text-align: center;
        flex: 0 0 130px;
    }
    footer .footer-logo a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 130px;
        height: 100%;
        font-size: 25px;
        font-weight: 500;
        line-height: 1.0;
    }
    footer .footer-menu {
        width: auto;
        height: 100%;
        flex: 1 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
    }
    footer .footer-menu > li {
        width: auto;
        height: 100%;
        list-style: none;
    }
    footer .footer-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0 1.0em;
        font-size: 15px;
        font-weight: 500;
    }
    footer .footer-menu > li:not(:last-child) {
        display: none;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 1.0em 0;
        width: 100%;
        font-size: 14px;
        text-align: center;
    }

}


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

    header {
        height: 70px;
    }
    header .header-wrap {
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
        max-width: 1920px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0 20px;
    }
    header .header-logo {
        padding: 0;
        width: 130px;
        height: 100%;
        flex: 0 0 130px;
    }
    header .header-logo a {
        display: block;
        width: 130px;
        height: 100%;
    }
    header .header-logo h1 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 130px;
        height: 100%;
        font-size: 25px;
        font-weight: 500;
        text-align: center;
        line-height: 1.0;
    }
    header .header-menu {
        width: auto;
        height: 100%;
        flex: 1 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        list-style: none;
    }
    header .header-menu > li {
        width: auto;
        height: 100%;
        list-style: none;
    }
    header .header-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0 1.0em;
        font-size: 15px;
        font-weight: 500;
    }
    header .header-btns {
        width: auto;
        height: 100%;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
        gap: 0 10px;
        overflow: hidden;
    }
    header .header-btns > li {
        margin: 0;
        padding: 16px 0;
        width: auto;
        height: 100%;
        list-style: none;
    }
    header .header-btns > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0 1.2em;
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        border-radius: 4.0em;
    }
    header .header-btns > li.header-btn-contact {
        padding: 0;
        width: 180px;
        height: auto;
    }
    header .header-btns > li.header-btn-contact a {
        display: block;
        padding: 0;
        width: 100%;
        height: auto;
    }
    header .header-btns > li.header-btn-contact a img {
        display: block;
        width: 100%;
        height: auto;
    }
    header .header-sp-menu {
        display: none;
    }

    #mv {
        margin: 0 auto;
        width: 100%;
    }
    #mv .mv-bg {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    #mv .mv-bg img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    #mv .mv-txt {
        position: absolute;
        top: 30%;
        left: 8%;
        width: 40%;
        height: auto;
    }
    #mv .mv-txt img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    #mv .mv-pic {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 48%;
        height: auto;
        translate: 0 -50%;
    }
    #mv .mv-pic img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    #mv .mv-btn {
        position: absolute;
        top: 67%;
        left: 8%;
        display: block;
        width: 28%;
        height: auto;
    }
    #mv .mv-btn img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }

    main {
        margin: 0 auto;
        width: 90%;
        max-width: 980px;
    }

    #main-contents {
        margin: 0 auto;
        padding: 120px 0;
        width: 100%;
    }

    .common-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 0.1em;
        margin: 40px auto 0;
        padding: 1.0em 0;
        width: 180px;
        height: auto;
        aspect-ratio: 180 / 40;
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        background: linear-gradient( to right, #00c6a0, #3cf088 );
        border-radius: 4.0em;
        box-shadow: 5px 5px 15px rgba( 0, 255, 118, 0.35 );
    }
    .common-btn::after {
        display: block;
        content: "";
        margin: 0;
        padding: 0;
        width: 1.0em;
        height: 1.0em;
        background: url(../images/arrow-d-white.svg) no-repeat center / contain;
    }

    #first {
        margin: 0 auto;
        padding: 80px 0 40px;
        width: 100%;
    }
    #first p {
        font-size: 18px;
        text-align: center;
        line-height: calc( 38 / 18 );
    }

    #about {
        margin: 0 auto;
        padding: 40px 0;
        width: 100%;
    }
    #about > .sec-head {
        margin: 0 0 -0.4em;
        color: #ccfadc;
        font-size: 80px;
        font-weight: 900;
        text-align: center;
        line-height: 1.0;
    }
    #about > .sec-title {
        margin: 0;
        font-size: 45px;
        font-weight: 900;
        text-align: center;
    }
    #about > .sec-subtitle {
        margin: 40px 0 0;
        padding: 0.5em 1.0em;
        color: #fff;
        font-size: 28px;
        font-weight: 700;
        text-align: left;
        background: linear-gradient( to right, #00c6a0, #3cf088 );
        border-radius: 10px;
    }
    #about > .sec-txt {
        margin: 1.0em 0 0;
        font-size: 18px;
        font-weight: 500;
        text-align: center;
        line-height: calc( 38 / 18 );
    }
    #about > .about-box {
        margin: 40px 0;
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    #about > .about-box .about-icon {
        margin: 0;
        width: 14%;
        height: auto;
        aspect-ratio: 3 / 2;
        overflow: hidden;
    }
    #about > .about-box .about-icon img {
        margin: 0;
        width: 100%;
        height: auto;
    }
    #about > .about-box .about-icon.no1 img {
        translate: 0 1%;
    }
    #about > .about-box .about-icon.no2 img {
        translate: 0 -28%;
    }
    #about > .about-box .about-icon.no3 img {
        translate: 0 -57%;
    }
    #about > .about-box .about-icon.no4 img {
        translate: 0 -86%;
    }
    #about > .about-box .about-info {
        margin: 0;
        width: 82%;
    }
    #about > .about-box .about-info h4 {
        margin: 0 0 0.5em;
        color: var(--color-theme);
        font-size: 24px;
        font-weight: 700;
    }
    #about > .about-box .about-info p {
        margin: 1.0em 0 0;
        font-size: 16px;
        font-weight: 400;
        line-height: calc( 26 / 16 );
    }

    .common-box {
        margin: 60px 0 0;
        padding: 0;
        width: 100%;
        background: #fff;
        box-shadow: 2px 2px 10px #00000029;
        border-radius: 30px;
        overflow: hidden;
    }
    .common-box .common-box-head {
        margin: 0;
        padding: 0.5em 1.0em;
        color: #fff;
        font-size: 32px;
        font-weight: 700;
        text-align: center;
        background: linear-gradient( to right, #00c6a0, #3cf088 );
    }
    .common-box .common-box-info {
        margin: 0;
        padding: 40px 50px;
        background: #fff;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
    }
    .common-box .common-box-small {
        margin: 0 0 20px;
        width: 100%;
        font-size: 18px;
        font-weight: 400;
        text-align: center;
    }
    .common-box .common-box-small em {
        color: #38c1ac;
        font-weight: 700;
    }
    .common-box .common-box-info .pic {
        margin: 0;
        width: 24%;
        height: auto;
    }
    .common-box .common-box-info .pic img {
        width: 100%;
        height: auto;
    }
    .common-box .common-box-info .pic.shadow img {
        box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.16 );
    }
    .common-box .common-box-info .txt {
        margin: 0;
        width: 72%;
    }
    .common-box .common-box-info .txt > h4 {
        color: #38c1ac;
        font-size: 24px;
        font-weight: 700;
        text-align: left;
        line-height: calc( 35 / 24 );
    }
    .common-box .common-box-info .txt > h4 span {
        color: var(--fg-color);
        font-size: 14px;
        font-weight: 400;
    }
    .common-box .common-box-info .txt > ul {
        margin: 10px 0 0;
        list-style: none;
    }
    .common-box .common-box-info .txt > ul li {
        position: relative;
        padding: 0 0 0 1.2em;
        list-style: none;
        width: calc( 100% - 1.0em );
        font-size: 16px;
        font-weight: 400;
        text-align: left;
        line-height: calc( 24 / 16 );
    }
    .common-box .common-box-info .txt > ul li::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 0.5em;
        height: 0.5em;
        background: #38c1ac;
        border-radius: 100%;
        translate: 0 0.5em;
    }
    .common-box .common-box-info .txt > :is(ul,figure,p) + h4 {
        margin-top: 1.0em;
    }
    .common-box .common-box-info .txt > p {
        margin: 0.5em 0 0;
        width: 100%;
        font-size: 16px;
        font-weight: 400;
        text-align: left;
        line-height: calc( 24 / 16 );
    }
    .common-box .common-box-info .txt > p em {
        color: #38c1ac;
        font-weight: 700;
    }
    .common-box .common-box-info .txt > .table {
        margin: 20px auto 0;
        width: 100%;
        height: auto;
    }
    .common-box .common-box-info .common-box-colored {
        margin: 40px 0 0;
        padding: 20px 8%;
        width: 100%;
        background: #00bfc612;
    }
    .common-box .common-box-info .common-box-colored > h4 {
        color: var(--fg-color);
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        line-height: calc( 40 / 24 );
    }
    .common-box .common-box-info .common-box-colored > p {
        margin: 1.0em 0 0;
        font-size: 16px;
        font-weight: 400;
        text-align: center;
        line-height: calc( 24 / 16 );
    }
    .common-box .common-box-info .common-box-colored > ul {
        margin: 1.0em auto 0;
        width: max-content;
        max-width: 75%;
    }
    .common-box .common-box-info .common-box-colored > ul li {
        font-size: 16px;
        font-weight: 400;
        text-align: left;
        line-height: calc( 24 / 16 );
    }
    .common-box .common-box-info .common-box-memo {
        margin: 40px 0 0;
        width: 100%;
        font-size: 24px;
        font-weight: 500;
        text-align: center;
        line-height: calc( 40 / 24 );
    }
    .common-box .common-box-info .common-box-memo em {
        color: #38c1ac;
    }

    #final {
        margin: 0 auto;
        padding: 40px 0;
        width: 100%;
    }
    #final > p {
        font-size: 32px;
        font-weight: 500;
        text-align: center;
        line-height: calc( 46 / 32 );
    }
    #final .final-btn {
        margin: 20px auto 0;
        display: block;
        width: 360px;
        height: auto;
    }
    #final .final-btn img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }


    footer {
        margin: 0 auto;
        width: 100%;
    }
    footer .footer-wrap {
        margin: 0 auto;
        padding: 40px max( 20px, calc( 50% - min( 50vw, 490px ) ) );
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0 20px;
        background: url(../images/mv-bg.png) no-repeat center / cover;
    }
    footer .footer-logo {
        padding: 0;
        width: 130px;
        height: 100%;
        text-align: center;
        flex: 0 0 130px;
    }
    footer .footer-logo a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 130px;
        height: 100%;
        font-size: 25px;
        font-weight: 500;
        line-height: 1.0;
    }
    footer .footer-menu {
        width: auto;
        height: 100%;
        flex: 1 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
    }
    footer .footer-menu > li {
        width: auto;
        height: 100%;
        list-style: none;
    }
    footer .footer-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0 1.0em;
        font-size: 15px;
        font-weight: 500;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 1.0em 0;
        width: 100%;
        font-size: 14px;
        text-align: center;
    }

}


@keyframes anim-scroll-right {
    0%   { opacity: 1.0; transform: translateX( 0 ); }
    50%  { opacity: 0.2; transform: translateX( -20% ); }
    100% { opacity: 1.0; transform: translateX( 0 ); }
}



#first-open-close {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}
#first-open-close ~ .common-btn {
    cursor: pointer;
}
#first-open-close ~ #first-more-contents {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
}
#first-open-close ~ #first-more-contents > div {
    font-size: 3.2vw;
    overflow: hidden;
}
@media ( width >= 768px ) {
    #first-open-close ~ #first-more-contents > div {
        font-size: 16px;
    }
}
#first-open-close:checked ~ #first-more-contents {
    grid-template-rows: 1fr;
}


.wpcf7-form {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 640px;
}

.wpcf7-form :is(.ws-input,.ws-submit) {
    margin: 1.0rem 0 0;
    display: block;
    width: 100%;
    font-size: 1.2rem;
    text-align: left;
}

.wpcf7-form .ws-input div {
    width: 100%;
}

.wpcf7-form .ws-input :is(input[type="text"],input[type="email"],textarea) {
    margin: 0;
    padding: 0.5em 1.0em;
    width: 100%;
    font-size: 16px;
    font-family: inherit;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.wpcf7-form .ws-submit input[type="submit"] {
    margin: 0;
    padding: 0.5em 1.0em;
    width: 100%;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    font-family: inherit;
    border: 0;
    background: #009;
    border-radius: 8px;
}
