@charset "utf-8";

/*
Theme Name:mrp-child
Template:mrp
Version: 1.0.0
*/
/*
DesignCode CSS: ver 0.01
*/
/*------------------------------------------------------
Theme Material
------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
    --color-background: #FFFFFF;
    --color-font: #343433;
    --color-wt: #fff;
    --color-bk: #343433;
    --color-gr: #eee;
    --color-primary: #F15929;
    --color-primary-shade: #F15929;
    --color-primary-tint: #F7931D;
    --color-secondary: #F15929;
    --color-secondary-tint: #F15929;
    --color-table-border: #ddd;
    --body-font-size: min(calc(1.6rem + (1vw - 1.92rem) * 0.1294), 1.6rem);
    --body-font-family: 'Noto Sans JP', sans-serif;
    --content-max-width: 1260px;
    --header-background: #FFFFFF;
    --header-color-font: #343433;
    --header-color-primary: #F15929;
    --header-color-primary-shade: #F15929;
    --header-color-primary-tint: #F7931D;
    --footer-background: #FFFFFF;
    --footer-color-font: #343433;
    --footer-color-primary: #F15929;
    --font-family01: "Noto Sans JP", sans-serif;
    --font-family02: "Montserrat", sans-serif;
    --font-family03: "Figtree", sans-serif;
    --font-awe: "Font Awesome 6 Free";
}

/*================================
common-reset
================================*/
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
}

a {
    color: var(--color-font);
    transition: 0.3s all;

    &:hover img {
        opacity: 1;
    }
}

#breadcrumb {
    position: relative;

    ul li,
    ul li a {
        color: var(--color-font);
    }
}

.post h1,
h1.title,
h1,
.post h2,
.post2b h2,
.post4b h2,
h2.title,
h2,
h3,
.post h3,
h4,
.post h4,
h5,
.post h5 {
    color: var(--color-font);
}

/*================================
common-tuning
================================*/
#content,
body:not(.home) #content.wide {
    padding: var(--px100w) 0 var(--px100);
    position: relative;
}

#scrollUp {
    bottom: 30px !important;
    background: var(--color-primary) !important;
}

@media print,
screen and (max-width: 768px) {
    #scrollUp {
        position: fixed;
        bottom: 70px !important;
    }
}

/*---投稿---*/
.post .time,
.postlist .time,
.post2b .time,
.post4b .time {
    background: var(--color-primary-shade);
}

.postlist li {
    border-bottom: 1px solid #ddd;
}

.postlist .post_text {
    padding-block: var(--px20);
}

.post4b {
    .post4b_img {
        aspect-ratio: 4 / 3;

        img {
            max-height: 100%;
            max-width: 100%;
        }
    }

    .post4b_text {
        margin-top: 1em;
    }

    h2 {
        margin: 0.3em 0 0 0 !important;
    }
}

@media print,
screen and (max-width: 768px) {
    .post4b li {
        margin: 0;
        padding-bottom: 2.5rem;
    }

    #content .post4b_img {
        max-width: 100%;
    }

    #content .post4b_text70 {
        width: 100%;
        margin-top: 1.5rem;
    }
}

/*-------------
	下層ページtuning
-------------*/
.fw_contents {
    margin-top: 0;
    margin-bottom: 0;
}

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

.page_contents_inner+.page_contents_inner {
    margin-top: var(--px100);
}

.fw_contents .page_contents_inner {
    padding-block: var(--px100);
    margin-top: 0;
}

/*---テーブル---*/
.post table th {
    background: #ededed;
}

.post table td {
    color: var(--color-font);
    background: #fff;
}

/*================================
common utility
================================*/
.u-basewidth {
    max-width: var(--content-max-width);
    margin-left: auto;
    margin-right: auto;
    width: min(var(--content-max-width), 90%);
}

.u-mauto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.u-centerbtn {
    width: max-content !important;
    margin-inline: auto;
    display: block;
}

.u-ccwh {
    color: #fff;
}

.u-txtline-under {
    text-decoration: underline;
    transition: all ease 0.6s;

    &:hover {
        opacity: 0.6;
    }
}

li.u-disc {
    position: relative;

    &::before {
        content: "・" !important;
        display: inline-block !important;
        margin-right: 0.5em;
    }
}

/* アンカーリンク 遷移後の表示位置調整 */
.u-anchorLink-scroll {
    scroll-margin-top: 100px;
}

.u-anchorLink-view {
    padding-top: 100px;
    margin-top: -100px;
}

.anchor_link::before {
    padding-top: 100px;
    margin-top: -100px;
}

/*---font---*/
.u-fs16 {
    font-size: min(calc(1.6rem + (1vw - 1.92rem) * 0.3236), 1.6rem);
    /*1.6-1.1(1920-375)*/
    line-height: 2;
    font-weight: 400;
}

.u-fs14 {
    font-size: min(calc(1.4rem + (1vw - 1.92rem) * 0.1294), 1.4rem);
    line-height: 2;
    font-weight: 400;
}

/*================================
common parts[button]
================================*/

/*---link_btn---*/
.link_btn {
    color: #fff;
    width: auto;
    max-width: 100%;
    line-height: 1;
    padding: 0;
    background: var(--color-primary);
    border-radius: 100px;
    border: none;
    z-index: 5;

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

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

    a {
        position: relative;
        padding: var(--px24) var(--px40);
        display: inline-block;
        color: #fff;
        font-size: min(calc(1.5rem + (1vw - 1.92rem) * 0.1942), 1.5rem);
        /*1.5-1.2(1920-375)*/
        font-family: var(--font-family02);
        font-weight: 600;

        &::after {
            content: '\f138';
            display: inline-block;
            font-family: var(--font-awe);
            margin-left: 3px;
        }
    }

    &.ccwh {
        color: #fff;
        border-color: #fff;
        background: transparent;

        a {
            color: #fff;
        }
    }
}

