@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=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');
:root {
	/*------▼基本設定▼------*/
	--color-background: #FFF;
	--color-font: #242424;
	--color-primary: #05056B;
	--color-primary-shade: #3B436B;
	--color-primary-tint: #CCCC00;
	--color-secondary: #05056B;
	--color-secondary-tint: #CCCC00;
	--color-table-border: #DDD;
	--body-font-size: min(calc(1.6rem + (1vw - 1.92rem) * 0.1294), 1.6rem);
	/* 1.6-1.4rem (1920-375) */
	--body-font-family: "Zen Kaku Gothic New", 'Noto Sans JP', sans-serif;
	--content-max-width: 1240px;
	/*------▼ヘッダー設定▼------*/
	--header-background: #FFF;
	--header-color-font: #242424;
	--header-color-primary: #05056B;
	--header-color-primary-shade: #3B436B;
	--header-color-primary-tint: #CCCC00;
	/*------▼フッター設定▼------*/
	--footer-background: #05056B;
	--footer-color-font: #fff;
	--footer-color-primary: #fff;
	/*------▼フォント設定▼------*/
	--font-family01: 'Noto Sans JP', sans-serif;
    --font-family02: 'Oswald', 'Noto Sans JP', sans-serif;
    --font-family03: "Zen Kaku Gothic New", 'Noto Sans JP', sans-serif;
    --font-family04: "Noto Serif JP", serif;
    --font-family05: "Shippori Mincho", serif;
}

