@charset "utf-8";


:root {
    --color-theme:       #d31c14;
    --color-light-theme: #f0ffff;
    --color-accent:      #000099;
    --fg-color:          #222;
    --bg-color:          #fff;
    --color-white:       #fff;
    --color-lightgray:   #f0f0f0;
    --font-alphabet: 'Poppins', '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.3s ease-out;
}
button {
    cursor: pointer;
    transition: opacity 0.3s 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 {
    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( 40px, 5.0vw, 60px );
    height: clamp( 40px, 5.0vw, 60px );
    background: var(--color-theme);
    border: 2px solid #fff;
    border-radius: 100%;
    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: calc( 50% - ( 20% + 3px ) * 0.5 );
    top: 40%;
    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: 18px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 152px;
}

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.01; }
    100% { opacity: 1.00; }
}


header {
    position: sticky;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 4px rgba( 0, 0, 0, 0.16 );
    z-index: 90;
}


/**
 * スマホ用設定
 */
@media ( width < 768px ) {

    header {
        height: 20.0vw;
    }
    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 4.0vw;
        height: 100%;
    }
    header .header-logo a {
        display: block;
        width: auto;
        height: 100%;
    }
    header .header-logo a h1 {
        display: grid;
        place-items: center;
        width: max-content;
        height: 100%;
        font-size: 8.0vw;
        font-weight: 900;
    }
    header .header-logo img {
        display: block;
        width: auto;
        height: 100%;
    }
    header .header-menu {
        display: none;
    }
    header .header-btns {
        display: none;
    }
    header .header-sp-menu {
        position: relative;
        height: 100%;
        aspect-ratio: 1 / 1;
    }
    header .header-sp-menu #sp-menu-check {
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
    }
    header .header-sp-menu #sp-menu-check ~ .header-sp-menu-back {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient( to bottom, #383838, #000 );
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area {
        display: block;
        position: absolute;
        top: 20%;
        left: 20%;
        width: 60%;
        height: 60%;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area > .sp-menu-icon {
        position: absolute;
        top: 50%;
        left: 15%;
        width: 70%;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        transition: background 0.3s ease-out;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area > .sp-menu-icon::before {
        position: absolute;
        content: "";
        top: -400%;
        left: 0;
        width: 100%;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        transition: transform 0.3s ease-out;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area > .sp-menu-icon::after {
        position: absolute;
        content: "";
        top: 400%;
        left: 0;
        width: 100%;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        transition: transform 0.3s 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( 400% ) rotate( 45deg );
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu-area > .sp-menu-icon::after {
        transform: translateY( -400% ) rotate( -45deg );
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu {
        position: fixed;
        top: 20.0vw;
        right: 0;
        width: 100%;
        height: calc( 100vh - 20.0vw );
        height: calc( 100dvh - 20.0vw );
        padding: 12.0vw 6.0vw;
        background: #96100af3;
        list-style: none;
        transform-origin: top center;
        transform: scaleY( 0.0 );
        transition: transform 0.3s 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: 1.0em 0;
        color: #fff;
        font-size: 4.0vw;
        text-align: center;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-tel > a,
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-email > a,
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-line > a {
        margin: 1.5em auto 0;
        padding: 0;
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu {
        transform: scaleY( 1.0 );
    }

    #mv {
        margin: 0 auto;
        width: 100%;
        z-index: 1;
    }
    #mv .mv-bg {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 780 / 901;
    }
    #mv .mv-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #mv .mv-box {
        position: absolute;
        top: 20%;
        left: 20%;
        margin: 0;
        padding: 0;
        width: 60%;
        height: 60%;
    }
    #mv .mv-woman {
        position: absolute;
        bottom: 8.0%;
        right: 0;
        margin: 0;
        padding: 0;
        width: 44.5%;
        height: auto;
        aspect-ratio: 694 / 1020;
    }
    #mv .mv-box {
        position: absolute;
        top: calc( 20.0vw + ( 100% - 20.0vw ) * 0.043 );
        left: 0;
        margin: 0;
        padding: 0;
        width: 100%;
        height: calc( ( 100% - 20.0vw ) * 0.957 );
    }
    #mv .mv-box .mv-wrap {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
    }
    #mv .mv-box .txt1 {
        margin: 0 auto;
        width: 100%;
        color: #fff;
        font-size: 5.6vw;
        font-weight: 900;
        text-align: center;
        line-height: calc( 45 / 40 );
    }
    #mv .mv-box .txt2 {
        margin: 0.2em auto 0.5em;
        width: 100%;
        color: #fff;
        font-size: 6.4vw;
        font-weight: 900;
        text-align: center;
        line-height: calc( 58 / 51 );
    }
    #mv .mv-box .txt2 span {
        display: inline-block;
        padding: 0.1em 0.2em;
        background: #580703;
    }
    #mv .mv-box .balloon {
        margin: 0 33% 0 2%;
        padding: 0;
        width: 65%;
        height: auto;
    }
    #mv .mv-box .txt3 {
        margin: 0 auto;
        padding: 0 0 0 4%;
        width: 100%;
        color: #fff;
        font-size: 8.0vw;
        font-weight: 900;
        text-align: left;
        line-height: calc( 72 / 63 );
    }
    #mv .mv-box .txt3 span {
        color: #f0db8f;
    }

    #mv-cta {
        margin: -24.0vw auto 0;
        padding: 0;
        width: 100%;
        z-index: 2;
    }
    #mv-cta .mv-cta-figs {
        margin: 0 auto;
        padding: 0 4.0vw;
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    #mv-cta .mv-cta-figs .mv-cta-fig {
        position: relative;
        margin: 0;
        padding: 0;
        width: 33%;
    }
    #mv-cta .mv-cta-figs .mv-cta-fig figure {
        margin: 0;
        width: 100%;
        height: auto
    }
    #mv-cta .mv-cta-figs .mv-cta-fig figure img {
        scale: 1.24 1.24;
    }
    #mv-cta .mv-cta-figs .mv-cta-fig .txt {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 35% 0 0;
    }
    #mv-cta .mv-cta-figs .mv-cta-fig .txt .txt1 {
        margin: 0
        width: 100%;
        color: #d31c14;
        font-size: 5.6vw;
        font-weight: 900;
        text-align: center;
        line-height: calc( 41 / 40 );
    }
    #mv-cta .mv-cta-figs .mv-cta-fig .txt .txt1 span {
        display: inline-block;
        transform-origin: right bottom;
        transform: scale( 1.4, 1.4 );
    }
    #mv-cta .mv-cta-figs .mv-cta-fig .txt .txt2 {
        margin: 0
        width: 100%;
        font-size: 4.0vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 32 / 27 );
    }
    #mv-cta .mv-cta-box {
        position: relative;
        margin: -8.0vw auto 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 780 / 407;
        background: linear-gradient( to bottom, #383838, #000 );
        z-index: 3;
    }
    #mv-cta .mv-cta-box .mv-cta-head {
        position: absolute;
        top: 0;
        left: 2%;
        margin: 0;
        padding: 0.5em 0;
        width: 96%;
        color: #fff;
        font-size: 4.0vw;
        font-weight: 500;
        text-align: center;
        line-height: calc( 35 / 24 );
        background: #a88e2f;
    }
    #mv-cta .mv-cta-box .mv-cta-btns {
        position: absolute;
        bottom: 5.0vw;
        left: 0;
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4.0vw 0;
    }
    #mv-cta .mv-cta-box .mv-cta-btns .mv-cta-tel {
        display: block;
        margin: 0;
        padding: 0;
        width: 80.0%;
        height: auto;
    }
    #mv-cta .mv-cta-box .mv-cta-btns .mv-cta-line {
        display: block;
        margin: 0;
        padding: 0;
        width: 80.0%;
        height: auto;
    }

    main {
        margin: 0 auto;
        width: 100%;
    }

    #insident {
        margin: 0 auto;
        padding: 12.0vw 0 calc( 6.0vw + 8.0vw );
        width: 100%;
        z-index: 0;
        background: #f5f5f5;
        clip-path: polygon( 0 0, 100% 0, 100% calc( 100% - 6.0vw ), 0 100% );
    }
    #insident .subtitle {
        margin: 0;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 34 / 26 );
    }
    #insident .sec-h2 {
        margin: 0.2em 0 0;
        font-size: 7.2vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 59 / 40 );
    }
    #insident .sec-h2 span {
        color: #d31c14;
    }
    #insident .insident-box {
        position: relative;
        margin: 8.0vw auto 0;
        padding: 4.0vw;
        width: 90%;
        background: #fff;
        border: 1.0vw solid #e3e3e3;
        z-index: 1;
    }
    #insident .insident-box::after {
        position: absolute;
        content: "";
        right: -4.0vw;
        bottom: 0;
        width: 20%;
        height: auto;
        aspect-ratio: 368 / 538;
        background: url(../images/insident-woman1.webp) no-repeat center / contain;
        z-index: 2;
    }
    #insident .insident-box .insident-list {
        display: grid;
        grid-template-columns: 1fr;
        list-style: none;
        gap: 4.0vw 0;
    }
    #insident .insident-box .insident-list li {
        position: relative;
        margin: 0;
        padding: 0 0 0 2.5em;
        font-size: 3.6vw;
        font-weight: 500;
        line-height: 1.5;
    }
    #insident .insident-box .insident-list li span {
        color: #1c4e80;
    }
    #insident .insident-box .insident-list li::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 1.6em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #1d4e80;
    }
    #insident .insident-box .insident-list li::after {
        position: absolute;
        content: "";
        top: 0.5em;
        left: 0.5em;
        width: 0.5em;
        height: auto;
        aspect-ratio: 2 / 1;
        border-left: 3px solid #fff;
        border-bottom: 3px solid #fff;
        border-radius: 2px;
        rotate: -40deg;
    }
    #insident .txt1 {
        margin: 1.0em 0 0;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 34 / 26 );
    }
    #insident .txt2 {
        margin: 0.2em 0 0;
        font-size: 6.0vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 48 / 32 );
    }
    #insident .txt2 span {
        color: #d31c14;
    }

    #vendors {
        margin: 0 auto;
        padding: 4.0vw 0 12.0vw;
        width: 100%;
    }
    #vendors .subtitle {
        margin: 0;
        color: #d31c14;
        font-size: 3.2vw;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: calc( 34 / 18 );
    }
    #vendors .sec-h2 {
        margin: 0.2em 0 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #vendors .sec-h2 span:nth-of-type(1) {
        margin: 0;
        font-size: 6.0vw;
        font-weight: 700;
    }
    #vendors .sec-h2 span:nth-of-type(2) {
        margin: 0;
        font-size: 3.2vw;
        font-weight: 400;
    }
    #vendors .vendors-flex {
        position: relative;
        margin: 8.0vw auto 0;
        width: 90%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 1.0vw 1.0vw;
        overflow: hidden;
    }
    #vendors .vendors-flex.close {
        max-height: 40.0vw;
    }
    #vendors .vendors-flex.close::after {
        position: absolute;
        content: "";
        bottom: 0;
        left: 0;
        width: 100%;
        height: 80%;
        background: linear-gradient( to bottom, #fff0, #ffff );
    }
    #vendors .vendors-flex .vendor-name {
        margin: 0;
        padding: 0.6em 0;
        width: calc( ( 100% - 1.1vw ) / 2 );
        font-size: 20px;
        font-weight: 500;
        text-align: center;
        line-height: 1.0;
        background: #f2efe4;
    }
    #vendors .vendors-flex .vendor-name:last-child {
        background: transparent;
    }
    #vendors .vendors-flex.close ~ #vendor-more {
        display: grid;
    }
    #vendors #vendor-more {
        position: relative;
        margin: 8.0vw auto 0;
        display: none;
        place-items: center;
        width: 60%;
        height: auto;
        aspect-ratio: 204 / 40;
        font-size: 3.6vw;
        font-weight: 500;
        text-align: center;
        font-family: inherit;
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 4.0em;
    }
    #vendors #vendor-more::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.5em );
        right: 1.0em;
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: url(../images/icon-arrow-d-red.svg) no-repeat center / contain;
    }

    #worry {
        margin: 0 auto;
        padding: calc( 6.0vw + 8.0vw ) 0 12.0vw;
        width: 100%;
        background: url(../images/worry-bg.webp) no-repeat center / cover;
        clip-path: polygon( 0 0, 100% 6.0vw, 100% 100%, 0 100% );
    }
    #worry .subtitle {
        margin: 0;
        color: #b9a768;
        font-size: 3.2vw;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: calc( 34 / 18 );
    }
    #worry .sec-h2 {
        margin: 0.2em 0 0;
        color: #fff;
        font-size: 6.0vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 59 / 40 );
    }
    #worry .worry-flex {
        margin: 8.0vw auto 0;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6.0vw 0;
    }
    #worry .worry-flex .worry-item {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    #worry .worry-flex .worry-item figure {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;;
        aspect-ratio: 736 / 432;
    }
    #worry .worry-flex .worry-item figure img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: conver;
    }
    #worry .worry-flex .worry-item p {
        margin: 0.5em 0 0;
        padding: 0;
        width: 100%;
        color: #fff;
        font-size: 4.0vw;
        font-weight: 500;
        text-align: center;
        line-height: calc( 34 / 22 );
    }
    #worry .worry-info {
        position: relative;
        margin: 8.0vw auto 0;
        width: 90%;
        height: auto;
        aspect-ratio: 18 / 11;
        background: #fff;
    }
    #worry .worry-info .woman1 {
        position: absolute;
        margin: 0;
        left: 0;
        bottom: 0;
        width: 20.0%;
        height: auto;
    }
    #worry .worry-info .woman1::after {
        position: absolute;
        content: "";
        margin: 0;
        left: 80%;
        top: 5%;
        width: 300%;
        height: auto;
        aspect-ratio: 823 / 120;
        background: url(../images/worry-balloon.webp) no-repeat center / contain;
    }
    #worry .worry-info .woman2 {
        position: absolute;
        margin: 0;
        right: 0;
        bottom: 0;
        width: 25%;
        height: auto;
    }
    #worry .worry-info p {
        position: absolute;
        margin: 0;
        left: 0;
        top: 5%;
        width: 100%;
        font-size: 5.2vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 34 / 22 );
    }
    #worry .worry-info p span {
        color: #d31c14;
    }

    #case {
        margin: 0 auto;
        padding: 12.0vw 0 calc( 6.0vw + 16.0vw );
        width: 100%;
        background: #f5f5f5;
        clip-path: polygon( 0 0, 100% 0, 100% calc( 100% - 6.0vw ), 0 100% );
    }
    #case .subtitle {
        margin: 0;
        color: #d31c14;
        font-size: 3.2vw;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: calc( 34 / 26 );
    }
    #case .sec-h2 {
        margin: 0.2em 0 0;
        font-size: 6.0vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 59 / 40 );
    }
    #case .case-grid {
        margin: 8.0vw auto 0;
        width: 90%;
        display: grid;
        gap: 6.0vw 0;
    }
    #case .case-grid.col3 {
        grid-template-columns: 1fr;
    }
    #case .case-grid.col2 {
        margin-top: 6.0vw;
        width: 90%;
        grid-template-columns: 1fr;
    }
    #case .case-grid .case-item {
        margin: 0;
        padding: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 0 1.0vw rgb( 0, 0, 0, 0.16 );
    }
    #case .case-grid .case-item figure {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;;
        aspect-ratio: 368 / 216;
    }
    #case .case-grid .case-item figure img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: conver;
    }
    #case .case-grid .case-item .head {
        margin: 0;
        padding: 2.0vw 0 0;
        width: 100%;
        background: #222;
    }
    #case .case-grid .case-item .head .no {
        color: #f0db8f;
        font-size: 3.2vw;
        font-weight: 500;
        text-align: center;
    }
    #case .case-grid .case-item .head h3 {
        color: #fff;
        font-size: 4.8vw;
        font-weight: 500;
        text-align: center;
        line-height: calc( 26 / 22 );
    }
    #case .case-grid .case-item .triangle {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 368 / 24;
        background: #222;
        clip-path: polygon( 0 0, 100% 0, 50% 100% );
    }
    #case .case-grid .case-item p {
        display: grid;
        place-items: center;
        margin: 0;
        padding: 0 0 0.5em;
        color: #d31c14;
        font-size: 6.0vw;
        font-weight: 700;
        text-align: center;
    }
    #case .case-grid.col2 .case-item:nth-child(2) p {
        font-size: 4.8vw;
    }
    #case > p {
        margin: 2.0em 0 0;
        font-size: 3.2vw;
        font-weight: 500;        
        text-align: center;
    }

    #point {
        margin: -6.0vw auto 0;
        padding: 24.0vw 0 12.0vw;
        width: 100%;
        z-index: 0;
    }
    #point > .balloon {
        position: absolute;
        top: -5.0vw;
        left: 50%;
        margin: 0;
        padding: 0.5em 2.0em;
        width: max-content;
        color: #fff;
        font-size: 5.6vw;
        font-weight: 700;
        text-align: center;
        line-height: 1.2;
        background: #d31c14;
        border-radius: 4.0em;
        translate: -50% 0;
    }
    #point > .balloon span {
        color: #f0db8f
    }
    #point > .balloon::after {
        position: absolute;
        content: "";
        top: 100%;
        left: calc( 50% - 10px );
        width: 20px;
        height: 20px;
        background: #d31c14;
        clip-path: polygon( 0 0, 100% 0, 50% 100% );
    }
    #point .subtitle {
        margin: 0;
        color: #d31c14;
        font-size: 3.2vw;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: calc( 34 / 26 );
    }
    #point .sec-h2 {
        margin: 0.2em 0 0;
        font-size: 6.0vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 59 / 40 );
    }
    #point .point-grid {
        margin: 8.0vw auto 0;
        width: 90%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 6.0vw 0;
    }
    #point .point-grid .point-item {
        margin: 0;
        width: 100%;
    }
    #point .point-grid .point-item .head {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 520 / 86;
        display: flex;
    }
    #point .point-grid .point-item .head .no {
        margin: 0;
        width: 17%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: 1.0;
        background: #d31c14;
    }
    #point .point-grid .point-item .head .no div:nth-child(1) {
        font-size: 2.8vw;
    }
    #point .point-grid .point-item .head .no div:nth-child(2) {
        font-size: 4.8vw;
    }
    #point .point-grid .point-item .head h3 {
        margin: 0;
        padding: 0 0.5em;
        width: 83%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        color: #fff;
        font-size: 4.0vw;
        font-weight: 700;
        text-align: center;
        background: #222;
    }
    #point .point-grid .point-item .head figure {
        margin: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 520 / 293;
    }
    #point .point-grid .point-item p {
        margin: 0;
        padding: 1.0em;
        width: 100%;
        font-size: 3.6vw;
        font-weight:400;
        line-height: calc( 23 / 16 );
        background: #f2efe4;
    }

    #flow {
        margin: 0 auto;
        padding: 12.0vw 0 calc( 6.0vw + 24.0vw );
        width: 100%;
        background: url(../images/flow-bg.webp) no-repeat center left / cover;
        z-index: 1;
    }
    #flow .subtitle {
        margin: 0;
        color: #fff;
        font-size: 3.2vw;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: calc( 34 / 26 );
    }
    #flow .sec-h2 {
        margin: 0.2em 0 0;
        color: #fff;
        font-size: 6.0vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 59 / 40 );
    }
    #flow .flow-grid {
        margin: 16.0vw auto 0;
        width: 80%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12.0vw 0;
    }
    #flow .flow-grid .flow-item {
        position: relative;
        margin: 0;
        padding: 8.0vw 4.0vw 4.0vw;
        width: 100%;
        background: #fff;
    }
    #flow .flow-grid .flow-item .icon {
        margin: 0 auto;
        width: 90px;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    #flow .flow-grid .flow-item .icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #flow .flow-grid .flow-item .mark {
        position: absolute;
        top: 5%;
        right: 5%;
        width: 23%;
        height: auto;
    }
    #flow .flow-grid .flow-item h3 {
        margin: 0.5em auto 0;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 26 / 22 );
    }
    #flow .flow-grid .flow-item p {
        margin: 1.0em auto 0;
        font-size: 3.6vw;
        font-weight: 400;
        text-align: left;
        line-height: calc( 23 / 16 );
    }
    #flow .flow-grid .flow-item div {
        margin: 0 auto;
    }
    #flow .flow-grid .flow-item div a {
        display: block;
        margin: 0 auto;
    }
    #flow .flow-grid .flow-item div .btn-line {
        width: 90%;
    }
    #flow .flow-grid .flow-item .no {
        position: absolute;
        top: 0;
        left: 50%;
        display: grid;
        place-items: center;
        margin: 0;
        padding: 0;
        width: 16.0vw;
        height: auto;
        aspect-ratio: 1 / 1;
        color: #fff;
        font-size: 5.2vw;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: 1.0;
        background: #222;
        border-radius: 100%;
        translate: -50% -50%;
    }

    #cost {
        margin: -20.0vw auto 0;
        padding: 0 0 4.0vw;
        width: 100%;
        background: #f5f5f5;
        z-index: 0;
    }
    #cost .cost-wrap {
        margin: 0 auto;
        padding: calc( 6.0vw + 16.0vw ) 0 0;
        width: 90%;
        background: #fff;
    }
    #cost .subtitle {
        margin: 0;
        color: #d31c14;
        font-size: 3.2vw;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: calc( 34 / 26 );
    }
    #cost .sec-h2 {
        margin: 0.2em 0 0;
        font-size: 6.0vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 59 / 40 );
    }
    #cost .cost-box {
        margin: 6.0vw auto 0;
        padding: 0;
        width: 90%;
        height: auto;
        aspect-ratio: 500 / 91;
        display: flex;
        border: 1px solid #e3e3e3;
    }
    #cost .cost-box .title {
        display: grid;
        place-items: center;
        margin: 0;
        padding: 0;
        width: 21%;
        height: 100%;
        color: #fff;
        font-size: 3.2vw;
        font-weight: 700;
        text-align: center;
        background: #222;
    }
    #cost .cost-box .price {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
        width: 79%;
        height: 100%;
        background: #fff;
    }
    #cost .cost-box .price span:nth-of-type(1) {
        display: inline-block;
        margin: 0;
        padding: 0.1em 0.4em;
        font-size: 2.8vw;
        font-weight: 700;
        border: 1px solid #222;
    }
    #cost .cost-box .price span:nth-of-type(2) {
        display: inline-block;
        margin: 0 0 0 0.2em;
        padding: 0;
        font-size: 6.0vw;
        font-weight: 700;
    }
    #cost .cost-box .price span:nth-of-type(3) {
        display: inline-block;
        margin: 0;
        padding: 0.8em 0 0;
        font-size: 2.8vw;
        font-weight: 700;
    }
    #cost .cost-wrap > p {
        margin: 1.0em 0 0;
        padding: 0;
        font-size: 3.2vw;
        font-weight: 500;
        text-align: center;
    }
    #cost .cost-msg {
        position: relative;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 1;
    }
    #cost .cost-msg .txt {
        position: absolute;
        top: 30.0%;
        left: 20.0%;
        width: 75.0%;
        height: auto;
        margin: 0;
        padding: 0.8em 0;
        color: #fff;
        font-size: 4.0vw;
        font-weight: 700;
        text-align: center;
        line-height: 1.5;
        background: #d31c14;
        border-radius: 16px;
    }
    #cost .cost-msg .txt span {
        color: #f0db8f;
    }
    #cost .cost-msg .woman {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 35%;
        height: auto;
        aspect-ratio: 176 / 160;
    }

    #faq {
        margin: 0 auto;
        padding: 12.0vw 0;
        width: 100%;
    }
    #faq .subtitle {
        margin: 0;
        color: #d31c14;
        font-size: 3.2vw;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: calc( 34 / 26 );
    }
    #faq .sec-h2 {
        margin: 0.2em 0 0;
        font-size: 6.0vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 59 / 40 );
    }
    #faq .faq-item {
        margin: 0 auto;
        padding: 5.0vw 0;
        width: 90%;
        border-bottom: 1px solid #ccc;
    }
    #faq .faq-item .faq-q {
        position: relative;
        margin: 0;
        padding: 0 0 0 3.0em;
        width: 100%;
        font-size: 4.0vw;
        font-weight: 700;
    }
    #faq .faq-item .faq-q::before {
        position: absolute;
        content: "Q";
        display: grid;
        place-items: center;
        top: 0;
        left: 0;
        width: 6.0vw;
        height: auto;
        aspect-ratio: 1 / 1;
        color: #fff;
        font-size: 3.6vw;
        font-weight: 600;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: 1.0;
        background: #d31c14;
        border-radius: 100%;
    }
    #faq .faq-item .faq-a {
        position: relative;
        margin: 2.0vw 0 0;
        padding: 0 0 0 3.0em;
        width: 100%;
        font-size: 3.6vw;
        font-weight: 500;
    }
    #faq .faq-item .faq-a::before {
        position: absolute;
        content: "A";
        display: grid;
        place-items: center;
        top: 0;
        left: 0;
        width: 6.0vw;
        height: auto;
        aspect-ratio: 1 / 1;
        color: #fff;
        font-size: 3.6vw;
        font-weight: 600;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: 1.0;
        background: #222;
        border-radius: 100%;
    }

    #message {
        margin: 0 auto;
        padding: 12.0vw 0;
        width: 100%;
        background: url(../images/message-bg.webp) no-repeat center / cover;
    }
    #message .subtitle {
        margin: 0;
        color: #fff;
        font-size: 3.2vw;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: calc( 34 / 26 );
    }
    #message .sec-h2 {
        margin: 0.2em 0 0;
        color: #fff;
        font-size: 6.0vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 59 / 40 );
    }
    #message > p {
        margin: 1.5em auto 0;
        padding: 0;
        width: 90%;
        color: #fff;
        font-size: 3.6vw;
        font-weight: 500;
        text-align: center;
        line-height: calc( 30 / 16 );
    }
    #message > p.signature {
        font-size: 4.0vw;
    }

    .cta {
        margin: 0 auto;
        padding: 8.0vw 0 0;
        width: 100%;
        background: #f5f5f5;
    }
    .cta .cta-h2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0 1.0vw;
    }
    .cta .cta-h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0.2em 0.6em;
        color: #fff;
        font-size: 4.8vw;
        font-weight: 700;
        line-height: 1.0;
        background: #d31c14;
    }
    .cta .cta-h2 span:nth-of-type(2) {
        font-size: 5.6vw;
        font-weight: 700;
    }
    .cta .cta-figs {
        position: relative;
        margin: 4.0vw auto 0;
        padding: 0;
        width: 96%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        z-index: 1;
    }
    .cta .cta-figs .cta-fig {
        position: relative;
        margin: 0;
        padding: 0;
        width: 33%;
    }
    .cta .cta-figs .cta-fig figure {
        margin: 0;
        width: 100%;
        height: auto
    }
    .cta .cta-figs .cta-fig figure img {
        scale: 1.24 1.24;
    }
    .cta .cta-figs .cta-fig .txt {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 12.0vw 0 0;
    }
    .cta .cta-figs .cta-fig .txt .txt1 {
        margin: 0
        width: 100%;
        color: #d31c14;
        font-size: 4.8vw;
        font-weight: 900;
        text-align: center;
        line-height: calc( 41 / 40 );
    }
    .cta .cta-figs .cta-fig .txt .txt1 span {
        display: inline-block;
        transform-origin: right bottom;
        transform: scale( 1.4, 1.4 );
    }
    .cta .cta-figs .cta-fig .txt .txt2 {
        margin: 0
        width: 100%;
        font-size: 3.6vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 32 / 27 );
    }
    .cta .cta-box {
        position: relative;
        margin: -8.0vw auto 0;
        padding: 0;
        width: 100%;
        height: auto;
        background: linear-gradient( to bottom, #383838, #000 );
        z-index: 3;
    }
    .cta .cta-box .cta-wrap {
        position: relative;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
    .cta .cta-box .cta-head {
        position: absolute;
        top: 0;
        left: 5%;
        margin: 0;
        padding: 0.5em 0;
        width: 90%;
        color: #fff;
        font-size: 4.0vw;
        font-weight: 500;
        text-align: center;
        line-height: calc( 35 / 24 );
        background: #a88e2f;
    }
    .cta .cta-box .cta-btns {
        position: absolute;
        bottom: 10%;
        left: 0;
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4.0vw 0;
    }
    .cta .cta-box .cta-btns .cta-tel {
        display: block;
        margin: 0;
        padding: 0;
        width: 80.0%;
        height: auto;
    }
    .cta .cta-box .cta-btns .cta-line {
        display: block;
        margin: 0;
        padding: 0;
        width: 80.0%;
        height: auto;
    }

    #contact {
        margin: 0 auto;
        padding: 12.0vw 0;
        width: 100%;
        background: #f5f5f5;
    }
    #contact .subtitle {
        margin: 0;
        color: #d31c14;
        font-size: 3.2vw;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: calc( 34 / 26 );
    }
    #contact .sec-h2 {
        margin: 0.2em 0 0;
        font-size: 6.0vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 59 / 40 );
    }
    #contact .contact-form {
        margin: 8.0vw auto 0;
        padding: 4.0vw 4.0vw 8.0vw;
        width: 90%;
        background: #fff;
    }
    #contact .contact-form .contact-input {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.0vw 0;
    }
    #contact .contact-form .contact-input + .contact-input {
        margin-top: 6.0vw;
    }
    #contact .contact-form .contact-input label {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0 2.0vw;
        margin: 0;
        padding:  0;
        width: 100%;
        font-size: 3.6vw;
        font-weight: 700;
    }
    #contact .contact-form .contact-input label::after {
        content: "任意";
        color: #bebebe;
        font-size: 15px;
        font-weight: 500;
    }
    #contact .contact-form .contact-input label.required::after {
        content: "必須";
        color: #d31c14;
        font-size: 3.2vw;
        font-weight: 500;
    }
    #contact .contact-form .contact-input .ws-input {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    #contact .contact-form .contact-input .ws-input :is(input[type="text"],input[type="tel"],input[type="email"],textarea) {
        display: block;
        margin: 0;
        padding: 0.5em 1.0em;
        width: 100%;
        font-size: max( 16px, 3.6vw );
        font-family: inherit;
        background: #f7f7f7;
        border: 0;
    }
    #contact .contact-form .contact-input .ws-input :is(input[type="text"],input[type="tel"],input[type="email"],textarea) ~ .ws-error {
        display: none;
    }
    #contact .contact-form .contact-input .ws-input :is(input[type="text"],input[type="tel"],input[type="email"],textarea).error ~ .ws-error {
        display: block;
        color: #d31c14;
        font-size: 3.6vw;
        font-weight: 500;
    }
    #contact .contact-form .contact-input .ws-input textarea {
        height: 10.0em;
    }
    #contact .privacy-policy-wrap {
        position: relative;
        margin: 6.0vw auto 0;
        padding: 0;
        width: 100%;
        max-height: 80.0vw;
        background: #fff;
        border: 1px solid #ccc;
        overflow: hidden;
    }
    #contact .privacy-policy-wrap::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 4.0vw;
        background: linear-gradient( to bottom, #ffff 20%, #fff0 100% );
        z-index: 1;
    }
    #contact .privacy-policy-wrap::after {
        position: absolute;
        content: "";
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4.0vw;
        background: linear-gradient( to top, #ffff 20%, #fff0 100% );
        z-index: 1;
    }
    #contact .privacy-policy {
        position: relative;
        margin: 0;
        padding: 6.0vw 4.0vw;
        width: 100%;
        height: auto;
        max-height: 80.0vw;
        overflow-y: auto;
    }
    #contact .privacy-policy p {
        margin: 1.5em 0 0;
        font-size: 3.6vw;
        font-weight: 400;
    }
    #contact .privacy-policy p.title {
        margin-top: 2.0em;
        margin-bottom: 1.5em;
        font-size: 4.0vw;
        font-weight: 700;
    }
    #contact .privacy-policy p:first-child {
        margin-top: 0;
    }
    #contact .privacy-policy p.head {
        margin-bottom: 0.5em;
        font-size: 3.6vw;
        font-weight: 700;
    }
    #contact .privacy-policy p.head + p:not(.head) {
        margin-top: 0.5em;
    }
    #contact .ws-agree {
        margin: 6.0vw auto 0;
    }
    #contact .ws-agree label {
        display: block;
        margin: 0 auto;
        width: max-content;
        font-size: 3.6vw;
    }
    #contact .ws-submit {
        margin: 6.0vw auto 0;
    }
    #contact .ws-submit button[type="submit"] {
        position: relative;
        display: grid;
        place-items: center;
        margin: 0 auto;
        width: 80%;
        height: auto;
        aspect-ratio: 456 / 80;
        color: #fff;
        font-size: 4.0vw;
        font-weight: 700;
        font-family: inherit;
        text-align: center;
        line-height: 1.0;
        background: linear-gradient( to bottom, #ed5952, #a2140d );
        border: 0;
        border-radius: 4.0em;
        transition: filter 0.3s ease-out, opacity 0.3s ease-out;
    }
    #contact .ws-submit button[type="submit"]:disabled {
        filter: grayscale(100%);
        opacity: 0.5;
        cursor: auto;
    }
    #contact .ws-submit button[type="submit"]::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.5em );
        right: 1.0em;
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: url(../images/icon-arrow-r-white.svg) no-repeat center / contain;
    }

    #company {
        margin: 0 auto;
        padding: 12.0vw 0;
        width: 100%;
    }
    #company .company-flex {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #company .company-flex .company-l {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    #company .company-flex .company-r {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    #company .subtitle {
        margin: 0;
        color: #d31c14;
        font-size: 3.2vw;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: calc( 34 / 26 );
    }
    #company .sec-h2 {
        margin: 0.2em 0 0;
        font-size: 6.0vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 59 / 40 );
    }
    #company .company-table {
        margin: 8.0vw auto 0;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        border-top: 1px solid #ccc;
    }
    #company .company-table dt {
        margin: 0;
        padding: 4.0vw 0 1.0vw;
        width: 100%;
        font-size: 3.6vw;
        font-weight: 700;
    }
    #company .company-table dd {
        margin: 0;
        padding: 1.0vw 0 4.0vw;
        width: 100%;
        font-size: 3.2vw;
        font-weight: 400;
        border-bottom: 1px solid #ccc;
    }

    .ws-goto-top {
        bottom: calc( 10px + 100vw * 318 / 520 / 3 );
    }

    .fixed-btns {
        position: fixed;
        left: 0;
        bottom: 0;
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        z-index: 10;
    }
    .fixed-btns .fixed-btn {
        display: block;
        margin: 0;
        padding: 0;
        width: calc( 100% / 3 );
        height: auto;
        aspect-ratio: 520 / 318;
    }
    .fixed-btns .fixed-btn .pic {
        width: 100%;
        height: 100%;
    }
    .fixed-btns .fixed-btn .pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    footer {
        margin: 0 auto;
        padding: 0 0 calc( 100vw * 318 / 520 / 3 );
        width: 100%;
        background: #e2e2e2;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 1.0em 0;
        width: 100%;
        font-size: 3.6vw;
        font-weight: 500;
        text-align: center;
    }

}