/*---linkBtn---*/
.linkBtn:hover,
.post .linkBtn:hover {
    color: #fff;
    background: var(--color-primary);
    opacity: 0.6;
}

/*================================
common parts[title]
================================*/
.single-post h1.title {
    color: var var(--color-font);
}

.post h2.c-ttl,
h2.c-ttl {
    &.c-ttl__primary {
        color: var(--color-primary);
        line-height: 1.6;
        margin: 0;
        font-size: var(--rem20);
        font-family: var(--font-family01);
        font-weight: 900;
        letter-spacing: 0.01em;
        padding-bottom: 0;
        position: relative;

        &::before {
            display: none;
        }

        &::after {
            display: none;
        }

        .c-ttl__en {
            display: block;
            color: var(--color-font);
            font-size: var(--rem40);
            font-family: var(--font-family02);
            line-height: 1;
            font-weight: 700;
            padding-top: 0;
        }

        .c-ttl__jp {}
    }
}

@media screen and (max-width:768px) {

    .post h2.c-ttl,
    h2.c-ttl {
        &.c-ttl__primary {
            font-size: 1.3rem;

            .c-ttl__en {
                font-size: 3rem;
            }
        }
    }
}

body:not(.home) .post {

    h1:not([class]) {
        font-size: var(--rem40);
        font-family: var(--font-family02);
        font-weight: 600;
        letter-spacing: .02em;
        text-align: center;
        text-shadow: none;
        padding: 0;
        z-index: 20;
    }

    h2:not([class]) {
        font-size: var(--rem30);
        font-family: var(--font-family04);
        font-weight: 500;
        letter-spacing: .2rem;
        color: var(--color-font);
        padding: 0;
        margin: var(--px80) auto var(--px40);
        line-height: 1.4;
        text-align: left;
        border: 1px solid #ccc;
        padding: var(--px24) var(--px30) var(--px30);
        line-height: 1;
        background: #fff;

        &::before {
            content: '';
            position: absolute;
            background: var(--color-primary-shade);
            width: 4px;
            height: 50%;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
        }

        &::after {
            content: none;
        }
    }

    h3:not([class]) {
        position: relative;
        font-size: var(--rem24);
        font-family: var(--font-family04);
        color: var(--color-font);
        font-weight: 600;
        letter-spacing: .1rem;
        padding: 0;
        text-align: left;
        margin: var(--rem60) auto var(--rem20);
        border-left: double 4px var(--color-primary);
        border-bottom: none;
        padding-left: var(--rem16);

        span.subtxt {
            display: block;
            font-size: var(--rem14);
            font-weight: 400;
            margin: 0 0 var(--rem12);
        }

        &:has(.subtxt) {
            border: none;
            padding-left: 0;
        }
    }

    h4:not([class]) {
        position: relative;
        font-size: var(--rem18);
        font-family: var(--font-family04);
        color: var(--color-font);
        font-weight: 600;
        letter-spacing: .1rem;
        padding: var(--rem12);
        text-align: left;
        margin: var(--rem40) auto var(--rem14);
        border: solid 0.1rem;

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

    h1:not([class]):first-of-type,
    h2:not([class]):first-of-type {
        margin-top: 0;
    }
}

/*================================
common designcode
================================*/
/*---------col02-----------*/

.post {

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

    .col2_list>li {
        width: 48%;
        margin-bottom: 5%;

        .imgarea {
            overflow: hidden;
            aspect-ratio: 1.414/ 1;

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

    .col2_list.col2_minlist li {
        margin-bottom: 6px;
    }
}

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

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

/*---------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;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

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

    .col3_list::before {
        content: "";
        display: block;
        width: 32%;
        height: 0;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

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

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

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

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

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


/*---------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;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .col4_list>li {
        width: 23%;
        margin-bottom: 1.5%;

        .imgarea {
            overflow: hidden;
            aspect-ratio: 1.414/ 1;

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

    .col4_list::before {
        content: "";
        display: block;
        width: 23%;
        height: 0;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

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

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

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

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

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

/*--幅フル100%背景色--*/
.widecolor {
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
    padding: var(--px100) calc((100vw - 100%) / 2);
    margin-top: var(--px100);
    background: #f5f5f5;
}

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

/*================================
common layout[header]
================================*/
#header .logo {
    .logo-default {
        display: block;
    }

    .logo-top {
        display: none;
    }
}

body.home #header .logo {
    .logo-default {
        display: none;
    }

    .logo-top {
        display: block;
    }
}

@media print,
screen and (min-width: 1024px) {
    #header {
        height: 160px;
        position: relative;
        background: transparent;
    }

    #header-layout {
        align-items: flex-start;

        .logo {
            padding: var(--px30) 0 0 var(--px30);
            height: auto;

            a {
                align-items: flex-start;
                height: auto;

                img {
                    max-height: min(calc(75px + (1vw - 19.2px) * 1.6741), 75px) !important;
                    /*75-60(1920-1024)*/
                }
            }
        }

        .header__nav-contact {
            flex-shrink: 1;
            width: 100%;
            align-items: flex-start;

            nav#mainNav {
                margin-left: var(--px60);
                height: auto;
                padding-top: var(--px60);

                ul li a {
                    flex-direction: row;
                    font-feature-settings: 'palt';
                    font-size: min(calc(1.6rem + (1vw - 1.92rem) * 0.4464), 1.6rem);
                    padding-block: 0 1em;
                    padding-inline: var(--rem12);
                    color: #fff;

                    b {
                        font-weight: 600;
                    }

                    &:hover {
                        opacity: 0.9;
                    }
                }
            }

            .c-header-numwrap {
                margin-left: auto;
                display: flex;
                flex-direction: column;
                gap: 5px;
                margin-top: min(calc(4rem + (1vw - 1.92rem) * 2.2321), 4rem);

                .c-header-numwrap__num {
                    width: max-content;

                    a.c-head-tel {
                        display: flex;
                        flex-direction: column;
                        color: #fff;

                        span.num {
                            position: relative;
                            font-family: var(--font-family03);
                            font-size: var(--rem30);
                            font-weight: 600;
                            line-height: 1;
                            display: flex;
                            align-items: center;
                            gap: 0.2em;

                            &::before {
                                content: "\f095";
                                font-family: var(--font-awe);
                                font-size: 65%;
                            }
                        }

                        span.note {
                            font-size: min(calc(1.5rem + (1vw - 1.92rem) * 0.3348), 1.5rem);
                            display: inline-block;
                            align-self: center;

                            b {
                                font-weight: 500;
                            }
                        }
                    }
                }
            }

            ul.header__contact {
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 1rem;
                margin-left: var(--px24);
                padding-right: var(--px20);
                height: auto;
                margin-top: var(--px20);

                li {
                    height: auto;

                    a.c-head-btn {
                        display: flex;
                        aspect-ratio: 1 / 1;
                        height: min(calc(12rem + (1vw - 1.92rem) * 4.4643), 12rem);
                        justify-content: center;
                        align-items: center;
                        background: linear-gradient(330deg, #F15929, #F7931D);
                        color: #fff;
                        font-size: min(calc(1.4rem + (1vw - 1.92rem) * 0.4464), 1.4rem);
                        font-weight: 600;
                        border-radius: 10px;
                        transition: all .3s ease;

                        &:hover {
                            opacity: .7;
                        }

                        span {
                            display: flex;
                            position: relative;
                            flex-direction: column;
                            align-items: center;
                            line-height: 1;
                            gap: 3px;

                            &::before {
                                content: "\f0e0";
                                font-family: var(--font-awe);
                                font-size: 160%;
                                font-weight: 600;
                            }
                        }

                        &.c-head-btn__line {
                            background: linear-gradient(330deg, #00A400, #01B901);

                            span {
                                &::before {
                                    content: "\f3c0";
                                    font-family: "Font Awesome 6 Brands";
                                    font-weight: 400;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .gtranslate_wrapper {
        display: flex;
        align-items: center;
        width: min(calc(210px + (1vw - 19.2px) * 5.5804), 210px);
        /*210-160(1920-1024)*/

        .gt_selector {
            min-height: 30px;
            padding: 0;
            margin: 0;
        }
    }

    #header-layout .header__nav-contact {

        /*sub-menu*/
        nav#mainNav ul.sub-menu>li:has(ul.sub-menu)>a::after {
            content: '\f105' !important;
        }

        nav#mainNav ul li a:active,
        nav#mainNav ul li a:hover,
        nav#mainNav ul li.current-menu-ancestor a,
        nav#mainNav ul li.current-menu-item a,
        nav#mainNav ul li.current-menu-parent a {
            background: transparent;
            opacity: 1;
        }

        nav#mainNav ul li.current-menu-item a b,
        nav#mainNav ul li a:hover b,
        nav#mainNav ul li a:active b,
        nav#mainNav ul li.current-menu-parent a b {
            color: inherit;
        }

        nav#mainNav ul li li.current-menu-item a,
        nav#mainNav ul li.current-menu-ancestor li.current-menu-item a {
            background: rgba(255, 255, 255, 1);
            color: var(--color-font);
        }

        nav#mainNav ul li ul.sub-menu li a:hover {
            background: rgba(255, 255, 255, 0.6);
            color: var(--color-font);
        }

        nav#mainNav ul li li a,
        nav#mainNav ul li li.current-menu-item li a,
        nav#mainNav ul li.current-menu-ancestor li a,
        nav#mainNav ul li.current-menu-item li a {
            color: var(--color-font);
            padding-block: .8em;
        }
    }
}

@media screen and (max-width:768px) {
    #header {
        background: #fff;
    }

    #header .logo .mark {
        a {
            img {
                max-height: 30px;
            }
        }
    }
}