/*--------------------------------------------------
	共通
--------------------------------------------------*/
.post {
    .ttl {
        &:is(.ttl--primary) {
            display: flex;
            flex-direction: column;
            margin-bottom: var(--rem60);
			position: relative;
            &::after {
				display: none;
            }
            .ttl--primary__en {
				font-family: var(--font-family04);
                font-size: min(calc(6.4rem + (1vw - 1.92rem) * 1.6828), 6.4rem);
                font-weight: 600;
                line-height: 1.4;
                letter-spacing: .06em;
				margin-bottom: var(--rem30);
                @media screen and (max-width: 768px) {
                    font-size: var(--rem60);
                }
            }
            .ttl--primary__ja {
                font-family: var(--font-family03);
                font-size: var(--rem36);
                font-weight: 500;
                line-height: 1.4;
                letter-spacing: 0;
                @media screen and (max-width: 768px) {
                    font-size: var(--rem24w);
                }
            }
        }
    }
	/* 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;
        flex-direction: column;
        gap: .1em;
        font-family: var(--font-family03);
        font-weight: 700;
        letter-spacing: 0;
        padding: 0;
        border: none;
        &::before, &::after {
			display: none;
		}
        .sub {
            font-family: var(--font-family04);
            color: #505097;
            font-size: var(--rem18);
        }
        .main {
            font-size: var(--rem20);
        }
    }
    .heading_mod-06 {
        display: flex;
        align-items: center;
        gap: 9px;
        font-family: var(--font-family04);
        font-size: var(--rem24);
        font-weight: 700;
        line-height: 1.4;
        letter-spacing: .15em;
        margin-top: var(--rem20);
        margin-bottom: var(--rem12);
        padding: 0;
        border: none;
        &::before {
            display: inline-block;
            content: "";
            width: var(--rem24);
            height: var(--rem24);
            background: var(--color-primary);
        }
        &::after {
            display: none;
        }
    }
    .heading-deco_mod-01 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .2em;
        width: fit-content;
        position: relative;
        &::before, &::after {
            display: block;
            content: "";
            aspect-ratio: 70 / 6;
            width: 1.94em;
            height: auto;
            background: var(--color-primary-tint);
        }
        &::before {
            transform: rotate(60deg);
        }
        &::after {
            transform: rotate(-60deg);
			margin: 0;
        }
    }
    p {
        line-height:2;
    }
    #exampleList {
        display: flex;
        flex-wrap: wrap;
        gap: var(--rem60) var(--px40);
        max-width: 1240px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        @media screen and (max-width: 1630px) {
            flex-wrap: wrap;
        }
        @media screen and (max-width: 767px) {
            width: 100vw;
            margin-left: calc(((100vw - 100%) / 2) * -1) !important;
            margin-right: calc(((100vw - 100%) / 2) * -1) !important;
        }
        @media screen and (max-width: 629px) {
            max-width: 1240px;
            width: 90%;
            margin-left: auto !important;
            margin-right: auto !important;
        }
        .exampleList__item {
            width: calc((100% - calc(var(--px40) * 2)) / 3);
            @media screen and (max-width: 1630px) {
                width: calc((100% - var(--px40)) / 2);
            }
            @media screen and (max-width: 767px) {
                width: 100%;
            }
        }
        .exampleList__link {
            display: block;
            height: 100%;
            background: #fff;
            transition: .3s;
            &:hover {
                background: #D5D6DF;
                .exampleList__figure {
                    border-color: var(--color-primary);
                }
                img {
                    opacity: 1;
                }
            }
            @media screen and (max-width: 767px) {
                display: flex;
            }
            @media screen and (max-width: 629px) {
                flex-direction: column;
            }
        }
        .exampleList__figure {
            display: flex;
            align-items: center;
            justify-content: center;
            aspect-ratio: 400 / 300;
            background: #fff;
            border: 1px solid #ACACAC;
            position: relative;
            overflow: hidden;
            @media screen and (max-width: 767px) {
                width: 45%;
            }
            @media screen and (max-width: 629px) {
                width: 100%;
            }
            .Labels {
                display: flex;
                align-items: flex-start;
                gap: 5px;
                position: absolute;
                top: var(--rem16);
                left: var(--px16);
                z-index: 1;
                .Label {
                    flex-shrink: 0;
                    color: #fff;
                    font-family: var(--font-family03);
                    font-size: 10px;
                    font-weight: 600;
                    letter-spacing: .16em;
                    text-align: center;
                    width: fit-content;
                    min-width: 74px;
                    background: var(--color-primary);
                    padding: 3px 10px;
                    &:is(.Label-cat-01) {
                        color: #fff;
                        background: var(--color-primary-shade);
                    }
                }
            }
            img {
                width: 100%;
                height: 100%;
                /* min-height: 105%; */
                border: 1px solid #ACACAC;
                object-fit: contain;
            }
        }
        .exampleList__summary {
            padding: 0 4px 11px;
            @media screen and (max-width: 767px) {
                width: 55%;
                padding: 0 var(--px16) 11px;
            }
            @media screen and (max-width: 629px) {
                width: 100%;
                padding: 0;
            }
            .exampleList__ttl {
                font-family: var(--font-family03);
                font-size: var(--rem24);
                font-weight: 600;
                letter-spacing: .16em;
                margin: var(--rem12) 0 var(--rem14);
                padding: 0;
                border: none;
                &::before, &::after {
                    display: none;
                }
                @media screen and (max-width: 767px) {
                    font-size: var(--rem30);
                }
            }
            .exampleList__table-top {
                border: none;
                margin-top: 0;
                margin-bottom: 5px;
                thead {
                    th {
                        font-family: var(--font-family03);
                        font-size: 10px;
                        font-weight: 600;
                        letter-spacing: .16em;
                        background: #F0F0F0;
                        border-radius: 4px;
                        border: none;
                        padding: 0 10px;
                        &:has(+ th) {
                            width: 33%;
                            border-radius: 5px 0 0 5px;
                            & + th {
                                width: 67%;
                                border-radius: 0 5px 5px 0;
                            }
                        }
                    }
                }
                tbody {
                    td {
                        width: 50%;
                        font-family: var(--font-family03);
                        font-weight: 600;
                        font-feature-settings: "palt";
                        letter-spacing: .16em;
                        vertical-align: baseline;
                        border: none;
                        padding: 0 10px;
                        & + td {
                            border-left: 1px dashed #E2E2E2;
                        }
                    }
                }
                .font_mod-01 {
                    font-size: var(--rem18);
                    font-weight: 600;
                    letter-spacing: .16em;
                    @media screen and (max-width: 767px) {
                        font-size: var(--rem24);
                    }
                    @media screen and (max-width: 629px) {
                        font-size: var(--rem24w);
                    }
                }
                .font_mod-02 {
                    font-size: 10px;
                    font-weight: 600;
                    letter-spacing: .16em;
                    vertical-align: middle;
                    @media screen and (max-width: 629px) {
                        font-size: var(--rem14);
                    }
                }
                .ws_nowrap {
                    white-space: nowrap;;
                }
            }
            .exampleList__table-bottom {
                border: none;
                margin-top: 0;
                thead {
                    th {
                        width: 20%;
                        font-family: var(--font-family03);
                        font-size: 1.1rem;
                        font-weight: 600;
                        letter-spacing: .16em;
                        white-space: nowrap;
                        background: #F0F0F0;
                        border-radius: 4px;
                        border: none;
                        padding: 0 10px;
                        @media screen and (max-width: 1630px) {
                            letter-spacing: 0;
                            padding: 4px var(--rem12);
                        }
                        @media screen and (max-width: 768px) {
                            font-size: 1rem;
                        }
                        &:has(+ th) {
                            border-radius: 5px 0 0 5px;
                            & + th {
                                border-radius: 0;
                                border-left: 1px dashed #E2E2E2;
                                &:last-child {
                                    border-radius: 0 5px 5px 0;
                                }
                            }
                        }
                        & + td {
                            border-left: 1px dashed #E2E2E2;
                        }
                    }
                }
                tbody {
                    td {
                        font-family: var(--font-family03);
                        font-size: 1.1rem;
                        font-weight: 600;
                        letter-spacing: .16em;
                        white-space: nowrap;
                        border: none;
                        padding: 4px 10px;
                        @media screen and (max-width: 1630px) {
                            letter-spacing: 0;
                            padding: 4px var(--rem12);
                        }
                        @media screen and (max-width: 768px) {
                            font-size: 1rem;
                        }
                        & + td {
                            border-left: 1px dashed #E2E2E2;
                        }
                    }
                }
            }
        }
    }
    .problemList {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--rem30) var(--px30);
        .problemList__item {
            display: flex;
            flex-direction: column;
            width: calc((100% - var(--px30) * 4) / 5);
            min-width: 220px;
            @media screen and (max-width: 768px) {
                width: calc((100% - var(--px30)) / 2);
            }
            @media screen and (max-width: 414px) {
                width: 100%;
            }
        }
        .problemList__figure {
            aspect-ratio: 287 / 203;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
        .problemList__summary {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            background: #fff;
            padding: var(--rem30) var(--px30);
        }
        .problemList__ttl {
            flex-grow: 1;
            font-family: var(--font-family03);
            color: var(--color-font);
            font-size: var(--rem24);
            font-weight: 700;
            line-height: 1.4;
            letter-spacing: 0;
            text-align: center;
            margin-bottom: var(--rem30);
            border: none;
            padding: 0;
        }
        .problemList__level {
            background: var(--color-primary-shade);
            padding: var(--rem18) var(--px12);
            .problemList__level-ttl {
                color: #fff;
                font-size: var(--rem24);
                font-weight: 700;
                line-height: 1.4;
                letter-spacing: 0;
                text-align: center;
                margin-bottom: .1em;
            }
            .problemList__stars {
                display: flex;
                justify-content: center;
                gap: 7px;
                & > div {
                    aspect-ratio: 1 / 1;
                    width: var(--rem24);
                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain; 
                    }
                }
            }
        }
    }
    .card {
        display: flex;
        .card__link {
            display: block;
        }
        &:is(.card--mod-01) {
            gap: var(--px50);
            width: 100%;
            max-width: 1240px;
            margin-left: auto;
            margin-right: auto;
            @media screen and (max-width: 640px) {
                flex-wrap: wrap;
            }
            .card__item {
                width: calc(100% / 2);
                position: relative;
                overflow: hidden;
                @media screen and (max-width: 640px) {
                    width: 100%;
                }
            }
            .card__link {
                padding: min(calc(14rem + (1vw - 1.92rem) * 4.5307), 14rem) var(--px80);
                @media screen and (max-width: 1366px) {
                    padding: var(--rem120) var(--rem40);
                }
                &:hover {
                    .linkBtn {
                        color: var(--color-font);
                        background: #fff;
                        &::after {
                            border-color: var(--color-font);
                        }
                    }
                    .card__figure {
                        img {
                            opacity: 1;
                            transform: scale(1.2);
                        }
                    }
                }
            }
            .card__summary {
                .ttl--primary__en {
                    margin-bottom: .2em;
                }
                .ttl--primary__ja {
                    font-size: var(--rem24);
                }
            }
            .card__figure {
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                z-index: -1;
                filter: brightness(50%);
                transition: all .3s;
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
        }
    }
    .figureList {
        display: flex;
        @media screen and (max-width: 768px) {
            flex-wrap: wrap;
            margin-top: var(--rem80);
        }
         .figureList__item{
            @media screen and (max-width: 768px) {
                width: calc(100% / 3);
            }
         }
    }
    .box {
        padding: var(--rem60) var(--rem24);
        &:is(.box--bg) {
            background: #D5D6DF;
            box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
        }
    }
    .anchorLinks {
        & > ul {
            display: flex;
            align-items: stretch;
            justify-content: center;
            gap: var(--rem48);
            margin-bottom: var(--rem120);
            @media screen and (max-width: 767px) {
                flex-wrap: wrap;
                gap: var(--rem24);
            }
            @media screen and (max-width: 414px) {
                flex-wrap: wrap;
                gap: var(--rem24);
            }
            & > li {
                width: 100%;
                max-width: 392px;
                @media screen and (max-width: 767px) {
                    max-width: unset;
                }
                &:not(:first-child) {
                    @media screen and (max-width: 767px) {
                        width: calc((100% - var(--rem24)) / 2);
                    }
                }
                & > a {
                    display: block;
                    color: #fff;
                    font-weight: 500;
                    text-align: center;
                    padding: 20px 30px 20px 10px;
                    background: var(--color-primary);
                    border: 1px solid var(--color-primary);
                    border-radius: 50vh;
                    position: relative;
                    transition: all .3s;
                    &:hover {
                        color: var(--color-primary);
                        background: #fff;
                        &::after {
                            border-color: var(--color-primary);
                        }
                    }
                    &::after {
                        display: block;
                        content: '';
                        position: absolute;
                        top: 50%;
                        right: 20px;
                        width: 6px;
                        height: 6px;
                        border-right: 1px solid #fff;
                        border-bottom: 1px solid #fff;
                        -webkit-transform: rotate(-45deg);
                        transform: rotate(-45deg);
                        margin-top: -3px;
                        transition: all .3s;
                    }
                }
            }
        }
    }
	.flexbox {
		&:is(.flexbox--ordinarily) {
			display: flex;
		}
	}
	.max-w {
		margin-left: auto;
		margin-right: auto;
		&:is(.leftSide) {
			margin-left: 0;
		}
		&:is(.rightSide) {
			margin-right: 0;
		}
		&:is(.max-w--400) {
			max-width: 400px;
		}
		&:is(.max-w--880) {
			max-width: 880px;
		}
		&:is(.max-w--960) {
			max-width: 960px;
		}
		&:is(.max-w--1000) {
			max-width: 1000px;
		}
		&:is(.max-w--1240) {
			max-width: 1240px;
		}
	}
    .marker.yellow {
        background: linear-gradient(transparent 60%, #FFFDC2 60%);
    }
    .marker.purple {
        background: linear-gradient(transparent 60%, #cbcbe0 60%);
    }
	.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;
	}
	.ff-05 {
		font-family: var(--font-family05) !important;
	}
	.fsz-12 {
        font-size: var(--rem12);
    }
    .fsz-14 {
        font-size: var(--rem14);
    }
    .fsz-16 {
        font-size: var(--rem16);
    }
    .fsz-17 {
        font-size: 1.7rem;
        @media screen and (max-width: 768px) {
            font-size: 1.4rem;
        }
    }
    .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;
    }
	.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-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;
    }
    .pl-mod-01 {
        padding-left: 1em;
    }
	.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: block;
	@media screen and (max-width: 768px) {
		display: none;
	}
	@media screen and (max-width: 560px) {
		display: block;
	}
}
.br_mod-02 {
	display: block;
	@media screen and (max-width: 560px) {
		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: 100px;
		margin-top: -100px;
	}
}