/**
 * PC用設定
 */
@media ( width >= 768px ) {

    header {
        height: 152px;
    }
    header .header-wrap {
        margin: 0 auto;
        padding: 0 0 0 20px;
        width: 100%;
        max-width: 1920px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .header-logo {
        padding: 0;
        width: max-content;
        height: 100%;
        flex: 0 0 auto;
    }
    header .header-logo a {
        display: block;
        width: max-content;
        height: 100%;
    }
    header .header-logo a h1 {
        display: grid;
        place-items: center;
        width: max-content;
        height: 100%;
        font-size: 56px;
        font-weight: 900;
    }
    header .header-btns {
        width: auto;
        height: 100%;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
        gap: 0;
    }
    header .header-btns > li {
        margin: 0;
        padding: 0;
        width: auto;
        height: 100%;
        list-style: none;
    }
    header .header-btns > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0;
    }
    header .header-btns > li.header-btn-tel {
        margin: 0 32px 0 0;
        padding: 0;
        display: grid;
        place-items: center;
    }
    header .header-btns > li.header-btn-tel > a {
        display: block;
        padding: 0;
        margin: 0;
        width: 416px;
        height: auto;
        aspect-ratio: 416 / 84;
    }
    header .header-btns > li.header-btn-tel > a figure {
        display: block;
        width: 100%;
        height: 100%;
    }
    header .header-btns > li.header-btn-tel > a figure img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    header .header-btns > li.header-btn-email > a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 208px;
        height: 100%;
        color: #fff;
        font-size: 23px;
        font-weight: 700;
        background: linear-gradient( to bottom, #383838, #000 );
    }
    header .header-btns > li.header-btn-line > a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 208px;
        height: 100%;
        color: #fff;
        font-size: 23px;
        font-weight: 700;
        background: linear-gradient( to bottom, #38d000, #167200 );
    }
    header .header-btns > li.header-btn-email > a figure,
    header .header-btns > li.header-btn-line > a figure {
        width: 64p;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    header .header-btns > li.header-btn-email > a figure img,
    header .header-btns > li.header-btn-line > a figure img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    header .header-sp-menu {
        display: none;
    }

    #mv {
        margin: 0 auto;
        width: 100%;
        z-index: 1;
    }
    #mv .mv-bg {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        max-height: 900px;
        aspect-ratio: 1333 / 900;
    }
    #mv .mv-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #mv .mv-box {
        position: absolute;
        top: 20%;
        left: 20%;
        margin: 0;
        padding: 0;
        width: 60%;
        height: 60%;
    }
    #mv .mv-woman {
        position: absolute;
        bottom: 0;
        right: max( 5.0vw, calc( 50.0vw - 600px ) );
        margin: 0;
        padding: 0;
        width: auto;
        height: calc( ( 100% - 152px ) * 0.957 );
        aspect-ratio: 704 / 1432;
    }
    #mv .mv-box {
        position: absolute;
        top: calc( 152px + ( 100% - 152px ) * 0.043 );
        left: 50%;
        margin: 0;
        padding: 0;
        width: 90%;
        max-width: 1200px;
        height: calc( ( 100% - 152px ) * 0.957 );
        translate: -50% 0;
    }
    #mv .mv-box .mv-wrap {
        margin: 0;
        padding: 0;
        width: 85%;
        height: 100%;
    }
    #mv .mv-box .txt1 {
        margin: 0 auto;
        width: 100%;
        color: #fff;
        font-size: calc( 40 * min( 90vw, 1200px ) / 1200 );
        font-weight: 900;
        text-align: center;
        line-height: calc( 45 / 40 );
    }
    #mv .mv-box .txt2 {
        margin: 0.2em auto 0.5em;
        width: 100%;
        color: #fff;
        font-size: calc( 51 * min( 90vw, 1200px ) / 1200 );
        font-weight: 900;
        text-align: center;
        line-height: calc( 58 / 51 );
    }
    #mv .mv-box .txt2 span {
        display: inline-block;
        padding: 0.1em 0.2em;
        background: #580703;
    }
    #mv .mv-box .balloon {
        margin: 0 auto;
        padding: 0;
        width: 51.3%;
        height: auto;
    }
    #mv .mv-box .txt3 {
        margin: 0 auto;
        width: 100%;
        color: #fff;
        font-size: calc( 63 * min( 90vw, 1200px ) / 1200 );
        font-weight: 900;
        text-align: center;
        line-height: calc( 72 / 63 );
    }
    #mv .mv-box .txt3 span {
        color: #f0db8f;
    }

    #mv-cta {
        margin: calc( -320 * min( 90vw, 1200px ) / 1200 - min( 0px, calc( 100vw - 1200px ) * 0.12 ) )  auto 0;
        padding: 0;
        width: 81%;
        max-width: 1080px;
        z-index: 2;
    }
    #mv-cta .mv-cta-figs {
        margin: 0 auto 0 0;
        padding: 0 calc( 40 * min( 81vw, 1080px ) / 1080 );
        width: 79.0%;
        max-width: 1080px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    #mv-cta .mv-cta-figs .mv-cta-fig {
        position: relative;
        margin: 0;
        padding: 0;
        width: 33%;
    }
    #mv-cta .mv-cta-figs .mv-cta-fig figure {
        margin: 0;
        width: 100%;
        height: auto
    }
    #mv-cta .mv-cta-figs .mv-cta-fig figure img {
        scale: 1.24 1.24;
    }
    #mv-cta .mv-cta-figs .mv-cta-fig .txt {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 28% 0 0;
    }
    #mv-cta .mv-cta-figs .mv-cta-fig .txt .txt1 {
        margin: 0
        width: 100%;
        color: #d31c14;
        font-size: calc( 40 * min( 81vw, 1080px ) / 1080 );
        font-weight: 900;
        text-align: center;
        line-height: calc( 41 / 40 );
    }
    #mv-cta .mv-cta-figs .mv-cta-fig .txt .txt1 span {
        display: inline-block;
        /* font-size: calc( 55 * min( 81vw, 1080px ) / 1080 ); */
        transform-origin: right bottom;
        transform: scale( 1.4, 1.4 );
    }
    #mv-cta .mv-cta-figs .mv-cta-fig .txt .txt2 {
        margin: 0
        width: 100%;
        font-size: calc( 27 * min( 81vw, 1080px ) / 1080 );
        font-weight: 700;
        text-align: center;
        line-height: calc( 32 / 27 );
    }
    #mv-cta .mv-cta-box {
        position: relative;
        margin: -10% auto 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 1080 / 212;
        background: linear-gradient( to bottom, #383838, #000 );
        z-index: 3;
    }
    #mv-cta .mv-cta-box .mv-cta-head {
        position: absolute;
        top: 0;
        left: 20%;
        margin: 0;
        padding: 0.5em 0;
        width: 60%;
        color: #fff;
        font-size: calc( 24 * min( 81vw, 1080px ) / 1080 );
        font-weight: 500;
        text-align: center;
        line-height: calc( 35 / 24 );
        background: #a88e2f;
    }
    #mv-cta .mv-cta-box .mv-cta-btns {
        position: absolute;
        bottom: 18%;
        left: 0;
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 calc( 40 * min( 81vw, 1080px ) / 1080 );
    }
    #mv-cta .mv-cta-box .mv-cta-btns .mv-cta-tel {
        display: block;
        margin: 0;
        padding: 0;
        width: 40.0%;
        height: auto;
    }
    #mv-cta .mv-cta-box .mv-cta-btns .mv-cta-line {
        display: block;
        margin: 0;
        padding: 0;
        width: 42.2%;
        height: auto;
    }

    main {
        margin: 0 auto;
        width: 100%;
    }

    #insident {
        margin: -3.0vw auto 0;
        padding: calc( 3.0vw + 60px ) 0 calc( 6.0vw + 20px );
        width: 100%;
        z-index: 0;
        background: #f5f5f5;
        clip-path: polygon( 0 0, 100% 0, 100% calc( 100% - 6.0vw ), 0 100% );
    }
    #insident .subtitle {
        margin: 0;
        font-size: 26px;
        font-weight: 700;
        text-align: center;
        line-height: calc( 34 / 26 );
    }
    #insident .sec-h2 {
        margin: 0.2em 0 0;
        font-size: 40px;
        font-weight: 700;
        text-align: center;
        line-height: calc( 59 / 40 );
    }
    #insident .sec-h2 span {
        color: #d31c14;
    }
    #insident .insident-box {
        position: relative;
        margin: 33px auto 0;
        padding: 48px;
        width: 90%;
        max-width: 1080px;
        background: #fff;
        border: 5px solid #e3e3e3;
        z-index: 1;
    }
    #insident .insident-box::after {
        position: absolute;
        content: "";
        right: 0;
        bottom: 0;
        width: 15%;
        height: auto;
        aspect-ratio: 368 / 538;
        translate: 50% 0;
        background: url(../images/insident-woman1.webp) no-repeat center / contain;
        z-index: 2;
    }
    #insident .insident-box .insident-list {
        display: grid;
        grid-template-columns: 52% 46%;
        list-style: none;
        gap: 16px 0;
    }
    #insident .insident-box .insident-list li {
        position: relative;
        margin: 0;
        padding: 0 0 0 2.5em;
        font-size: 20px;
        font-weight: 500;
        line-height: 1.5;
    }
    #insident .insident-box .insident-list li span {
        color: #1c4e80;
    }
    #insident .insident-box .insident-list li::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 1.6em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #1d4e80;
    }
    #insident .insident-box .insident-list li::after {
        position: absolute;
        content: "";
        top: 0.5em;
        left: 0.5em;
        width: 0.5em;
        height: auto;
        aspect-ratio: 2 / 1;
        border-left: 3px solid #fff;
        border-bottom: 3px solid #fff;
        border-radius: 2px;
        rotate: -40deg;
    }
    #insident .txt1 {
        margin: 1.0em 0 0;
        font-size: 26px;
        font-weight: 700;
        text-align: center;
        line-height: calc( 34 / 26 );
    }
    #insident .txt2 {
        margin: 0.2em 0 0;
        font-size: 32px;
        font-weight: 700;
        text-align: center;
        line-height: calc( 34 / 32 );
    }
    #insident .txt2 span {
        color: #d31c14;
    }

    #vendors {
        margin: 0 auto;
        padding: 20px 0 130px;
        width: 100%;
    }
    #vendors .subtitle {
        margin: 0;
        color: #d31c14;
        font-size: 18px;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: calc( 34 / 18 );
    }
    #vendors .sec-h2 {
        margin: 0.2em 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #vendors .sec-h2 span:nth-of-type(1) {
        margin: 0;
        font-size: 34px;
        font-weight: 700;
    }
    #vendors .sec-h2 span:nth-of-type(2) {
        margin: 0;
        font-size: 18px;
        font-weight: 400;
    }
    #vendors .vendors-flex {
        position: relative;
        margin: 60px auto 0;
        width: 90%;
        max-width: 1080px;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 8px 8px;
        overflow: hidden;
    }
    #vendors .vendors-flex.close {
        max-height: 200px;
    }
    #vendors .vendors-flex.close::after {
        position: absolute;
        content: "";
        bottom: 0;
        left: 0;
        width: 100%;
        height: 80%;
        background: linear-gradient( to bottom, #fff0, #ffff );
    }
    #vendors .vendors-flex .vendor-name {
        margin: 0;
        padding: 0.6em 0;
        width: calc( 100% / 4 - 24px / 3 );
        font-size: 20px;
        font-weight: 500;
        text-align: center;
        line-height: 1.0;
        background: #f2efe4;
    }
    #vendors .vendors-flex .vendor-name:last-child {
        background: transparent;
    }
    #vendors .vendors-flex.close ~ #vendor-more {
        display: grid;
    }
    #vendors #vendor-more {
        position: relative;
        margin: 60px auto 0;
        display: none;
        place-items: center;
        width: 204px;
        height: auto;
        aspect-ratio: 204 / 40;
        font-size: 16px;
        font-weight: 500;
        text-align: center;
        font-family: inherit;
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 4.0em;
    }
    #vendors #vendor-more::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.5em );
        right: 1.0em;
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: url(../images/icon-arrow-d-red.svg) no-repeat center / contain;
    }

    #worry {
        margin: 0 auto;
        padding: calc( 6.0vw + 20px ) 0 80px;
        width: 100%;
        background: url(../images/worry-bg.webp) no-repeat center / cover;
        clip-path: polygon( 0 0, 100% 6.0vw, 100% 100%, 0 100% );
    }
    #worry .subtitle {
        margin: 0;
        color: #b9a768;
        font-size: 18px;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: calc( 34 / 18 );
    }
    #worry .sec-h2 {
        margin: 0.2em 0 0;
        color: #fff;
        font-size: 34px;
        font-weight: 700;
        text-align: center;
        line-height: calc( 59 / 40 );
    }
    #worry .worry-flex {
        margin: 60px auto 0;
        width: 90%;
        max-width: 1200px;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: center;
        gap: 33px 48px;
    }
    #worry .worry-flex .worry-item {
        margin: 0;
        padding: 0;
        width: calc( ( 100% - 48px * 2 ) / 3 );
    }
    #worry .worry-flex .worry-item figure {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;;
        aspect-ratio: 736 / 432;
    }
    #worry .worry-flex .worry-item figure img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: conver;
    }
    #worry .worry-flex .worry-item p {
        margin: 0.5em 0 0;
        padding: 0;
        width: 100%;
        color: #fff;
        font-size: 22px;
        font-weight: 500;
        text-align: center;
        line-height: calc( 34 / 22 );
    }
    #worry .worry-info {
        position: relative;
        margin: 60px auto 0;
        width: 90%;
        max-width: 1080px;
        height: auto;
        aspect-ratio: 1080 / 167;
        background: #fff;
    }
    #worry .worry-info .woman1 {
        position: absolute;
        margin: 0;
        left: 1%;
        bottom: 0;
        width: 13.5%;
        height: auto;
    }
    #worry .worry-info .woman1::after {
        position: absolute;
        content: "";
        margin: 0;
        left: 80%;
        top: 5%;
        width: 280%;
        height: auto;
        aspect-ratio: 823 / 120;
        background: url(../images/worry-balloon.webp) no-repeat center / contain;
    }
    #worry .worry-info .woman2 {
        position: absolute;
        margin: 0;
        right: 0%;
        bottom: 0;
        width: 17%;
        height: auto;
    }
    #worry .worry-info p {
        position: absolute;
        margin: 0;
        left: 0;
        top: 50%;
        width: 100%;
        font-size: calc( 22 * min( 90vw, 1080px ) / 1080 );;
        font-weight: 700;
        text-align: center;
        line-height: calc( 34 / 22 );
    }
    #worry .worry-info p span {
        color: #d31c14;
    }

    #case {
        margin: 0 auto;
        padding: 80px 0 calc( 6.0vw + 60px );
        width: 100%;
        background: #f5f5f5;
        clip-path: polygon( 0 0, 100% 0, 100% calc( 100% - 6.0vw ), 0 100% );
    }
    #case .subtitle {
        margin: 0;
        color: #d31c14;
        font-size: 18px;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: calc( 34 / 26 );
    }
    #case .sec-h2 {
        margin: 0.2em 0 0;
        font-size: 34px;
        font-weight: 700;
        text-align: center;
        line-height: calc( 59 / 40 );
    }
    #case .case-grid {
        margin: 60px auto 0;
        width: 90%;
        max-width: 1200px;
        display: grid;
        gap: 40px 48px;
    }
    #case .case-grid.col3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
    #case .case-grid.col2 {
        margin-top: 40px;
        width: calc( 48px + ( ( 100% - 48px * 2 ) * 2 / 3 ) );
        max-width: 784px;
        grid-template-columns: 1fr 1fr;
    }
    #case .case-grid .case-item {
        margin: 0;
        padding: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 0 6px rgb( 0, 0, 0, 0.16 );
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 4;
        gap: 0;
    }
    #case .case-grid .case-item figure {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;;
        aspect-ratio: 368 / 216;
    }
    #case .case-grid .case-item figure img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: conver;
    }
    #case .case-grid .case-item .head {
        margin: 0;
        padding: calc( 16 * min( 90vw, 1200px ) / 1200 ) 0 0;
        width: 100%;
        background: #222;
    }
    #case .case-grid .case-item .triangle {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 368 / 24;
        background: #222;
        clip-path: polygon( 0 0, 100% 0, 50% 100% );
    }
    #case .case-grid .case-item .head .no {
        color: #f0db8f;
        font-size: calc( 18 * min( 90vw, 1200px ) / 1200 );
        font-weight: 500;
        text-align: center;
    }
    #case .case-grid .case-item .head h3 {
        color: #fff;
        font-size: calc( 22 * min( 90vw, 1200px ) / 1200 );
        font-weight: 500;
        text-align: center;
        line-height: calc( 26 / 22 );
    }
    #case .case-grid .case-item p {
        display: grid;
        place-items: center;
        margin: 0;
        padding: 0 0 0.5em;
        color: #d31c14;
        font-size: calc( 36 * min( 90vw, 1200px ) / 1200 );
        font-weight: 700;
        text-align: center;
    }
    #case .case-grid.col2 .case-item:nth-child(2) p {
        font-size: calc( 22 * min( 90vw, 1200px ) / 1200 );
    }
    #case > p {
        margin: 2.0em 0 0;
        font-size: 16px;
        font-weight: 500;        
        text-align: center;
    }

    #point {
        margin: 0 auto;
        padding: 40px 0 80px;
        width: 100%;
        z-index: 0;
    }
    #point > .balloon {
        position: absolute;
        top: -3.0vw;
        left: 50%;
        margin: 0;
        padding: 0.5em 4.0em;
        width: max-content;
        color: #fff;
        font-size: 34px;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
        background: #d31c14;
        border-radius: 4.0em;
        translate: -50% -50%;
        z-index: 1;
    }
    #point > .balloon span {
        color: #f0db8f
    }
    #point > .balloon::after {
        position: absolute;
        content: "";
        top: 100%;
        left: calc( 50% - 10px );
        width: 20px;
        height: 20px;
        background: #d31c14;
        clip-path: polygon( 0 0, 100% 0, 50% 100% );
    }
    #point .subtitle {
        margin: 0;
        color: #d31c14;
        font-size: 18px;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: calc( 34 / 26 );
    }
    #point .sec-h2 {
        margin: 0.2em 0 0;
        font-size: 34px;
        font-weight: 700;
        text-align: center;
        line-height: calc( 59 / 40 );
    }
    #point .point-grid {
        margin: 60px auto 0;
        width: 90%;
        max-width: 1080px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 40px;
    }
    #point .point-grid .point-item {
        margin: 0;
        width: 100%;
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 3;
        gap: 0;
    }
    #point .point-grid .point-item .head {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 520 / 86;
        display: flex;
    }
    #point .point-grid .point-item .head .no {
        margin: 0;
        width: 17%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: 1.0;
        background: #d31c14;
    }
    #point .point-grid .point-item .head .no div:nth-child(1) {
        font-size: calc( 18 * min( 90vw, 1080px ) / 1080 );
    }
    #point .point-grid .point-item .head .no div:nth-child(2) {
        font-size: calc( 38 * min( 90vw, 1080px ) / 1080 );
    }
    #point .point-grid .point-item .head h3 {
        margin: 0;
        padding: 0 0.5em;
        width: 83%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        color: #fff;
        font-size: calc( 26 * min( 90vw, 1080px ) / 1080 );
        font-weight: 700;
        text-align: center;
        background: #222;
    }
    #point .point-grid .point-item .head figure {
        margin: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 520 / 293;
    }
    #point .point-grid .point-item p {
        margin: 0;
        padding: 1.0em;
        width: 100%;
        font-size: calc( 16 * min( 90vw, 1080px ) / 1080 );
        font-weight:400;
        line-height: calc( 23 / 16 );
        background: #f2efe4;
    }

    #flow {
        margin: 0 auto;
        padding: 80px 0 calc( 6.0vw + 40px );
        width: 100%;
        background: url(../images/flow-bg.webp) no-repeat center / cover;
        z-index: 1;
    }
    #flow .subtitle {
        margin: 0;
        color: #fff;
        font-size: 18px;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: calc( 34 / 26 );
    }
    #flow .sec-h2 {
        margin: 0.2em 0 0;
        color: #fff;
        font-size: 34px;
        font-weight: 700;
        text-align: center;
        line-height: calc( 59 / 40 );
    }
    #flow .flow-grid {
        margin: 60px auto 0;
        width: 90%;
        max-width: 1200px;
        display: grid;
        grid-template-columns: repeat( 4, 1fr );
        gap: 0 16px;
    }
    #flow .flow-grid .flow-item {
        position: relative;
        margin: 0;
        padding: 48px 16px 16px;
        width: 100%;
        background: #fff;
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 3;
        gap: 12px 0;
    }
    #flow .flow-grid .flow-item .icon {
        margin: 0 auto;
        width: 90px;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    #flow .flow-grid .flow-item .icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #flow .flow-grid .flow-item .mark {
        position: absolute;
        top: 5%;
        right: 5%;
        width: 23%;
        height: auto;
    }
    #flow .flow-grid .flow-item h3 {
        margin: 0 auto;
        font-size: calc( 22 * min( 90vw, 1200px ) / 1200 );
        font-weight: 700;
        text-align: center;
        line-height: calc( 26 / 22 );
    }
    #flow .flow-grid .flow-item p {
        margin: 0 auto;
        font-size: calc( 16 * min( 90vw, 1200px ) / 1200 );
        font-weight: 400;
        text-align: left;
        line-height: calc( 23 / 16 );
    }
    #flow .flow-grid .flow-item div {
        margin: 0 auto;
    }
    #flow .flow-grid .flow-item div a {
        display: block;
        margin: 0 auto;
    }
    #flow .flow-grid .flow-item div .btn-line {
        width: 90%;
    }
    #flow .flow-grid .flow-item .no {
        position: absolute;
        top: 0;
        left: 50%;
        display: grid;
        place-items: center;
        margin: 0;
        padding: 0;
        width: calc( 56 * min( 90vw, 1200px ) / 1200 );
        height: auto;
        aspect-ratio: 1 / 1;
        color: #fff;
        font-size: calc( 26 * min( 90vw, 1200px ) / 1200 );
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: 1.0;
        background: #222;
        border-radius: 100%;
        translate: -50% -50%;
    }

    #cost {
        margin: calc( -6.0vw - 40px ) auto 0;
        padding: 0 0 20px;;
        width: 100%;
        background: #f5f5f5;
        z-index: 0;
    }
    #cost .cost-wrap {
        margin: 0 auto;
        padding: calc( 6.0vw + 40px + 20px ) 0 0;
        width: 90%;
        max-width: 1000px;
        background: #fff;
    }
    #cost .subtitle {
        margin: 0;
        color: #d31c14;
        font-size: 18px;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: calc( 34 / 26 );
    }
    #cost .sec-h2 {
        margin: 0.2em 0 0;
        font-size: 34px;
        font-weight: 700;
        text-align: center;
        line-height: calc( 59 / 40 );
    }
    #cost .cost-box {
        margin: 40px auto 0;
        padding: 0;
        width: 90%;
        max-width: 500px;
        height: auto;
        aspect-ratio: 500 / 91;
        display: flex;
        border: 1px solid #e3e3e3;
    }
    #cost .cost-box .title {
        display: grid;
        place-items: center;
        margin: 0;
        padding: 0;
        width: 21%;
        height: 100%;
        color: #fff;
        font-size: calc( 24 * min( 90vw, 500px ) / 500 );
        font-weight: 700;
        text-align: center;
        background: #222;
    }
    #cost .cost-box .price {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
        width: 79%;
        height: 100%;
        background: #fff;
    }
    #cost .cost-box .price span:nth-of-type(1) {
        display: inline-block;
        margin: 0;
        padding: 0.2em 0.6em;
        font-size: calc( 16 * min( 90vw, 500px ) / 500 );
        font-weight: 700;
        border: 1px solid #222;
    }
    #cost .cost-box .price span:nth-of-type(2) {
        display: inline-block;
        margin: 0 0 0 0.2em;
        padding: 0;
        font-size: calc( 40 * min( 90vw, 500px ) / 500 );
        font-weight: 700;
    }
    #cost .cost-box .price span:nth-of-type(3) {
        display: inline-block;
        margin: 0;
        padding: 1.2em 0 0;
        font-size: calc( 16 * min( 90vw, 500px ) / 500 );
        font-weight: 700;
    }
    #cost .cost-wrap > p {
        margin: 1.0em 0 0;
        padding: 0;
        font-size: calc( 16 * min( 90vw, 500px ) / 500 );
        font-weight: 500;
        text-align: center;
    }
    #cost .cost-msg {
        position: relative;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 1000 / 160;
    }
    #cost .cost-msg .txt {
        position: absolute;
        top: 22.0%;
        left: 25.0%;
        width: 50.0%;
        height: auto;
        margin: 0;
        padding: 0.4em 0;
        color: #fff;
        font-size: calc( 22 * min( 90vw, 500px ) / 500 );
        font-weight: 700;
        text-align: center;
        line-height: calc( 26 / 22 );
        background: #d31c14;
        border-radius: 16px;
    }
    #cost .cost-msg .txt span {
        color: #f0db8f;
    }
    #cost .cost-msg .woman {
        position: absolute;
        bottom: 0;
        left: 16.2%;
        width: 17.6%;
        height: auto;
        aspect-ratio: 176 / 160;
    }

    #faq {
        margin: 0 auto;
        padding: 80px 0;
        width: 100%;
    }
    #faq .subtitle {
        margin: 0;
        color: #d31c14;
        font-size: 18px;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: calc( 34 / 26 );
    }
    #faq .sec-h2 {
        margin: 0.2em 0 0;
        font-size: 34px;
        font-weight: 700;
        text-align: center;
        line-height: calc( 59 / 40 );
    }
    #faq .faq-item {
        margin: 0 auto;
        padding: 30px 0;
        width: 90%;
        max-width: 1000px;
        border-bottom: 1px solid #ccc;
    }
    #faq .faq-item .faq-q {
        position: relative;
        margin: 0;
        padding: 0 0 0 3.0em;
        width: 100%;
        font-size: 16px;
        font-weight: 700;
    }
    #faq .faq-item .faq-q::before {
        position: absolute;
        content: "Q";
        display: grid;
        place-items: center;
        top: 0;
        left: 0;
        width: 32px;
        height: auto;
        aspect-ratio: 1 / 1;
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: 1.0;
        background: #d31c14;
        border-radius: 100%;
    }
    #faq .faq-item .faq-a {
        position: relative;
        margin: 20px 0 0;
        padding: 0 0 0 3.0em;
        width: 100%;
        font-size: 16px;
        font-weight: 500;
    }
    #faq .faq-item .faq-a::before {
        position: absolute;
        content: "A";
        display: grid;
        place-items: center;
        top: 0;
        left: 0;
        width: 32px;
        height: auto;
        aspect-ratio: 1 / 1;
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: 1.0;
        background: #222;
        border-radius: 100%;
    }

    #message {
        margin: 0 auto;
        padding: 80px 0;
        width: 100%;
        background: url(../images/message-bg.webp) no-repeat center / cover;
    }
    #message .subtitle {
        margin: 0;
        color: #fff;
        font-size: 18px;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: calc( 34 / 26 );
    }
    #message .sec-h2 {
        margin: 0.2em 0 0;
        color: #fff;
        font-size: 34px;
        font-weight: 700;
        text-align: center;
        line-height: calc( 59 / 40 );
    }
    #message > p {
        margin: 1.5em auto 0;
        padding: 0;
        width: 90%;
        max-width: 672px;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        text-align: center;
        line-height: calc( 30 / 16 );
    }
    #message > p.signature {
        font-size: 20px;
    }

    .cta {
        margin: 0 auto;
        padding: 40px 0 0;
        width: 100%;
        background: #f5f5f5;
    }
    .cta .cta-h2 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 8px;
    }
    .cta .cta-h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0.2em 0.6em;
        color: #fff;
        font-size: calc( 27 * min( 90vw, 1000px ) / 1000 );
        font-weight: 700;
        line-height: 1.0;
        background: #d31c14;
    }
    .cta .cta-h2 span:nth-of-type(2) {
        font-size: calc( 27 * min( 90vw, 1000px ) / 1000 );
        font-weight: 700;
    }
    .cta .cta-figs {
        position: relative;
        margin: 20px auto 0;
        padding: 0 calc( 60 * min( 90vw, 1000px ) / 1000 );
        width: 90.0%;
        max-width: 1000px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        z-index: 1;
    }
    .cta .cta-figs .cta-fig {
        position: relative;
        margin: 0;
        padding: 0;
        width: 33%;
    }
    .cta .cta-figs .cta-fig figure {
        margin: 0;
        width: 100%;
        height: auto
    }
    .cta .cta-figs .cta-fig figure img {
        scale: 1.24 1.24;
    }
    .cta .cta-figs .cta-fig .txt {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 30% 0 0;
    }
    .cta .cta-figs .cta-fig .txt .txt1 {
        margin: 0
        width: 100%;
        color: #d31c14;
        font-size: calc( 40 * min( 90vw, 1000px ) / 1000 );
        font-weight: 900;
        text-align: center;
        line-height: calc( 41 / 40 );
    }
    .cta .cta-figs .cta-fig .txt .txt1 span {
        display: inline-block;
        transform-origin: right bottom;
        transform: scale( 1.4, 1.4 );
    }
    .cta .cta-figs .cta-fig .txt .txt2 {
        margin: 0
        width: 100%;
        font-size: calc( 27 * min( 90vw, 1000px ) / 1000 );
        font-weight: 700;
        text-align: center;
        line-height: calc( 32 / 27 );
    }
    .cta .cta-box {
        position: relative;
        margin: calc( -120 * min( 90vw, 1000px ) / 1000 ) auto 0;
        padding: 0;
        width: 100%;
        height: auto;
        background: linear-gradient( to bottom, #383838, #000 );
        z-index: 3;
    }
    .cta .cta-box .cta-wrap {
        position: relative;
        margin: 0 auto;
        padding: 0;
        width: 90%;
        max-width: 1000px;
        height: auto;
        aspect-ratio: 1000 / 212;
    }
    .cta .cta-box .cta-head {
        position: absolute;
        top: 0;
        left: 20%;
        margin: 0;
        padding: 0.5em 0;
        width: 60%;
        color: #fff;
        font-size: calc( 24 * min( 90vw, 1000px ) / 1000 );
        font-weight: 500;
        text-align: center;
        line-height: calc( 35 / 24 );
        background: #a88e2f;
    }
    .cta .cta-box .cta-btns {
        position: absolute;
        bottom: 18%;
        left: 0;
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 calc( 40 * min( 90vw, 1000px ) / 1000 );
    }
    .cta .cta-box .cta-btns .cta-tel {
        display: block;
        margin: 0;
        padding: 0;
        width: 40.0%;
        height: auto;
    }
    .cta .cta-box .cta-btns .cta-line {
        display: block;
        margin: 0;
        padding: 0;
        width: 42.2%;
        height: auto;
    }

    #contact {
        margin: 0 auto;
        padding: 80px 0;
        width: 100%;
        background: #f5f5f5;
    }
    #contact .subtitle {
        margin: 0;
        color: #d31c14;
        font-size: 18px;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: calc( 34 / 26 );
    }
    #contact .sec-h2 {
        margin: 0.2em 0 0;
        font-size: 34px;
        font-weight: 700;
        text-align: center;
        line-height: calc( 59 / 40 );
    }
    #contact .contact-form {
        margin: 60px auto 0;
        padding: 40px 40px 64px;
        width: 90%;
        max-width: 1080px;
        background: #fff;
    }
    #contact .contact-form .contact-input {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    #contact .contact-form .contact-input + .contact-input {
        margin-top: 35px;
    }
    #contact .contact-form .contact-input label {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0 20px;
        margin: 0;
        padding: 6px 0 0;
        width: 35%;
        font-size: 18px;
        font-weight: 700;
    }
    #contact .contact-form .contact-input label::after {
        content: "任意";
        color: #bebebe;
        font-size: 15px;
        font-weight: 500;
    }
    #contact .contact-form .contact-input label.required::after {
        content: "必須";
        color: #d31c14;
        font-size: 15px;
        font-weight: 500;
    }
    #contact .contact-form .contact-input .ws-input {
        display: block;
        margin: 0;
        padding: 0;
        width: 65%;
    }
    #contact .contact-form .contact-input .ws-input :is(input[type="text"],input[type="tel"],input[type="email"],textarea) {
        display: block;
        margin: 0;
        padding: 0.5em 1.0em;
        width: 100%;
        font-size: 16px;
        font-family: inherit;
        background: #f7f7f7;
        border: 0;
    }
    #contact .contact-form .contact-input .ws-input :is(input[type="text"],input[type="tel"],input[type="email"],textarea) ~ .ws-error {
        display: none;
    }
    #contact .contact-form .contact-input .ws-input :is(input[type="text"],input[type="tel"],input[type="email"],textarea).error ~ .ws-error {
        display: block;
        color: #d31c14;
        font-size: 18px;
        font-weight: 500;
    }
    #contact .contact-form .contact-input .ws-input textarea {
        height: 10.0em;
    }
    #contact .privacy-policy-wrap {
        position: relative;
        margin: 48px auto 0;
        padding: 0;
        width: 100%;
        max-height: 223px;
        background: #fff;
        border: 1px solid #ccc;
        overflow: hidden;
    }
    #contact .privacy-policy-wrap::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 30px;
        background: linear-gradient( to bottom, #ffff 20%, #fff0 100% );
        z-index: 1;
    }
    #contact .privacy-policy-wrap::after {
        position: absolute;
        content: "";
        bottom: 0;
        left: 0;
        width: 100%;
        height: 30px;
        background: linear-gradient( to top, #ffff 20%, #fff0 100% );
        z-index: 1;
    }
    #contact .privacy-policy {
        position: relative;
        margin: 0;
        padding: 30px 20px;
        width: 100%;
        height: auto;
        max-height: 223px;
        overflow-y: auto;
    }
    #contact .privacy-policy p {
        margin: 1.5em 0 0;
        font-size: 16px;
        font-weight: 400;
    }
    #contact .privacy-policy p.title {
        margin-top: 2.0em;
        margin-bottom: 1.5em;
        font-size: 20px;
        font-weight: 700;
    }
    #contact .privacy-policy p:first-child {
        margin-top: 0;
    }
    #contact .privacy-policy p.head {
        margin-bottom: 0.5em;
        font-size: 16px;
        font-weight: 700;
    }
    #contact .privacy-policy p.head + p:not(.head) {
        margin-top: 0.5em;
    }
    #contact .ws-agree {
        margin: 32px auto 0;
    }
    #contact .ws-agree label {
        display: block;
        margin: 0 auto;
        width: max-content;
        font-size: 16px;
    }
    #contact .ws-submit {
        margin: 32px auto 0;
    }
    #contact .ws-submit button[type="submit"] {
        position: relative;
        display: grid;
        place-items: center;
        margin: 0 auto;
        width: 456px;
        height: auto;
        aspect-ratio: 456 / 80;
        color: #fff;
        font-size: 23px;
        font-weight: 700;
        font-family: inherit;
        text-align: center;
        line-height: 1.0;
        background: linear-gradient( to bottom, #ed5952, #a2140d );
        border: 0;
        border-radius: 4.0em;
        transition: filter 0.3s ease-out, opacity 0.3s ease-out;
    }
    #contact .ws-submit button[type="submit"]:disabled {
        filter: grayscale(100%);
        opacity: 0.5;
        cursor: auto;
    }
    #contact .ws-submit button[type="submit"]::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.5em );
        right: 1.0em;
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: url(../images/icon-arrow-r-white.svg) no-repeat center / contain;
    }

    #company {
        margin: 0 auto;
        padding: 80px 0;
        width: 100%;
    }
    #company .company-flex {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        max-width: 1000px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    #company .company-flex .company-l {
        margin: 0;
        padding: 0;
        width: 200px;
    }
    #company .company-flex .company-r {
        margin: 0;
        padding: 0;
        width: calc( 100% - 200px );
    }
    #company .subtitle {
        margin: 0;
        color: #d31c14;
        font-size: 18px;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: left;
        line-height: calc( 34 / 26 );
    }
    #company .sec-h2 {
        margin: 0.2em 0 0;
        font-size: 34px;
        font-weight: 700;
        text-align: left;
        line-height: calc( 59 / 40 );
    }
    #company .company-table {
        margin: 0;
        width: 100%;
        display: grid;
        grid-template-columns: 30% 70%;
        gap: 0;
        border-top: 1px solid #ccc;
    }
    #company .company-table dt {
        margin: 0;
        padding: 30px 0;
        width: 100%;
        font-size: 16px;
        font-weight: 700;
        border-bottom: 1px solid #ccc;
    }
    #company .company-table dd {
        margin: 0;
        padding: 30px 0;
        width: 100%;
        font-size: 15px;
        font-weight: 400;
        border-bottom: 1px solid #ccc;
    }

    .fixed-btns {
        display: none;
    }

    footer {
        margin: 0 auto;
        width: 100%;
        background: #e2e2e2;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 1.0em 0;
        width: 100%;
        font-size: 18px;
        font-weight: 500;
        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 ); }
}