body:not(.home) {
    #header-layout {
        .header__nav-contact {
            nav#mainNav {
                ul li a {
                    color: var(--color-font);
                }
            }

            .c-header-numwrap {
                .c-header-numwrap__num {
                    a.c-head-tel {
                        color: var(--color-bk);
                    }
                }
            }
        }
    }
}

body.sticky-header {
    #header {
        #header-layout {
            height: 100px;
            align-items: center;

            .logo {
                padding: 0 0 0 var(--px30);

                .logo-default {
                    display: block;
                    max-height: 55px !important;
                }

                .logo-top {
                    display: none;
                }
            }
        }
    }

    #header-layout {
        .header__nav-contact {
            align-items: center;

            nav#mainNav {
                margin-left: var(--px30);
                padding: 0;

                ul li a {
                    color: var(--color-font);
                    padding-bottom: 0;
                }

                ul.sub-menu li a {
                    padding-block: .8em;
                }
            }

            .c-header-numwrap {
                flex-direction: row;
                gap: var(--px20);
                margin-top: 0;

                .c-header-numwrap__num {
                    order: 2;

                    a.c-head-tel {
                        color: var(--color-font);

                        span.num {
                            color: var(--color-font);
                            font-size: var(--rem24);
                            font-weight: 700;
                        }

                        span.note {
                            font-size: var(--rem12);
                        }
                    }
                }
            }

            ul.header__contact {
                margin-top: 0;

                li {
                    a.c-head-btn {
                        height: 80px;
                        aspect-ratio: auto;
                        width: auto;
                        padding-inline: 1em;
                    }
                }
            }
        }
    }
}