/*-----------------------------
column_01
------------------------------*/
.toptxtarea {
	max-width: 1240px;
	width: 90%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.column01 {
	position: relative;
	margin: var(--px60) 0 0;
}
.column01_wrap {
	position: relative;
	max-width: 1240px;
	width: 90%;
    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 {
    max-width: 465px;
    @media screen and (max-width: 768px) {
        max-width: unset;
    }
}
.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%;
  }
}



/*-----------------------------
card
------------------------------*/
  .toptxtarea {
    max-width: 1240px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .card01_wrap {
    position: relative;
    margin: var(--px60) 0 0;
    &:is(.card01_wrap--mod-01) {
        .card01_inner {
            max-width: 1240;
            width: 100%;
        }
        .card01_list.col3_list {
            justify-content: center;
            gap: var(--rem48) 2.75%;
            @media screen and (max-width: 1023px) {
                gap: var(--rem48) 4%;
            }
            & > li {
                @media screen and (max-width: 1023px) {
                    width: 48%;
                }
                @media screen and (max-width: 414px) {
                    width: 100%;
                }
             }
        }
    }
  }
  .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;
  }
    
  /*---------txtstyle02 -----------*/
    
  .post .txtstyle02, .txtstyle02 {
    font-family: var(--font-family03);
    font-size: var(--rem36);
    font-weight: 600;
    margin: var(--rem36) auto;
    background: transparent;
    color: #111;
    line-height: 1.4;
    padding: 0;
  }
  .post .txtstyle02:before, .post .txtstyle02:after, .txtstyle02:before, .txtstyle02:after {
    content: none;
  }
  .post .card01_list .txtstyle02, .card01_list .txtstyle02 {
    font-size: var(--rem20);
    margin: 0 0 1rem;
  }

/*--カラムリスト--------------------------------------------*/
/*---------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;
}
.post .col3_list > li {
    width: 31.5%;
	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: 1023px) {
	.post .col3_list > li {
		width: 49%;
	}
	.post .col3_list::before, .post .col3_list:after {
		content: none;
	}
}
@media print, screen and (max-width: 414px) {
	.post .col3_list > li {
		width: 100%;
	}
	.post .col3_list > li:last-child {
		margin-bottom: 0;
	}
}

/*-----------------------------
.cardstyle
------------------------------*/  
/*---------style03-------------*/
  
.card01_list.cardstyle03 > li {
    padding: 16px;
    background: var(--color-primary);
    filter: drop-shadow(0 0px 30px rgba(0, 0, 0, .2));
    .txtarea {
        .txtstyle02 {
            display: flex;
            flex-direction: column;
            gap: .3em;
            color: #fff;
            font-family: var(--font-family03);
            padding-bottom: .7em;
            border-bottom: 1px solid #fff;
            .sub {
                color: var(--color-primary);
                font-family: var(--font-family04);
                font-weight: 500;
                line-height: 1.4;
                letter-spacing: .06em;
                width: fit-content;
                background: #fff;
                border-radius: 50vh;
                padding: 0px 10px;
            }
            .main {
                font-size: var(--rem16);
                font-weight: 700;
                line-height: 1.4;
                letter-spacing: .05em;
                .annotation {
                    color: var(--color-primary-tint);
                    font-size: var(--rem24);
                    font-weight: 700;
                    line-height: 1.4;
                    letter-spacing: 0;
                }
            }
        }
        p {
            color: #fff;
        }
    }
}

