@charset "utf-8";


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

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

ul, p {
    line-height: 1.8;
}

section {
    position: relative;
}

em {
    color: var(--color-accent);
    font-style: normal;
}

u {
    font-weight: 700;
    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 ( 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: #c02c20;
    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;
    cursor: pointer;
    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-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.0; }
    100% { opacity: 1.0; }
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    transition: background 0.5s ease-out;
}
header.scroll {
    background: #fffe;
    box-shadow: 0 4px 4px #0003;
}


/**
 * スマホ用設定
 */
@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%;
    }
    header .header-logo figure {
        width: auto;
        height: 100%;
    }
    header .header-logo figure img {
        width: auto;
        height: 100%;
    }
    header .header-menu {
        display: none;
    }
    header .header-sp-menu {
        position: relative;
        height: 100%;
        aspect-ratio: 1 / 1;
        justify-self: end;
    }
    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%;
    }
    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: #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 );
    }

    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-contact {
        margin: 4.0vw 0;
        display: flex;
        align-items: center;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-contact > button {
        display: block;
        padding: 0.8em 1.2em;
        height: auto;
        color: #fff;
        font-size: min( 18px, 4.0vw );
        font-weight: 700;
        background: #ff821a;
        border: 0;
        border-radius: 4.0em;
        cursor: pointer;
        transition: opacity 0.5s ease-out;
    }

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

    #mv {
        margin: 0 auto;
        width: 100%;
    }
    #mv .mv-bg {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    #mv .mv-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness( 75% );
    }
    #mv .mv-txt {
        position: absolute;
        bottom: 58%;
        left: 0;
        width: 100%;
        color: #fff;
        font-size: 10.0vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 80 / 68 );
        text-shadow:
            0 0 4px #0006,
            0 0 4px #0006,
            0 0 4px #0006,
            0 0 4px #0006;
    }
    #mv .mv-box {
        position: absolute;
        top: 46%;
        left: 3%;
        padding: 5.0vw 0;
        width: 94%;
        background: #fff;
        border-radius: 4.0vw;
    }
    #mv .mv-box h2 {
        margin: 0 auto;
        padding: 0 0.2em;
        width: max-content;
        color: var(--fg-color);
        font-size: 4.4vw;
        font-weight: 700;
        text-align: center;
        line-height: 1.5;
        background: linear-gradient( to top, #ffec5d 30%, transparent 30% );
    }
    #mv .mv-box h2 em {
        color: #c02c20;
        font-style: none;
    }
    #mv .mv-box p {
        margin: 1.0em auto 0;
        color: var(--fg-color);
        font-size: 3.6vw;
        font-weight: 500;
        text-align: center;
        line-height: 1.0;
    }
    #mv .mv-box .mv-sels {
        margin: 4.0vw auto 0;
        width: 90%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0 1.0vw;
    }
    #mv .mv-box .mv-sels label {
        position: relative;
        margin: 0;
        padding: 0 0 0 2.2em;
        width: 100%;
        height: auto;
        aspect-ratio: 156 / 50;
        color: var(--fg-color);
        font-size: 3.0vw;
        font-weight: 700;
        line-height: 1.0;
        white-space: nowrap;
        border: 0.4vw solid #dbdbdb;
        background: #fff;
        border-radius: 1.0vw;
        display: flex;
        align-items: center;
        cursor: pointer;
        user-select: none;
        transition: border 0.25s ease-out;
    }
    #mv .mv-box .mv-sels label:has(input[type="radio"]:focus) {
        outline: 0.6vw solid #ff821a;
    }
    #mv .mv-box .mv-sels label::before {
        position: absolute;
        content: "";
        top: 50%;
        left: 1.2em;
        width: 1.0em;
        height: 1.0em;
        border: 0.5vw solid #d6d6d6;
        border-radius: 100%;
        translate: -50% -50%;
        transition: border 0.25s ease-out;
    }
    #mv .mv-box .mv-sels label::after {
        position: absolute;
        content: "";
        top: 50%;
        left: 1.2em;
        width: 0.6em;
        height: 0.6em;
        background: #d6d6d6;
        border-radius: 100%;
        translate: -50% -50%;
        transition: background 0.25s ease-out;
    }
    #mv .mv-box .mv-sels label:has(input[type="radio"]:checked) {
        border-color: var(--fg-color);
    }
    #mv .mv-box .mv-sels label:has(input[type="radio"]:checked)::before {
        border-color: var(--fg-color);
    }
    #mv .mv-box .mv-sels label:has(input[type="radio"]:checked)::after {
        background: #ff821a;
    }
    #mv .mv-box .mv-sels label input[type="radio"] {
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
    }
    #mv .mv-box .mv-next {
        position: relative;
        display: block;
        margin: 4.0vw auto 0;
        width: 50%;
        height: auto;
        aspect-ratio: 226 / 53;
        color: #fff;
        font-size: 4.0vw;
        font-family: inherit;
        font-weight: 700;
        line-height: 1.0;
        background: #ff821a;
        border: 0;
        border-radius: 4.0em;
        cursor: pointer;
        transition: opacity 0.5s ease-out, background 0.5s ease-out;
    }
    #mv .mv-box .mv-next:disabled {
        background: #ccc;
        cursor: auto;
    }
    #mv .mv-box .mv-next::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.3em );
        right: 1.5em;
        width: 0.6em;
        height: 0.6em;
        border-right: 0.5vw solid #fff;
        border-bottom: 0.5vw solid #fff;
        rotate: -45deg;
    }
    @media ( hover: hover ) {
        #mv .mv-box .mv-next:not(:disabled):hover {
            opacity: 0.5;
        }
    }
    #mv .mv-box .mv-next:focus {
        outline: 0.4vw solid var(--fg-color);
    }

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

    #worried {
        margin: 0 auto;
        padding: 6.0vw 0 10.0vw;
        width: 100%;
        background: linear-gradient( to bottom, #c02c20 50%, transparent 50% );
    }
    #worried h2 {
        margin: 0 auto;
        position: relative;
    }
    #worried h2 div:nth-child(1) {
        margin: 0 auto;
        width: 100%;
        color: #ffffff1a;
        font-size: 18.0vw;
        font-family: var(--font-alphabet);
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
    }
    #worried h2 div:nth-child(2) {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        color: #fff;
        font-size: 5.2vw;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
        translate: 0 -50%;
    }
    #worried .worried-grid {
        margin: 4.0vw auto 0;
        width: 96%;
        display: grid;
        grid-template-columns: repeat( 3, 1fr );
        gap: 0 1.0vw;
    }
    #worried .worried-grid > div {
        margin: 0;
        padding: 4.0vw 0;
        width: 100%;
        background: #fff;
        border: 0.3vw solid var(--fg-color);
        border-radius: 1.6vw;
    }
    #worried .worried-grid > div .pic {
        margin: 0 auto;
        padding: 0;
        width: 50%;
    }
    #worried .worried-grid > div .pic img {
        width: 100%;
        height: auto;
    }
    #worried .worried-grid > div .txt {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 300 / 120;
        display: grid;
        place-items: center;
    }
    #worried .worried-grid > div .txt p {
        color: var(--fg-color);
        font-size: 2.8vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 32 / 22 );
    }
    #worried .worried-grid > div .txt p em {
        color: #c02c20;
        font-style: none;
    }
    #worried > h3 {
        margin: 1.5em auto 0;
        padding: 0 0.2em;
        width: max-content;
        color: #c02c20;
        font-size: 5.2vw;
        font-weight: 700;
        text-align: center;
        line-height: 1.5;
        background: linear-gradient( to top, #ffec5d 30%, transparent 30% );
    }
    #worried > p {
        margin: 1.5em auto 0;
        color: var(--fg-color);
        font-size: 3.6vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 29 / 20 );
    }

    #reason {
        margin: 0 auto;
        padding: 24.0vw 0 8.0vw;
        width: 100%;
    }
    #reason::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 2732 / 900;
        background: url(../images/reason-bg.webp) no-repeat center / cover;
        filter: brightness( 76% );
        z-index: -1;
    }
    #reason .reason-box {
        margin: 0 auto;
        padding: 6.0vw 0;
        width: 96%;
        background: #f2f8fc;
        border-radius: 2.0vw;
    }
    #reason .reason-box h2 {
        margin: 0 auto;
        position: relative;
    }
    #reason .reason-box h2 div:nth-child(1) {
        margin: 0 auto;
        width: 100%;
        color: #fff;
        font-size: 18.0vw;
        font-family: var(--font-alphabet);
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
    }
    #reason .reason-box h2 div:nth-child(2) {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        color: var(--fg-color);
        font-size: 5.2vw;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
        translate: 0 -50%;
    }
    #reason .reason-box .reason-grid {
        margin: 8.0vw auto 0;
        width: 90%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8.0vw 0;
    }
    #reason .reason-grid > div {
        margin: 0;
        width: 100%;
    }
    #reason .reason-grid > div .pic {
        margin: 0 auto;
        padding: 0;
        width: 60%;
    }
    #reason .reason-grid > div .pic img {
        width: 100%;
        height: auto;
    }
    #reason .reason-grid > div h3 {
        margin: 0.8em auto 0;
        color: var(--fg-color);
        font-size: 4.8vw;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
    }
    #reason .reason-grid > div h3 em {
        color: #c02c20;
        font-style: none;
        font-size: 5.2vw;
    }
    #reason .reason-grid > div p {
        margin: 1.0em auto 0;
        color: var(--fg-color);
        font-size: 3.6vw;
        font-weight: 400;
        text-align: center;
        line-height: calc( 25.5 / 16 );
    }
    #reason .reason-grid > div p em {
        color: #c02c20;
        font-style: none;
    }

    #flow {
        margin: 0 auto;
        padding: 8.0vw 0 12.0vw;
        width: 100%;
    }
    #flow h2 {
        margin: 0 auto;
        position: relative;
    }
    #flow h2 div:nth-child(1) {
        margin: 0 auto;
        width: 100%;
        color: #C02C2012;
        font-size: 18.0vw;
        font-family: var(--font-alphabet);
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
    }
    #flow h2 div:nth-child(2) {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        color: var(--fg-color);
        font-size: 5.2vw;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
        translate: 0 -50%;
    }
    #flow .flow-item {
        margin: 0 auto;
        padding: 4.0vw;
        width: 94%;
        background: #fcf7f7;
        border: 0.3vw solid #c37670;
        border-radius: 2.0vw;
        display: grid;
        align-items: start;
        grid-template-columns:
            8.0vw
            1fr
            8.0vw;
        gap: 0 2.0vw;
    }
    #flow .flow-item:nth-child(odd) {
        background: #fff;
    }
    #flow .flow-item + .flow-item {
        position: relative;
        margin-top: 6.0vw;
    }
    #flow .flow-item + .flow-item::before {
        position: absolute;
        content: "";
        top: -4.3vw;
        left: calc( 50% - 2.0vw );
        width: 4.0vw;
        height: 2.5vw;
        background: #c02c20;
        clip-path: polygon( 0 0, 100% 0, 50% 100% );
    }
    #flow .flow-item > div:nth-child(1) {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        color: #fff;
        font-size: 4.8vw;
        font-family: var(--font-alphabet);
        font-weight: 700;
        background: #c02c20;
        border-radius: 0.6vw;
        display: grid;
        place-items: center;
    }
    #flow .flow-item > div:nth-child(2) {
    }
    #flow .flow-item > div:nth-child(2) h3 {
        margin: 0;
        color: #c02c20;
        font-size: 4.0vw;
        font-weight: 700;
        text-align: left;
        line-height: calc( 46 / 32 );
    }
    #flow .flow-item > div:nth-child(2) p {
        margin: 0.5em 0 0;
        color: var(--fg-color);
        font-size: 3.0vw;
        font-weight: 400;
        text-align: left;
        line-height: calc( 25.5 / 16 );
    }
    #flow .flow-item > figure {
        width: 100%;
        height: 100%;
    }
    #flow .flow-item > figure img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    #about {
        margin: 0 auto;
        padding: 8.0vw 0 12.0vw;
        width: 100%;
        background: #fff;
    }
    #about h2 {
        margin: 0 auto;
        position: relative;
    }
    #about h2 div:nth-child(1) {
        margin: 0 auto;
        width: 100%;
        color: #00000012;
        font-size: 12.0vw;
        font-family: var(--font-alphabet);
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
    }
    #about h2 div:nth-child(2) {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        color: var(--fg-color);
        font-size: 5.2vw;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
        translate: 0 -50%;
    }
    #about .about-info {
        margin: 8.0vw auto 0;
        width: 96%;
        display: grid;
        grid-template-columns: 20.0vw 1fr;
        gap: 4.0vw 0;
    }
    #about .about-info dt {
        color: var(--fg-color);
        font-size: 3.6vw;
        font-weight: 500;
    }
    #about .about-info dd {
        color: var(--fg-color);
        font-size: 3.6vw;
        font-weight: 400;
    }

    #contact {
        position: fixed;
        top: 0;
        left: 0;
        margin: 0;
        padding: 0 0 8.0vw;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--bg-color);
        overflow-y: auto;
        z-index: 99;
        opacity: 0.0;
        transform: scale( 1.0, 0.0 );
        transition: transform 0.01s ease-out 0.5s, opacity 0.5s ease-out;
    }
    #contact.show {
        opacity: 1.0;
        transform: scale( 1.0, 1.0 );
        transition: transform 0.01s ease-out, opacity 0.5s ease-out;
    }
    #contact #contact-progress {
        display: none;
        position: sticky;
        top: 0px;
        margin: auto auto 0;
        padding: 0;
        width: 100%;
        height: 80px;
        background: linear-gradient( to top, #0000 0, #0003 8px, var(--bg-color) 8px );
        z-index: 1;
    }
    #contact #contact-progress span {
        --progress-val: 0%;
        position: absolute;
        bottom: 20px;
        left: 0;
        display: block;
        margin: 0 60px 0 2%;
        width: calc( 100% - 2% - 60px );
        height: 12px;
        background: linear-gradient( to right, #c02c20 var(--progress-val), #fff var(--progress-val) );
        border: calc( 2 * min( 100vw, 980px ) / 980 ) solid var(--fg-color);
        border-radius: 10.0rem;
    }
    #contact #contact-progress span::before {
        position: absolute;
        content: "%";
        bottom: calc( 100% + 10px );
        right: 0;
        color: #c02c20;
        font-size: 24px;
        font-family: var(--font-alphabet);
        font-weight: 700;
        line-height: 1.0;
    }
    #contact #contact-progress span::after {
        position: absolute;
        content: attr(data-val);
        bottom: calc( 100% + 8px );
        right: 24px;
        color: #c02c20;
        font-size: 28px;
        font-family: var(--font-alphabet);
        font-weight: 700;
        text-align: right;
        line-height: 1.0;
    }
    #contact #contact-close {
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        height: 70px;
        z-index: 2;
        cursor: pointer;
    }
    #contact #contact-close::before {
        position: absolute;
        content: "";
        top: 47%;
        left: 20%;
        width: 60%;
        height: 6%;
        background: var(--fg-color);
        border-radius: 4.0vw;
        rotate: -45deg;
    }
    #contact #contact-close::after {
        position: absolute;
        content: "";
        top: 47%;
        left: 20%;
        width: 60%;
        height: 6%;
        background: var(--fg-color);
        border-radius: 4.0vw;
        rotate: 45deg;
    }
    #contact .contact-sec {
        margin: 0 auto;
        padding: 0 0;
        width: 96%;
        display: grid;
        align-items: start;
        grid-template-columns: 1fr 9fr;
        grid-template-rows: 0;
        gap: 0 2.0vw;
        transition: grid-template-rows 0.3s ease-out, padding 0.3s ease-out;
        overflow: hidden;
    }
    #contact .contact-sec.show {
        padding: 4.0vw 0;
        grid-template-rows: 1fr;
    }
    #contact .contact-sec > figure {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    #contact .contact-sec > figure img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #contact .contact-sec > .contact-qa {
        width: 100%;
    }
    #contact .contact-sec > .contact-qa .qa-wrap {
        display: grid;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        border: 0;
        grid-template-columns: 1fr;
        grid-template-rows: 0;
        gap: 0;
        transform-origin: center top;
        transform: scale( 1.0,  0.0 );
        opacity: 0.0;
        overflow: hidden;
        transition: opacity 0.3s ease-out, grid-template-rows 0.3s ease-out, transform 0.3s ease-out;
    }
    #contact .contact-sec > .contact-qa .qa-wrap.show {
        grid-template-rows: 1fr;
    }
    #contact .contact-sec > .contact-qa .qa-wrap.anim {
        opacity: 1.0;
        transform: scale( 1.0, 1.0 );
    }
    #contact .contact-sec > .contact-qa .balloon {
        position: relative;
        margin: 0 0 2.0em 1.0em;
        padding: 1.0em;
        width: calc( 100% - 1.0em );
        color: var(--fg-color);
        font-size: 3.2vw;
        font-weight: 700;
        text-align: justify;
        line-height: calc( 32 / 18 );
        background: #fff;
        border: 0.3vw solid var(--fg-color);
        border-radius: 2.0vw;
    }
    #contact .contact-sec > .contact-qa .balloon em {
        color: #c02c20;
    }
    #contact .contact-sec > .contact-qa .balloon::before {
        position: absolute;
        content: "";
        right: 100%;
        top: 1.00em;
        width: 1.0em;
        height: 1.0em;
        background: var(--fg-color);
    }
    #contact .contact-sec > .contact-qa .qa-wrap:first-child .balloon::before {
        clip-path: polygon( 0 100%, 100% 0, 100% 100% );
        clip-path: polygon( 0 0, 100% 0, 100% 100% );
    }
    #contact .contact-sec > .contact-qa .qa-wrap:not(:first-child) .balloon::before {
        clip-path: polygon( 0 0, 100% 0, 100% 100% );
    }
    #contact .contact-sec > .contact-qa .balloon::after {
        position: absolute;
        content: "";
        right: calc( 100% - 1px );
        top: 1.10em;
        width: 0.85em;
        height: 0.85em;
        background: #fff;
        clip-path: polygon( 0 0, 100% 0, 100% 100% );
    }
    #contact .contact-sec > .contact-qa .qa-wrap:first-child .balloon::after {
        clip-path: polygon( 0 100%, 100% 0, 100% 100% );
        clip-path: polygon( 0 0, 100% 0, 100% 100% );
    }
    #contact .contact-sec > .contact-qa .qa-wrap:not(:first-child) .balloon::after {
        clip-path: polygon( 0 0, 100% 0, 100% 100% );
    }
    #contact .contact-sec > .contact-qa .balloon .small {
        font-size: 2.8vw;
        font-weight: 400;
    }
    #contact .contact-sec > .contact-qa .contact-input {
        margin: 4.0vw auto 0;
        padding: 4.0vw;
        background: #c02c20;
        border-radius: 2.0vw;
        width: 100%;
    }
    #contact .contact-sec > .contact-qa .contact-input.grid2 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.0vw 1.0vw;
    }
    #contact .contact-sec > .contact-qa .contact-input.grid3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.0vw 1.0vw;
    }
    #contact .contact-sec > .contact-qa .contact-input.grid4 {
        display: grid;
        grid-template-columns: repeat( 2, 1fr );
        gap: 2.0vw 1.0vw;
    }
    #contact .contact-sec > .contact-qa .contact-input.end {
        align-items: end;
    }
    #contact .contact-sec > .contact-qa .contact-input label {
        position: relative;
        margin: 0;
        padding: 0 0 0 3.0em;
        width: 100%;
        height: auto;
        aspect-ratio: 280 / 40;
        color: var(--fg-color);
        font-size: 4.0vw;
        font-weight: 700;
        line-height: 1.0;
        white-space: nowrap;
        border: 0.3vw solid #dbdbdb;
        background: #fff;
        border-radius: 1.4vw;
        display: flex;
        align-items: center;
        cursor: pointer;
        user-select: none;
        transition: border 0.25s ease-out;
    }
    #contact .contact-sec > .contact-qa .contact-input label:has(input[type="radio"]:focus) {
        outline: 0.6vw solid #ff821a;
    }
    #contact .contact-sec > .contact-qa .contact-input label::before {
        position: absolute;
        content: "";
        top: 50%;
        left: 1.6em;
        width: 1.0em;
        height: 1.0em;
        border: 0.4vw solid #d6d6d6;
        border-radius: 100%;
        translate: -50% -50%;
        transition: border 0.25s ease-out;
    }
    #contact .contact-sec > .contact-qa .contact-input label::after {
        position: absolute;
        content: "";
        top: 50%;
        left: 1.6em;
        width: 0.6em;
        height: 0.6em;
        background: #d6d6d6;
        border-radius: 100%;
        translate: -50% -50%;
        transition: background 0.25s ease-out;
    }
    #contact .contact-sec > .contact-qa .contact-input label:has(input[type="radio"]:checked) {
        border-color: var(--fg-color);
    }
    #contact .contact-sec > .contact-qa .contact-input label:has(input[type="radio"]:checked)::before {
        border-color: var(--fg-color);
    }
    #contact .contact-sec > .contact-qa .contact-input label:has(input[type="radio"]:checked)::after {
        background: #ff821a;
    }
    #contact .contact-sec > .contact-qa .contact-input label input[type="radio"] {
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
    }
    #contact .contact-sec > .contact-qa .contact-input select {
        margin: 0;
        padding: 0.5em 1.0em;
        width: 100%;
        color: var(--fg-color);
        font-size: 4.0vw;
        font-family: inherit;
        font-weight: 700;
        border: 0.3vw solid var(--fg-color);
        background: #fff;
        border-radius: 1.4vw;
    }
    #contact .contact-sec > .contact-qa .contact-input select:focus {
        outline: 0.6vw solid #ff821a;
    }
    #contact .contact-sec > .contact-qa .contact-input > div {
        color: #fff;
        font-size: 4.0vw;
    }
    #contact .contact-sec > .contact-qa .contact-input > div.grid-column-span2 {
    }
    #contact .contact-sec > .contact-qa .contact-input :where(input[type="text"],input[type="tel"],input[type="email"]) {
        margin: 0;
        padding: 0.5em 1.0em;
        width: 100%;
        color: var(--fg-color);
        font-size: 4.0vw;
        font-family: inherit;
        font-weight: 700;
        border: 0.3vw solid var(--fg-color);
        background: #fff;
        border-radius: 1.4vw;
    }
    #contact .contact-sec > .contact-qa .contact-input :where(input[type="text"],input[type="tel"],input[type="email"]):placeholder {
        color: #fff;
    }
    #contact .contact-sec > .contact-qa .contact-input :where(input[type="text"],input[type="tel"],input[type="email"]):focus {
        outline: 0.6vw solid #ff821a;
    }
    #contact .contact-sec > .contact-qa .contact-btn {
        margin: 4.0vw auto 0;
    }

    #contact .contact-btn {
        position: relative;
        display: block;
        margin: 4.0vw auto 0;
        width: max( 400px, 80% );
        height: auto;
        aspect-ratio: 250 / 50;
        color: #fff;
        font-size: 4.0vw;
        font-family: inherit;
        font-weight: 700;
        line-height: 1.0;
        background: #ff821a;
        border: 0;
        border-radius: 4.0em;
        cursor: pointer;
        transition: opacity 0.5s ease-out, background 0.5s ease-out;
    }
    #contact .contact-btn:disabled {
        background: #ccc;
        cursor: auto;
    }
    #contact .contact-btn::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.3em );
        right: 1.5em;
        width: 0.6em;
        height: 0.6em;
        border-right: max( 3px, calc( 3 * 100vw / 1366 ) ) solid #fff;
        border-bottom: max( 3px, calc( 3 * 100vw / 1366 ) ) solid #fff;
        rotate: -45deg;
    }
    @media ( hover: hover ) {
        #contact .contact-btn:not(:disabled):hover {
            opacity: 0.5;
        }
    }
    #contact .contact-btn:focus {
        outline: 0.6vw solid #ff0;
    }


    footer {
        margin: 0 auto;
        padding: 20px 0;
        width: 100%;
        background: var(--fg-color);
    }
    footer .footer-wrap {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        max-width: 100px;
        height: auto;
        background: #fff;
        border-radius: 5px;
    }
    footer .footer-wrap figure {
        width: 100%;
        height: auto;
    }
    footer .footer-wrap figure img {
        width: 100%;
        height: auto;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 1.0em 0;
        width: 100%;
        color: #fff;
        font-size: 2.4vw;
        text-align: center;
    }

}


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

    header {
        height: 80px;
    }
    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: 0;
        height: 100%;
    }
    header .header-logo figure {
        width: auto;
        height: 100%;
    }
    header .header-logo figure img {
        width: auto;
        height: 100%;
    }
    header .header-menu {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
    }
    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: 13px;
        font-weight: 700;
        transition: color 0.5s ease-out, opacity 0.5s ease-out;
    }
    header .header-menu > li.header-contact {
        margin: 0 0 0 20px;
        display: flex;
        align-items: center;
    }
    header .header-menu > li.header-contact > button {
        display: block;
        padding: 0.8em 1.2em;
        height: auto;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        background: #ff821a;
        border: 0;
        border-radius: 4.0em;
        cursor: pointer;
        transition: opacity 0.5s ease-out;
    }
    header.scroll .header-menu > li > a {
        color: var(--fg-color);
    }
    header.scroll .header-menu > li.header-contact > button {
        color: #fff;
    }
    @media ( hover: hover ) {
        header .header-menu > li.header-contact > button:hover {
            opacity: 0.5;
        }
    }
    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 ) );
        font-weight: 500;
        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 ) );
        font-weight: 500;
        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;
    }

    #mv {
        margin: 0 auto;
        width: 100%;
    }
    #mv .mv-bg {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        min-height: 560px;
    }
    #mv .mv-bg img {
        width: 100%;
        height: 100%;
        min-height: 560px;
        object-fit: cover;
        filter: brightness( 75% );
    }
    #mv .mv-txt {
        position: absolute;
        bottom: 58%;
        left: 0;
        width: 100%;
        color: #fff;
        font-size: max( 68px, calc( 68 * 100vw / 1366 ) );
        font-weight: 700;
        text-align: center;
        line-height: calc( 80 / 68 );
        text-shadow:
            0 0 4px #0006,
            0 0 4px #0006,
            0 0 4px #0006,
            0 0 4px #0006;
    }
    #mv .mv-box {
        position: absolute;
        top: 48%;
        left: calc( 50% - 0.5 * max( 550px, calc( 550 * 100vw / 1366 ) ) );
        padding: max( 35px, calc( 35 * 100vw / 1366 ) ) 0;
        width: max( 550px, calc( 550 * 100vw / 1366 ) );
        background: #fff;
        border-radius: max( 25px, calc( 25 * 100vw / 1366 ) );
    }
    #mv .mv-box h2 {
        margin: 0 auto;
        padding: 0 0.2em;
        width: max-content;
        color: var(--fg-color);
        font-size: max( 28px, calc( 28 * 100vw / 1366 ) );
        font-weight: 700;
        text-align: center;
        line-height: 1.5;
        background: linear-gradient( to top, #ffec5d 30%, transparent 30% );
    }
    #mv .mv-box h2 em {
        color: #c02c20;
        font-style: none;
    }
    #mv .mv-box p {
        margin: 1.0em auto 0;
        color: var(--fg-color);
        font-size: max( 16px, calc( 16 * 100vw / 1366 ) );
        font-weight: 500;
        text-align: center;
        line-height: 1.0;
    }
    #mv .mv-box .mv-sels {
        margin: max( 16px, calc( 16 * 100vw / 1366 ) ) auto 0;
        width: 90%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0 max( 6px, calc( 6 * 100vw / 1366 ) );
    }
    #mv .mv-box .mv-sels label {
        position: relative;
        margin: 0;
        padding: 0 0 0 2.5em;
        width: 100%;
        height: auto;
        aspect-ratio: 156 / 50;
        color: var(--fg-color);
        font-size: max( 16px, calc( 16 * 100vw / 1366 ) );
        font-weight: 700;
        line-height: 1.0;
        white-space: nowrap;
        border: max( 2px, calc( 2 * 100vw / 1366 ) ) solid #dbdbdb;
        background: #fff;
        border-radius: max( 5px, calc( 5 * 100vw / 1366 ) );
        display: flex;
        align-items: center;
        cursor: pointer;
        user-select: none;
        transition: border 0.25s ease-out;
    }
    #mv .mv-box .mv-sels label:has(input[type="radio"]:focus) {
        outline: max( 2px, calc( 2 * 100vw / 1366 ) ) solid #ff821a;
    }
    #mv .mv-box .mv-sels label::before {
        position: absolute;
        content: "";
        top: 50%;
        left: 1.2em;
        width: 1.0em;
        height: 1.0em;
        border: max( 3px, calc( 3 * 100vw / 1366 ) ) solid #d6d6d6;
        border-radius: 100%;
        translate: -50% -50%;
        transition: border 0.25s ease-out;
    }
    #mv .mv-box .mv-sels label::after {
        position: absolute;
        content: "";
        top: 50%;
        left: 1.2em;
        width: 0.6em;
        height: 0.6em;
        background: #d6d6d6;
        border-radius: 100%;
        translate: -50% -50%;
        transition: background 0.25s ease-out;
    }
    #mv .mv-box .mv-sels label:has(input[type="radio"]:checked) {
        border-color: var(--fg-color);
    }
    #mv .mv-box .mv-sels label:has(input[type="radio"]:checked)::before {
        border-color: var(--fg-color);
    }
    #mv .mv-box .mv-sels label:has(input[type="radio"]:checked)::after {
        background: #ff821a;
    }
    #mv .mv-box .mv-sels label input[type="radio"] {
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
    }
    #mv .mv-box .mv-next {
        position: relative;
        display: block;
        margin: max( 16px, calc( 16 * 100vw / 1366 ) ) auto 0;
        width: max( 226px, calc( 226 * 100vw / 1366 ) );
        height: auto;
        aspect-ratio: 226 / 53;
        color: #fff;
        font-size: max( 18px, calc( 18 * 100vw / 1366 ) );
        font-family: inherit;
        font-weight: 700;
        line-height: 1.0;
        background: #ff821a;
        border: 0;
        border-radius: 4.0em;
        cursor: pointer;
        transition: opacity 0.5s ease-out, background 0.5s ease-out;
    }
    #mv .mv-box .mv-next:disabled {
        background: #ccc;
        cursor: auto;
    }
    #mv .mv-box .mv-next::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.3em );
        right: 1.0em;
        width: 0.6em;
        height: 0.6em;
        border-right: max( 3px, calc( 3 * 100vw / 1366 ) ) solid #fff;
        border-bottom: max( 3px, calc( 3 * 100vw / 1366 ) ) solid #fff;
        rotate: -45deg;
    }
    @media ( hover: hover ) {
        #mv .mv-box .mv-next:not(:disabled):hover {
            opacity: 0.5;
        }
    }
    #mv .mv-box .mv-next:focus {
        outline: max( 2px, calc( 2 * 100vw / 1366 ) ) solid var(--fg-color);
    }

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

    #worried {
        margin: 0 auto;
        padding: calc( 60 * min( 100vw, 980px ) / 980 ) 0 calc( 100 * min( 100vw, 980px ) / 980 );
        width: 100%;
        background: linear-gradient( to bottom, #c02c20 50%, transparent 50% );
    }
    #worried h2 {
        margin: 0 auto;
        position: relative;
    }
    #worried h2 div:nth-child(1) {
        margin: 0 auto;
        width: 100%;
        color: #ffffff1a;
        font-size: calc( 180 * min( 100vw, 980px ) / 980 );
        font-family: var(--font-alphabet);
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
    }
    #worried h2 div:nth-child(2) {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        color: #fff;
        font-size: calc( 42 * min( 100vw, 980px ) / 980 );
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
        translate: 0 -50%;
    }
    #worried .worried-grid {
        margin: calc( 20 * min( 100vw, 980px ) / 980 ) auto 0;
        width: 96%;
        max-width: 980px;
        display: grid;
        grid-template-columns: repeat( 3, 1fr );
        gap: 0 calc( 40 * min( 100vw, 980px ) / 980 );
    }
    #worried .worried-grid > div {
        margin: 0;
        padding: calc( 40 * min( 100vw, 980px ) / 980 ) 0;
        width: 100%;
        background: #fff;
        border: calc( 2 * min( 100vw, 980px ) / 980 ) solid var(--fg-color);
        border-radius: calc( 10 * min( 100vw, 980px ) / 980 );
    }
    #worried .worried-grid > div .pic {
        margin: 0 auto;
        padding: 0;
        width: 40%;
    }
    #worried .worried-grid > div .pic img {
        width: 100%;
        height: auto;
    }
    #worried .worried-grid > div .txt {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 300 / 120;
        display: grid;
        place-items: center;
    }
    #worried .worried-grid > div .txt p {
        color: var(--fg-color);
        font-size: max( 16px, calc( 16 * min( 100vw, 980px ) / 980 ) );
        font-weight: 700;
        text-align: center;
        line-height: calc( 32 / 22 );
    }
    #worried .worried-grid > div .txt p em {
        color: #c02c20;
        font-style: none;
    }
    #worried > h3 {
        margin: 1.5em auto 0;
        padding: 0 0.2em;
        width: max-content;
        color: #c02c20;
        font-size: calc( 42 * min( 100vw, 980px ) / 980 );
        font-weight: 700;
        text-align: center;
        line-height: 1.5;
        background: linear-gradient( to top, #ffec5d 30%, transparent 30% );
    }
    #worried > p {
        margin: 1.5em auto 0;
        color: var(--fg-color);
        font-size: calc( 20 * min( 100vw, 980px ) / 980 );
        font-weight: 700;
        text-align: center;
        line-height: calc( 29 / 20 );
    }

    #reason {
        margin: 0 auto;
        padding: calc( 240 * min( 100vw, 980px ) / 980 ) 0 calc( 40 * min( 100vw, 980px ) / 980 );
        width: 100%;
    }
    #reason::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 2732 / 900;
        background: url(../images/reason-bg.webp) no-repeat center / cover;
        filter: brightness( 76% );
        z-index: -1;
    }
    #reason .reason-box {
        margin: 0 auto;
        padding: calc( 60 * min( 100vw, 980px ) / 980 ) 0;
        width: 96%;
        max-width: 980px;
        background: #f2f8fc;
        border-radius: calc( 10 * min( 100vw, 980px ) / 980 );
    }
    #reason .reason-box h2 {
        margin: 0 auto;
        position: relative;
    }
    #reason .reason-box h2 div:nth-child(1) {
        margin: 0 auto;
        width: 100%;
        color: #fff;
        font-size: calc( 180 * min( 100vw, 980px ) / 980 );
        font-family: var(--font-alphabet);
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
    }
    #reason .reason-box h2 div:nth-child(2) {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        color: var(--fg-color);
        font-size: calc( 42 * min( 100vw, 980px ) / 980 );
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
        translate: 0 -50%;
    }
    #reason .reason-box .reason-grid {
        margin: calc( 40 * min( 100vw, 980px ) / 980 ) auto 0;
        width: 90%;
        display: grid;
        grid-template-columns: repeat( 3, 1fr );
        gap: 0 calc( 40 * min( 100vw, 980px ) / 980 );
    }
    #reason .reason-grid > div {
        margin: 0;
        width: 100%;
    }
    #reason .reason-grid > div .pic {
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }
    #reason .reason-grid > div .pic img {
        width: 100%;
        height: auto;
    }
    #reason .reason-grid > div h3 {
        margin: 0.8em auto 0;
        color: var(--fg-color);
        font-size: max( 24px, calc( 24 * min( 100vw, 980px ) / 980 ) );
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
    }
    #reason .reason-grid > div h3 em {
        color: #c02c20;
        font-style: none;
        font-size: max( 28px, calc( 28 * min( 100vw, 980px ) / 980 ) );
    }
    #reason .reason-grid > div p {
        margin: 1.0em auto 0;
        color: var(--fg-color);
        font-size: max( 16px, calc( 16 * min( 100vw, 980px ) / 980 ) );
        font-weight: 400;
        text-align: center;
        line-height: calc( 25.5 / 16 );
    }
    #reason .reason-grid > div p em {
        color: #c02c20;
        font-style: none;
    }

    #flow {
        margin: 0 auto;
        padding: calc( 40 * min( 100vw, 980px ) / 980 ) 0 calc( 100 * min( 100vw, 980px ) / 980 );
        width: 100%;
    }
    #flow h2 {
        margin: 0 auto;
        position: relative;
    }
    #flow h2 div:nth-child(1) {
        margin: 0 auto;
        width: 100%;
        color: #C02C2012;
        font-size: calc( 180 * min( 100vw, 980px ) / 980 );
        font-family: var(--font-alphabet);
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
    }
    #flow h2 div:nth-child(2) {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        color: var(--fg-color);
        font-size: calc( 42 * min( 100vw, 980px ) / 980 );
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
        translate: 0 -50%;
    }
    #flow .flow-item {
        margin: 0 auto;
        padding: calc( 40 * min( 100vw, 980px ) / 980 );
        width: 96%;
        max-width: 980px;
        background: #fcf7f7;
        border: calc( 2 * min( 100vw, 980px ) / 980 ) solid #c37670;
        border-radius: calc( 10 * min( 100vw, 980px ) / 980 );
        display: grid;
        align-items: center;
        grid-template-columns:
            calc( 76 * min( 100vw, 980px ) / 980 )
            1fr
            80px;
        gap: 0 calc( 20 * min( 100vw, 980px ) / 980 );
    }
    #flow .flow-item:nth-child(odd) {
        background: #fff;
    }
    #flow .flow-item + .flow-item {
        position: relative;
        margin-top: calc( 60 * min( 100vw, 980px ) / 980 );
    }
    #flow .flow-item + .flow-item::before {
        position: absolute;
        content: "";
        top: calc( -43 * min( 100vw, 980px ) / 980 );
        left: calc( 50% - ( 20 * min( 100vw, 980px ) / 980 ) );
        width: calc( 40 * min( 100vw, 980px ) / 980 );
        height: calc( 26 * min( 100vw, 980px ) / 980 );
        background: #c02c20;
        clip-path: polygon( 0 0, 100% 0, 50% 100% );
    }
    #flow .flow-item > div:nth-child(1) {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        color: #fff;
        font-size: calc( 32 * min( 100vw, 980px ) / 980 );
        font-family: var(--font-alphabet);
        font-weight: 700;
        background: #c02c20;
        border-radius: calc( 3 * min( 100vw, 980px ) / 980 );
        display: grid;
        place-items: center;
    }
    #flow .flow-item > div:nth-child(2) {
    }
    #flow .flow-item > div:nth-child(2) h3 {
        margin: 0;
        color: #c02c20;
        font-size: calc( 32 * min( 100vw, 980px ) / 980 );
        font-weight: 700;
        text-align: left;
        line-height: calc( 46 / 32 );
    }
    #flow .flow-item > div:nth-child(2) p {
        margin: 0.5em 0 0;
        color: var(--fg-color);
        font-size: calc( 16 * min( 100vw, 980px ) / 980 );
        font-weight: 400;
        text-align: left;
        line-height: calc( 25.5 / 16 );
    }
    #flow .flow-item > figure {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
    }
    #flow .flow-item > figure img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    #about {
        margin: 0 auto;
        padding: calc( 80 * min( 100vw, 980px ) / 980 ) 0 calc( 100 * min( 100vw, 980px ) / 980 );
        width: 100%;
        background: #fff;
    }
    #about h2 {
        margin: 0 auto;
        position: relative;
    }
    #about h2 div:nth-child(1) {
        margin: 0 auto;
        width: 100%;
        color: #00000012;
        font-size: calc( 180 * min( 100vw, 980px ) / 980 );
        font-family: var(--font-alphabet);
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
    }
    #about h2 div:nth-child(2) {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        color: var(--fg-color);
        font-size: calc( 42 * min( 100vw, 980px ) / 980 );
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
        translate: 0 -50%;
    }
    #about .about-info {
        margin: calc( 80 * min( 100vw, 980px ) / 980 ) auto 0;
        width: 96%;
        max-width: 600px;
        display: grid;
        grid-template-columns: max( 160px, calc( 160 * min( 100vw, 980px ) / 980 ) ) 1fr;
        gap: 20px 0;
    }
    #about .about-info dt {
        color: var(--fg-color);
        font-size: max( 18px, calc( 18 * min( 100vw, 980px ) / 980 ) );
        font-weight: 500;
    }
    #about .about-info dd {
        color: var(--fg-color);
        font-size: max( 18px, calc( 18 * min( 100vw, 980px ) / 980 ) );
        font-weight: 400;
    }

    #contact {
        position: fixed;
        top: 0;
        left: 0;
        margin: 0;
        padding: 0 0 calc( 40 * min( 100vw, 980px ) / 980 );
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--bg-color);
        overflow-y: auto;
        z-index: 99;
        opacity: 0.0;
        transform: scale( 1.0, 0.0 );
        transition: transform 0.01s ease-out 0.5s, opacity 0.5s ease-out;
    }
    #contact.show {
        opacity: 1.0;
        transform: scale( 1.0, 1.0 );
        transition: transform 0.01s ease-out, opacity 0.5s ease-out;
    }
    #contact #contact-progress {
        display: none;
        position: sticky;
        top: 0px;
        margin: auto auto 0;
        padding: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient( to top, #0000 0, #0003 10px, var(--bg-color) 10px );
        z-index: 1;
    }
    #contact #contact-progress span {
        --progress-val: 0%;
        position: absolute;
        bottom: 20px;
        left: calc( 50% - 0.5 * min( 90vw, 980px ) );
        display: block;
        margin: 0 auto;
        width: min( 980px, calc( 50% - 100px + 0.5 * min( 90vw, 980px ) ) );
        max-width: 980px;
        height: 12px;
        background: linear-gradient( to right, #c02c20 var(--progress-val), #fff var(--progress-val) );
        border: calc( 2 * min( 100vw, 980px ) / 980 ) solid var(--fg-color);
        border-radius: 10.0rem;
    }
    #contact #contact-progress span::before {
        position: absolute;
        content: "%";
        bottom: calc( 100% + 10px );
        right: 0;
        color: #c02c20;
        font-size: 24px;
        font-family: var(--font-alphabet);
        font-weight: 700;
        line-height: 1.0;
    }
    #contact #contact-progress span::after {
        position: absolute;
        content: attr(data-val);
        bottom: calc( 100% + 8px );
        right: 24px;
        color: #c02c20;
        font-size: 32px;
        font-family: var(--font-alphabet);
        font-weight: 700;
        text-align: right;
        line-height: 1.0;
    }
    #contact #contact-close {
        position: absolute;
        top: 0;
        right: 0;
        width: 90px;
        height: 90px;
        z-index: 2;
        cursor: pointer;
    }
    #contact #contact-close::before {
        position: absolute;
        content: "";
        top: 47%;
        left: 20%;
        width: 60%;
        height: 6%;
        background: var(--fg-color);
        border-radius: 4.0vw;
        rotate: -45deg;
    }
    #contact #contact-close::after {
        position: absolute;
        content: "";
        top: 47%;
        left: 20%;
        width: 60%;
        height: 6%;
        background: var(--fg-color);
        border-radius: 4.0vw;
        rotate: 45deg;
    }
    #contact .contact-sec {
        margin: 0 auto;
        padding: 0 0;
        width: 96%;
        max-width: 980px;
        display: grid;
        align-items: start;
        grid-template-columns: calc( 130 * min( 100vw, 980px ) / 980 ) 1fr;
        grid-template-rows: 0;
        gap: 0 calc( 30 * min( 100vw, 980px ) / 980 );
        transition: grid-template-rows 0.3s ease-out, padding 0.3s ease-out;
        overflow: hidden;
    }
    #contact .contact-sec.show {
        padding: calc( 40 * min( 100vw, 980px ) / 980 ) 0;
        grid-template-rows: 1fr;
    }
    #contact .contact-sec > figure {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    #contact .contact-sec > figure img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #contact .contact-sec > .contact-qa {
        width: 100%;
    }
    #contact .contact-sec > .contact-qa .qa-wrap {
        display: grid;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        border: 0;
        grid-template-columns: 1fr;
        grid-template-rows: 0;
        gap: 0;
        transform-origin: center top;
        transform: scale( 1.0,  0.0 );
        opacity: 0.0;
        overflow: hidden;
        transition: opacity 0.3s ease-out, grid-template-rows 0.3s ease-out, transform 0.3s ease-out;
    }
    #contact .contact-sec > .contact-qa .qa-wrap.show {
        grid-template-rows: 1fr;
    }
    #contact .contact-sec > .contact-qa .qa-wrap.anim {
        opacity: 1.0;
        transform: scale( 1.0, 1.0 );
    }
    #contact .contact-sec > .contact-qa .balloon {
        position: relative;
        margin: 0 0 1.5em 1.0em;
        padding: 1.0em;
        width: calc( 100% - 1.0em );
        color: var(--fg-color);
        font-size: calc( 18 * min( 100vw, 980px ) / 980 );
        font-weight: 700;
        text-align: justify;
        line-height: calc( 32 / 18 );
        background: #fff;
        border: calc( 2 * min( 100vw, 980px ) / 980 ) solid var(--fg-color);
        border-radius: calc( 10 * min( 100vw, 980px ) / 980 );
    }
    #contact .contact-sec > .contact-qa .balloon em {
        color: #c02c20;
    }
    #contact .contact-sec > .contact-qa .balloon::before {
        position: absolute;
        content: "";
        right: 100%;
        top: 1.00em;
        width: 1.0em;
        height: 1.0em;
        background: var(--fg-color);
    }
    #contact .contact-sec > .contact-qa .qa-wrap:first-child .balloon::before {
        clip-path: polygon( 0 100%, 100% 0, 100% 100% );
        clip-path: polygon( 0 0, 100% 0, 100% 100% );
    }
    #contact .contact-sec > .contact-qa .qa-wrap:not(:first-child) .balloon::before {
        clip-path: polygon( 0 0, 100% 0, 100% 100% );
    }
    #contact .contact-sec > .contact-qa .balloon::after {
        position: absolute;
        content: "";
        right: calc( 100% - 1px );
        top: 1.10em;
        width: 0.85em;
        height: 0.85em;
        background: #fff;
    }
    #contact .contact-sec > .contact-qa .qa-wrap:first-child .balloon::after {
        clip-path: polygon( 0 100%, 100% 0, 100% 100% );
        clip-path: polygon( 0 0, 100% 0, 100% 100% );
    }
    #contact .contact-sec > .contact-qa .qa-wrap:not(:first-child) .balloon::after {
        clip-path: polygon( 0 0, 100% 0, 100% 100% );
    }
    #contact .contact-sec > .contact-qa .balloon .small {
        font-size: calc( 14 * min( 100vw, 980px ) / 980 );
        font-weight: 400;
    }
    #contact .contact-sec > .contact-qa .contact-input {
        margin: calc( 20 * min( 100vw, 980px ) / 980 ) auto 0;
        padding: calc( 40 * min( 100vw, 980px ) / 980 );
        background: #c02c20;
        border-radius: calc( 10 * min( 100vw, 980px ) / 980 );
        width: 100%;
    }
    #contact .contact-sec > .contact-qa .contact-input.grid2 {
        display: grid;
        grid-template-columns: repeat( 2, 1fr );
        gap: max( 8px, calc( 8 * 100vw / 1366 ) ) max( 8px, calc( 8 * 100vw / 1366 ) );
    }
    #contact .contact-sec > .contact-qa .contact-input.grid3 {
        display: grid;
        grid-template-columns: repeat( 3, 1fr );
        gap: max( 8px, calc( 8 * 100vw / 1366 ) ) max( 8px, calc( 8 * 100vw / 1366 ) );
    }
    #contact .contact-sec > .contact-qa .contact-input.grid4 {
        display: grid;
        grid-template-columns: repeat( 4, 1fr );
        gap: max( 8px, calc( 8 * 100vw / 1366 ) ) max( 8px, calc( 8 * 100vw / 1366 ) );
    }
    #contact .contact-sec > .contact-qa .contact-input.end {
        align-items: end;
    }
    #contact .contact-sec > .contact-qa .contact-input label {
        position: relative;
        margin: 0;
        padding: 0 0 0 3.0em;
        width: 100%;
        height: auto;
        aspect-ratio: 250 / 60;
        color: var(--fg-color);
        font-size: max( 20px, calc( 20 * min( 100vw, 980px ) / 980 ) );
        font-weight: 700;
        line-height: 1.0;
        white-space: nowrap;
        border: max( 2px, calc( 2 * 100vw / 1366 ) ) solid #dbdbdb;
        background: #fff;
        border-radius: max( 7px, calc( 7 * 100vw / 1366 ) );
        display: flex;
        align-items: center;
        cursor: pointer;
        user-select: none;
        transition: border 0.25s ease-out;
    }
    #contact .contact-sec > .contact-qa .contact-input label:has(input[type="radio"]:focus) {
        outline: max( 4px, calc( 4 * 100vw / 1366 ) ) solid #ff821a;
    }
    #contact .contact-sec > .contact-qa .contact-input label::before {
        position: absolute;
        content: "";
        top: 50%;
        left: 1.6em;
        width: 1.0em;
        height: 1.0em;
        border: max( 3px, calc( 3 * 100vw / 1366 ) ) solid #d6d6d6;
        border-radius: 100%;
        translate: -50% -50%;
        transition: border 0.25s ease-out;
    }
    #contact .contact-sec > .contact-qa .contact-input label::after {
        position: absolute;
        content: "";
        top: 50%;
        left: 1.6em;
        width: 0.6em;
        height: 0.6em;
        background: #d6d6d6;
        border-radius: 100%;
        translate: -50% -50%;
        transition: background 0.25s ease-out;
    }
    #contact .contact-sec > .contact-qa .contact-input label:has(input[type="radio"]:checked) {
        border-color: var(--fg-color);
    }
    #contact .contact-sec > .contact-qa .contact-input label:has(input[type="radio"]:checked)::before {
        border-color: var(--fg-color);
    }
    #contact .contact-sec > .contact-qa .contact-input label:has(input[type="radio"]:checked)::after {
        background: #ff821a;
    }
    #contact .contact-sec > .contact-qa .contact-input label input[type="radio"] {
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
    }
    #contact .contact-sec > .contact-qa .contact-input select {
        margin: 0;
        padding: 1.0em;
        width: 100%;
        color: var(--fg-color);
        font-size: max( 20px, calc( 20 * min( 100vw, 980px ) / 980 ) );
        font-family: inherit;
        font-weight: 700;
        border: max( 2px, calc( 2 * 100vw / 1366 ) ) solid var(--fg-color);
        background: #fff;
        border-radius: max( 7px, calc( 7 * 100vw / 1366 ) );
    }
    #contact .contact-sec > .contact-qa .contact-input select:focus {
        outline: max( 4px, calc( 4 * 100vw / 1366 ) ) solid #ff821a;
    }
    #contact .contact-sec > .contact-qa .contact-input > div {
        color: #fff;
        font-size: max( 20px, calc( 20 * min( 100vw, 980px ) / 980 ) );
    }
    #contact .contact-sec > .contact-qa .contact-input > div.grid-column-span2 {
        grid-column: span 2;
    }
    #contact .contact-sec > .contact-qa .contact-input :where(input[type="text"],input[type="tel"],input[type="email"]) {
        margin: 0;
        padding: 1.0em;
        width: 100%;
        color: var(--fg-color);
        font-size: max( 20px, calc( 20 * min( 100vw, 980px ) / 980 ) );
        font-family: inherit;
        font-weight: 700;
        border: max( 2px, calc( 2 * 100vw / 1366 ) ) solid var(--fg-color);
        background: #fff;
        border-radius: max( 7px, calc( 7 * 100vw / 1366 ) );
    }
    #contact .contact-sec > .contact-qa .contact-input :where(input[type="text"],input[type="tel"],input[type="email"]):placeholder {
        color: #fff;
    }
    #contact .contact-sec > .contact-qa .contact-input :where(input[type="text"],input[type="tel"],input[type="email"]):focus {
        outline: max( 4px, calc( 4 * 100vw / 1366 ) ) solid #ff821a;
    }
    #contact .contact-sec > .contact-qa .contact-btn {
        margin: calc( 40 * min( 100vw, 980px ) / 980 ) auto 0;
        grid-column: span 2;
    }

    #contact .contact-btn {
        grid-column: span 2;
        position: relative;
        display: block;
        margin: max( 16px, calc( 16 * 100vw / 1366 ) ) auto 0;
        width: max( 400px, calc( 400 * 100vw / 1366 ) );
        height: auto;
        aspect-ratio: 250 / 60;
        color: #fff;
        font-size: max( 24px, calc( 24 * 100vw / 1366 ) );
        font-family: inherit;
        font-weight: 700;
        line-height: 1.0;
        background: #ff821a;
        border: 0;
        border-radius: 4.0em;
        cursor: pointer;
        transition: opacity 0.5s ease-out, background 0.5s ease-out;
    }
    #contact .contact-btn:disabled {
        background: #ccc;
        cursor: auto;
    }
    #contact .contact-btn::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.3em );
        right: 1.5em;
        width: 0.6em;
        height: 0.6em;
        border-right: max( 3px, calc( 3 * 100vw / 1366 ) ) solid #fff;
        border-bottom: max( 3px, calc( 3 * 100vw / 1366 ) ) solid #fff;
        rotate: -45deg;
    }
    @media ( hover: hover ) {
        #contact .contact-btn:not(:disabled):hover {
            opacity: 0.5;
        }
    }
    #contact .contact-btn:focus {
        outline: max( 4px, calc( 4 * 100vw / 1366 ) ) solid #ff0;
    }


    footer {
        margin: 0 auto;
        padding: 20px 0;
        width: 100%;
        background: var(--fg-color);
    }
    footer .footer-wrap {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        max-width: 100px;
        height: auto;
        background: #fff;
        border-radius: 5px;
    }
    footer .footer-wrap figure {
        width: 100%;
        height: auto;
    }
    footer .footer-wrap figure img {
        width: 100%;
        height: auto;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 1.0em 0;
        width: 100%;
        color: #fff;
        font-size: 9px;
        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 ); }
}