/*================================
common layout[footer]
================================*/
body:not(.home) #footers {
    background: linear-gradient(270deg, #FFF3E4 0%, #FFFFFF 25%, #FFF3E4 100%);
}

.l-footer-inner {
    max-width: 1300px;
    width: min(1300px, 90%);
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: var(--px120);
}

.c-footer-about {
    .c-footer-about__logo img {
        max-height: 75px;
    }

    p.c-footer-about__name {
        font-size: 1.7rem;
        font-weight: 800;
        margin-block: var(--px20) 0.2em;
    }

    p.c-footer-about__address {
        font-size: 1.3rem;
        margin-bottom: 1em;
        font-weight: 600;
    }

    p.c-footer-about__tel {
        span.nums {
            font-family: var(--font-family03);
            font-size: var(--rem30);
            font-weight: 600;
            line-height: 1;
            position: relative;
            display: flex;
            align-items: center;

            &::before {
                content: "\f095";
                font-family: var(--font-awe);
                font-size: 70%;
            }
        }

        span.note {
            font-size: 1.3rem;
        }
    }

    .footnav {
        margin-top: 0.8em;

        ul {
            display: flex;
            gap: 1em;
            align-items: center;

            li a {
                font-size: var(--rem14);
                font-weight: 700;
                position: relative;

                &::before {
                    content: "";
                    display: inline-block;
                    width: 1px;
                    height: 100%;
                    background: #ccc;
                    position: absolute;
                    left: -0.5em;
                    top: 50%;
                    transform: translateY(-50%);
                }
            }

            li:first-of-type a::before {
                display: none;
            }
        }
    }
}

.c-footer-btnwrap {
    p {
        font-size: var(--rem20);
        font-weight: 800;
        text-align: center;

        span {
            font-size: var(--rem14);
            display: block;
        }
    }

    ul {
        display: flex;
        flex-direction: column;
        margin-top: var(--px18);
        gap: 1rem;
        align-items: center;

        li.c-footer-btn {
            width: 360px;
            background: var(--color-primary);
            border-radius: 100px;

            a {
                color: #fff;
                display: flex;
                justify-content: center;
                align-items: center;
                padding-block: var(--px20);
                font-size: var(--rem18);
                font-weight: 700;
                position: relative;
                transition: all .3s ease;

                &:hover {
                    opacity: .7;
                }

                &::after {
                    content: "\f0e0";
                    font-family: var(--font-awe);
                    font-size: 140%;
                    margin-left: 0.2em;
                }
            }

            &.c-footer-btn--line {
                background: #00A400;

                a::after {
                    content: "\f3c0";
                    font-family: "Font Awesome 6 Brands";
                    font-weight: 400;
                }
            }
        }
    }
}

#copyright {
    margin: 0;
    background: linear-gradient(90deg, #F7931D, #F15929);
    color: #fff;
    padding-block: var(--px40);
}

@media screen and (max-width:768px) {
    .l-footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        gap: var(--px50);
        max-width: 100%;

        .c-footer-about {
            p.c-footer-about__tel span.nums {
                justify-content: center;
                font-size: var(--px50);
            }

            .footnav ul {
                justify-content: center;
            }
        }

        .c-footer-btnwrap {
            width: 100%;

            ul {
                width: 100%;
            }

            ul li.c-footer-btn {
                width: 90%;
                box-sizing: border-box;
                margin-inline: auto;
            }
        }
    }
}

/*================================
メインイメージ
================================*/
html:not(.mobile) #mainImg {
    margin-top: -160px;
}

#mainImg {
    background: linear-gradient(180deg, #FFF3E4 0%, #FFFFFF 25%, #FFF3E4 100%);
    position: relative;
    z-index: 2;
}

#mainImg .n2-ss-widget.nextend-thumbnail {
    left: 10% !important;
    top: 73% !important;
}

div#n2-ss-3 .n2-thumbnail-dot img {
    aspect-ratio: 250 / 180;
    height: min(calc(180px + (1vw - 19.2px) * 8.6881), 180px) !important;
}

.slide-graphwrap {
    position: absolute;
    right: var(--px30);
    bottom: 0;

    figure {
        width: min(calc(680px + (1vw - 19.2px) * 34.7524), 680px);
        /*680-280(1920-769)*/
        aspect-ratio: 1440 / 520;
    }

    p {
        text-align: right;
        padding-right: 40px;
        font-size: var(--rem12);
        margin-top: -5px;
    }
}

@media only screen and (max-width: 700px) {
    .slide-graphwrap {
        bottom: 150px;
        right: 5%;

        figure {
            width: 60vw;
        }

        p {
            padding-right: 5%;
        }
    }

    #mainImg .n2-ss-widget.nextend-thumbnail {
        left: 2% !important;
        top: auto !important;
        height: clamp(70px, 20vw, 180px) !important;
        bottom: 0;
    }

    div#n2-ss-3 .n2-thumbnail-dot img {
        height: clamp(70px, 20vw, 180px) !important;
        width: auto !important;
    }
}

/*================================
common layout[CONTACT]
================================*/
ul.c-phonelist {
    display: flex;
    justify-content: center;
    gap: 1rem;

    li a {
        background: var(--color-primary);
        color: #fff;
        border-radius: 100px;
        padding: 2rem 3rem;
        font-size: var(--rem18);
        font-weight: 600;
        transition: all ease 0.6s;

        &:hover {
            opacity: 0.8;
        }
    }
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="url"],
input[type="number"],
select,
textarea {
    vertical-align: middle;
    line-height: 30px;
    min-height: 50px;
    padding: 10px;
    border-radius: 0;
    color: var(--color-font);
    background: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 7px;
}

span.wpcf7-list-item {
    margin: 0;
}