/*--------------------------------------------------
	リンクボタン
--------------------------------------------------*/
.linkBtn, .post .linkBtn, a.linkBtn {
    font-family: var(--font-family03);
    font-size: var(--rem20);
    font-weight: 700;
	border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--px30);
    max-width: 360px;
    padding: 20px 10px;
    &::after {
        aspect-ratio: 23 / 5.5;
        width: 26px;
        height: auto;
        background: url(/wp-content/uploads/icon_arrow_01.png.webp) no-repeat center / contain;
        border: none;
        position: relative;
        right: unset;
        transform: translateY(-50%);
    }
    &:hover {
        background: #505097;
    }
    &:is(.linkBtn--round) {
        display: inline-block;
        max-width: 465px;
        color: #fff;
        line-height: 1.4;
        text-align: center;
        font-weight: 500;
        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: 1px solid var(--color-primary);
        border-radius: 50vh;
        transition: all .3s;
        &::after {
            display: block;
            content: '';
            position: absolute;
            top: 50%;
            right: 20px;
            width: 6px;
            height: 6px;
            background: transparent;
            border-right: 1px solid #fff;
            border-bottom: 1px solid #fff;
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            margin-top: -3px;
            transition: all .3s;
        }
        &:hover {
            color: var(--color-primary);
            background: #fff;
            border-color: var(--color-primary);
            &::after {
                border-color: var(--color-primary);
            }
        }
        &:is(.linkBtn--round--white) {
            color: var(--color-primary);
            background: #fff;
            border: 1px solid #fff;
            &::after {
                border-color: var(--color-primary);
            }
            &:hover {
                color: #fff;
                background: var(--color-primary);
                border-color: 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 (min-width: 1024px) {
    #header {
        height: 100px;
    }
	#header .logo img {
		width: 100%;
		max-width: 333px;
		max-height: 60px;
    }
    nav#mainNav ul li a {
        font-size: var(--rem18);
    }
    #header a.head_btn {
        color: var(--color-primary);
        background: var(--color-primary);
        padding-left: var(--rem28);
        padding-right: var(--rem28);
        &:hover {
            background: #505097;
        }
    }
    #header a.head_btn.tel_btn {
        background: transparent;
        &:hover {
            color: #fff;
            background: #505097;
        }
        .tel_btn__info {
            .note {
                font-weight: 700;
            }
        }
    }
    #header a.head_btn.tel_btn::before {
        display: none;
    }
    #header a.head_btn .tel_btn__num::before {
        content: '\f095';
        position: relative;
        top: 2px;
        display: block;
        font-family: 'FontAwesome';
        font-size: .75em;
        font-weight: 400;
        line-height: 1;
        margin-bottom: .1em;
    }
    #header a.head_btn .tel_btn__num {
        display: flex;
        align-items: center;
        column-gap: min(calc(0.8rem + (1vw - 1.92rem) * 0.1294), .8rem);
        font-size: var(--rem24);
        font-weight: 500;
        margin-bottom: 3px;
    }
    #header a.head_btn.mail_btn {
        color: #fff;
        font-size: var(--rem16);
        flex-direction: row;
        align-items: center;
        padding-left: var(--rem36);
        padding-right: var(--rem36);
    }
    #header a.head_btn.mail_btn::before {
        font-size: var(--rem20);
        position: relative;
        top: 1px;
		margin-right: 10px;
        margin-bottom: 0;
    }
    #header a.head_btn.mail_btn span {
        font-size: var(--rem16);
    }
	nav#mainNav ul li:has(> .sub-menu) {
		&:hover {
			background: var(--color-primary);
			a b {
				color: #fff;
			}
		}
    }
    nav#mainNav ul li a b, nav#mainNav ul li a span {
        font-weight: 500;
    }
    nav#mainNav ul li.current-menu-item a b, nav#mainNav ul li.current-menu-parent a b {
        color: var(--header-color-font);
    }
    nav#mainNav ul li a:hover {
	background: var(--color-primary);
        b {
             color: #fff;
        }
    }
    nav#mainNav ul li.current-menu-item a:hover b, nav#mainNav ul li.current-menu-parent a:hover b {
        background: transparent;
        color: var(--color-primary);
    }
    body:is(.home) {
        nav#mainNav ul li.current-menu-item a {
            background: transparent;
            color: var(--color-font);
            &:hover {
                background: var(--color-primary);
                b {
                    color: #fff;
                }
            }
        }
    }
    nav#mainNav ul li.current-menu-item a {
        background: var(--color-primary);
        color: var(--color-font);
        &:hover {
            background: var(--color-primary);
            b {
                color: #fff;
            }
        }
    }
    body:not(.home) {
        nav#mainNav ul li.current-menu-ancestor > a, nav#mainNav ul li.current-menu-parent > a {
            background: var(--color-primary);
        }
        nav#mainNav ul li.current-menu-item a b, nav#mainNav ul li.current-menu-parent a b {
            color: #fff;
        }
		nav#mainNav ul li.current-menu-item:hover a b, nav#mainNav ul li.current-menu-parent a:hover b {
			color: #fff;
        }
    }
		nav#mainNav ul li:hover {
		& > a, & > b {
			color: var(--color-primary);
		}
	}
	nav#mainNav ul li:hover ul.sub-menu {
	background: #fff;
    }
}


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

@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) {
    #thumbImg, header#h1Header {
        height: calc(220px + (1vw - 10.24px) * 9.2450);
    }
    
	#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) {
	   display: block;
	}   
}

/*--------------------------------------------------
	フッター
--------------------------------------------------*/
/*--------------------------------------------
FOOTER03
--------------------------------------------*/

/* ----全体LAYOUT調整----*/

.footer__inner {
    max-width: 1240px;
	width: 94%;
	margin: 0 auto;
}

/* ----top----*/
.toparea {
    address {
        font-size: var(--rem16);
        font-weight: 500;
        text-align: left;
        display: flex;
        flex-wrap: wrap;
        .term {
            flex-shrink: 0;
            width: 4.5em;
        }
        div:not(.term) {
            width: calc(100% - 4.5em);
        }
    }
}

