@charset "utf-8";
/*
Theme Name:mrp-child
Template:mrp
Version: 1.0.0
*/
/*
DesignCode CSS: ver 0.01
*/
/*------------------------------------------------------
Theme Material
------------------------------------------------------*/
/*------@import------*/
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /*------▼基本設定▼------*/
    --color-background: #FFF;
    --color-font: #000000;
    --color-primary: #F88D0A;
    --color-primary-shade: #df7f09;
    --color-primary-tint: #FFECAD;
    --color-secondary: #F5F2ED;
    --color-secondary-tint: #f8f6f2;
    --color-table-border: #EBEBEB;
    --body-font-size: min(calc(1.6rem + (1vw - 1.92rem) * 0.1294), 1.6rem);
    /* 1.6-1.4rem (1920-375) */
    --body-font-family: 'Noto Sans JP', sans-serif;
    --content-max-width: 1240px;
    /*------▼ヘッダー設定▼------*/
    --header-background: #FFF;
    --header-color-font: #000;
    --header-color-primary: #F88D0A;
    --header-color-primary-shade: #df7f09;
    --header-color-primary-tint: #FFECAD;
    /*------▼フッター設定▼------*/
    --footer-background: #F0F0F0;
    --footer-color-font: #000;
    --footer-color-primary: #000;
    /*------▼フォント設定▼------*/
    --font-family01: 'Noto Sans JP', sans-serif;
    --font-family02: 'Oswald', 'Noto Sans JP', sans-serif;
    --font-family03: "Zen Kaku Gothic New", sans-serif;
    --font-family04: "Montserrat", sans-serif;
    --font-family05: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
}