.wpcf7-form {
    label {
        background: #fff;
        border-radius: 10px;
        padding: 6px 12px 8px 6px;
        display: block
    }
}

.wpcf7-form {
    padding: 0;
}

.wpcf7-form a {
    color: var(--color-font);
    border-bottom: solid 1px;
}

.wpcf7-form a:hover {
    color: var(--color-font);
    opacity: 0.6;
    border-bottom: solid 1px #aaa;
}

.wpcf7-form .must {
    background: var(--color-primary);
}

div.wpcf7 .ajax-loader {
    display: none;
}

/*--------submit_btn-------*/

.linkBtn.submit_btn {
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 320px;
}

.post .subimitarea .linkBtn input[type="submit"] {
    width: 100%;
    display: block;
    font-size: var(--px16);
    font-weight: 600;
    font-family: var(--font-family03);
    letter-spacing: .01em;
    text-align: center;
    padding: var(--px16) var(--px20);
    -webkit-transition: 0.7s all;
    -o-transition: 0.7s all;
    transition: 0.7s all;
    z-index: 1;
    position: relative;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.post .linkBtn.submit_btn::after {
    content: none;
}

.submit_btn .wpcf7-spinner,
.post .submit_btn .wpcf7-spinner {
    margin: 0;
    top: calc(100% + 15px);
}

.linkBtn input[type="submit"]:hover,
.post .linkBtn input[type="submit"]:hover {
    background: var(--color-primary);
    color: #fff;
    opacity: 0.6;
}

.post .wpcf7 {
    .subimitarea .linkBtn {
        padding: 0;

        input[type="submit"] {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
        }
    }
}

/*================================
common layout[THANKS]
================================*/
#thanks h2 {
    text-align: left;

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

/*================================
common layout[404]
================================*/

body.error404 #wrapper section h1 {
    padding: 0;
    font-family: var(--font-family01);
    background: transparent;
    margin: 20px 0 calc(40px + (1vw - 19.2px) * 1.6828) 0;
    /*40px-14px*/
    color: var(--color-font);
    font-weight: 500;
    font-size: calc(3rem + (1vw - 1.92rem) * 0.6472);
    /*3rem-1.7rem*/
    line-height: 1.4;
    letter-spacing: -1px;
    padding-bottom: 10px;
    border-bottom: solid 1px var(--color-font);
    width: 100%;
}

/*================================
common layout[PRIVACY]
================================*/
#privacy h3 {
    font-size: var(--rem20);
    font-weight: 800;
}

/*================================
common layout[HISTORY]
================================*/

.post .list_style01 li {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    flex-shrink: 0;
    border-bottom: solid 1px #ddd;
}