#footer .footer__logo:not(:last-child) {
    margin: 0;
    text-align: left;
}
.toparea .logoare {
    display: flex;
    flex-direction: column;
    /* gap: var(--px14); */
    line-height: 1;
}
.footer__catchphrase {
    display: none;
    line-height: 1.2;
	text-align: left;
}

#footer ul li a {
    font-weight: 500;
}
@media print, screen and (max-width: 768px) {
	#footer .footer__logo:not(:last-child) {
		text-align: center;
	}
	.footer__catchphrase {
		text-align: center;
	}
}

/* ----SNSアイコン----*/

/*LAYOUT調整*/

#footer .socialicon ul, .socialicon ul {
    -webkit-box-pack: start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    gap: 10px;
}
#footer .socialicon ul li, .socialicon ul li {
    padding: 0;
}
@media print, screen and (max-width: 768px) {
	#footer .socialicon ul, .socialicon ul {
		justify-content: flex-start;
	}
}

/*アイコンサイズ調整*/

#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: var(--rem24);
}

/* ----bottom----*/

.bottomarea {
    display: flex;
    justify-content: space-between;
    margin-top: var(--rem48);
    gap: 5px;
}
#footer .footnav:not(:last-child) {
    margin-bottom: 0;
}
#footer .footnav ul {
    -webkit-box-pack: start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
}
#footer .footnav ul > li {
    margin: 0;
}
#copyright {
    margin: 0;
    background: transparent;
}
@media print, screen and (max-width: 768px) {
	.bottomarea {
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	#footer .footnav ul {
	    justify-content: flex-start;
	}
}

#footer {
    text-align: left;
	padding: var(--px80) 0 var(--px60);
    .footer__logo img {
        width: 100%;
		max-width: 409px;
		max-height: 60px;
        @media screen and (max-width: 768px) {
            max-width: 372px;
        }
        @media screen and (max-width: 414px) {
            max-width: 313px;
        }
    }
	.footer__logo:not(:last-child) {
        text-align: left;
		margin-bottom: var(--rem30);
	}
	.footnav:not(:last-child) {
		margin-bottom: 0;
	}
    .socialicon {
        margin-top: var(--rem40);
        a:has(.fa-line) {
            &::before {
                display: block;
                content: "LINE";
                color: transparent;
                aspect-ratio: 1 / 1;
                width: 46px;
                height: auto;
                background: url(/wp-content/uploads/LINE_Brand_icon.png.webp) no-repeat center / contain;
            }
            i {
                display: none;
            }
            &:hover {
                opacity: .8;
            }
        }
    }
}
#copyright {
    background: transparent;
    text-align: left;
}

/*--------------------------------------------------
	CTA
--------------------------------------------------*/
.home, .page-id-21 {
	.page-cta {
		display: none !important;
	}
}
/*-----------------------------
cta02_col3
------------------------------*/
.cta02 {
	position: relative;
    background: url(/wp-content/uploads/cta_bg_01.jpg.webp) no-repeat center / cover;
	padding: min(calc(10rem + (1vw - 1.92rem) * 3.2362), 10rem) 0 var(--px60);
	z-index: 0;
    .ttl {
        &:is(.ttl--primary) {
            display: flex;
            flex-direction: column;
			position: relative;
            &::after {
				display: none;
            }
            .ttl--primary__en {
				font-family: var(--font-family04);
                font-size: min(calc(6.4rem + (1vw - 1.92rem) * 1.6828), 6.4rem);
                font-weight: 600;
                line-height: 1.4;
                letter-spacing: .06em;
				margin-bottom: var(--rem30);
            }
            .ttl--primary__ja {
                font-family: var(--font-family03);
                font-size: var(--rem36);
                font-weight: 500;
                line-height: 1.4;
                letter-spacing: 0;
            }
        }
    }
    .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-white {
        color: #fff;
    }
    .color-black {
        color: #000;
    }
}
.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;
    max-width: 1400px;
    margin: var(--px50) auto 0 auto;
}
.cta02 .ctabtnlist li {
    width: 50%;
    margin: 0;
    padding: 0;
    line-height: 1;
    display: flex;
    background: #fff;
}
.cta02 .item {
	position: relative;
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--px30);
    text-align: center;
    box-sizing: border-box;
    color: #111;
    border-radius: 0;
    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 {
    display: flex;
	font-size: var(--rem20);	
	font-weight: 700;
    .note {
        font-size: var(--rem20);	
	    font-weight: 700;
    }
}
.cta02 .btnttl {
	display: block;
	font-weight: bold;
	margin-bottom: 1rem;
	line-height: 1.4;
	font-size: var(--rem20);
}

	
/*電話ボタン*/
	
.cta02 .telnum {
	font-size: var(--rem48);
    font-weight: 700;
	margin-bottom: 1rem;
}	
.cta02 a.telbtn {
    background: var(--color-primary);
	color: #fff;
}
	
/*メールボタン*/
	
.cta02 .mailarea.item {
    background: #fff;
}
.cta02 a.mailbtn {
    background: var(--color-primary);
    color: #fff;
    font-size: var(--rem20);
    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;
}
	
/*LINEボタン*/

.cta02 .linearea.item {
    background: #06C755;
    color: #fff;
}
.cta02 a.linebtn {
    background: #fff;
    color: #06C755;
    font-size: var(--rem20);
    font-weight: 500;
    display: flex;
    flex-direction: row;
	justify-content: center;
    max-width: 400px;
    width: 90%;
    border-radius: 50vh;
    padding: 20px;
    margin: 0 0 1rem 0;
}

/*ボタンアイコン*/
	
.cta02 .telnum::before, .cta02 .mailbtn::before, .cta02 .linebtn::before {
	content: '';
	display: inline-block;
	font-family: 'Font Awesome 5 Free', 'FontAwesome';
	font-weight: 900;
	margin-right: 1rem;
}
.cta02 .telnum::before {
	content: '\f3cd';
    font-size: var(--rem40);
}
.cta02 .mailbtn::before {
	content: '\f0e0';
    font-size: var(--rem24);
}
.cta02 .linebtn::before {
    content: '\f3c0';
    font-size: var(--rem24);
	font-weight: 400;
}

