@charset "utf-8";


:root {
    --color-theme:       #ccffff;
    --color-light-theme: #f0ffff;
    --color-accent:      #000099;
    --fg-color:          #222;
    --bg-color:          #fff;
    --color-white:       #fff;
    --color-lightgray:   #f0f0f0;
    --font-alphabet: 'Estonia', '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: 'Sawarabi Mincho', '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;
}

video {
    display: block;
    margin: 0;
    vertical-align: middle;
    width: 100%;
    max-width: 100%;
    height: auto;
}

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-accent);
    font-style: normal;
}

u {
    text-decoration-color: #ffec5d;
    text-decoration-thickness: 4px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-underline-offset: 0.3em;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}


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

@media ( min-width: 768.01px ) {
    .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( -80px );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-r {
    opacity: 0.0;
    transform: translateX( 80px );
    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( -80px );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-d {
    opacity: 0.0;
    transform: translateY( 80px );
    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: 80px;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    color: var(--fg-color);
    font-family: var(--font-mincho);
    font-weight: 400;
    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.0; }
    100% { opacity: 1.0; }
}


header {
    width: 100%;
    z-index: 90;
}


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

    html {
        scroll-padding-top: 60px;
    }
    header {
        position: relative;
        margin: 0 auto -60px;
        width: 100%;
        height: 56px;
        z-index: 1;
    }
    header#mv-fixed {
        position: fixed;
        margin: 0;
        top: 0;
        left: 0;
        background: #fff;
        translate: 0 -60px;
        transition: translate 0.5s ease-out;
        z-index: 1;
    }
    header#mv-fixed.scroll {
        box-shadow: 0 4px 4px #0003;
        translate: 0 0;
    }
    header .header-wrap {
        margin: 0 auto;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .header-logo {
        padding: 2px 0 2px 20px;
        width: 91px;
        height: 56px;
        width: 76px;
        height: 41px;
    }
    header .header-logo img {
        width: 56px;
        height: 41px;
    }
    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: #fff;
    }
    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: max-content;
        padding: 2.0em 4.0em;
        background: #fff;
        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 );
    }
    header .header-sp-menu .sp-menu-check ~ .sp-menu > li.header-login > a {
        margin: 1.0em auto 0;
        padding: 0.5em 1.5em;
        color: #fff;
        font-size: min( 16px, 3.6vw );
        background: #ef8995;
        border-radius: 4.0em;
    }
    header .header-sp-menu .sp-menu-check ~ .sp-menu > li.header-register > a {
        margin: 1.0em auto 0;
        padding: 0.5em 1.5em;
        color: var(--fg-color);
        font-size: min( 16px, 3.6vw );
        background: #d6bde2;
        border-radius: 4.0em;
    }
    header .header-sp-menu .sp-menu-check ~ .sp-menu > li > ul.header-submenu,
    header .header-sp-menu .sp-menu-check ~ .sp-menu > li > ul.header-megamenu {
        padding: 0 0 0 1.0em;
        list-style: none;
    }
    header .header-sp-menu .sp-menu-check ~ .sp-menu > li > ul.header-submenu > li,
    header .header-sp-menu .sp-menu-check ~ .sp-menu > li > ul.header-megabmenu > li {
        margin: 0;
        padding: 0;
        width: 100%;
        list-style: none;
    }
    header .header-sp-menu .sp-menu-check ~ .sp-menu > li > ul.header-submenu > li > a,
    header .header-sp-menu .sp-menu-check ~ .sp-menu > li > ul.header-megamenu > li > a {
        display: block;
        margin: 0;
        padding: 0.2em 0;
        font-size: min( 16px, 3.6vw );
    }
    header .header-sp-menu .sp-menu-check:checked ~ .sp-menu {
        transform: scaleY( 1.0 );
    }

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

    #mv {
        margin: 0 auto;
        width: 100%;
        height: 100vh;
        height: 100dvh;
    }
    #mv .mv-movie {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        background: var(--fg-color);
        filter: brightness( 0% );
        transition: filter 2.0s ease-out 0.5s;
    }
    #mv .mv-movie.show {
        filter: brightness( 68% );
    }
    #mv .mv-box {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        translate: 0 -60%;
        opacity: 0;
        transition: opacity 2.0s ease-out 1.0s, translate 2.0s ease-out 1.0s;
    }
    #mv .mv-box.show {
        opacity: 1.0;
        translate: 0 -50%;
    }
    #mv .mv-box > h1 {
        margin: 0;
        color: #fff;
        font-size: 20.0vw;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: 1.0;
    }
    #mv .mv-box > p {
        margin: 1.5em 0 0;
        color: #fff;
        font-size: 4.0vw;
        text-align: center;
        line-height: calc( 32 / 18 );
    }

    #concept {
        margin: 0 auto;
        width: 100%;
        background: #122123;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }
    #concept .concept-pic {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 30.0vh;
        height: 30.0dvh;
    }
    #concept .concept-pic img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-position: 50% 20%;
        object-fit: cover;
    }
    #concept .concept-box {
        margin: 0;
        padding: 0 5.0vw;
        width: 100%;
        height: 70.0vh;
        height: 70.0dvh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #concept .concept-box > h2 {
        margin: 0;
        color: #fff;
        font-size: 6.0vw;
        text-align: center;
        line-height: calc( 37 / 28 );
    }
    #concept .concept-box > p {
        margin: 1.5em 0 0;
        color: #fff;
        font-size: 3.6vw;
        text-align: justify;
        line-height: calc( 20 / 15 );
    }
    #concept .concept-box .concept-btn {
        display: block;
        margin: 2.0em auto 0;
        padding: 1.0em 2.0em;
        width: max-content;
        color: #122123;
        font-size: 4.0vw;
        background: #fff;
        border-radius: 4.0em;
        white-space: nowrap;
    }

    #service {
        margin: 0 auto;
        padding: 10.0vw 0;
        width: 100%;
        background: #fbf9f6;
    }
    #service h2 {
        margin: 0 auto 1.0em;
        color: var(--fg-color);
        font-size: 6.0vw;
        text-align: center;
    }
    #service .service-grid {
        margin: 0 auto;
        width: 90%;
        display: grid;
        grid-template-columns: repeat( 3, 1fr );
        gap: 1.0vw 1.0vw;
    }
    #service .service-grid .service-menu {
        position: relative;
        margin: 0 auto;
        width: 100%;
        height: 100%;
    }
    #service .service-grid .service-menu:nth-child(3n+2) {
        translate: 0 4.0vw;
    }
    #service .service-grid .service-menu > figure {
        margin: 0 auto;
        width: 100%;
        height: 100%;
    }
    #service .service-grid .service-menu > figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness( 50% );
        border-radius: 4.0vw;
    }
    #service .service-grid .service-menu > h3 {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        color: #fff;
        font-size: 3.6vw;
        text-align: center;
        line-height: calc( 24 / 18 );
        translate: 0 -50%;
    }

    #feature {
        margin: 0 auto;
        padding: 10.0vw 0 2.0vw;
        width: 100%;
    }
    #feature h2 {
        margin: 0 auto 1.0em;
        color: var(--fg-color);
        font-size: 6.0vw;
        text-align: center;
    }
    #feature .feature-area {
        position: relative;
        margin: 6.0vw auto 0;
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 2;
    }
    #feature .feature-area > figure {
        position: relative;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: 100%;
    }
    #feature .feature-area > figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #feature .feature-area:nth-child(even) > figure::after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient( to right, #ffff, #fff0 );
    }
    #feature .feature-area:nth-child(odd) > figure::after {
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient( to left, #ffff, #fff0 );
    }
    #feature .feature-area .feature-box {
        position: absolute;
        top: 50%;
        width: 80%;
        translate: 0 -50%;
    }
    #feature .feature-area:nth-child(even) .feature-box {
        left: 5%;
    }
    #feature .feature-area:nth-child(odd) .feature-box {
        right: 5%;
    }
    #feature .feature-area .feature-box > h3 {
        display: flex;
        align-items: baseline;
        justify-content: flex-start;
        gap: 0 1.0em;
        margin: 0 0 1.0em;
        color: var(--fg-color);
        font-size: 4.0vw;
        text-align: justify;
        text-shadow: 0 0 2px #fff;
        line-height: 1.0;
    }
    #feature .feature-area .feature-box > h3::before {
        content: attr(data-no);
        font-size: 200%;
    }
    #feature .feature-area .feature-box > p {
        margin: 1.5em 0 0;
        color: var(--fg-color);
        font-size: 3.6vw;
        text-align: justify;
        text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff;
        line-height: calc( 20 / 15 );
    }

    #howto {
        margin: 0 auto;
        width: 100%;
    }
    #howto .howto-bg {
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 9;
    }
    #howto .howto-bg img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-position: 20% 50%;
        object-fit: cover;
    }
    #howto .howto-bg::after {
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient( to left, #ffff, #fff0 );
    }
    #howto .howto-box {
        position: absolute;
        top: 50%;
        right: 5%;
        margin: 0;
        padding: 0 4%;
        width: 90%;
        translate: 0 -50%;
    }
    #howto .howto-box > h2 {
        margin: 0 auto 1.0em;
        color: var(--fg-color);
        font-size: 6.0vw;
        text-align: justify;
        text-shadow: 0 0 1.0vw #fff, 0 0 1.0vw #fff, 0 0 1.0vw #fff, 0 0 1.0vw #fff;
    }
    #howto .howto-box > h3 {
        margin: 1.0em auto;
        color: var(--fg-color);
        font-size: 4.8vw;
        text-align: justify;
        text-shadow: 0 0 1.0vw #fff, 0 0 1.0vw #fff, 0 0 1.0vw #fff, 0 0 1.0vw #fff;
    }
    #howto .howto-box > p {
        margin: 1.0em auto 0;
        color: var(--fg-color);
        font-size: 3.6vw;
        text-align: justify;
        text-shadow: 0 0 1.0vw #fff, 0 0 1.0vw #fff, 0 0 1.0vw #fff, 0 0 1.0vw #fff;
    }
    #howto .howto-box > .register-btn {
        display: block;
        margin: 1.5em auto 0;
        padding: 1.0em 2.0em;
        width: max-content;
        color: var(--fg-color);
        font-size: 4.0vw;
        background: #d6bde2;
        border-radius: 4.0em;
    }
    #howto .howto-box > .arrow {
        margin: 4.0vw auto;
        width: 2.0vw;
        height: 2.0vw;
        border-right: 1px solid var(--fg-color);
        border-bottom: 1px solid var(--fg-color);
        rotate: 45deg;
    }

    #price {
        margin: 0 auto;
        width: 100%;
    }
    #price .price-bg {
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    #price .price-bg img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #price .price-box {
        position: absolute;
        top: 50%;
        right: 0;
        margin: 0;
        padding: 0;
        width: 100%;
        translate: 0 -50%;
    }
    #price .price-box > h2 {
        margin: 0 auto 1.0em;
        color: #fff;
        font-size: 6.0vw;
        text-align: center;
        text-shadow: 0 0 1.0vw rgba( 0, 0, 0, 0.5 );
        text-shadow: 0 0 1.0vw #0006, 0 0 1.0vw #0006, 0 0 1.0vw #0006, 0 0 1.0vw #0006;
    }
    #price .price-box > .price-grid {
        margin: 0 auto;
        padding: 0;
        width: 70%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.0vw 0;
    }
    #price .price-box > .price-grid > div {
        margin: 0 auto;
        padding: 4.0vw 0;
        width: 100%;
        background: #fff;
    }
    #price .price-box > .price-grid > div h3 {
        margin: 0 auto;
        color: var(--fg-color);
        font-size: 3.2vw;
        text-align: center;
        line-height: calc( 27 / 20 );
    }
    #price .price-box > .price-grid > div .price {
        margin: 0.4em auto 0;
        color: var(--fg-color);
        font-size: 6.0vw;
        text-align: center;
        line-height: 1.0;
    }

    #register {
        margin: 0 auto;
        width: 100%;
    }
    #register .register-bg {
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }
    #register .register-bg img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #register .register-box {
        position: absolute;
        top: 50%;
        right: 0;
        margin: 0;
        padding: 0;
        width: 100%;
        translate: 0 -50%;
    }
    #register .register-box > h2 {
        margin: 0 auto 1.0em;
        color: var(--fg-color);
        color: #fff;
        font-size: 6.0vw;
        text-align: center;
        text-shadow: 0 0 1.0vw #0006, 0 0 1.0vw #0006, 0 0 1.0vw #0006, 0 0 1.0vw #0006;
    }
    #register .register-box > p {
        margin: 0 auto;
        color: var(--fg-color);
        color: #fff;
        font-size: 3.2vw;
        text-align: center;
    }
    #register .register-box > .register-btn {
        display: block;
        margin: 2.5em auto 0;
        padding: 1.0em 2.0em;
        width: max-content;
        color: var(--fg-color);
        font-size: 4.0vw;
        background: #d6bde2;
        border-radius: 4.0em;
    }

    #review {
        margin: 0 auto;
        padding: 80px 0;
        width: 100%;
        background: url(../images/review-bg-pc.jpg) no-repeat center / cover;
    }
    #review h2 {
        margin: 0 auto 1.0em;
        color: var(--fg-color);
        font-size: 6.0vw;
        text-align: center;
    }
    #review .review-wrap {
        margin: 2.0vw auto 0;
        padding: 2.0vw;
        width: 90%;
        max-height: 80.0vw;
        overflow-y: auto;
        overflow-x: hidden;
    }
    #review .review-box {
        margin: 2.0vw auto 0;
        padding: 4.0vw;
        width: 100%;
        background: #fff;
        box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.16 );
        display: grid;
        grid-template-columns: 1fr;
        gap: 4.0vw 0;
    }
    #review .review-box > figure {
        margin: 0 auto;
        width: 60%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    #review .review-box > figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #review .review-box > .info {
    }
    #review .review-box > .info h3 {
        margin: 0 0 0.5em;
        padding: 0;
        font-size: 4.8vw;
        text-align: left;
        line-height: calc( 30 / 22 );
    }
    #review .review-box > .info p {
        margin: 0;
        padding: 0;
        font-size: 3.2vw;
        text-align: left;
        line-height: calc( 20 / 15 );
    }

    #news {
        margin: 0 auto;
        padding: 12.0vw 0;
        width: 100%;
        background: #fbf9f6;
    }
    #news .news-grid {
        margin: 0 auto;
        width: 90%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }
    #news .news-grid > h2 {
        margin: 0;
        color: var(--fg-color);
        font-size: 6.0vw;
        text-align: center;
    }
    #news .news-grid > .news-list {
        padding: 4.0vw;
        width: 100%;
        background: #fff;
        max-height: 80.0vw;
        overflow-y: auto;
    }
    #news .news-grid > .news-list > .news-item {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    #news .news-grid > .news-list > .news-item + .news-item {
        margin-top: 2.0vw;
        padding-top: 2.0vw;
        border-top: 1px solid #e6ddd0;
    }
    #news .news-grid > .news-list > .news-item .date {
        margin: 0;
        padding: 0;
        width: 24.0vw;
        font-size: 3.6vw;
    }
    #news .news-grid > .news-list > .news-item .title {
        margin: 0;
        padding: 0;
        width: calc( 100% - 24.0vw );
        font-size: 3.6vw;
        /*
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        */
        word-break: break-word;
    }

    #faq {
        margin: 0 auto;
        padding: 8.0vw 0;
        width: 100%;
        background: #122123;
    }
    #faq .faq-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0 2.0em;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        color: #fff;
        font-size: 4.0vw;
        text-align: center;
        line-height: 1.0;
    }
    #faq .faq-link::before {
        content: "";
        height: 1px;
        background: transparent;
        flex: 1 0 auto;
    }
    #faq .faq-link::after {
        content: "";
        height: 1px;
        background: #fff;
        flex: 1 0 auto;
    }

    #sns {
        margin: 0 auto;
        padding: 8.0vw 0;
        width: 100%;
    }
    #sns h2 {
        margin: 0 auto 1.0em;
        color: var(--fg-color);
        font-size: 6.0vw;
        text-align: center;
    }
    #sns .sns-btns {
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 2.0vw;
    }
    #sns .sns-btns .sns-btn {
        display: block;
        margin: 0;
        width: 60px;
        height: 60px;
    }
    #sns .sns-btns .sns-btn img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #sns .sns-logo {
        display: block;
        margin: 6.0vw auto 0;
        width: 100px;
        height: auto;
    }
    #sns .sns-logo img {
        width: 100px;
        height: auto;
    }

    .page main {
        padding: 12.0vw 0;
    }
    .page h1 {
        font-size: 6.0vw;
        text-align: center;
    }
    .page h2 {
        margin: 80px auto 40px;
        padding: 0.2em 0 0.2em 2.0em;
        width: 90%;
        font-size: 4.8vw;
        text-align: left;
        border-left: 7px solid #ef8995;
    }
    .page .page-contents {
        margin: 0 auto;
        width: 90%;
    }

    .faq-box {
        position: relative;
        margin: 0 auto;
        padding: 0;
        width: 90%;
        max-width: 800px;
    }
    .faq-box + .faq-box {
        border-top: 1px solid #cbcbcb;
    }
    .faq-box .faq-check {
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
    }
    .faq-box .faq-check ~ .faq-q {
        position: relative;
        margin: 0;
        padding: 20px 2.0em;
        display: block;
        font-size: 18px;
        line-height: calc( 24 / 18 );
    }
    .faq-box .faq-check ~ .faq-q::before {
        position: absolute;
        content: "Q";
        top: 20px;
        left: 0;
        color: #003fa3;
        font-size: 20px;
    }
    .faq-box .faq-check ~ .faq-q::after {
        position: absolute;
        content: "";
        top: calc( 50% - 10px );
        right: 10px;
        width: 20px;
        height: 20px;
        background: var(--fg-color);
        clip-path: polygon( 0 45%,
                            45% 45%,
                            45% 0,
                            55% 0,
                            55% 45%,
                            100% 45%,
                            100% 55%,
                            55% 55%,
                            55% 100%,
                            45% 100%,
                            45% 55%,
                            0% 55%);
        transition: clip-path 0.5s ease-out;
    }
    .faq-box .faq-check ~ .faq-a {
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-rows: 0fr;
        border-top: 0;
        transition: all 0.5s ease-out;
    }
    .faq-box .faq-check ~ .faq-a > div {
        position: relative;
        margin: 0;
        padding: 0 2.0em;
        display: block;
        font-size: 18px;
        line-height: calc( 24 / 18 );
        overflow: hidden;
    }
    .faq-box .faq-check ~ .faq-a > div::before {
        position: absolute;
        content: "A";
        top: 0;
        left: 0;
        color: #cb616e;
        font-size: 20px;
    }
    .faq-box .faq-check:checked ~ .faq-q {
        position: relative;
        margin: 0;
        padding: 20px 2.0em 20px 2.0em;
        display: block;
        font-size: 18px;
        line-height: calc( 24 / 18 );
    }
    .faq-box .faq-check:checked ~ .faq-q::after {
        clip-path: polygon( 0 45%,
                            45% 45%,
                            45% 45%,
                            55% 45%,
                            55% 45%,
                            100% 45%,
                            100% 55%,
                            55% 55%,
                            55% 55%,
                            45% 55%,
                            45% 55%,
                            0% 55%);
    }
    .faq-box .faq-check:checked ~ .faq-a {
        padding: 20px 0;
        grid-template-rows: 1fr;
        border-top: 1px solid #cbcbcb;
    }

    #sitemap {
        margin: 0 auto;
        padding: 8.0vw 0;
        width: 90%;
    }
    #sitemap > p {
        margin: 1.5em 0;
        font-size: 4.0vw;
        line-height: calc( 24 / 18 );
    }
    #sitemap > ul {
        margin: 1.0em 0 3.0em 2.0em;
        font-size: 3.6vw;
        line-height: calc( 24 / 18 );
    }
    #sitemap > ul li {
        margin: 1.0em 0;
    }

    #contact {
        margin: 0 auto;
        padding: 8.0vw 0;
        width: 90%;
    }

    footer {
        margin: 0 auto;
        padding: 6.0vw 0;
        width: 100%;
        background: var(--fg-color);
    }
    footer .footer-wrap {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        color: #fff;
        font-size: 2.8vw;
        line-height: 1.0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.0vw 0;
    }
    footer .footer-wrap .footer-company {
    }
    footer .footer-wrap .footer-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.0vw 0;
        list-style: none;
    }
    footer .footer-wrap .footer-menu li {
        list-style: none;
    }
    footer .footer-wrap .footer-menu li a {
        display: block;
        margin: 0;
        padding: 0 1.0em;
        color: #fff;
        font-size: 2.8vw;
        line-height: 1.0;
    }

}