/*--------------------------------------------------
	共通
--------------------------------------------------*/
.post {
    .ttl {
        &:is(.ttl--primary) {
            display: flex;
            flex-direction: column;
            letter-spacing: 0;
            margin-bottom: var(--rem60);

            &::after {
                display: none;
            }

            /* .ttl--primary__en {
				font-family: var(--font-family04);
                font-size: min(calc(14rem + (1vw - 1.92rem) * 4.5307), 14rem);
                font-weight: 400;
                line-height: 1;
                margin-bottom: -.4em;
            } */
            .ttl--primary__ja {
                font-family: var(--font-family03);
                font-size: var(--rem36);
                font-weight: 500;
                line-height: 1.65;
            }

            &:is(.ttl--primary--mod-01) {
                margin-bottom: var(--rem60);

                .ttl--primary__en {
                    margin-bottom: -.7em;
                }
            }
        }
    }

    /* h2のスタイル */
    .heading_mod-01 {
        font-size: var(--rem36);
        font-family: var(--font-family01);
        font-weight: 600;
        text-align: center;
        letter-spacing: .2rem;
        padding: 0;
        margin: var(--px120) auto var(--px50);

        &::after {
            content: '';
            position: relative;
            visibility: visible;
            display: block;
            width: 2.2em;
            height: 3px;
            background: var(--color-primary);
            margin: 0.6em auto 0;
        }
    }

    /* h3のスタイル */
    .heading_mod-02 {
        font-size: var(--rem24w);
        font-family: var(--font-family01);
        font-weight: 600;
        letter-spacing: .1rem;
        padding: 0 0 .4em;
        margin: var(--px60) auto var(--px20);
        border-bottom: 2px solid var(--color-primary);

        &::before, &::after {
            display: none;
        }
    }

    /* h3のスタイル 左にボーダー */
    .heading_mod-03 {
        font-size: var(--rem24w);
        font-weight: 600;
        font-family: var(--body-font-family);
        letter-spacing: .1rem;
        padding: 0 1rem 0.2rem;
        margin: var(--rem60) auto var(--rem30);
        border-left: 4px solid;
        border-bottom: none;

        &::before, &::after {
            display: none;
        }
    }

    /* h4のスタイル */
    .heading_mod-04 {
        position: relative;
        font-size: var(--rem18);
        font-family: var(--font-family01);
        font-weight: 600;
        padding: 0 0 0 1.2em;
        margin: var(--px40) auto var(--px24);
        border: none;

        &::before {
            content: '';
            position: absolute;
            width: .7em;
            height: 2px;
            background: var(--color-primary);
            top: .8em;
            left: 0;
        }

        &::after {
            display: none;
        }
    }

    .heading_mod-05 {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 0 var(--px24);
        font-size: var(--rem18);
        font-weight: 400;
        line-height: 2;
        letter-spacing: .05em;
        text-align: left;
        padding-bottom: .7em;
        margin-top: var(--rem30);
        border-bottom: 1px solid var(--color-font);
    }

    .text-mod-01 {
        padding: 0 0 var(--rem20) var(--px20);
        border-bottom: 1px solid var(--color-font);

        .position {
            font-size: var(--rem20);
            font-weight: 400;
            line-height: 1.4;
        }

        .en {
            font-family: var(--font-family04);
            font-size: var(--rem20);
            font-weight: 400;
            line-height: 1.4;
            margin-right: var(--px16);
        }

        .ja {
            font-size: calc(var(--rem16) * 2);
            font-weight: 500;
            line-height: 1.4;
            margin-right: var(--px30);
        }
    }

    p {
        line-height: 2;
    }

    .card {
        display: flex;
        align-items: flex-start;
        gap: var(--rem48) var(--px50);
        border: 1px solid var(--color-font);
        padding: var(--rem36) var(--px60);

        .card__summary {
            width: 70%;

            .card__ttl {
                font-size: var(--rem24w);
                font-weight: 400;
                line-height: 2;
                letter-spacing: .05em;
                text-align: left;
                padding: 0;
                margin-bottom: var(--rem30);
                border: none;

                &::before, &::after {
                    display: none;
                }
            }
        }

        .card__figure {
            width: 30%;
            aspect-ratio: 359 / 251;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }

    .list {
        list-style: none;
        text-align: left;

        &:is(.list--check) {
            &>li {
                display: flex;
                align-items: flex-start;
                column-gap: 7px;
                font-size: var(--rem20);
                font-weight: 500;
                line-height: 1.4;

                &+& {
                    margin-top: var(--rem12);
                }

                i {
                    color: #C2BAAE;
                    font-size: var(--rem20);
                    line-height: 1.4;
                }
            }

            &:is(.list--check--small) {
                &>li {
                    font-size: var(--rem16);
                }
            }

            &:is(.list--check--orange) {
                i {
                    color: var(--color-primary);
                }
            }
        }

        &:is(.list--link) {
            max-width: 955px;
            margin: var(--rem60) auto var(--rem120);

            &>li a {
                display: flex;
                align-items: center;
                justify-content: space-between;
                column-gap: var(--px24);
                padding: var(--rem16) var(--px30);
                border-bottom: 1px solid var(--color-font);
                transition: all .2s;

                i {
                    color: var(--color-primary);

                    &::before {
                        font-size: var(--rem20);
                    }
                }

                &:hover {
                    color: var(--color-primary);
                }
            }
        }
    }

    .boxList {
        display: flex;
        flex-wrap: wrap;
        gap: calc(var(--rem16) * 2) calc(var(--px18) * 2);
        margin-top: var(--rem24w);

        .boxList__item {
            width: calc((100% - var(--px18) * 2) / 2);
            background: #F5F2ED;
            border: 1px solid var(--color-primary-tint);
            padding: var(--rem36) var(--px30);
        }

        .boxList__ttl {
            font-size: var(--rem20);
            font-weight: 400;
            line-height: 1.4;
            letter-spacing: 0;
            padding: 0;
            margin-bottom: var(--rem16);
            border: none;
        }
    }

    .box {
        padding: var(--rem20) var(--px30) var(--rem30);

        &:is(.box--bg) {
            background: #F5F2ED;
        }

        &:is(.box--border) {
            border: 2px solid var(--color-font);
            border-radius: var(--px30);
            padding: var(--rem48) var(--px30);
        }
    }

    .flexbox {
        &:is(.flexbox--ordinarily) {
            display: flex;
        }
    }

    div:has(> .deco) {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        row-gap: .4em;

        .linkBtn.linkBtn--round {
            min-width: 300px;
        }

        &:is(.txt_c) {
            display: flex;
        }
    }

    .deco {
        position: relative;

        &:is(.deco--call) {
            display: flex;
            align-items: center;
            justify-content: center;
            column-gap: 10px;

            &::before, &::after {
                display: block;
                content: "";
                width: var(--px18);
                height: 1px;
                background: var(--color-font);
            }

            &::before {
                transform: rotate(-120deg);
            }

            &::after {
                transform: rotate(120deg);
            }
        }
    }

    .marker.yellow {
        background: linear-gradient(transparent 72%, var(--color-primary-tint) 72%);
    }

    .max-w {
        margin-left: auto;
        margin-right: auto;

        &:is(.leftSide) {
            margin-left: 0;
        }

        &:is(.rightSide) {
            margin-right: 0;
        }

        &:is(.max-w--960) {
            max-width: 960px;
        }

        &:is(.max-w--1000) {
            max-width: 1000px;
        }

        &:is(.max-w--1240) {
            max-width: 1240px;
        }
    }

    .display {
        display: block;

        &:is(.display--inline) {
            display: inline;
        }

        &:is(.display--inlineBlock) {
            display: inline-block;
        }
    }

    .none-style {
        padding: 0;
        border: 0;

        &::before, &::after {
            display: none;
        }
    }

    .ffs-on {
        font-feature-settings: 'palt'on;
    }

    .ffs-off {
        font-feature-settings: 'palt'off;
    }

    .ff-01 {
        font-family: var(--font-family01) !important;
    }

    .ff-02 {
        font-family: var(--font-family02) !important;
    }

    .ff-03 {
        font-family: var(--font-family03) !important;
    }

    .ff-04 {
        font-family: var(--font-family04) !important;
    }

    .fsz-12 {
        font-size: var(--rem12);
    }

    .fsz-14 {
        font-size: var(--rem14);
    }

    .fsz-16 {
        font-size: var(--rem16);
    }

    .fsz-18 {
        font-size: var(--rem18);
    }

    .fsz-20 {
        font-size: var(--rem20);
    }

    .fsz-24 {
        font-size: var(--rem24);
    }

    .fsz-28 {
        font-size: var(--rem28);
    }

    .fsz-30 {
        font-size: var(--rem30);
    }

    .fsz-36 {
        font-size: var(--rem36);
    }

    .fsz-40 {
        font-size: var(--rem40);
    }

    .fsz-48 {
        font-size: var(--rem48);
    }

    .fsz-60 {
        font-size: var(--rem60);
    }

    .fsz-72 {
        font-size: var(--rem72);
    }

    .fsz-80 {
        font-size: var(--rem80);
    }

    .fsz-120 {
        font-size: var(--rem120);
    }

    .fw-100 {
        font-weight: 100 !important;
    }

    .fw-200 {
        font-weight: 200 !important;
    }

    .fw-300 {
        font-weight: 300 !important;
    }

    .fw-400 {
        font-weight: 400 !important;
    }

    .fw-500 {
        font-weight: 500 !important;
    }

    .fw-600 {
        font-weight: 600 !important;
    }

    .fw-700 {
        font-weight: 700 !important;
    }

    .fw-800 {
        font-weight: 800 !important;
    }

    .fw-900 {
        font-weight: 900 !important;
    }

    .lh-mod-01 {
        line-height: 1 !important;
    }

    .lh-mod-02 {
        line-height: 1.1 !important;
    }

    .lh-mod-03 {
        line-height: 1.2 !important;
    }

    .lh-mod-04 {
        line-height: 1.3 !important;
    }

    .lh-mod-05 {
        line-height: 1.4 !important;
    }

    .lh-mod-06 {
        line-height: 1.5 !important;
    }

    .lh-mod-07 {
        line-height: 1.6 !important;
    }

    .lh-mod-08 {
        line-height: 1.7 !important;
    }

    .lh-mod-09 {
        line-height: 1.8 !important;
    }

    .lh-mod-10 {
        line-height: 1.9 !important;
    }

    .lh-mod-11 {
        line-height: 2 !important;
    }

    .ls-mod-01 {
        letter-spacing: 0 !important;
    }

    .ls-mod-02 {
        letter-spacing: .1em !important;
    }

    .ls-mod-03 {
        letter-spacing: .05em !important;
    }

    .color-common {
        color: var(--color-font);
    }

    .color-primary {
        color: var(--color-primary);
    }

    .color-primary-shade {
        color: var(--color-primary-shade);
    }

    .color-primary-tint {
        color: var(--color-primary-tint);
    }

    .color-secondary {
        color: var(--color-secondary);
    }

    .color-white {
        color: #fff;
    }

    .color-black {
        color: #000;
    }

    .color-gradation {
        background: linear-gradient(263deg, #27B7EC 9%, #073190 97%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }

    .d-inline {
        display: inline;
    }

    .d-inline-b {
        display: inline-block;
    }

    .d-block {
        display: block;
    }

    .ml-12 {
        margin-left: var(--rem12);
    }

    .ml-14 {
        margin-left: var(--rem14);
    }

    .ml-16 {
        margin-left: var(--rem16);
    }

    .ml-18 {
        margin-left: var(--rem18);
    }

    .ml-20 {
        margin-left: var(--rem20);
    }

    .ml-24 {
        margin-left: var(--rem24);
    }

    .mr-12 {
        margin-right: var(--rem12);
    }

    .mr-14 {
        margin-right: var(--rem14);
    }

    .mr-16 {
        margin-right: var(--rem16);
    }

    .mr-18 {
        margin-right: var(--rem18);
    }

    .mr-20 {
        margin-right: var(--rem20);
    }

    .mr-24 {
        margin-right: var(--rem24);
    }

    .m-inline-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .m-inline-none {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

.br_mod-01 {
    display: none;
}

.br_mod-02 {
    display: block;
}

.br_mod-03 {
    display: none;
}

.br_mod-04 {
    display: block;
}

@media print, screen and (max-width: 1023px) {
    .br_mod-03 {
        display: block;
    }

    .post .heading_mod-05 {
        flex-direction: column;
        align-items: flex-start;
    }

    .post .text-mod-01 {
        .ja {
            display: block;
            margin-bottom: .1em;
        }
    }
}

@media print, screen and (max-width: 768px) {
    body {
        font-size: 1.6rem;
    }

    .post .ttl {
        &:is(.ttl--primary) {
            .ttl--primary__en {
                font-size: var(--rem120);
            }
        }
    }

    .post .heading_mod-05 {
        font-size: 1.6rem;
    }

    .post .boxList {
        .boxList__ttl {
            font-size: var(--rem20w);
        }
    }

    .post .fsz-sp-min {
        font-size: 1.6rem !important;
    }

    .post {
        .list {
            &:is(.list--check) {
                &>li {
                    font-size: 1.6rem;

                    i {
                        font-size: 1.6rem;
                    }
                }
            }
        }
    }

    .post .deco {
        &:is(.deco--call) {
            font-size: var(--rem20);
        }
    }

    .tab-txt_l {
        text-align: left !important;
    }

    .post p {
        font-size: 1.6rem;
    }

    .post .card {
        flex-direction: column;
        padding: var(--rem36) var(--px30);

        .card__summary {
            width: 100%;

            .card__ttl {
                font-size: var(--rem28);
            }
        }

        .card__figure {
            width: 100%;
        }
    }

    .post h2.ttl.ttl--primary.min-ttl .ttl--primary__ja {
        font-size: 1.7rem;
    }

    .post h2.ttl.ttl--primary .ttl--primary__ja {
        font-size: 2.5rem;
    }
}

@media print, screen and (max-width: 560px) {
    .post .boxList {
        .boxList__item {
            width: 100%;
        }
    }
}

@media print, screen and (max-width: 414px) {
    .post {
        div:has(> .deco, > .linkBtn) {
            .linkBtn.linkBtn--round {
                min-width: 100%;
            }
        }
    }

    .sp-txt_l {
        text-align: left !important;
    }

    .br_mod-01 {
        display: block;
    }

    .br_mod-02 {
        display: none;
    }

    .br_mod-03 {
        display: none;
    }

    .br_mod-04 {
        display: none;
    }
}

/**/
.bg_wide {
    position: relative;
}

.bg_wide::before,
.bg_wide.bg_after::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100%;
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
    content: "";
    z-index: -1;
}

.box_w2_sp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.box_w2_sp.rev {
    flex-direction: row-reverse;
}

.box_w2_sp.vtop {
    align-items: flex-start;
}

.box_w2_sp.vcen {
    align-items: center;
}

.box_w2_sp.vbtm {
    align-items: flex-end;
}

.box_pad {
    padding: 20px;
    box-sizing: border-box;
}

.box_w2 .column2_50:not(.cen) {
    text-align: left;
}

@media print, screen and (min-width: 641px) {

    /* PC用 */
    .bg_fix::before {
        background-attachment: fixed !important;
    }

    .box_w2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .box_w2.rev {
        flex-direction: row-reverse;
    }

    .box_w2.vtop {
        align-items: flex-start;
    }

    .box_w2.vcen {
        align-items: center;
    }

    .box_w2.vbtm {
        align-items: flex-end;
    }

    .box_pad {
        padding: 30px;
    }

    .box_w2 .column3_33 {
        width: 32%;
    }

    .box_w2 .column2_50 {
        width: 48.5%;
    }

    .box_w2 .column2_60 {
        width: 57%;
    }

    .box_w2 .column2_70 {
        width: 67%;
    }

    .box_w2 .column2_80 {
        width: 77%;
    }
}

@media print, screen and (min-width:769px) {

    /* PCのみ */
    .box_pad {
        padding: 50px;
    }
}

/**/
.box_w2 .column3_33 img, .box_w2 .column2_30 img,
.box_w2 .column2_40 img, .box_w2 .column2_50 img {
    max-width: 100%;
}

/**/
.w100 {
    width: 100vw;
    margin-left: calc(((100vw - 100%) / 2) * -1) !important;
    margin-right: calc(((100vw - 100%) / 2) * -1) !important;
}

.w600, .w800, .w900 {
    width: 600px;
    max-width: 100%;
    margin: auto;
}

.w800 {
    width: 800px;
}

.w900 {
    width: 900px;
}

/**/

.fw_contents {
    margin-top: 0;
    margin-bottom: 0;
}

#content:has(.fw_contents), body:not(.home) #content:has(.fw_contents).wide {
    padding: 0;
}

/* アンカーリンク 遷移後の表示位置調整 */
.anchor_link {
    &::before {
        padding-top: 150px;
        margin-top: -150px;
    }
}

@media print, screen and (max-width: 768px) {
    .anchor_link {
        &::before {
            padding-top: 100px;
            margin-top: -100px;
        }
    }
}

/*-----------------------------
column_01
------------------------------*/
.toptxtarea {
    max-width: 960px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.column01 {
    position: relative;
    margin: 0;
}

.column01_wrap {
    position: relative;
    max-width: unset;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
}

.column01 .txtarea {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--px80) var(--px40);
    margin: 0;
}

.column01 .txtarea .txtinner {
    width: 100%;
    max-width: 780px;
}

@media print, screen and (max-width: 768px) {
    .column01 .txtarea .txtinner {
        width: auto;
    }
}

@media print, screen and (max-width: 414px) {
    .column01 .txtarea .txtinner {
        width: 100%;
    }
}

.column01 .imgarea {
    overflow: hidden;
    line-height: 0;
    margin: 0;
}

.column01 .imgarea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media print, screen and (max-width: 768px) {
    .column01 .txtarea {
        padding: var(--px80) 5%;
    }
}

/*---------txtstyle-----------*/
.post .txtstyle04, .txtstyle04 {
    font-family: var(--font-family03);
    font-size: var(--rem36);
    font-weight: 600;
    margin: var(--rem36) auto;
    background: transparent;
    border: none;
    line-height: 1.4;
    padding: 0;

    &::before, &::after {
        display: none;
    }

    &:is(.txtstyle04--mod-01) {
        display: flex;
        flex-direction: column;

        .position {
            font-size: var(--rem16);
            font-weight: 500;
            line-height: 2;
            letter-spacing: 0;
        }

        .name {
            line-height: 1.4;

            .ja {
                font-size: calc(var(--rem16) * 2);
                font-weight: 500;
                line-height: 1.4;
                letter-spacing: 0;
                margin-right: var(--px20);
            }

            .en {
                font-family: var(--font-family04);
                font-size: var(--rem20);
                font-weight: 400;
                line-height: 1.4;
                letter-spacing: 0;
            }
        }
    }
}

.post .column01 .txtstyle04, .column01 .txtstyle04 {
    font-size: var(--rem40);
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0;
}

/*-----------------------------
card
------------------------------*/
.toptxtarea {
    max-width: 960px;
    width: 94%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.card01_wrap {
    position: relative;
    margin: 0;
}

.card01_inner {
    max-width: 1600px;
    width: 94%;
    margin: 0 auto;
}

.card01_list>li {
    position: relative;
    background: transparent;
}

.card01_list .imgarea {
    width: 100%;
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    line-height: 0;
}

.card01_list .imgarea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card01_list .txtarea {
    padding: 20px 0 0 0;
    line-height: 1.6;
    text-align: left;
    background: transparent;
}

/*--カラムリスト--------------------------------------------*/
/*---------col4-----------*/

.post .col4_list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

.post .col4_list>li {
    width: 24%;
    margin-bottom: 1.5%
}

.post .col4_list::before {
    content: "";
    display: block;
    width: 24%;
    height: 0;
    order: 1;
}

.post .col4_list:after {
    content: "";
    display: block;
    width: 24%;
    height: 0;
}

@media print, screen and (max-width: 1023px) {
    .post .col4_list>li {
        width: 49%;
        margin-bottom: 2%;
    }

    .post .col4_list::before, .post .col4_list:after {
        content: none;
    }
}

@media print, screen and (max-width: 414px) {
    .post .col4_list>li {
        width: 100%;
    }

    .post .col4_list>li:last-child {
        margin-bottom: 0;
    }
}

/*------------------------------------------------------------
 ナンバリング01
------------------------------------------------------------*/
.num_list01 {
    counter-reset: number;
    /*数字をリセット*/
    list-style-type: none !important;
    /*数字を一旦消す*/
}

.num_list01 .imgarea {
    aspect-ratio: 380 / 284;
    position: relative;
    margin-bottom: var(--px20);

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--px20);
    }
}

.num_list01 .imgarea:before {
    /* 以下数字をつける */
    position: absolute;
    counter-increment: number;
    content: "0"counter(number);
    display: inline-block;
    background: #C2BAAE;
    color: #fff;
    font-family: var(--font-family04);
    font-weight: 400;
    font-size: 30px;
    border-radius: 50%;
    left: 50%;
    width: 68px;
    height: 68px;
    line-height: 68px;
    text-align: center;
    bottom: -34px;
    transform: translateX(-50%);
}

.num_list01 .num_listttl {
    text-align: center;
    font-weight: 500;
    font-size: var(--rem20w);
    line-height: 1.4;
    padding: 24px 0;
    position: relative;
}

/*---------col03-----------*/

.post .col3_list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.post .col3_list>li {
    width: 30.7%;
    margin-bottom: 2%;
}

.post .col3_list::before {
    content: "";
    display: block;
    width: 32%;
    height: 0;
    order: 1;
}

.post .col3_list:after {
    content: "";
    display: block;
    width: 32%;
    height: 0;
}

@media print, screen and (max-width: 768px) {
    .post .col3_list>li {
        width: 100%;
        margin-bottom: 10%;
    }

    .post .col3_list::before, .post .col3_list:after {
        content: none;
    }
}

/*--------------------------------------------------
	リンクボタン
--------------------------------------------------*/
.linkBtn, .post .linkBtn, a.linkBtn {
    border-radius: 0;

    &:is(.linkBtn--round) {
        max-width: 300px;
        color: #fff;
        line-height: 1.4;
        text-align: center;
        font-weight: 700;
        letter-spacing: 0;
        background: var(--color-primary);
        padding: min(calc(2.1rem + (1vw - 1.92rem) * 0.6472), 2.1rem) min(calc(4.5rem + (1vw - 1.92rem) * 0.9709), 4.5rem) min(calc(2.1rem + (1vw - 1.92rem) * 0.6472), 2.1rem) min(calc(1.5rem + (1vw - 1.92rem) * 0.3236), 1.5rem);
        margin: var(--px40) auto 0;
        border: none;
        border-radius: 50vh;
        transition: all .3s;

        &::after {
            border-color: #fff;
        }

        &:hover {
            color: var(--color-font);
            background: var(--color-primary-tint);

            &::after {
                border-color: var(--color-font);
            }
        }
    }

    &:is(.linkBtn--arw) {
        position: relative;
        display: inline-block;
        width: 100%;
        max-width: 250px;
        font-size: var(--rem16);
        color: #111;
        line-height: 1.8;
        text-align: left;
        background: transparent;
        font-weight: 500;
        padding: min(calc(10px + (1vw - 19.2px) * 0.5178), 10px) min(calc(65px + (1vw - 19.2px) * 1.6181), 65px) min(calc(10px + (1vw - 19.2px) * 0.5178), 10px) 10px;
        margin: var(--px40) auto 0;
        border: none;
        border-radius: 0;
        transition: all .3s;

        &::after {
            display: block;
            content: "";
            width: 100%;
            height: 1px;
            background: #ccc;
            border: none;
            margin-top: 0;
            position: absolute;
            top: unset;
            right: unset;
            left: 0;
            bottom: -6px;
            transform: unset;
        }

        .arw {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            position: absolute;
            width: var(--px50);
            height: var(--px50);
            background: #fff;
            border: 1px solid var(--color-primary);
            border-radius: 50%;
            right: 0;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            -webkit-transition: .4s;
            transition: .4s;

            &::after {
                content: '';
                position: absolute;
                width: min(calc(8px + (1vw - 19.2px) * 0.2589), 8px);
                height: min(calc(8px + (1vw - 19.2px) * 0.2589), 8px);
                border-style: solid;
                border-width: 1px 1px 0 0;
                border-color: var(--color-primary);
                top: 50%;
                left: 50%;
                -webkit-transform: translate(-70%, -50%) rotate(45deg);
                transform: translate(-70%, -50%) rotate(45deg);
                -webkit-transition: .4s;
                transition: .4s;
            }
        }

        &:hover {
            color: #111;
            background: transparent;

            .arw {
                background: var(--color-primary);

                &::after {
                    border-color: #fff;
                }
            }
        }
    }
}

div:has(.linkBtn) {
    &:is(.txt_l) {
        .linkBtn {
            margin-left: 0;
        }
    }

    &:is(.txt_r) {
        .linkBtn {
            margin-right: 0;
        }
    }
}

@media print, screen and (max-width: 768px) {
    .linkBtn, .post .linkBtn, a.linkBtn {
        &:is(.linkBtn--round) {
            font-size: 1.6rem;
            padding: var(--rem24w) min(calc(4.5rem + (1vw - 1.92rem) * 0.9709), 4.5rem) var(--rem24w) min(calc(1.5rem + (1vw - 1.92rem) * 0.3236), 1.5rem);
        }

        &:is(.linkBtn--arw) {
            font-size: 1.6rem;
        }
    }
}

/*--------------------------------------------------
	ヘッダー
--------------------------------------------------*/
@media print, screen and (min-width: 1024px) {
    #header {
        height: 100px;
    }

    .sticky-header #header-layout {
        height: 100px;
    }

    #header .logo {
        padding-left: 0;
    }

    #header .logo img {
        width: 100%;
        max-width: 348px;
        max-height: var(--px80);
    }

    #header ul.header__contact {
        padding: 15px var(--px20) 15px var(--px30);
    }

    nav#mainNav ul li a b, nav#mainNav ul li a span {
        margin-top: 0;
        font-weight: 500;
    }

    #header a.head_btn {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background: var(--header-color-primary);
        padding: min(calc(10px + (1vw - 19.2px) * 0.2232), 10px) calc(var(--px16) * 2);
        color: #fff;
        font-size: var(--rem16);
        font-weight: 700;
        line-height: 1.5;
        border-radius: 50vh;
    }

    #header a.head_btn.mail_btn::before {
        font-size: var(--rem20);
        margin-right: 8px;
        margin-bottom: 0;
    }
}