/*--------------------------------------------------
	TOPページ
--------------------------------------------------*/
#mainImg {
    display: none;
}
#mainMov {
    display: none;
}
body:not(.home) .placeholder-class {
    display: none !important;
}
.home, #editor-style {
	#wrapper {
		max-width: 1600px;
        width: 90%;
	}
    /* パララックス */
    .parallax_container {
        position: relative;
        aspect-ratio: 1920 / 571;
        width: 100vw;
        margin-left: calc(((100vw - 100%) / 2) * -1);
        margin-right: calc(((100vw - 100%) / 2) * -1);
        @media screen and (max-width: 768px) {
            aspect-ratio: 750 / 397;
        }
    }
    .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/top_parallax_01.png.webp) no-repeat center / cover;
    }
    /* CONTENT01 */
    #top_about {
        &.bg_wide {
            &::before {
                background: linear-gradient(to bottom, #05056B 63%, transparent 63%);
                z-index: 0;
            }
        }
    }
    /* CONTENT02 */
    #top_examples {
        padding-bottom: var(--rem120);
    }
    /* CONTENT03 */
    #top_construction {
        .column01 {
            background: url(/wp-content/uploads/top_construction_01.jpg.webp) no-repeat center / cover;
            z-index: 0;
            &::after {
                display: block;
                content: "";
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, .36);
                position: absolute;
                top: 0;
                left: 0;
                z-index: -1;
            }
        }
        .column01_wrap {
            justify-content: flex-end;
            max-width: unset;
            width: 100%;
            .txtarea {
                max-width: 790px;
                background: transparent;
                padding: var(--rem48) var(--px40) var(--rem60);
                .txtinner {
                    max-width: 530px;
                    .ttl--primary__en {
                        margin-bottom: .1em;
                    }
                }
            }
        }
    }
    /* CONTENT04 */
    #top_problem {
        padding: var(--rem120) 0;
        position: relative;
        &::after {
            display: block;
            content: "";
            width: 0;
            height: 0;
            border-style: solid;
            border-right: 90px solid transparent;
            border-left: 90px solid transparent;
            border-top: 90px solid var(--color-primary-shade);
            border-bottom: 0;
            margin: 0 auto;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            transform: translateY(100%);
        }
        @media screen and (max-width: 1024px) {
            &::after {
                width: 0;
                height: 0;
                border-style: solid;
                border-right: 45px solid transparent;
                border-left: 45px solid transparent;
                border-top: 45px solid var(--color-primary-shade);
                border-bottom: 0;
            }
        }
        &.bg_wide {
            &::before {
                background: var(--color-primary-shade);
            }
        }
    }
    /* CONTENT05 */
    #top_benefit {
        padding: calc(var(--rem120) + 10px) 0 var(--rem120);
        .card01_inner {
            max-width: 1240px;
            width: 100%;
        }
    }
    /* CONTENT06 */
    #top_service {
        .column01 {
            background: url(/wp-content/uploads/top_service_01.jpg.webp) no-repeat center / cover;
            z-index: 0;
            &::after {
                display: block;
                content: "";
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, .36);
                position: absolute;
                top: 0;
                left: 0;
                z-index: -1;
            }
        }
        .column01_wrap {
            max-width: unset;
            width: 100%;
            .txtarea {
                max-width: 790px;
                background: transparent;
                padding: var(--rem48) var(--px40) var(--rem60);
                .txtinner {
                    max-width: 530px;
                    .ttl--primary__en {
                        margin-bottom: .1em;
                    }
                }
            }
        }
    }
    /* CONTENT07 */
    #top_links {
        padding: min(calc(15rem + (1vw - 1.92rem) * 3.2362), 15rem) 0;
        &.bg_wide {
            &::before {
                background: url(/wp-content/uploads/top_bg_links_bg_01.jpg.webp) no-repeat center / cover;
            }
        }
    }
    /* POST */
    .top_news {
        max-width: 1240px;
        margin-left: auto;
        margin-right: auto;
    }
    .postlist {
        .post_text {
            color: #CCC;
            padding: 26px 0;
        }
        li {
            border-bottom: 1px solid #ccc;
        }
    }
    .postlist .ttls, .postlist .date {
        color: var(--color-font);
        font-size: 100%;
    }
    .post .time, .postlist .time, .post2b .time, .post4b .time {
        background: var(--color-primary);

    }
    .post .time, .postlist .time, .post2b .time, .post4b .time {
        line-height: 1.2 !important;
    }
}

div#n2-ss-2 .n-uc-11d54d95d3677 {
    max-width: 1200px !important;
}