/**
 * PC用設定
 */
@media ( min-width: 768.01px ) {

    header {
        position: relative;
        margin: 0 auto -80px;
        width: 100%;
        height: 56px;
        z-index: 1;
    }
    header#mv-fixed {
        position: fixed;
        margin: 0;
        top: 0;
        left: 0;
        background: #fff;
        translate: 0 -80px;
        transition: translate 0.5s ease-out;
        z-index: 1;
    }
    header#mv-fixed.scroll {
        background: #fffc;
        box-shadow: 0 4px 4px #0003;
        translate: 0 0;
    }
    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;
    }
    header .header-logo {
        padding: 2px 0;
        width: 71px;
        height: 56px;
        flex: 0 0 71px;
        width: 56px;
        height: 41px;
        flex: 0 0 56px;
    }
    header .header-logo img {
        width: 71px;
        height: 52px;
        width: 56px;
        height: 41px;
    }
    header .header-menu {
        padding: 10px 0;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        list-style: none;
        flex: 1 0 auto;
    }
    header .header-menu > li {
        height: 100%;
        list-style: none;
    }
    header .header-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0 1.0em;
        color: #fff;
        font-size: calc( 14 * min( 100vw, 940px ) / 940 );
        transition: color 0.5s ease-out, opacity 0.5s ease-out;
    }
    header .header-btns {
        padding: 10px 0;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0 8px;
        list-style: none;
    }
    header .header-btns > li {
        height: 100%;
        list-style: none;
    }
    header .header-btns > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0 1.0em;
        color: #fff;
        font-size: calc( 14 * min( 100vw, 940px ) / 940 );
        transition: color 0.5s ease-out, opacity 0.5s ease-out;
    }
    header .header-btns > li.header-login,
    header .header-btns > li.header-register {
        padding: 2px 0;
    }
    header .header-btns > li.header-login > a {
        padding: 0 1.5em;
        color: #fff;
        font-size: 14px;
        background: #ef8995;
        border-radius: 4.0em;
        white-space: nowrap;
    }
    header .header-btns > li.header-register > a {
        padding: 0 1.5em;
        color: var(--fg-color);
        font-size: 14px;
        background: #d6bde2;
        border-radius: 4.0em;
        white-space: nowrap;
    }
    .page header .header-menu > li > a,
    header.scroll .header-menu > li > a {
        color: var(--fg-color);
    }
    .page header .header-menu > li.header-login > a,
    header.scroll .header-menu > li.header-login > a {
        color: #fff;
    }
    header .header-menu > li.has-submenu {
        position: relative;
    }
    header .header-menu > li.has-submenu > .header-submenu {
        position: absolute;
        top: 100%;
        right: 50%;
        width: max-content;
        margin: 0;
        padding: 0;
        background: #fff;
        box-shadow: 0 4px 4px #0003;
        list-style: none;
        opacity: 0.0;
        transform-origin: top center;
        transform: translateX( 50% ) scale( 1.0, 0.0 );
        transition: opacity 0.3s ease-out, transform 0.5s ease-out;
    }
    header .header-menu > li.has-submenu > .header-submenu > li {
        width: 100%;
        list-style: none;
    }
    header .header-menu > li.has-submenu > .header-submenu > li > a {
        display: block;
        margin: 0;
        padding: 1.0em 2.0em;
        width: 100%;
        color: var(--fg-color);
        font-size: max( 14px, calc( 18 * min( 100vw, 1920px ) / 1920 ) );
        text-align: left;
        transition: color 0.5s ease-out, background 0.5s ease-out;
    }
    @media ( hover: hover ) {
        header .header-menu > li.has-submenu:hover > .header-submenu {
            opacity: 1.0;
            transform: translateX( 50% ) scale( 1.0, 1.0 );
            transition: opacity 0.3s ease-out, transform 0.5s ease-out;
        }
        header .header-menu > li.has-submenu > .header-submenu > li > a:hover {
            opacity: 1.0;
            color: #fff;
            background: var(--fg-color);
        }
    }
    header .header-menu > li.has-megamenu {
        position: relative;
    }
    header .header-menu > li.has-megamenu > .header-megamenu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        box-shadow: 0 4px 4px #0003;
        list-style: none;
        opacity: 0.0;
        transform-origin: top center;
        transform: scale( 1.0, 0.0 );
        transition: opacity 0.3s ease-out, transform 0.5s ease-out;
    }
    header .header-menu > li.has-megamenu > .header-megamenu > li {
        width: 30%;
        list-style: none;
    }
    header .header-menu > li.has-megamenu > .header-megamenu > li > a {
        display: block;
        margin: 0;
        padding: 1.0em 2.0em;
        width: 100%;
        color: var(--fg-color);
        font-size: max( 14px, calc( 18 * min( 100vw, 1920px ) / 1920 ) );
        text-align: center;
        transition: color 0.5s ease-out, background 0.5s ease-out;
    }
    @media ( hover: hover ) {
        header .header-menu > li.has-megamenu:hover > .header-megamenu {
            opacity: 1.0;
            transform: scale( 1.0, 1.0 );
            transition: opacity 0.3s ease-out, transform 0.5s ease-out;
        }
        header .header-menu > li.has-megamenu > .header-megamenu > li > a:hover {
            opacity: 1.0;
            color: #fff;
            background: var(--fg-color);
        }
    }
    header .header-sp-menu {
        display: none;
    }

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

    #mv {
        margin: 0 auto;
        width: 100%;
        height: 100vh;
        height: 100dvh;
    }
    #mv .mv-movie {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        background: var(--fg-color);
        filter: brightness( 0% );
        transition: filter 2.0s ease-out 0.5s;
    }
    #mv .mv-movie.show {
        filter: brightness( 68% );
    }
    #mv .mv-box {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        translate: 0 -60%;
        opacity: 0;
        transition: opacity 2.0s ease-out 1.0s, translate 2.0s ease-out 1.0s;
    }
    #mv .mv-box.show {
        opacity: 1.0;
        translate: 0 -50%;
    }
    #mv .mv-box > h1 {
        margin: 0;
        color: #fff;
        font-size: 90px;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: 1.0;
    }
    #mv .mv-box > p {
        margin: 1.5em 0 0;
        color: #fff;
        font-size: 15px;
        text-align: center;
        line-height: calc( 32 / 18 );
    }

    #concept {
        margin: 0 auto;
        width: 100%;
        background: #122123;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }
    #concept .concept-pic {
        margin: 0;
        padding: 0;
        width: calc( 100% * 540 / 1366 );
        height: auto;
    }
    #concept .concept-pic img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    #concept .concept-box {
        margin: 0;
        padding: 0 max( 4.4%, calc( 50% - min( 50%, 523px ) ) ) 0 calc( 100% * 60 / 1366 );
        width: calc( 100% * 826 / 1366 );
    }
    #concept .concept-box > h2 {
        margin: 0 0 4.0em;
        color: #fff;
        font-size: calc( 28 * min( 100vw, 1046px ) / 1046 );
        text-align: justify;
        line-height: calc( 37 / 28 );
    }
    #concept .concept-box > p {
        margin: 1.5em 0 0;
        color: #fff;
        font-size: calc( 15 * min( 100vw, 1046px ) / 1046 );
        text-align: justify;
        line-height: calc( 20 / 15 );
    }
    #concept .concept-box .concept-btn {
        display: block;
        margin: 3.0em auto 0 0;
        padding: 1.0em 2.0em;
        width: max-content;
        color: #122123;
        font-size: calc( 15 * min( 100vw, 1046px ) / 1046 );
        background: #fff;
        border-radius: 4.0em;
        white-space: nowrap;
    }

    #service {
        margin: 0 auto;
        padding: 100px 0;
        width: 100%;
        background: #fbf9f6;
    }
    #service h2 {
        margin: 0 auto 45px;
        color: var(--fg-color);
        font-size: 40px;
        text-align: center;
    }
    #service .service-grid {
        margin: 0 auto;
        width: 90%;
        max-width: 1046px;
        display: grid;
        grid-template-columns: repeat( 6, 1fr );
        gap: 0 calc( 5 * min( 90vw, 1046px ) / 1046 );
    }
    #service .service-grid .service-menu {
        position: relative;
        margin: 0 auto;
        width: 100%;
        height: 100%;
    }
    #service .service-grid .service-menu:nth-child(even) {
        translate: 0 calc( 20 * min( 90vw, 1046px ) / 1046 );
    }
    #service .service-grid .service-menu > figure {
        margin: 0 auto;
        width: 100%;
        height: 100%;
    }
    #service .service-grid .service-menu > figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness( 50% );
        border-radius: calc( 20 * min( 90vw, 1046px ) / 1046 );
    }
    #service .service-grid .service-menu > h3 {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        color: #fff;
        font-size: calc( 18 * min( 90vw, 1046px ) / 1046 );
        text-align: center;
        line-height: calc( 24 / 18 );
        translate: 0 -50%;
    }

    #feature {
        margin: 0 auto;
        padding: 100px 0 2.0vw;
        width: 100%;
    }
    #feature h2 {
        margin: 0 auto 45px;
        color: var(--fg-color);
        font-size: 40px;
        text-align: center;
    }
    #feature .feature-area {
        position: relative;
        margin: 30px auto 0;
        width: 96%;
        height: auto;
        aspect-ratio: 1306 / 400;
    }
    #feature .feature-area > figure {
        position: relative;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #feature .feature-area:nth-child(even) > figure::after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 70%;
        height: 100%;
        background: linear-gradient( to right, #ffff, #fff0 );
    }
    #feature .feature-area:nth-child(odd) > figure::after {
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        width: 70%;
        height: 100%;
        background: linear-gradient( to left, #ffff, #fff0 );
    }
    #feature .feature-area .feature-box {
        position: absolute;
        top: 50%;
        width: min( 50%, 350px );
        translate: 0 -50%;
    }
    #feature .feature-area:nth-child(even) .feature-box {
        left: max( 20px, calc( 50% - min( 50%, 523px ) ) );
    }
    #feature .feature-area:nth-child(odd) .feature-box {
        right: max( 20px, calc( 50% - min( 50%, 523px ) ) );
    }
    #feature .feature-area .feature-box > h3 {
        display: flex;
        align-items: baseline;
        justify-content: flex-start;
        gap: 0 20px;
        margin: 0 0 1.0em;
        color: var(--fg-color);
        font-size: calc( 20 * min( 96vw, 1080px ) / 1080 );
        text-align: justify;
        line-height: 1.0;
    }
    #feature .feature-area .feature-box > h3::before {
        content: attr(data-no);
        font-size: 200%;
    }
    #feature .feature-area .feature-box > p {
        margin: 1.5em 0 0;
        color: var(--fg-color);
        font-size: calc( 15 * min( 96vw, 1080px ) / 1080 );
        text-align: justify;
        line-height: calc( 20 / 15 );
    }

    #howto {
        margin: 0 auto;
        width: 100%;
    }
    #howto .howto-bg {
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    #howto .howto-bg img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    #howto .howto-bg::after {
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        width: 70%;
        height: 100%;
        background: linear-gradient( to left, #ffff, #fff0 );
    }
    #howto .howto-box {
        position: absolute;
        top: 50%;
        right: 0;
        margin: 0;
        padding: 0 max( 20px, calc( 50% - min( 50%, 523px ) ) ) 0 0;
        width: 52%;
        translate: 0 -50%;
    }
    #howto .howto-box > h2 {
        margin: 0 auto calc( 45 * min( 90vw, 1366px ) / 1366 );
        color: var(--fg-color);
        font-size: calc( 40 * min( 90vw, 1366px ) / 1366 );
        text-align: justify;
    }
    #howto .howto-box > h3 {
        margin: 1.0em auto;
        color: var(--fg-color);
        font-size: calc( 20 * min( 90vw, 1366px ) / 1366 );
        text-align: justify;
    }
    #howto .howto-box > p {
        margin: 1.0em auto 0;
        color: var(--fg-color);
        font-size: calc( 15 * min( 90vw, 1366px ) / 1366 );
        text-align: justify;
    }
    #howto .howto-box > .register-btn {
        display: block;
        margin: 1.5em auto 0;
        padding: 1.0em 2.0em;
        width: max-content;
        color: var(--fg-color);
        font-size: calc( 15 * min( 90vw, 1366px ) / 1366 );
        background: #d6bde2;
        border-radius: 4.0em;
    }
    #howto .howto-box > .arrow {
        margin: calc( 20 * min( 90vw, 1366px ) / 1366 ) auto;
        width: 14px;
        height: 14px;
        border-right: 1px solid var(--fg-color);
        border-bottom: 1px solid var(--fg-color);
        rotate: 45deg;
    }

    #price {
        margin: 0 auto;
        width: 100%;
    }
    #price .price-bg {
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    #price .price-bg img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    #price .price-box {
        position: absolute;
        top: 50%;
        right: 0;
        margin: 0;
        padding: 0;
        width: 100%;
        translate: 0 -50%;
    }
    #price .price-box > h2 {
        margin: 0 auto 45px;
        color: #fff;
        font-size: 40px;
        text-align: center;
        text-shadow: 0 0 10px rgba( 0, 0, 0, 0.5 );
    }
    #price .price-box > .price-grid {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        max-width: 750px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 10px;
    }
    #price .price-box > .price-grid > div {
        margin: 0 auto;
        padding: 50px 0;
        width: 100%;
        background: #fff;
    }
    #price .price-box > .price-grid > div h3 {
        margin: 0 auto;
        color: var(--fg-color);
        font-size: 15px;
        text-align: center;
        line-height: calc( 27 / 20 );
    }
    #price .price-box > .price-grid > div .price {
        margin: 0.4em auto 0;
        color: var(--fg-color);
        font-size: 40px;
        text-align: center;
        line-height: 1.0;
    }

    #register {
        margin: 0 auto;
        width: 100%;
    }
    #register .register-bg {
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    #register .register-bg img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    #register .register-box {
        position: absolute;
        top: 50%;
        right: 0;
        margin: 0;
        padding: 0;
        width: 100%;
        translate: 0 -50%;
    }
    #register .register-box > h2 {
        margin: 0 auto 45px;
        color: var(--fg-color);
        color: #fff;
        font-size: 40px;
        text-align: center;
    }
    #register .register-box > p {
        margin: 0 auto;
        color: var(--fg-color);
        color: #fff;
        font-size: 15px;
        text-align: center;
    }
    #register .register-box > .register-btn {
        display: block;
        margin: 2.5em auto 0;
        padding: 1.0em 2.0em;
        width: max-content;
        color: var(--fg-color);
        font-size: 15px;
        background: #d6bde2;
        border-radius: 4.0em;
    }

    #review {
        margin: 0 auto;
        padding: 80px 0;
        width: 100%;
        background: url(../images/review-bg-pc.jpg) no-repeat center / cover;
    }
    #review h2 {
        margin: 0 auto 45px;
        color: var(--fg-color);
        font-size: 40px;
        text-align: center;
    }
    #review .review-wrap {
        margin: 20px auto 0;
        padding: 20px;
        width: 90%;
        max-width: 1046px;
        max-height: 800px;
        overflow-y: auto;
        overflow-x: hidden;
    }
    #review .review-box {
        margin: 20px auto 0;
        padding: 20px;
        width: 100%;
        background: #fff;
        box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.16 );
        display: grid;
        grid-template-columns: 20% 75%;
        gap: 0 5%;
    }
    #review .review-box > figure {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    #review .review-box > figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #review .review-box > .info {
    }
    #review .review-box > .info h3 {
        margin: 0 0 0.5em;
        padding: 0;
        font-size: 22px;
        text-align: left;
        line-height: calc( 30 / 22 );
    }
    #review .review-box > .info p {
        margin: 0;
        padding: 0;
        font-size: 15px;
        text-align: left;
        line-height: calc( 20 / 15 );
    }

    #news {
        margin: 0 auto;
        padding: 80px 0;
        width: 100%;
        background: #fbf9f6;
    }
    #news .news-grid {
        margin: 0 auto;
        width: 90%;
        max-width: 1046px;
        display: grid;
        grid-template-columns: 320px 1fr;
        gap: 0;
    }
    #news .news-grid > h2 {
        margin: 0;
        color: var(--fg-color);
        font-size: 40px;
        text-align: left;
    }
    #news .news-grid > .news-list {
        padding: 20px;
        width: 100%;
        background: #fff;
        max-height: 300px;
        overflow-y: auto;
    }
    #news .news-grid > .news-list > .news-item {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    #news .news-grid > .news-list > .news-item + .news-item {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #e6ddd0;
    }
    #news .news-grid > .news-list > .news-item .date {
        margin: 0;
        padding: 0;
        width: 100px;
        font-size: 15px;
    }
    #news .news-grid > .news-list > .news-item .title {
        margin: 0;
        padding: 0;
        width: calc( 100% - 100px );
        font-size: 15px;
        /*
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        */
        word-break: break-word;
    }

    #faq {
        margin: 0 auto;
        padding: 80px 0;
        width: 100%;
        background: #122123;
    }
    #faq .faq-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0 4.0em;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        color: #fff;
        font-size: 20px;
        text-align: center;
        line-height: 1.0;
    }
    #faq .faq-link::before {
        content: "";
        height: 1px;
        background: transparent;
        flex: 1 0 auto;
    }
    #faq .faq-link::after {
        content: "";
        height: 1px;
        background: #fff;
        flex: 1 0 auto;
    }

    #sns {
        margin: 0 auto;
        padding: 80px 0;
        width: 100%;
    }
    #sns h2 {
        margin: 0 auto 45px;
        color: var(--fg-color);
        font-size: 40px;
        text-align: center;
    }
    #sns .sns-btns {
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 3px;
    }
    #sns .sns-btns .sns-btn {
        display: block;
        margin: 0;
        width: 30px;
        height: 30px;
    }
    #sns .sns-btns .sns-btn img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #sns .sns-logo {
        display: block;
        margin: 45px auto 0;
        width: 100px;
        height: auto;
    }
    #sns .sns-logo img {
        width: 100px;
        height: auto;
    }

    .page main {
        padding: 120px 0;
    }
    .page h1 {
        font-size: 40px;
        text-align: center;
    }
    .page h2 {
        margin: 80px auto 40px;
        padding: 0.2em 0 0.2em 2.0em;
        width: 100%;
        font-size: 24px;
        text-align: left;
        border-left: 7px solid #ef8995;
    }
    .page .page-contents {
        margin: 0 auto;
        width: 90%;
        max-width: 800px;
    }

    .faq-box {
        position: relative;
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }
    .faq-box + .faq-box {
        border-top: 1px solid #cbcbcb;
    }
    .faq-box .faq-check {
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
    }
    .faq-box .faq-check ~ .faq-q {
        position: relative;
        margin: 0;
        padding: 20px 2.0em;
        display: block;
        font-size: 18px;
        line-height: calc( 24 / 18 );
    }
    .faq-box .faq-check ~ .faq-q::before {
        position: absolute;
        content: "Q";
        top: 20px;
        left: 0;
        color: #003fa3;
        font-size: 20px;
    }
    .faq-box .faq-check ~ .faq-q::after {
        position: absolute;
        content: "";
        top: calc( 50% - 10px );
        right: 10px;
        width: 20px;
        height: 20px;
        background: var(--fg-color);
        clip-path: polygon( 0 45%,
                            45% 45%,
                            45% 0,
                            55% 0,
                            55% 45%,
                            100% 45%,
                            100% 55%,
                            55% 55%,
                            55% 100%,
                            45% 100%,
                            45% 55%,
                            0% 55%);
        transition: clip-path 0.5s ease-out;
    }
    .faq-box .faq-check ~ .faq-a {
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-rows: 0fr;
        border-top: 0;
        transition: all 0.5s ease-out;
    }
    .faq-box .faq-check ~ .faq-a > div {
        position: relative;
        margin: 0;
        padding: 0 2.0em;
        display: block;
        font-size: 18px;
        line-height: calc( 24 / 18 );
        overflow: hidden;
    }
    .faq-box .faq-check ~ .faq-a > div::before {
        position: absolute;
        content: "A";
        top: 0;
        left: 0;
        color: #cb616e;
        font-size: 20px;
    }
    .faq-box .faq-check:checked ~ .faq-q {
        position: relative;
        margin: 0;
        padding: 20px 2.0em 20px 2.0em;
        display: block;
        font-size: 18px;
        line-height: calc( 24 / 18 );
    }
    .faq-box .faq-check:checked ~ .faq-q::after {
        clip-path: polygon( 0 45%,
                            45% 45%,
                            45% 45%,
                            55% 45%,
                            55% 45%,
                            100% 45%,
                            100% 55%,
                            55% 55%,
                            55% 55%,
                            45% 55%,
                            45% 55%,
                            0% 55%);
    }
    .faq-box .faq-check:checked ~ .faq-a {
        padding: 20px 0;
        grid-template-rows: 1fr;
        border-top: 1px solid #cbcbcb;
    }

    #sitemap {
        margin: 0 auto;
        padding: 40px 0;
        width: 90%;
        max-width: 480px;
    }
    #sitemap > p {
        margin: 1.5em 0;
        font-size: 20px;
        line-height: calc( 24 / 18 );
    }
    #sitemap > ul {
        margin: 1.0em 0 3.0em 2.0em;
        font-size: 18px;
        line-height: calc( 24 / 18 );
    }
    #sitemap > ul li {
        margin: 1.0em 0;
    }

    #contact {
        margin: 0 auto;
        padding: 40px 0;
        width: 90%;
        max-width: 600px;
    }
    #contact .head {
        display: block;
        margin: 2.0em 0 0.5em;
        font-size: 20px;
        line-height: calc( 24 / 18 );
    }
    #contact :where(input[type="text"],input[type="email"],textarea) {
        margin: 0;
        padding: 0.5em 1.0em;
        width: 100%;
        font-size: 18px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }
    #contact textarea {
        height: 10.0em;
    }
    #contact .ws-submit {
        margin: 2.0em 0 0.5em;
        font-size: 20px;
    }
    #contact .ws-submit input[type="submit"] {
        margin: 0;
        padding: 1.0em 2.0em;
        font-size: 20px;
        font-family: inherit;
        background: #f0f0f0;
        border: 0;
        border-radius: 8px;
    }

    footer {
        margin: 0 auto;
        padding: 40px 0;
        width: 100%;
        background: var(--fg-color);
    }
    footer .footer-wrap {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        max-width: 1046px;
        color: #fff;
        font-size: 15px;
        line-height: 1.0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    footer .footer-wrap .footer-company {
    }
    footer .footer-wrap .footer-menu {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
    }
    footer .footer-wrap .footer-menu li {
        list-style: none;
    }
    footer .footer-wrap .footer-menu li a {
        display: block;
        margin: 0;
        padding: 0 1.0em;
        color: #fff;
        font-size: 15px;
        line-height: 1.0;
    }

}


@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 ); }
}


@keyframes anim-mv {
    0%   { opacity: 0.0; translate: 0 -60%; }
    100% { opacity: 1.0; translate: 0 -50%; }
}