/*------ヘッダー　レスポンシブ
--------------------------------------------*/

@media screen and (max-width: 1400px) {
    nav#mainNav ul, #header .header__nav-contact {
        flex-shrink: 0;
    }

    nav#mainNav ul li a b, nav#mainNav ul li a span {
        font-size: 1.4rem;
    }

    #header a.head_btn.mail_btn {
        font-size: 1.4rem;
        padding-left: var(--rem20);
        padding-right: var(--rem20);
    }

    #header a.head_btn {
        padding: min(calc(10px + (1vw - 19.2px) * 0.2232), 10px) 10px;
    }

    #header a.head_btn.sns_btn {
        padding: min(calc(10px + (1vw - 19.2px) * 0.2232), 10px) 10px;
    }

    nav#mainNav ul li a {
        padding: min(calc(15px + (1vw - 19.2px) * 0.5580), 15px) 10px;
    }
}

@media print, screen and (max-width: 1240px) {
    #header a.headBtn span {
        display: none;
    }

    #header a.headBtn::before {
        margin-right: 0;
    }
}

@media print, screen and (max-width: 1023px) {
    #header-upper .header__socialicon, #header .sticky-logo, #header ul.header__contact {
        display: none;
    }

    #header h1, #header .description, #header-upper h1, #header-upper .description {
        display: block;
        float: none;
        text-align: center;
        padding: 20px 0 10px;
    }
}