/*--------------------------------------------------
	下層ページ
--------------------------------------------------*/
body:not(.home) {
    #mainMov {
        display: none !important;
    }
    #thumbImg::before, header#h1Header::before {
        display: none;
    }
    h1.title, .post h1, header#h1Header h1.title {
        color: #fff;
        font-size: var(--rem36);
        font-family: var(--font-family03);
        font-weight: 700;
    }
	&:is(.single) {
		h1.title {
			color: var(--color-font);
		}
	}
    &.post, .post {
        .ttl.ttl--primary {
            margin-bottom: var(--rem80);
        }
		.table {
            &:is(.table--mod-01) {
                th, td {
                    vertical-align: middle;
                    padding: var(--rem30) var(--rem24);
                }
                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:is(.table-lh_mod-01) {
            td {
                line-height: 2.4;
            }
        }
        table th, table td {
            font-size: var(--rem16);
            padding: min(calc(3.2rem + (1vw - 1.92rem) * 0.7120), 3.2rem) var(--rem24);
            line-height: 1.7;
        }
        table th {
            font-weight: 700;
            vertical-align: middle;
            background: #D5D6DF;
        }
		.w-fit {
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }
		.googlemap {
            padding-bottom: 32%;
            @media screen and (max-width: 768px) {
                padding-bottom: 45%;
            }
        }
    }
}

/*================================================
					事業内容
================================================*/
/*-------------------------------------------
 teleco_v1
------------------------------------------- */
.teleco_v1 {
    align-items: center;
    & + & {
        margin-top: var(--rem80);
    }
}
.teleco_v1 h3 {
	width: 100%;
    padding: 0 0 var(--px20) 0;
    text-align: left;
}
.teleco_v1 h4 {
	width: 100%;
    text-align: left;
}
.teleco_v1 .w50.image_box{
    aspect-ratio: 500 / 333;
	position: relative;
	overflow: hidden;
}
.teleco_v1 .w50.image_box::before {
	content: '';
	display: block;
}
.teleco_v1 .w50.image_box img {
	position: absolute;
	width: 102%;
	height: auto;
	max-width: none;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.teleco_v1 .w50.text_box{
	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-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #ffffff;
	padding: var(--rem24) var(--px24);
}
@media print, screen and (min-width: 769px) {
	.teleco_v1 .w50.image_box::before {
		padding-top: calc(550px + (1vw - 19.2px) * 17.3762);
	}
	.teleco_v1 .w50.image_box img {
		width: auto;
		height: 116%;
	}
}
.flexinnerBtn {
	align-self: normal;
}
@media print, screen and (max-width: 768px) {
	.teleco_v1 .w50.image_box{
        aspect-ratio: unset;
		margin-bottom:0;
	}
	.teleco_v1 .w50.image_box::before {
		padding-top: calc(350px + (1vw - 7.68px) * 27.9898);
	}
	.teleco_v1 .w50.text_box {
		padding: var(--rem24) 0;
		margin-bottom:0;
	}
}

/*================================================
				　採用情報
================================================*/

.post .lead {
	font-size: var(--rem20);
	font-weight: 700;
    line-height: 1.45;
    letter-spacing: .1em;
}

.post .lead_en {
	font-size: min(calc(1.8rem + (1vw - 19.2px) * 0.3236), 1.8rem);
	/* -- 1920 1.8rem 375 1.3rem -- */
	color: var(--color-primary-shade);
	letter-spacing: 0.8rem;
}

.post .message {
    p {
        line-height: 2.1875;
        letter-spacing: .05em;
    }
}

/*--幅フル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;
}
.post .widecolor > h2:first-child {
	margin-top: 0 !important;
}

/*--スタイルリストエリア--------------------------------------------*/

ul.box_style01 > li {
	position: relative;
	gap: 40px;
	width: 100%;
	background: #fff;
	padding: min(calc(40px + (1vw - 19.2px) * 0.6472), 40px) min(calc(35px + (1vw - 19.2px) * 0.6472), 35px);
	border-radius: 20px;
	-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .1);
	box-shadow: 0 0 30px rgba(0, 0, 0, .1);
	margin-bottom: 30px;
	text-align: left;
}
.post ul.box_style01 .box_style_ttl {
	width: 100%;
	font-size: min(calc(2.8rem + (1vw - 19.2px) * 0.4531), 2.8rem); /* 2.8-2.1rem (1920-375) */
	font-weight: 400;
	padding: 0.6rem 0 0.6rem 2rem;
	margin: 0 0 min(calc(15px + (1vw - 19.2px) * 0.4531), 15px);/*15-10px (1920-375) */
	border-bottom: none;
	border-left: 3px solid var(--color-primary-shade);
	text-align: left;
	font-style: italic;
	line-height: 1.4;
}
@media screen and (min-width: 769px) {
	ul.box_style01 > li {
		display: flex;
	}
}

/*--ボタン別アイコン--------------------------------------------*/

a.external.ico_phone::before {
	content: '\f095';
	display: inline-block;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 1rem;
}
a.external.ico_mail::before {
	content: '\f0e0';
	display: inline-block;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 1rem;
}
a.external.ico_phone::after, a.external.ico_mail::after {
	content: none;
}
	
/*---table_style04-------------------------------------*/

.post table.table_style04 th {
	background-color: transparent;
}
.post table.table_style04, .post table.table_style04 th, .post table.table_style04 td{
	border: none;
}
table.table_style04 tr:first-child {
	border-top: 1px solid #ababab;
}
table.table_style04 tr:last-child {
	border-bottom: 1px solid #ababab;
}
table.table_style04 tr {
	border-top: 1px dashed #ababab;
	letter-spacing: 1px;
}
table.table_style04 th, table.table_style04 td {
	padding: 50px 30px;
}
table.table_style04 th {
	position: relative;
	z-index: 0;
}
table.table_style04 th:before {
	position: absolute;
	content: "";
	background: rgb(247 247 247);
	top: 7px;
	left: 0;
	bottom: 7px;
	width: 100%;
	height: auto;
	z-index: -1;
}
table.table_style04 td ul li {
	padding-left: 1em;
	position: relative;
	line-height: 2;
}
table.table_style04 td ul li:before {
	position: absolute;
	content: "・";
	top: 0;
	left: 0;
}
@media print, screen and (max-width: 768px) {
	table.table_style04 th, table.table_style04 td {
		padding: 35px 10px;
		font-size: 1.4rem;
		vertical-align: middle;
	}
	table.table_style04 th {
		width: 32%;
	}
	table.table_style04 td {
		width: 68%;
	}
}

/*--contact_area-------------------------------------*/

.contact_area {
    max-width: 850px;
    padding: min(calc(80px + (1vw - 19.2px) * 2.5890), 80px);/*80px-40px (1920-375)x*/
    text-align: center;
    background: #D5D6DF;
    margin-top: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px);
    margin-left: auto;
    margin-right: auto;
}
.post .contact_ttl {
	font-size: min(calc(2.8rem + (1vw - 19.2px) * 0.4531), 2.8rem); /* 2.8-2.1rem (1920-375) */
	font-weight: 600;
	text-align: center;
	letter-spacing: .2rem;
	padding: 0;
	margin: min(calc(120px + (1vw - 19.2px) * 3.5599), 120px) auto var(--rem30);
}
.post .contact_ttl::before {
	content: none;
	position: relative;
	width: auto;
	height: auto;
	top: auto;
	left: auto;
}
.post .contact_ttl::after {
	content: '';
	position: relative;
	visibility: visible;
	display: block;
	width: 2.2em;
	height: 3px;
	background: var(--color-primary);
	margin: 0.6em auto 0;
}
.contact_read {
    margin: 0 0 min(calc(30px + (1vw - 19.2px) * 0.9709), 30px);/*30px-15px (1920-375)*/
    text-align: center;
}
.button_wrap,
.post .button_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.button_wrap > *,
.post .button_wrap > * {
  margin: 10px !important;
}
.contact_area .linkBtn, .contact_area .post .linkBtn {
    padding: 0;
    &::after {
        display: none !important;
    }
}
.contact_area .linkBtn a {
    color: #fff;
    padding: 0.8em 1.2em;
    display: block;
}