.post .list_style01 li .head {
    width: 25%;
    padding: min(calc(10px + (1vw - 19.2px) * 0.3236), 10px) min(calc(15px + (1vw - 19.2px) * 0.4531), 15px);
    /* 30-20px 15-10px (1920-375) */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.post .list_style01 li .body {
    width: 75%;
    padding: min(calc(10px + (1vw - 19.2px) * 0.3236), 10px) min(calc(15px + (1vw - 19.2px) * 0.4531), 15px);
    /* 30-20px 15-10px (1920-375) */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.post .list_style01 li:nth-child(odd) {
    background: #eee;
}

@media only screen and (max-width: 640px) {
    .post .list_style01 li {
        flex-direction: column;
    }

    .post .list_style01 li .head {
        width: 100%;
        padding-bottom: 0;
    }
}

/*================================
トップページ
================================*/
/* ==========================================================================
   Component Styles reset
   Scope: .post .package_parts
   ========================================================================== */

/* ボックスモデルの統一 */
.post .package_parts,
.post .package_parts * {
    box-sizing: border-box;
}

/* --- 見出し(h1-h6)のリセット --- */

.post .package_parts h1,
.post .package_parts h2,
.post .package_parts h3,
.post .package_parts h4,
.post .package_parts h5,
.post .package_parts h6 {
    margin: 0;
    padding: 0;
    border: none;
    /* 親テーマの線を消す */
    background: none;
    /* 親テーマの背景を消す */
    font-size: 100%;
    font-weight: normal;
    color: inherit;
    line-height: 1.5;
    box-shadow: none;
    text-shadow: none;
    width: auto;
    position: static;
}

/* 見出しの擬似要素(アイコン等)を消去 */
.post .package_parts h1::before,
.post .package_parts h1::after,
.post .package_parts h2::before,
.post .package_parts h2::after,
.post .package_parts h3::before,
.post .package_parts h3::after,
.post .package_parts h4::before,
.post .package_parts h4::after,
.post .package_parts h5::before,
.post .package_parts h5::after,
.post .package_parts h6::before,
.post .package_parts h6::after {
    content: none;
    display: none;
    background: transparent;
}

/* --- リスト(ul, ol, li)のリセット --- */
.post .package_parts ul,
.post .package_parts ol {
    list-style: none;
    margin: 0;
    padding: 0;
    background: none;
}

.post .package_parts li {
    list-style: none;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    display: block;
    width: auto;
}

.post .package_parts li::before,
.post .package_parts li::after {
    content: none;
    display: none;
}

/* --- 定義リスト(dl, dt, dd)のリセット --- */
.post .package_parts dl,
.post .package_parts dt,
.post .package_parts dd {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font-weight: normal;
    line-height: 1.5;
}

/* --- その他タグのリセット --- */
.post .package_parts p,
.post .package_parts figure,
.post .package_parts blockquote,
.post .package_parts dl,
.post .package_parts dt,
.post .package_parts dd {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
}

.post .package_parts table {
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    border: none;
    background: none;
}

.post .package_parts th,
.post .package_parts td {
    padding: 0;
    border: none;
    background: none;
    text-align: left;
}

/* --- 画像のリセット --- */
.post .package_parts img {
    padding: 0 !important;
    border: none !important;
    margin: 0;
    max-width: 100%;
    height: auto;
    box-shadow: none !important;
    vertical-align: bottom;
    float: none;
    background: none !important;
}

/* --- リンクのリセット --- */
.post .package_parts a {
    text-decoration: none;
    color: inherit;
    transition: none;
    border: none;
}

/* --- WordPress固有クラスの無効化 --- */
.post .package_parts .aligncenter,
.post .package_parts .alignleft,
.post .package_parts .alignright {
    float: none;
    margin: 0;
    display: inline;
}

/*--------aboutus-------*/
.l-aboutus {
    background: linear-gradient(180deg, #FFF3E4 0%, #FFFFFF 25%, #FFF3E4 100%);
    padding-block: var(--px40) var(--px160);

    .l-aboutus__inner {
        display: flex;
        gap: var(--px60);
        justify-content: center;
        max-width: 1600px;
        width: min(1600px, 90%);
        margin-inline: auto;
    }
}

.c-topabout-txtarea {
    padding-top: min(calc(8rem + (1vw - 1.92rem) * 5.2129), 8rem);

    h2.c-topabout-txtarea__ttl {
        text-align: left;
        font-size: min(calc(3rem + (1vw - 1.92rem) * 1.3901), 3rem);
        font-weight: 900;
        margin-bottom: var(--px30);

        &::after {
            display: none;
        }

        span {
            font-family: var(--font-family02);
            display: block;
            font-weight: 900;
            color: var(--color-primary);
            font-size: var(--rem16);
            line-height: 1;
            margin-bottom: .8em;
        }
    }

    p.c-topabout-txtarea__lead {
        line-height: 2;
        margin-bottom: var(--px30);
        font-size: min(calc(1.5rem + (1vw - 1.92rem) * 0.3475), 1.5rem);
    }
}

.c-topabout-imgarea {
    max-width: 760px;
    width: 39.5%;
    filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.1));
}

ul.c-topaboutworkslist {
    max-width: 1260px;
    width: min(1260px, 90%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--px30);
    margin-top: var(--px80);

    li {
        figure {
            position: relative;

            img {
                border-radius: 10px;
            }

            figcaption {
                position: absolute;
                left: 1em;
                bottom: 1em;
                font-size: min(calc(1.6rem + (1vw - 1.92rem) * 0.3475), 1.6rem);
                color: #fff;
                background: var(--color-primary);
                padding: .5em .5em;
                line-height: 1;
            }
        }

        h3 {
            margin: 1em 0 .3em;
            padding: 0;
            border: none;
            font-size: var(--rem20);
            line-height: 1;
            font-weight: 800;
        }

        p.c-topaboutworkslist__detail01 {
            font-weight: 600;
            font-size: min(calc(1.6rem + (1vw - 1.92rem) * 0.3475), 1.6rem);
            margin-bottom: .3em;
        }

        p.c-topaboutworkslist__detail02 {
            line-height: 1.5;
            font-size: min(calc(1.4rem + (1vw - 1.92rem) * 0.2606), 1.4rem);
            font-weight: 500;
            position: relative;

            &::before {
                content: "\f14a";
                font-family: var(--font-awe);
                font-weight: 600;
                color: var(--color-primary-tint);
                margin-right: .3em;
            }
        }
    }
}

@media screen and (max-width:768px) {
    .l-aboutus {
        padding-block: var(--px100) var(--px120);

        .l-aboutus__inner {
            flex-direction: column;
        }
    }

    .c-topabout-txtarea {
        padding: 0;

        h2.c-topabout-txtarea__ttl {
            font-size: var(--px40);
        }

        p.c-topabout-txtarea__lead {
            font-size: var(--rem16);
        }
    }

    .c-topabout-imgarea {
        max-width: 100%;
        width: 100%;
    }

    ul.c-topaboutworkslist {
        grid-template-columns: 1fr;
        width: 80%;
        gap: var(--px50);

        li {
            h3 {
                font-size: var(--rem30);
            }

            p.c-topaboutworkslist__detail01 {
                font-size: var(--rem16);
            }

            p.c-topaboutworkslist__detail02 {
                font-size: var(--rem14);
            }
        }
    }
}

/*--------reason-------*/
.l-reason {
    padding-bottom: var(--px100);
}

.post h2.c-bigttl {
    font-size: var(--rem30);
    color: var(--color-primary);
    font-weight: 900;
    line-height: 1;
    padding: 0;
    margin-top: calc((var(--px80) * -1));
    margin-bottom: var(--px40);

    span {
        font-family: var(--font-family02);
        display: block;
        font-size: min(calc(18rem + (1vw - 1.92rem) * 6.9505), 18rem);
        /*180-100(1920-769)*/
        font-weight: 700;
        color: var(--color-primary-tint);
        line-height: 0.7;
        margin-bottom: var(--px40);

        &::first-letter {
            color: var(--color-primary);
        }
    }

    &::after {
        display: none;
    }
}

p.c-ttl-lead {
    text-align: center;
    font-size: min(calc(1.7rem + (1vw - 1.92rem) * 0.3236), 1.7rem);
    /*1.7-1.2(1920-375)*/
    font-weight: 700;
    line-height: 2;
    letter-spacing: .05em;
    width: 90%;
    margin-inline: auto;
}

ul.c-reasonlist {
    max-width: 1300px;
    width: min(1300px, 90%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--px50);
    margin-top: var(--px60);
}

ul.c-reasonlist {
    max-width: 1300px;
    width: min(1300px, 90%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--px50);
    margin-top: var(--px50);

    li {
        figure img {
            border-radius: 10px;
        }

        h3 {
            padding: 0;
            margin: 1em 0 .5em;
            border: none;
            text-align: center;
            font-size: var(--rem20);
            font-weight: 800;
        }

        p {
            font-size: min(calc(1.5rem + (1vw - 1.92rem) * 0.1942), 1.5rem);
            /*1.5-1.2(1920-375)*/
            font-weight: 500;
        }
    }
}

@media screen and (max-width:768px) {
    .post h2.c-bigttl {
        margin-top: -20px;

        span {
            font-size: 5rem;
            margin-bottom: .3em;
        }
    }

    ul.c-reasonlist {
        grid-template-columns: 1fr;

        li {
            h3 {
                font-size: var(--rem30);
            }
        }
    }
}

/*--------property-------*/
.l-property {
    background: linear-gradient(180deg, #FFF3E4 0%, #FFFFFF 25%, #FFF3E4 100%);

    .l-property-inner {
        max-width: 1300px;
        width: min(1300px, 90%);
        margin-inline: auto;
        padding-bottom: var(--px200);
    }
}

.c-entrywrap {
    h3 {
        text-align: center;
        font-size: var(--rem30);
        font-weight: 900;
        border: none;
        padding: 0;
        margin: 0 0 var(--px30) 0;

        span {
            display: block;
            font-size: var(--rem14);
            line-height: 1;
            font-family: var(--font-family02);
            color: var(--color-primary-tint);
        }
    }

    ul.c-entrylist {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: var(--px30);

        li {
            figure {
                position: relative;

                img {
                    border-radius: 10px;
                    aspect-ratio: 4 / 3;
                    object-fit: cover;
                }

                figcaption {
                    color: #fff;
                    position: absolute;
                    left: 1em;
                    top: 1em;
                    line-height: 1;
                    background: var(--color-primary-tint);
                    font-size: var(--rem14);
                    font-weight: 700;
                    padding: .6em;
                }
            }

            p.c-entrylist__detail {
                font-size: min(calc(1.7rem + (1vw - 1.92rem) * 0.3236), 1.7rem);
                /*1.7-1.2(1920-375)*/
                font-weight: 600;
                margin-top: 1em;
                line-height: 1.9;
            }
        }
    }

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

    &.c-entrywrap--solar {
        h3 span {
            color: var(--color-primary);
        }

        ul.c-entrylist li figure figcaption {
            background: var(--color-primary);
        }

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

@media screen and (max-width:768px) {
    .c-entrywrap {
        ul.c-entrylist {
            grid-template-columns: 1fr 1fr;
            gap: var(--px40) var(--px30);
        }
    }
}

/*--------service-------*/
.l-service {
    position: relative;
    background: linear-gradient(50deg, #F7931D, #F15929);

    .l-service-inner {
        max-width: 1340px;
        width: min(1340px, 90%);
        margin-inline: auto;
        padding-block: var(--px100) var(--px200);

        h2 {
            color: #fff;
            text-align: left;
            font-size: var(--rem30);
            font-weight: 900;
            padding: 0;
            margin: 0 0 0 calc(-3.5rem + (1vw - 1.92rem) * -1.7376);
            position: relative;
            z-index: 2;

            span {
                font-size: min(calc(12rem + (1vw - 1.92rem) * 6.0817), 12rem);
                display: block;
                line-height: 0.8;
                font-family: var(--font-family02);
                font-weight: 700;
            }

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

    ul.c-servicelistwrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--px80);
        margin-top: -30px;
        position: relative;

        li.c-servicelistwrap__item {
            position: relative;

            figure img {
                border-radius: 20px;
                width: 100%;
            }

            .c-servicelistwrap__inner {
                position: absolute;
                background: #fff;
                bottom: -50px;
                left: -35px;
                max-width: 380px;
                text-align: center;
                width: 380px;
                padding-block: var(--px50);
                border-radius: 10px;

                h3 {
                    font-size: var(--rem30);
                    font-weight: 900;
                    padding: 0;
                    margin: 0 0 .3em 0;
                    border: none;

                    span {
                        display: block;
                        font-family: var(--font-family02);
                        font-size: var(--rem14);
                        line-height: 1;
                        color: var(--color-primary-tint);
                    }
                }

                ul.c-servicelistwrap__pointlist {
                    display: flex;
                    justify-content: center;
                    gap: 5px;

                    li {
                        background: var(--color-primary-tint);
                        color: #fff;
                        font-size: var(--rem14);
                        line-height: 1;
                        font-weight: 600;
                        padding: .2em .2em .3em;
                    }
                }

                p {
                    font-size: var(--rem14);
                    font-weight: 500;
                    margin-block: 1.6em 1.5em;

                    b {
                        display: block;
                        font-size: var(--px16);
                        font-weight: 900;
                        line-height: 1;
                        margin-bottom: .5em;
                    }
                }

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

            &.c-servicelistwrap__item--solar .c-servicelistwrap__inner {
                h3 span {
                    color: var(--color-primary);
                }

                ul.c-servicelistwrap__pointlist li {
                    background: var(--color-primary);
                }

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

figure.c-servicemotifimg {
    position: absolute;
    right: 0;
    top: calc(-18rem + (1vw - 1.92rem) * -8.9286);
    aspect-ratio: 657 / 1120;
    width: min(calc(657px + (1vw - 19.2px) * 28.6830), 657px);
}

@media only screen and (max-width: 1024px) {
    .l-service {
        .l-service-inner {
            padding-bottom: var(--px140);

            ul.c-servicelistwrap {
                gap: var(--px40);

                li.c-servicelistwrap__item {
                    .c-servicelistwrap__inner {
                        width: 90%;
                        max-width: 100%;
                        margin-inline: auto;
                        margin-top: -50%;
                        z-index: 5;
                        position: relative;
                        left: auto;
                        bottom: auto;
                    }
                }
            }
        }
    }
}

@media screen and (max-width:768px) {
    .l-service .l-service-inner {
        h2 {
            margin-left: -2%;

            span {
                font-size: var(--rem80);
            }
        }

        ul.c-servicelistwrap {
            grid-template-columns: 1fr;
            margin-top: -10px;

            li.c-servicelistwrap__item {
                .c-servicelistwrap__inner {
                    margin-top: -30%;

                    h3 {
                        font-size: var(--rem40);
                    }

                    ul.c-servicelistwrap__pointlist {
                        flex-wrap: wrap;

                        li {
                            font-size: var(--rem16);
                        }
                    }

                    .link_btn {
                        width: 80%;
                    }
                }
            }
        }
    }

    figure.c-servicemotifimg {
        width: 45%;
        top: calc((var(--px80) * -1));
    }
}

/*--------footbanner-------*/
.post .package_parts,
.package_parts {
    .c-banner-link {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .c-banner-link__item {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: var(--px30);
        min-height: auto;
        overflow: hidden;
    }

    .c-banner-link__bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .c-banner-link__bg img {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        object-fit: cover;
    }

    .c-banner-link__content {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--color-background);
    }

    .c-banner-link__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        color: #fff;
        padding-block: var(--px100);
    }

    .c-banner-link__en {
        font-family: var(--font-family02);
        font-size: var(--px50);
        font-weight: 700;
        line-height: 0.8;
        margin-bottom: 0.1em;
        letter-spacing: 0;
    }

    .c-banner-link__ja {
        font-size: var(--rem20);
        font-weight: 700;
        margin-bottom: var(--px24);
    }

    .c-banner-link__lead {
        font-size: var(--rem20);
        font-weight: 600;
        line-height: 1.5;
        margin-bottom: .7em;
    }

    .c-banner-link__desc {
        font-size: 1.1rem;
        line-height: 2;
        margin-bottom: var(--px30);
    }

    .c-banner-link__inner ul {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .c-banner-link__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--color-primary);
        color: #fff;
        padding: 1.5em var(--px40);
        font-size: var(--px14);
        font-weight: bold;
        text-decoration: none;
        transition: opacity 0.6s ease;
        line-height: 1;
        border-radius: 100px;

        &:hover {
            opacity: 0.7;
        }
    }

    .c-banner-link__btn::after {
        content: "\f138";
        display: inline-block;
        margin-left: .5em;
        font-family: var(--font-awe);
        font-weight: 600;
    }
}

@media screen and (min-width: 768px) {

    .post .package_parts,
    .package_parts {
        .c-banner-link {
            flex-direction: row;
        }

        .c-banner-link__item {
            flex: 1;
            padding: var(--px50);
            min-height: 720px;
        }

        .c-banner-link__inner {
            padding-block: 0;
        }

        .c-banner-link__desc {
            font-size: var(--rem14);
            line-height: 2.2;
        }
    }
}

/*--------instagram-------*/
.l-instagram .l-instagram-inner {
    max-width: 1300px;
    width: min(1300px, 90%);
    margin-inline: auto;
    padding-block: var(--px100);
    text-align: center;
}

/*--------news-------*/
.l-news {
    background: linear-gradient(270deg, #FFF3E4 0%, #FFFFFF 25%, #FFF3E4 100%);

    .l-news-inner {
        padding-block: var(--px100);
        max-width: 1300px;
        width: min(1300px, 90%);
        margin-inline: auto;
    }
}

/*--------------------------------------------------
	下層ページ
--------------------------------------------------*/
/*--------------------
	よく使うCBP用下層アイキャッチ周りの設定01
--------------------*/
@media print,
screen and (min-width: 1024px) {
    body:not(.home):not(.mce-content-body)::before {
        background: linear-gradient(200deg, #FFF3E4 0%, #FFFFFF 25%, #FFF3E4 100%);
        clip-path: polygon(0 0, 100% 0, 0 100%);
        width: 36%;
        height: 50vh;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0;
        content: '';
    }
}

header#h1Header {
    background: transparent;
    height: auto;
    z-index: 0;
    overflow: visible;
    margin-top: 0;

    &::before {
        display: none;
        background: #Efefef;
        clip-path: polygon(0 0, 100% 0, 0 100%);
        width: 45%;
        height: 30vh;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0;
        opacity: 1;
    }

    & h1.title {
        position: relative;
        padding-block: var(--px30) calc(7rem + (1vw - 1.92rem) * 2.5890);
        /*70-30(1920-1024)*/
        padding-inline: 5%;
        transform: none;
        color: var(--color-font);
        font-size: var(--rem40);
        font-weight: 600;
        font-family: var(--font-family02);

        &::before {
            content: "";
            position: absolute;
            bottom: 0px;
            width: min(1500px, 90%);
            height: 1px;
            left: 50%;
            transform: translateX(-50%);
            max-width: 1500px;
            background: rgb(204, 204, 204);
        }
    }
}

@media screen and (max-width:768px) {
    header#h1Header {
        margin-top: 0;
    }
}

/*--------------google翻訳--------------*/
@media print,
screen and (max-width: 1023px) {
    .header__translator {
        position: fixed;
        overflow: hidden;
        z-index: 999;
        right: 0;
        bottom: 120px;
        background: rgba(255, 255, 255, .8);
        padding: 10px 10px 10px 10px;
        border-radius: 5px 0 0 5px;
        -webkit-transition: .5s;
        transition: .5s;
    }

    .gtranslate_wrapper {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        background: transparent;
        gap: 4px;
    }

    .gtranslate_wrapper br {
        display: none;
    }

    select.gt_selector {
        display: none;
    }
}

/*--------------google翻訳ここまで--------------*/

.page-company .post table th { width: 10%;}

@media screen and (min-width: 769px) {
	.pc_txt_c { text-align: center}
}