@media screen and (max-width: 1023px) {
    nav#mainNav ul li ul.sub-menu li a, nav#mainNav ul li ul.sub-menu li a:hover, nav#mainNav ul li ul.sub-menu li.current-menu-item a, nav#mainNav ul li.current-menu-item ul.sub-menu li a {
        color: #4d4d4d;
        font-size: 1.4rem;
    }

    nav#mainNav ul li a b, nav#mainNav ul li a span {
        font-size: var(--rem16);
    }

    /* nav#mainNav ul li a {
		padding: min(calc(15px + (1vw - 19.2px) * 0.5580), 15px) 10px;
	} */
    nav#mainNav ul li a, nav#mainNav ul li.current-menu-item li a {
        padding: 15px 10px;
    }

    nav#mainNav ul li li a, nav#mainNav ul li.current-menu-item li a {
        padding-left: 43px;
    }
}

@media screen and (max-width: 1023px) {
    #thumbImg, header#h1Header {
        width: 100%;
        aspect-ratio: 1920 / 500;
    }
}

.spmenu #menu p {
    width: 100%;
}

@media print, screen and (min-width: 1024px) {
    nav#mainNav ul li:hover {
        &>a, &>b {
            color: var(--color-primary);
        }
    }

    nav#mainNav ul li:hover ul.sub-menu {
        background: #fff;
    }
}