/*================================================
					施工事例
================================================*/
.post-type-archive-examples, .tax-examples_category, .single-examples {
    .title.first {
        color: transparent !important;
    }
}
.post {
    .exampleHeader {
        .exampleTitle {
            font-family: var(--font-family03);
            font-size: var(--rem36);
            font-weight: 500;
            line-height: 1.4;
            letter-spacing: 0;
            border-bottom: 1px solid #000;
            margin-top: 0;
            margin-bottom: var(--rem28);
            padding-bottom: var(--rem20);
            &::after {
                display: none;
            }
        }
        .exampleSummary {
            display: flex;
            justify-content: space-between;
            margin-bottom: var(--rem36);
            &:is(.responsive) {
                margin-bottom: 0;
                .Labels {
                    display: none !important;
                    @media screen and (max-width: 767px) {
                        display: flex !important;
                        margin-bottom: 10px;
                    }
                }
            }
            .exampleSummary-item {
                display: flex;
                &:not(:has(.Labels)) {
                    @media screen and (max-width: 767px) {
                        width: 100%;
                    }
                }
                .Labels {
                    display: flex;
                    align-items: flex-start;
                    gap: 5px;
                    @media screen and (max-width: 767px) {
                        display: none;
                    }
                    .Label {
                        flex-shrink: 0;
                        color: #fff;
                        font-family: var(--font-family03);
                        font-size: var(--rem14);
                        font-weight: 600;
                        letter-spacing: .16em;
                        text-align: center;
                        width: fit-content;
                        min-width: 7.5em;
                        background: var(--color-primary);
                        padding: 5px 10px;
                    }
                }
            }
        }
    }
    .exampleBody {
        display: flex;
        justify-content: center;
        gap: var(--rem80) 7%;
        margin-bottom: var(--rem80);
        @media screen and (max-width: 767px) {
            flex-direction: column;
        }
        .main {
            width: 56%;
            @media screen and (max-width: 767px) {
                width: 100%;
            }
        }
        .sub {
            width: 37%;
            @media screen and (max-width: 767px) {
                width: 100%;
            }
            .sub__figure {
                /* aspect-ratio: 533 / 355; */
                height: 320px;
                @media screen and (max-width: 767px) {
                    width: 65%;
                    height: auto;
                }
                & > img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
            .heading_mod-06 {
                font-size: 24px;
                margin-top: 20px;
                margin-bottom: 12px;
            }
            /* beforの本文 */
            .sub__copy {
                display: none;
            }
            .exampleSummary-item {
                margin-top: 40px;
                @media screen and (max-width: 767px) {
                    display: flex;
                    justify-content: flex-end;
                    flex-direction: row-reverse;
                    margin-top: var(--rem40);
                }
                @media screen and (max-width: 475px) {
                    display: block;
                }
            }
            .exampleInfo {
                & + & {
                    margin-top: 30px;
                    @media screen and (max-width: 767px) {
                        margin-top: 0;
                        margin-right: var(--px20);
                        padding-right: var(--px20);
                        border-right: 1px solid #BCBCBC;
                    }
                    @media screen and (max-width: 475px) {
                        margin-top: var(--rem30);
                        margin-right: 0;
                        padding-right: 0;
                        border-right: none;
                    }
                }
                &:first-child {
                    @media screen and (max-width: 767px) {
                        width: auto;
                    }
                    /* .term {
                        @media screen and (max-width: 767px) {
                            border-radius: 7px 0 0 7px;
                        }
                    } */
                }
                &:last-child {
                    @media screen and (max-width: 767px) {
                        flex-shrink: 0;
                        width: auto;
                    }
                    /* .term {
                        margin-bottom: 8px;
                        @media screen and (max-width: 767px) {
                            border-radius: 0 7px 7px 0;
                            margin-bottom: .5em;
                        }
                    } */
                }
                .term {
                    display: inline-block;
                    min-width: 5.125em;
                    font-size: 16px;
                    font-weight: 600;
                    line-height: 1.5;
                    letter-spacing: .16em;
                    text-align: center;
                    padding: 5px var(--px16);
                    background: #F0F0F0;
                    border-radius: 7px;
                    margin-bottom: 16px;
                    @media screen and (max-width: 767px) {
                        font-size: var(--rem16);
                        /* width: 100%; */
                        margin-bottom: 0;
                        padding: .1em var(--px16);
                    }
                }
                .description {
                    line-height: 1.2;
                    @media screen and (max-width: 767px) {
                        padding-top: 10px;
                        padding-left: var(--px20);
                    }
                    &.price {
                        font-size: 36px;
                        font-weight: 600;
                        letter-spacing: .16em;
                        @media screen and (max-width: 1023px) {
                            font-size: 28px;
                        }
                        @media screen and (max-width: 767px) {
                            font-size: var(--rem36);
                            padding-top: 5px;
                        }
                    }
                    &.address {
                        font-size: 24px;
                        font-weight: 700;
                        letter-spacing: .16em;
                        border-bottom: 1px solid #BCBCBC;
                        @media screen and (max-width: 1023px) {
                            font-size: 20px;
                        }
                        @media screen and (max-width: 767px) {
                            font-size: var(--rem24);
                            /* border-left: 1px dashed #E2E2E2; */
                            border-bottom: none;
                            padding-top: 16px;
                        }
                    }
                }
            }
        }
    }
    #photo_main {
        /* aspect-ratio: 704 / 503; */
        & > img {
            width: 100%;
            /* height: 100%; */
            height: 504px;
            object-fit: cover;
            @media screen and (max-width: 1023px) {
                height: 498px;
            }
            @media screen and (max-width: 767px) {
                height: 100%;
            }
        }
        .exampleGallery {
            display: flex;
            flex-wrap: wrap;
            gap: 14px 10px;
            margin-top: 30px;
            @media screen and (max-width: 767px) {
                gap: 10px 7px;
                margin-top: var(--rem36);
            }
            .photo_thumb {
                width: calc((100% - 40px) / 5);
                aspect-ratio: 132 / 97;
                @media screen and (max-width: 767px) {
                    width: calc((100% - 28px) / 5);
                }
                a {
                    display: block;
                    width: 100%;
                    height: 100%;
                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
                }
            }
        }
    }
    .exampleBox {
        background: #FAFAFA;
        padding: var(--rem40) var(--px40);
        & + & {
            margin-top: var(--rem40);
        }
    }
    .pagination {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        max-width: 1240px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        font-family: var(--font-family03);
        margin-top: min(calc(10rem + (1vw - 1.92rem) * 3.2362), 10rem);
        @media screen and (max-width: 767px) {
            width: 100%;
            margin-top: var(--rem40);
        }
        &:has(.prev-page) {
            justify-content: space-between;
        }
        a {
            color: var(--color-primary);
            &:hover {
                text-decoration: underline;
            }
        }
    }
}

/*================================================
					お問い合わせ
================================================*/
body:not(.home) {
	.wpcf7 {
		.wpcf7-form {
			table {
				th {
					width: 30%;
                    vertical-align: unset;
				}
			}
			.subimitarea {
				.linkBtn {
					margin-left: auto;
					margin-right: auto;
					padding: 0;
                    &::after {
                        display: none;
                    }
                    input[type="submit"] {
                        padding: 20px 10px;
                    }
				}
			}
		}
	}
}

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