#header #mainNav .sp-nav-block {
    display: none;
}

@media screen and (max-width: 1023px) {
    #header #mainNav .sp-nav-block {
        display: block;
    }
}

/*--------------------------------------------------
	フッター
--------------------------------------------------*/
#footer {
    padding: var(--px60) 0;

    .footer__logo img {
        width: 100%;
        max-width: 348px;
        max-height: var(--rem72);
    }

    .footer__logo:not(:last-child) {
        text-align: center;
        margin-bottom: var(--rem30);
    }

    .footnav {
        margin-bottom: var(--rem24);
        ;
    }

    .footnav:not(:last-child) {
        margin-bottom: 0;
    }

    address {
        margin-top: 10px;
    }
}

#footer .socialicon .fa-facebook:before, #footer .socialicon .fa-twitter:before, #footer .socialicon .fa-youtube:before, #footer .socialicon .fa-instagram:before, #footer .socialicon .fa-x-twitter:before, #footer .socialicon .fa-line:before, #footer .socialicon .fa-tiktok:before {
    font-size: 2.4rem;
}

#copyright {
    background: transparent;
}

/*--------------------------------------------------
	CTA
--------------------------------------------------*/
.home {
    .cta {
        display: none !important;
    }
}

/*-----------------------------
cta02_col2
------------------------------*/
.cta02 {
    position: relative;
    padding: var(--px80) 0;
    z-index: 0;

    .ttl {
        &:is(.ttl--primary) {
            display: flex;
            flex-direction: column;
            letter-spacing: 0;
            margin-bottom: var(--rem60);

            &::after {
                display: none;
            }

            /* .ttl--primary__en {
				font-family: var(--font-family04);
                font-size: min(calc(14rem + (1vw - 1.92rem) * 4.5307), 14rem);
                font-weight: 400;
                line-height: 1;
                margin-bottom: -.4em;
            } */
            .ttl--primary__ja {
                font-family: var(--font-family03);
                font-size: var(--rem36);
                font-weight: 500;
                line-height: 1.65;
            }

            &:is(.ttl--primary--mod-01) {
                margin-bottom: var(--rem60);

                .ttl--primary__en {
                    margin-bottom: -.7em;
                }
            }
        }
    }

    .color-common {
        color: var(--color-font);
    }

    .color-primary {
        color: var(--color-primary);
    }

    .color-primary-shade {
        color: var(--color-primary-shade);
    }

    .color-primary-tint {
        color: var(--color-primary-tint);
    }

    .color-secondary {
        color: var(--color-secondary);
    }

    .color-white {
        color: #fff;
    }

    .color-black {
        color: #000;
    }

    .list {
        list-style: none;
        text-align: left;

        &:is(.list--check) {
            &>li {
                display: flex;
                align-items: flex-start;
                column-gap: 7px;
                font-size: var(--rem20);
                font-weight: 500;
                line-height: 1.4;

                &+& {
                    margin-top: var(--rem12);
                }

                i {
                    color: #C2BAAE;
                    font-size: var(--rem20);
                    line-height: 1.4;
                }
            }

            &:is(.list--check--small) {
                &>li {
                    font-size: var(--rem16);
                }
            }

            &:is(.list--check--orange) {
                i {
                    color: var(--color-primary);
                }
            }
        }

        &:is(.list--link) {
            &>li a {
                font-size: var(--rem18);
                line-height: 2;
                letter-spacing: .05em;
            }
        }
    }
}

.cta_copy {
    .top {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: var(--px20);
        margin-bottom: var(--rem18);

        .sub {
            display: grid;
            place-content: center;
            font-family: var(--font-family03);
            font-size: var(--rem20);
            font-weight: 500;
            line-height: 1.4;
            text-align: center;
            aspect-ratio: 1 / 1;
            border: 2px solid var(--color-font);
            border-radius: 50%;
            padding: var(--px30);
        }

        .main {
            font-size: var(--rem18);
            line-height: 1.8;
        }
    }

    .bottom {
        text-align: center;

        .list.list--check {
            display: inline-flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 14px 10px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;

            &>li {
                width: calc((100% - 20px) / 3);

                &+& {
                    margin-top: 0;
                }
            }
        }
    }
}

@media print, screen and (max-width: 768px) {
    .cta02 .ttl {
        &:is(.ttl--primary) {
            .ttl--primary__en {
                font-size: var(--rem120);
            }
        }
    }

    .cta_copy {
        .top {
            flex-direction: column;
            row-gap: var(--px20);

            .main {
                font-size: 1.4rem;
            }
        }

        .bottom {
            .list.list--check {
                &>li {
                    font-size: 1.3rem;

                }
            }
        }
    }
}

@media print, screen and (max-width: 414px) {
    .cta_copy {
        .bottom {
            .list.list--check {
                &>li {
                    width: calc((100% - 10px) / 2);
                }
            }
        }
    }
}

.cta02 .cta02_wrap {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.cta02 .ctabtnlist {
    justify-content: space-between;
    gap: var(--rem40) var(--px40);
    max-width: 1240px;
    margin: var(--px40) auto 0 auto;
}

.cta02 .ctabtnlist li {
    width: 50%;
    margin: 0;
    padding: 0;
    line-height: 1;
    display: flex;
}

.cta02 .item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--px24);
    text-align: center;
    box-sizing: border-box;
    color: #111;
    border-radius: var(--px20);
    transition: all ease .15s;
}

.cta02 .item:hover {
    opacity: 0.8;
}

@media print, screen and (max-width: 768px) {
    .cta02 .ctabtnlist li, .cta02 .ctabtnlist .item {
        width: 100%;
    }

    .cta02 .ctabtnlist li+li {
        margin-top: 1rem;
    }
}

/*ボタン共通パーツ*/

.cta02 .infotxt {
    font-size: var(--rem16);
    font-weight: 500;

    .note, b {
        font-size: var(--rem16);
        font-weight: 500;
    }
}

.cta02 .btnttl {
    color: #fff;
    display: block;
    font-weight: 700;
    margin-bottom: .3em;
    line-height: 1.4;
    font-size: var(--rem20);
}


/*電話ボタン*/

.cta02 .telnum {
    font-size: var(--rem36);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta02 a.telbtn {
    background: #fff;
    color: var(--color-font);

    .btnttl {
        color: var(--color-font);
    }
}

/*メールボタン*/

.cta02 .mailarea.item {
    color: #fff;
    background: var(--color-primary);
}

.cta02 a.mailbtn {
    background: #fff;
    color: var(--color-primary);
    font-weight: 700;
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 400px;
    width: 90%;
    border-radius: 50vh;
    padding: 20px;
    margin: 0 0 1rem 0;
}

.cta02 a.mailbtn {
    background: #fff;
    color: var(--color-primary);
}

/*ボタンアイコン*/

.cta02 a.mailbtn::before, .cta02 .telnum::before {
    content: '';
    display: inline-block;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 1rem;
}

.cta02 .telnum::before {
    content: '\f095';
    font-size: calc(var(--rem16) * 2);
}

.cta02 a.mailbtn::before {
    content: '\f0e0';
    font-size: var(--rem20);
}

/*--------------------------------------------------
	TOPページ
--------------------------------------------------*/
.home, #editor-style {
    #wrapper {
        max-width: 1600px;
        width: 90%;
    }

    /* CONTENT01 */
    #top_contact {
        .front_contents {
            padding-bottom: var(--rem80);
        }

        .column01 {
            padding-bottom: var(--rem120);

            .column01_wrap .txtarea {
                display: grid;
                place-items: center;
            }
        }
    }

    /* CONTENT02 */
    #top_merit {
        &.bg_wide::before {
            background: #F5F2ED;
        }
    }

    /* CONTENT03 */
    #top_profile {
        &.bg_wide::before {
            background: url(/wp-content/uploads/top_bg_01.png.webp) no-repeat bottom center / contain;
        }

        .column01 {
            .column01_wrap {
                max-width: 1240px;
            }

            .imgarea {
                aspect-ratio: 1 / 1;

                img {
                    border-radius: var(--px30) 0 0 var(--px30);
                }
            }

            .txtarea {
                padding: var(--rem60) var(--px40);

                .txtinner {
                    max-width: 582px;
                }
            }
        }
    }

    /* CONTENT04 */
    #top_service {
        .column01_wrap {
            max-width: 1240px;

            .txtarea {
                .txtinner {
                    max-width: 320px;
                }
            }
        }
    }

    /* CONTENT05 */
    #top_works {
        &.bg_wide::before {
            background: linear-gradient(to bottom, #fff 19%, var(--color-secondary) 19%);
        }

        .card01_inner {
            max-width: 1240px;
        }
    }

    /* POST */
    .top_news {
        max-width: 1240px;
        margin-left: auto;
        margin-right: auto;
    }

    .postlist {
        font-family: var(--font-family05);

        .post_text {
            color: #CCC;
            padding: 26px 0;
        }

        li {
            border-bottom: 1px solid #ccc;
        }
    }

    .postlist .ttls, .postlist .date {
        color: var(--color-font);
        font-size: 100%;
        font-weight: 500;
    }

    .post .time, .postlist .time, .post2b .time, .post4b .time {
        background: var(--color-font);
        font-weight: 700;
        line-height: 1.2 !important;

    }
}

@media print, screen and (max-width: 768px) {
    #top_contact .top_contact__head .column01_wrap {
        display: flex;
        width: 90%;
        align-items: center;
    }

    #top_contact .top_contact__head .column01_wrap .imgarea {
        aspect-ratio: 1 / 1;
        width: 80%;
        height: 100%;
    }

    #top_contact .top_contact__head .column01_wrap .txtarea {
        padding: 0 0 0 20px;
    }

    #top_contact .top_contact__head .column01_wrap .txtarea h2 {
        font-size: 1.7rem;
        /*margin-bottom: 0 !important;*/
    }

    #top_contact .top_contact__head .linkbtnbox {
        display: block;
        margin-inline: auto;
        width: 80%;
        text-align: center;
        margin-top: 30px;
    }

    #top_contact .front_contents .ttlcopys {
        font-size: 1.7rem;
    }
}

/* パララックス */
.parallax_container {
    position: relative;
    aspect-ratio: 1920 / 571;
    width: 100vw;
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
}

.parallax_inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0);
    z-index: -1;
}

.parallax {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100vw;
    height: 100vh;
    background: url(/wp-content/uploads/cta_bg_01.png.webp) no-repeat center / cover;
}

@media screen and (max-width: 768px) {
    .home, #editor-style {
        #top_contact {
            .column01 {
                .txtarea {
                    p {
                        font-size: var(--rem20) !important;
                    }
                }
            }
        }
    }

    .parallax_container {
        aspect-ratio: 750 / 397;
    }
}

/*--------------------------------------------------
	下層ページ
--------------------------------------------------*/
body:not(.home) {
    #thumbImg::before, header#h1Header::before {
        display: none;
    }

    h1.title, .post h1, header#h1Header h1.title {
        color: #fff;
        font-size: var(--rem48);
        font-family: var(--font-family01);
        font-weight: 400;
        letter-spacing: .15em;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }

    &:is(.single) {
        h1.title {
            color: var(--color-font);
        }
    }

    #content {
        &:has(.widecolor.lastSection) {
            padding-bottom: 0;
        }
    }

    &.post, .post {
        .ttl.ttl--primary.ttl--primary--mod-01 {
            margin-bottom: var(--rem60);
        }

        .table {
            &:is(.table--mod-01) {
                th, td {
                    vertical-align: middle;
                    padding: var(--rem30) var(--px24);
                }

                th {
                    width: 30%;
                    color: #fff;
                    text-align: center;
                    background: #007B8B;
                }
            }

            &:is(.caption-right) {
                caption {
                    text-align: right;
                }
            }

            &:is(.caption-center) {
                caption {
                    text-align: center;
                }
            }

            &:is(.caption-bottom) {
                caption-side: bottom;
            }
        }

        table {
            th, td {
                font-size: var(--rem16);
                line-height: 1.7;
                vertical-align: middle;
                padding: var(--rem28) var(--rem24);
            }

            th {
                color: var(--color-font);
                font-weight: 400;
                text-align: center;
                background: #f5f2ed;
            }
        }

        .w-fit {
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }

        .googlemap {
            padding-bottom: 35%;
        }
    }
}

@media print, screen and (max-width: 768px) {
    body:not(.home) {
        &.post, .post {
            .googlemap {
                padding-bottom: 45%;
            }

            table {
                th, td {
                    font-size: 1.6rem;
                }
            }
        }
    }
}


/*--幅フル100%背景色--------------------------------------------*/

.widecolor {
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
    padding: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px) calc((100vw - 100%) / 2) min(calc(150px + (1vw - 19.2px) * 3.2362), 150px);
    margin-top: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px);
    /* 120-80px (1920-375) */
    background: #fafafa;
}

/*--幅フル100%--------------------------------------------*/

.widearea {
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
}

@media print, screen and (max-width: 768px) {
    .postlist {
        .date, .ttls {
            font-size: 1.6rem;
        }
    }
}

/*================================================
					会社概要
================================================*/
@media print, screen and (max-width: 768px) {
    .messageFigure img {
        width: 40%;
        margin-left: auto;
        margin-right: auto;
    }

    .l-pagecompany #sec_message h3 {
        font-size: 1.8rem;
    }
}

@media print, screen and (max-width: 414px) {
    .messageFigure img {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
}

/*================================================
					設計サポート
================================================*/
@media print, screen and (max-width: 768px) {
    .l-pagesupport .c-pagelink__ttls, .l-pagephilosophy .c-pagelink__ttls {
        font-size: 2rem;
    }
}

/*================================================
					設計の考え方
================================================*/
.l-pagephilosophy p.important__ex--text.pc_center {
    display: flex;
}

.l-pagephilosophy p.important__ex--text.pc_center span {
    display: inline-block;
}

.l-pagephilosophy p.important__ex--text.pc_center span:first-of-type {
    width: 3em;
}

/*================================================
					お問い合わせ
================================================*/
@media print, screen and (max-width: 768px) {
    #privacy h3 {
        font-size: var(--rem20w);
    }

    #privacy h4 {
        font-size: 1.6rem;
    }
}

/*================================================
					お問い合わせ
================================================*/
.wpcf7-form-control.wpcf7-submit {
    transition: all .3s;
}

body:not(.home) {
    .post {
        .wpcf7 {
            table {
                border: none;

                tbody {
                    tr:first-child {
                        th {
                            border-top: 1px solid #ddd;
                        }
                    }
                }
            }

            table th, table td {
                font-size: var(--rem18);
                border-left: none;
                border-right: none;
            }

            table th {
                color: var(--color-font);
                text-align: center;
                width: 30%;
                padding: var(--rem30) var(--px20);
                background: transparent;

                &:has(.form-flex) {
                    width: 100%;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    border: none;
                }
            }

            table td {
                vertical-align: middle;
            }
        }
    }
}

.wpcf7-form {
    .any {
        font-size: 75%;
        color: #fff;
        font-weight: bold;
        margin-left: 0.8em;
        font-size: 85%;
        padding: 0.2em 0.6em;
        float: right;
        opacity: 0;
    }

    .form-flex {
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        /* & + .must {
            position: relative;
            top: -40px;
        } */
    }

    .date-flex {
        display: flex;
        gap: 1em;

        &+& {
            margin-top: var(--rem18);
        }

        &>span {
            display: flex;
            align-items: center;
        }

        .wpcf7-form-control-wrap {
            margin-right: 0.5em;
        }

        span.w-date {
            min-width: 4.5em;
        }

        span.w-tiem {
            min-width: 4.5em;
        }
    }

    .must {
        flex-shrink: 0;
        background: #007B8B;
    }

    .under-line {
        text-decoration: underline;

        &:hover {
            text-decoration: none;
        }
    }

    input[type="text"], input[type="tel"], input[type="email"], input[type="date"], input[type="url"], input[type="number"], select, textarea {
        font-size: var(--rem18);
        height: 35px;
        background: #F9F9F9;
        margin-bottom: 0;
        padding-left: 14px;
        padding-right: 14px;
    }

    textarea {
        height: auto !important;
    }
}

@media print, screen and (max-width: 768px) {
    body:not(.home) {
        .post {
            .wpcf7 {
                table th, table td {
                    font-size: 1.6rem;
                }
            }
        }
    }
}

@media screen and (max-width: 640px) {
    body:not(.home) {
        .post {
            .wpcf7 {
                table th {
                    text-align: left;
                    border-bottom: none;
                    padding-bottom: 0;

                    &:has(.form-flex) {
                        display: block;
                    }
                }

                table td {
                    padding-top: var(--rem12);
                }
            }
        }
    }

    .wpcf7-form {
        .form-flex {
            display: inline;

            &+.must {
                position: unset;
                top: unset;
            }
        }

        .must-privacy {
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }
}


body:not(.home) {
    .wpcf7 {
        .wpcf7-form {
            table {
                th {
                    width: 30%;
                }
            }

            .subimitarea {
                .linkBtn {
                    max-width: 240px;
                    margin-left: auto;
                    margin-right: auto;
                    padding: 0;

                    &::after {
                        display: block;
                    }

                    &:hover {
                        &::after {
                            border-color: var(--color-font);
                        }

                        input[type="submit"] {
                            color: var(--color-font);
                        }
                    }

                    input[type="submit"] {
                        font-weight: 700;
                        text-align: left;
                        padding: 20px 35px;
                    }
                }
            }

            .v-align-top {
                vertical-align: top;
            }

            .must {
                background: #DC143C;
            }
        }
    }
}

.privacy-acceptance {
    .wpcf7-form-control-wrap {
        display: inline;
    }
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

@media only screen and (max-width: 640px) {
    .wpcf7-form .wpcf7-date {
        text-align: left;
        appearance: none;
        min-width: 100%;
        height: 30px;
    }

    input[type="date"]::-webkit-date-and-time-value {
        text-align: left;
    }
}

.important {
    display: flex;
    flex-direction: column;
    gap: var(--px60);
}

.important__header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.important__header--text {
    font-family: var(--font-family01);
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-weight: 400;
    text-align: center;
}

.important__header--title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 680px;
    padding: 10px !important;
    font-size: var(--px20);
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-weight: 400;
    background-color: #F5F2ED;
}

.important__table {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.important__table--row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 26px;
    padding-left: 46px;
    gap: 76px;
    border-bottom: 1px solid #D9D9D9;
}

@media screen and (max-width: 1024px) {
    .important__table--row {
        flex-direction: column;
        gap: 24px;
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media screen and (max-width: 768px) {
    .important__table--row {
        gap: 12px;
    }
}

.important__table--title {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    line-height: 1.8;
    letter-spacing: 0.05em;
    width: 197px;
    height: 32px;
    flex-shrink: 0;
    background-color: #F88D0A;
}

.important__table--text {
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 1024px) {
    .important__table--text {
        width: 100%;
        padding-left: 24px;
    }
}

.important__table--list {
    list-style: disc;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.important__bottom {
    margin: 0 auto;
    width: 100%;
}

.important__ex--text {
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.important__ex--tri {
    display: block;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #F88D0A;
}

.important__ex--q {
    padding: 5px 25px;
    border: 2px solid #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
}

@media screen and (max-width: 1024px) {
    .important__ex--q {
        flex-direction: column;
    }
}

.important__ex--q-icon {
    background-image: url(https://tudoino.web.holo.ne.jp/wp-content/uploads/q-icon.png);
    -o-object-fit: cover;
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 30px;
    aspect-ratio: 1/1;
    height: auto;
    display: block;
}

.think {
    padding-top: var(--px100);
}

.think__item {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.think__header {
    padding: 0 0 16px 4px;
    margin-bottom: var(--px40);
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 36px;
}

@media screen and (max-width: 768px) {
    .think__header {
        flex-direction: column;
        gap: 8px;
    }
}

.think__main {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 38px;
}

.think__header--small {
    font-size: var(--px16);
}

.think__header--large {
    font-size: var(--px24);
}

@media screen and (max-width: 768px) {
    .think__header--large {
        font-size: 22px !important;
        text-align: center;

    }

    .think__header--large {
        font-size: 22px !important;
    }

    .think__bottom--text {
        font-size: var(--rem18);
    }

    .inner__important__ex {
        font-size: var(--rem18);
    }
}

@media screen and (max-width: 1024px) {
    .think__main {
        flex-direction: column-reverse;
    }
}

.think__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.think__list--item {
    display: flex;
    flex-direction: column;
    gap: var(--10px);
}

@media screen and (max-width: 1024px) {
    .think__list--item {
        align-items: center;
    }
}

.think__list--text {
    line-height: 1.8;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 1024px) {
    .think__list--text {
        width: 100%;
    }
}

.think__thum {
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .think__thum {
        padding-right: 0;
    }
}

.think__thum--image {
    width: 100%;
    height: auto;
    max-width: 570px;
}

.think__bottom {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.post ul.think__list--dott {
    list-style: none;

    >li {
        display: flex;
        font-size: var(--rem18);
        font-weight: 500;
        gap: 14px;
        align-items: center;
        margin-bottom: 1em;

        &::before {
            content: '';
            display: inline-block;
            width: 16px;
            height: 16px;
            background-color: var(--color-primary);
            border-radius: 50vh;
        }
    }
}


.inner__important {
    margin: 0 auto;
    width: 100%;
    max-width: 1240px;
    border: 1px solid #d9d9d9;
    padding: var(--px30) var(--px40) var(--px40) var(--px100);
    display: flex;
    flex-direction: column;
    gap: 55px;
}

@media screen and (max-width: 1024px) {
    .inner__important {
        padding: var(--px30);
    }
}

.inner__important__ex {
    margin: 0 auto;
    max-width: 1133px;
    padding: var(--px30) var(--px180);
    background-color: #F5F2ED;
    display: flex;
    flex-direction: column;
    gap: var(--px12);
}

@media screen and (max-width: 1024px) {
    .inner__important__ex {
        flex-direction: column;
        padding: var(--px30);
    }
}

.inner__think {
    margin: 0 auto;
    width: 100%;
    max-width: 1240px;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.ta-c {
    text-align: center;
}

.ta-l {
    text-align: left;
}

.cf7_file {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 32px;
}

.cf7_file-row {
    display: flex;
    gap: 4px;
}

@media screen and (max-width: 768px) {
    .cf7_file-row {
        flex-direction: column;
    }
}

@media screen and (min-width: 769px) {
    .pc_none {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .sp_none {
        display: none !important;
    }
}

/*# sourceMappingURL=main.css.map */