@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+Maru+Gothic:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wdth,wght@75..100,100..900&display=swap');
:root {
	/*------▼基本設定▼------*/
	--color-background: #FFF;
	--color-font: #333;
	--color-primary: #73B5F7;
	--color-primary-shade: #3296FA;
	--color-primary-tint: #9dcbf9;
	--color-secondary: #954D2A;
	--color-secondary-tint: #954D2A;
	--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: 'Noto Sans JP', sans-serif;
	--content-max-width: 1240px;
	/*------▼ヘッダー設定▼------*/
	--header-background: #FFF;
	--header-color-font: #333;
	--header-color-primary: #73B5F7;
	--header-color-primary-shade: #3296FA;
	--header-color-primary-tint: #9dcbf9;
	/*------▼フッター設定▼------*/
	--footer-background: #fff;
	--footer-color-font: #333;
	--footer-color-primary: #333;
	/*------▼フォント設定▼------*/
	--font-family01: 'Noto Sans JP', sans-serif;
    --font-family02: 'Oswald', 'Noto Sans JP', sans-serif;
    --font-family03: "Zen Maru Gothic", serif;
    --font-family04: "Roboto", 'Noto Sans JP', sans-serif;
}

/*--------------------------------------------------
	共通
--------------------------------------------------*/
.post {
    h2, h3, h4 {
        color: var(--color-font);
    }
    .ttl {
        &:is(.ttl--primary) {
            display: flex;
            flex-direction: column;
			position: relative;
            &::after {
				display: none;
            }
            &:is(.txt_l) {
                .ttl--primary__en {
                    margin-left: 0;
                }
            }
            &:is(.deco-mod-01) {
                &::before {
                    display: block;
                    content: "";
                    aspect-ratio: 1 / 1;
                    width: 3.7em;
                    height: auto;
                    background: url(/wp-content/uploads/logo_01.png.webp) no-repeat center / contain;
                    margin: 0 auto;
                }
            }
            &:is(.deco-mod-02) {
                &::before {
                    display: block;
                    content: "";
                    aspect-ratio: 1 / 1;
                    width: 2.8em;
                    height: auto;
                    background: url(/wp-content/uploads/logo_02.png.webp) no-repeat center / contain;
                    margin: 0 auto;
                }
            }
            .ttl--primary__en {
                display: inline-block;
                color: #fff;
				font-family: var(--font-family03);
                font-size: var(--rem40);
                font-weight: 700;
                line-height: 1;
                background: var(--color-primary);
                border-radius: 50vh;
                margin: 0 auto;
                padding: 0px var(--px24) 7px;
                &:is(.bg-white) {
                    color: var(--color-primary);
                    background: #fff;
                }
            }
            .ttl--primary__ja {
                font-weight: 700;
                line-height: 1.2;
                margin-bottom: var(--rem20);
            }
        }
    }
	/* 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-deco_mod-01 {
        margin-bottom: var(--rem80);
        letter-spacing: 0;
        .sub {
            color: var(--color-primary);
            font-size: var(--rem24);
            font-weight: 500;
            letter-spacing: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            width: fit-content;
            margin: 0 auto;
            position: relative;
            &::before, &::after {
                display: block;
                content: "";
                aspect-ratio: 43 / 2;
                width: 1.79em;
                height: auto;
                background: var(--color-primary);
            }
            &::before {
                transform: rotate(60deg);
            }
            &::after {
                transform: rotate(-60deg);
                margin: 0;
            }
            &:is(.white) {
                color: #fff;
                &::before, &::after {
                    background: #fff;
                }
            }
            &:is(.black) {
                color: #000;
                &::before, &::after {
                    background: #000;
                }
            }
        }
        .main {
            display: block;
            font-size: var(--rem40);
            font-weight: 500;
        }
        &::after {
            display: none;
        }
        &:is(.large) {
            font-size: var(--rem40);
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            &::before, &::after {
                display: block;
                content: "";
                aspect-ratio: 76 / 2;
                width: var(--rem72);
                height: auto;
                background: var(--color-font);
            }
            &::before {
                transform: rotate(60deg);
            }
            &::after {
                transform: rotate(-60deg);
                margin: 0;
            }
            @media screen and (max-width: 768px) {
                font-size: var(--rem28);
            }
        }
        &:is(.blue) {
            color: var(--color-primary);
            &::before, &::after {
                background: var(--color-primary);
            }
        }
    }
    p {
        line-height:2;
    }
    .list  {
        padding: 0;
        &:is(.list--mod-01) {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: var(--rem24) var(--px24);
            @media screen and (max-width: 768px) {
                flex-direction: column;
                max-width: 360px;
                margin-left: auto;
                margin-right: auto;
            }
            & > li {
                display: flex;
                align-items: flex-start;
                column-gap: var(--px16);
                font-size: var(--rem24);
                font-weight: 500;
                letter-spacing: 0;
                &:is(.em-17) {
                    width: 17em;
                }
                &:is(.em-18) {
                    width: 18em;
                }
                &:is(.em-19) {
                    width: 19em;
                }
                &:is(.em-20) {
                   width: 20em;
                }
                @media screen and (max-width: 1600px) {
                    width: 42%;
                }
                @media screen and (max-width: 768px) {
                    width: 100%;
                }
                & > span {
                    background: linear-gradient(transparent 60%, #FFF04A 60%);
                }
                &::before {
                    display: block;
                    content: "";
                    aspect-ratio: 1 / 1;
                    width: var(--rem40);
                    height: auto;
                    background: url(/wp-content/uploads/icon_check_02.png.webp) no-repeat center / contain;
                    margin-top: .4em;
                }
            }
        }
    }
    .linkList {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--rem36);
        @media screen and (max-width: 699px) {
            flex-direction: column;
        }
        .linkBtn {
            margin: 0;
        }
    }
    .areaList {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        @media screen and (max-width: 768px) {
            margin-bottom: var(--rem40);
        }
        .areaList__item {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            width: calc((100% - 10px) / 2);
            aspect-ratio: 1 / 1;
            height: auto;
            color: #fff;
            font-size: var(--rem30);
            font-weight: 700;
            line-height: 1;
            letter-spacing: 0;
            background: var(--color-primary-shade);
            border-radius: 50%;
            & > span {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                row-gap: .4em;
            }
            @media screen and (max-width: 768px) {
                width: calc((100% - 30px) / 4);
            }
            @media screen and (max-width: 414px) {
                width: calc((100% - 10px) / 2);
            }
            .small {
                font-size: var(--rem20);
                font-weight: 500;
                line-height: 1;
            }
        }
    }
	.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--960) {
			max-width: 960px;
		}
		&:is(.max-w--1000) {
			max-width: 1000px;
		}
	}
	.none-style {
		padding: 0;
		border: 0;
		&::before, &::after {
			display: none;
		}
	}
	.ffs-on {
		font-feature-settings: 'palt' on;
	}
	.ffs-off {
		font-feature-settings: 'palt' off;
	}
	.ff-01 {
		font-family: var(--font-family01) !important;
	}
	.ff-02 {
		font-family: var(--font-family02) !important;
	}
	.ff-03 {
		font-family: var(--font-family03) !important;
	}
	.ff-04 {
		font-family: var(--font-family04) !important;
	}
	.fsz-12 {
        font-size: var(--rem12);
    }
    .fsz-14 {
        font-size: var(--rem14);
    }
    .fsz-16 {
        font-size: var(--rem16);
    }
    .fsz-18 {
        font-size: var(--rem18);
    }
    .fsz-20 {
        font-size: var(--rem20);
    }
    .fsz-24 {
        font-size: var(--rem24);
    }
    .fsz-28 {
        font-size: var(--rem28);
    }
    .fsz-28--sp {
        @media screen and (max-width: 768px) {
            font-size: var(--rem24);
        }
    }
    .fsz-30 {
        font-size: var(--rem30);
    }
    .fsz-36 {
        font-size: var(--rem36);
    }
    .fsz-40 {
        font-size: var(--rem40);
    }
    .fsz-48 {
        font-size: var(--rem48);
    }
    .fsz-60 {
        font-size: var(--rem60);
    }
    .fsz-72 {
        font-size: var(--rem72);
    }
    .fsz-80 {
        font-size: var(--rem80);
    }
    .fsz-120 {
        font-size: var(--rem120);
    }
	.fw-100 {
		font-weight: 100 !important;
	}
    .fw-200 {
		font-weight: 200 !important;
	}
    .fw-300 {
		font-weight: 300 !important;
	}
	.fw-400 {
		font-weight: 400 !important;
	}
	.fw-500 {
		font-weight: 500 !important;
	}
	.fw-600 {
		font-weight: 600 !important;
	}
	.fw-700 {
		font-weight: 700 !important;
	}
    .fw-800 {
		font-weight: 800 !important;
	}
    .fw-900 {
		font-weight: 900 !important;
	}
	.lh-mod-01 {
		line-height: 1 !important;
	}
	.lh-mod-02 {
		line-height: 1.1 !important;
	}
	.lh-mod-03 {
		line-height: 1.2 !important;
	}
	.lh-mod-04 {
		line-height: 1.3 !important;
	}
	.lh-mod-05 {
		line-height: 1.4 !important;
	}
	.lh-mod-06 {
		line-height: 1.5 !important;
	}
	.lh-mod-07 {
		line-height: 1.6 !important;
	}
	.lh-mod-08 {
		line-height: 1.7 !important;
	}
	.lh-mod-09 {
		line-height: 1.8 !important;
	}
	.lh-mod-10 {
		line-height: 1.9 !important;
	}
	.lh-mod-11 {
		line-height: 2 !important;
	}
	.ls-mod-01 {
        letter-spacing: 0 !important;
    }
	.ls-mod-02 {
        letter-spacing: .1em !important;
    }
	.ls-mod-03 {
        letter-spacing: .05em !important;
    }
	.ls-mod-04 {
        letter-spacing: .15em !important;
    }
	.color-common {
		color: var(--color-font);
	}
	.color-primary {
		color: var(--color-primary);
	}
	.color-primary-shade {
		color: var(--color-primary-shade);
	}
	.color-primary-tint {
		color: var(--color-primary-tint);
	}
	.color-secondary {
		color: var(--color-secondary);
	}
    .color-white {
        color: #fff;
    }
    .color-black {
        color: #000;
    }
    .color-yellow {
        color: #FFF04A;
    }
	.color-gradation {
		background: linear-gradient(263deg, #27B7EC 9%, #073190 97%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
		text-fill-color: transparent;
	}
	.d-inline {
        display: inline;
    }
    .d-inline-b {
        display: inline-block;
    }
    .d-block {
        display: block;
    }
	.ml-12 {
		margin-left: var(--rem12);
	}
	.ml-14 {
		margin-left: var(--rem14);
	}
	.ml-16 {
		margin-left: var(--rem16);
	}
	.ml-18 {
		margin-left: var(--rem18);
	}
	.ml-20 {
		margin-left: var(--rem20);
	}
	.ml-24 {
		margin-left: var(--rem24);
	}
	.mr-12 {
		margin-right: var(--rem12);
	}
	.mr-14 {
		margin-right: var(--rem14);
	}
	.mr-16 {
		margin-right: var(--rem16);
	}
	.mr-18 {
		margin-right: var(--rem18);
	}
	.mr-20 {
		margin-right: var(--rem20);
	}
	.mr-24 {
		margin-right: var(--rem24);
	}
    .m-inline-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }
	.m-inline-none {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

.br_mod-01 {
	display: 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: 1439px) {
		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;
}

/* バナー */
.page-id-21, .page-id-17, .page-id-19 {
    .floatingBanner {
        display: none !important;
    }
}
.floatingBanner {
    display: flex;
    align-items: center;
    height: 100px;
    background: url(/wp-content/uploads/banner_bg_01.png.webp) no-repeat center / cover;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    z-index: 1;
    @media screen and (max-width: 1439px) {
        height: 150px;
        padding: 20px 0;
    }
    @media screen and (max-width: 768px) {
        display: none !important;
    }
    .floatingBanner__inner {
        display: flex;
        align-items: center;
        column-gap: var(--px40);
        max-width: 1600px;
        width: 90%;
        margin: 0 auto;
        @media screen and (max-width: 1439px) {
            flex-direction: column;
            width: 94%;
        }
    }
    .floatingBanner__ttl {
        flex-shrink: 0;
        color: #fff;
        font-size: var(--rem24w);
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: 0;
        @media screen and (max-width: 1439px) {
            margin-bottom: 16px;
        }
    }
    .ctabtnlist {
        display: flex;
        justify-content: space-between;
        column-gap: 10px;
        max-width: unset;
        width: 100%;
        margin: 0 auto;
    }
    .ctabtnlist li {
        width: 50%;
        background: #fff;
        margin: 0;
        padding: 0;
        line-height: 1;
        display: flex;
    }
    a.item {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: var(--px12) 0;
        text-align: center;
        box-sizing: border-box;
        color: #111;
        border-radius: 0;
        transition: all ease .15s;
    }
    a.item:hover{
        opacity: 0.8;
    }
    @media print, screen and (max-width: 768px) {
        .ctabtnlist li, .ctabtnlist a.item {
            width: 100%;
        }
        .ctabtnlist li + li {
            margin-top: 1rem;
        }
    }
        
    /*ボタン共通パーツ*/
        
    .btnttl {
        display: block;
        font-weight: bold;
        margin-bottom: 1rem;
        @media screen and (max-width: 1439px) {
            margin-bottom: .5rem;
        }
    }
    .infotxt {
        font-size: var(--rem14);	
        font-weight: 700;
        .note {
            font-size: var(--rem14);	
            font-weight: 700;
            b {
                font-weight: 700;
            }
        }
    }
        
    /*電話ボタン*/
        
    .telnum {
        font-size: var(--rem30);
        font-weight: 800;
        margin-bottom: 1rem;
        @media screen and (max-width: 1439px) {
            font-size: var(--rem20);
            margin-bottom: .5rem;
        }
    }
    .telbtn .btnttl {
        font-size: var(--rem20);
    }
    a.telbtn {
        background: #fff;
        color: var(--color-font);
    }
        
    /*メールボタン*/
        
    .mailbtn .btnttl {
        font-size: var(--rem20);
        @media screen and (max-width: 1439px) {
            font-size: var(--rem16);
        }
    }
    a.mailbtn {
        background: #FFF04A;
        color: var(--color-primary-shade);
    }
        
    /*LINEボタン*/
        
    a.linebtn {
        background: #06C755;
        color: #fff;
    }
    .linebtn .btnttl {
        font-size: var(--rem20);
        margin-bottom: 0;
        @media screen and (max-width: 1439px) {
            font-size: var(--rem16);
        }
    }
    
    /*ボタンアイコン*/
        
    .telnum::before, .mailbtn .btnttl::before, .linebtn .btnttl::before {
        content: '';
        display: inline-block;
        font-family: 'Font Awesome 5 Free', 'FontAwesome';
        font-weight: 900;
        margin-right: 1rem;
    }
    .telnum::before {
        content: '\f3cd';
        font-size: var(--rem24);
    }
    .mailbtn .btnttl::before {
        content: '\f0e0';
        font-size: var(--rem20);
    }
    .linebtn .btnttl::before {
        content: '\f3c0';
        font-size: var(--rem24);
        font-weight: 400;
        position: relative;
        top: 1px;
    }
    @media screen and (max-width: 1439px) {
        .telnum::before, .mailbtn .btnttl::before, .linebtn .btnttl::before {
            margin-right: 5px;
        }
    }
}

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

/*-----------------------------
card
------------------------------*/
  .toptxtarea {
    max-width: 960px;
    width: 94%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .card01_wrap {
    position: relative;
    margin: var(--px60) 0 0;
  }
  .card01_inner {
    max-width: 1240px;
    width: 100%;
    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-size: var(--rem36);
    font-weight: 700;
    margin: var(--rem36) auto;
    background: transparent;
    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(--rem20w);
    border-bottom: 1px solid #fff;
    margin: 0 0 1rem;
    padding-bottom: .5em;
    &:is(.txtstyle02--mod-01) {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: var(--rem24w);
        background: var(--color-primary-shade);
        padding: var(--rem12) var(--px16);
        border: none;
        margin-bottom: var(--rem24);
    }
  }

/*-----------------------------
.cardstyle
------------------------------*/
  
/*---------style02-------------*/
.card01_list.cardstyle02 {
    &:is(.cardstyle02--mod-01) {
        & > li {
            background: #fff;
        }
        .imgarea {
            aspect-ratio: 390 / 200;
        }
        .txtarea {
            .price {
                display: flex;
                align-items: center;
                column-gap: var(--px16);
                margin-top: var(--rem24);
                .figure {
                    aspect-ratio: 56 / 55;
                    width: 3.5em;
                    height: auto;
                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
                }
                .num {
                    color: #E52828;
                    font-family: var(--font-family04);
                    font-size: var(--rem40);
                    font-weight: 800;
                    .unit {
                        font-size: var(--rem16);
                        font-weight: 700;
                    }
                }
            }
        }
    }
}
.card01_list.cardstyle02 > li {
    display: flex;
    flex-direction: column;
    background: var(--color-primary-shade);
    border-radius: var(--px20);
    overflow: hidden;
}
.card01_list.cardstyle02 > li .txtarea {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: var(--rem30) var(--px30);
    p {
        flex-grow: 1;
        font-weight: 500;
        line-height: 1.8;
    }
}

/*------------------------------------------------------------
 ナンバリング02
------------------------------------------------------------*/

.num_list02 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	counter-reset: number; /*数字をリセット*/
	list-style-type: none!important; /*数字を一旦消す*/
}
.num_list02 > li {
	position: relative;
	width: 100%;
	margin-top: var(--px40w);
	padding: var(--px60) var(--px30) var(--px40);
	border-radius: var(--px20);
    background: #fff;
    .num_listfigure {
        aspect-ratio: 330 / 232;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    p {
        line-height: 1.8;
    }
}
.num_list02 > li::before {
	content: counter(number, decimal-leading-zero);
	counter-increment: number;
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: var(--px80);
	height: var(--px80);
	color: var(--color-primary-shade);
	background: #FFF04A;
	font-size: var(--px40);
    font-weight: 900;
    font-family: var(--font-family04);
	border-radius: 50%;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.num_list02 .num_listttl {
	background: none;
	font-size: var(--rem24w);
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	padding: 0;
	margin: var(--rem30) auto var(--rem12);
	border: none;
    @media screen and (max-width: 1079px) {
        font-size: var(--rem20);
    }
    @media screen and (max-width: 768px) {
        font-size: var(--rem24w);
    }
}
.num_list02 .num_listttl::before {
	display: none;
	position: static;
	color: var(--color-font);
	font-size: var(--px80);
	font-weight: normal;
	font-family: 'FontAwesome';
	line-height: 1;
	margin: 0 auto var(--px20);
	width: auto;
	height: auto;
}
.num_list02 .num01::before {
	content: '\f0e6';
}
.num_list02 .num02::before {
	content: '\f1ec';
}
.num_list02 .num03::before {
	content: '\f0d1';
}
.num_list02 .num04::before {
	content: '\f0e7';
}
	
/*---------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: 768px) {
	.post .col3_list > li {
		width: 100%;
        margin-bottom: 6%;
	}
	.post .col3_list > li:last-child {
		margin-bottom: 0;
	}
}

/*--------------------------------------------------
	リンクボタン
--------------------------------------------------*/
.linkBtn, .post .linkBtn, a.linkBtn {
    font-weight: 700;
	border-radius: 5px;
    &:is(.linkBtn_mod-01) {
        color: var(--color-primary-shade);
        background: #fff;
        &::after {
            border-right: 1px solid var(--color-primary-shade);
            border-bottom: 1px solid var(--color-primary-shade);
        }
        &:hover {
            background: #FFF04A;
        }
    }
    &:is(.linkBtn_mod-02) {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: var(--px20);
        color: var(--color-primary-shade);
        font-size: var(--rem30);
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0;
        max-width: 540px;
        background: #FFF04A;
        padding: var(--rem40) var(--px20);
        &::after {
            border-right: 2px solid var(--color-primary-shade);
            border-bottom: 2px solid var(--color-primary-shade);
            margin-top: 2px;
            position: static;
        }
        &::before {
            display: block;
            content: "";
            aspect-ratio: 176 / 100;
            width: 5.8em;
            height: auto;
            background: url(/wp-content/uploads/pic_car_01.png.webp) no-repeat center / contain;
            position: absolute;
            top: -2em;
            left: -1.3em;
        }
        &:hover {
            color: #FFF04A;
            background: var(--color-primary-shade);
            &::after {
                border-right: 2px solid #FFF04A;
                border-bottom: 2px solid #FFF04A;
            }
        }
    }
    &:is(.linkBtn_mod-03) {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-primary-shade);
        font-size: var(--rem24);
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0;
        max-width: 430px;
        background: #FFF04A;
        padding: var(--rem28) var(--px20);
        &::after {
            border-right: 1px solid var(--color-primary-shade);
            border-bottom: 1px solid var(--color-primary-shade);
        }
        &:hover {
            color: #FFF04A;
            background: var(--color-primary-shade);
            &::after {
                border-right: 2px solid #FFF04A;
                border-bottom: 2px solid #FFF04A;
            }
        }
    }
}

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

/*--------------------------------------------------
	ヘッダー
--------------------------------------------------*/
.br-mod-nav {
    display: none;
    @media screen and (max-width: 1240px) {
        display: block;
    }
    @media screen and (max-width: 1023px) {
        display: none;
    }
}
@media print, screen and (min-width: 1024px) {
    #header {
        height: 100px;
    }
	#header .logo img {
		width: 100%;
		max-width: 400px;
		max-height: 80px;
    }
    #header a.head_btn {
        color: #000;
        background: var(--color-primary);
        padding-left: var(--rem28);
        padding-right: var(--rem28);
        &:hover {
            background-color: var(--color-primary-tint);
        }
    }
    #header ul.header__contact > li:has(.head_btn.tel_btn) {
    position: relative;
        &::before {
            display: block;
            content: "";
            width: 1px;
            height: calc(100% - 24px);
            background: #AEAEAE;
            position: absolute;
            top: 12px;
            left: var(--px20);
        }
    }
    #header a.head_btn.tel_btn {
        background: transparent;
        margin-left: var(--px20);
        &:hover {
            background: transparent;
            opacity: .6;
        }
        .tel_btn__info {
            font-weight: 500;
            .note b {
                font-weight: 500;
            }
        }
    }
    #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);
        color: var(--color-primary-shade);
        font-size: var(--rem24);
        font-weight: 700;
        margin-bottom: 3px;
    }
    #header a.head_btn.mail_btn {
        color: var(--color-primary-shade);
        background: #FFF04A;
        font-size: var(--rem16);
        font-weight: 700;
        flex-direction: column;
        align-items: center;
        padding-left: var(--rem36);
        padding-right: var(--rem36);
        & > span {
            display: flex;
            flex-direction: column;
        }
        &:hover {
            background: #FFF04A;
            opacity: .6;
        }
        .mail_btn__info {
            font-size: var(--rem14);
            font-weight: 500;
        }
    }
    #header a.head_btn.mail_btn::before {
        display: none;
    }
    #header a.head_btn.mail_btn .mail_btn__num {
        display: flex;
        align-items: center;
        flex-direction: row;
    }
    #header a.head_btn.mail_btn .mail_btn__num::before {
        display: block;
        content: '\f0e0';
        font-family: 'FontAwesome';
        font-size: 1.4em;
        font-weight: 400;
        line-height: 1;
        position: relative;
        top: 1px;
		margin-right: 10px;
        margin-bottom: 0;
    }
    #header a.head_btn.line_btn {
        color: #fff;
        background: #06C755;
        &:hover {
            background: #06C755;
            opacity: .6;
        }
        .line_btn__info {
            font-size: var(--rem14);
            font-weight: 500;
        }
    }
    #header a.head_btn.line_btn .line_btn__num {
        display: flex;
        align-items: center;
        font-size: var(--rem16);
        font-weight: 700;
    }
    #header a.head_btn.line_btn .line_btn__num::before {
        display: block;
        content: "\f3c0";
        color: #fff;
        font-family: 'FontAwesome';
        font-size: 1.4em;
        font-weight: 400;
        line-height: 1;
        position: relative;
        top: 1px;
		margin-right: 10px;
        margin-bottom: 0;
    }
	nav#mainNav ul li:has(> .sub-menu) {
		&:hover {
			background: transparent;
			a b {
				color: var(--color-primary-shade);
			}
		}
    }
    nav#mainNav ul li a {
        padding: var(--px20);
    }
    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: transparent;
        b {
             color: var(--color-primary-shade);
        }
    }
    nav#mainNav ul li.current-menu-item a:hover b, nav#mainNav ul li.current-menu-parent a:hover b {
         color: var(--color-primary-shade);
    }
    nav#mainNav ul li.current-menu-item a {
        background: transparent;
    }
    body:not(.home) {
        nav#mainNav ul li.current-menu-item a b, nav#mainNav ul li.current-menu-parent a b {
            color: var(--color-primary-shade);
        }
		nav#mainNav ul li.current-menu-item:hover a b, nav#mainNav ul li.current-menu-parent a:hover b {
			color: var(--color-primary-shade);
        }
    }
		nav#mainNav ul li:hover {
		& > a, & > b {
			color: var(--color-primary-shade);
		}
	}
	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.line_btn .line_btn__num {
        font-size: var(--rem14);
    }

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

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

	#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.head_btn .tel_btn__num {
        font-size: var(--rem18);
    }
    #header a.head_btn.tel_btn .tel_btn__info .note {
        display: flex;
        flex-direction: column;
        font-size: 10px;
        font-weight: 500;
    }

    nav#mainNav ul li a b, nav#mainNav ul li a span {
		font-size: var(--rem14);
	}
    
	#header a.headBtn span {
		display: none;
	}

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

    #header a.head_btn.tel_btn {
        margin-left: var(--px12);
    }

    #header ul.header__contact > li:has(.head_btn.tel_btn) {
        &::before {
            left: var(--px12);
        }
    }    
}

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

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

@media screen and (max-width: 1023px) {
	nav#mainNav ul li ul.sub-menu li a, nav#mainNav ul li ul.sub-menu li a:hover, nav#mainNav ul li ul.sub-menu li.current-menu-item a, nav#mainNav ul li.current-menu-item ul.sub-menu li a {
		color: #4d4d4d;
		font-size: 1.4rem;
	}
    nav#mainNav ul li a b, nav#mainNav ul li a span {
		font-size: var(--rem16);
	}
	/* nav#mainNav ul li a {
		padding: min(calc(15px + (1vw - 19.2px) * 0.5580), 15px) 10px;
	} */
	nav#mainNav ul li a, nav#mainNav ul li.current-menu-item li a {
		padding: 15px 10px;
	}
	nav#mainNav ul li li a, nav#mainNav ul li.current-menu-item li a {
		padding-left: 43px;
	}
}

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



.spmenu #menu p {
    width: 100%;
}
@media print, screen and (min-width: 1024px) {
	nav#mainNav ul li:hover {
		& > a, & > b {
			color: var(--color-primary);
		}
	}
	nav#mainNav ul li:hover ul.sub-menu {
		background: #fff;
	}
}
#header #mainNav .sp-nav-block {
	display: none;
	@media screen and (max-width: 1023px) {
	   display: block;
	}   
}

/*--------------------------------------------------
	フッター
--------------------------------------------------*/
#footer {
	padding: var(--px80) 0 calc(var(--px60) + 100px);
    @media screen and (max-width: 1439px) {
        padding: var(--px80) 0 calc(var(--px60) + 150px);
    }
    @media screen and (max-width: 768px) {
        padding: var(--px80) 0 var(--px60)
    }
    .footer__logo img {
        width: 100%;
		max-width: 103px;
		max-height: 103px;
    }
	.footer__logo:not(:last-child) {
		text-align: center;
		margin-bottom: var(--rem30);
	}
	.footnav:not(:last-child) {
		margin-bottom: 0;
	}
    address {
        margin-top: var(--rem16);
    }
    .inner {
        .qr-code {
            aspect-ratio: 1 / 1;
            width: 100%;
		    max-width: 103px;
            height: auto;
            margin: 0 auto var(--rem30);
            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }
    }
}
#copyright {
    color: var(--color-font);
    font-weight: 300;
    background: transparent;
}

/*--------------------------------------------------
	CTA
--------------------------------------------------*/
.page-id-21, .page-id-17, .page-id-19 {
	.cta {
		display: none !important;
	}
}
/*-----------------------------
cta01_col3
------------------------------*/
.cta01 {
	background: url(/wp-content/uploads/cta_bg_01.jpg.webp) no-repeat center / cover;
    padding: var(--rem120) 0;
	position: relative;
	z-index: 0;
    .ttl {
        &:is(.ttl--primary) {
            display: flex;
            flex-direction: column;
			position: relative;
            &::after {
				display: none;
            }
            &:is(.txt_l) {
                .ttl--primary__en {
                    margin-left: 0;
                }
            }
            &:is(.deco-mod-01) {
                &::before {
                    display: block;
                    content: "";
                    aspect-ratio: 1 / 1;
                    width: 3.7em;
                    height: auto;
                    background: url(/wp-content/uploads/logo_01.png.webp) no-repeat center / contain;
                    margin: 0 auto;
                }
            }
            &:is(.deco-mod-02) {
                &::before {
                    display: block;
                    content: "";
                    aspect-ratio: 1 / 1;
                    width: 2.8em;
                    height: auto;
                    background: url(/wp-content/uploads/logo_02.png.webp) no-repeat center / contain;
                    margin: 0 auto;
                }
            }
            .ttl--primary__en {
                display: inline-block;
                color: #fff;
				font-family: var(--font-family03);
                font-size: var(--rem40);
                font-weight: 700;
                line-height: 1;
                background: var(--color-primary);
                border-radius: 50vh;
                margin: 0 auto;
                padding: 0px var(--px24) 7px;
                &:is(.bg-white) {
                    color: var(--color-primary);
                    background: #fff;
                }
            }
            .ttl--primary__ja {
                font-weight: 700;
                line-height: 1.2;
                margin-bottom: var(--rem20);
            }
        }
    }
    .fsz-18 {
        font-size: var(--rem18);
    }
    .fsz-40 {
        font-size: var(--rem40);
    }
    .color-common {
		color: var(--color-font);
	}
	.color-primary {
		color: var(--color-primary);
	}
	.color-primary-shade {
		color: var(--color-primary-shade);
	}
	.color-primary-tint {
		color: var(--color-primary-tint);
	}
	.color-secondary {
		color: var(--color-secondary);
	}
    .color-white {
        color: #fff;
    }
    .color-black {
        color: #000;
    }
    .color-yellow {
        color: #FFF04A;
    }
}
.cta01 .cta01_wrap {
	max-width: 1240px;
    width: 90%;
    margin: 0 auto;
	background: rgba(255, 255, 255, .8);
    padding: var(--rem120) var(--px40);
}
.cta01 .ctabtnlist {
    justify-content: space-between;
    column-gap: 30px;
    max-width: 1100px;
    margin: var(--px40) auto 0 auto;
	@media screen and (max-width: 1023px) {
    	display: flex;
		flex-direction: column;
	}
}
.cta01 .ctabtnlist li {
    width: 50%;
    background: #fff;
    margin: 0;
    padding: 0;
    line-height: 1;
    display: flex;
}
.cta01 a.item {
	position: relative;
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--px30) 0;
    text-align: center;
    box-sizing: border-box;
    color: #111;
    border-radius: 0;
    transition: all ease .15s;
}
.cta01 a.item:hover{
	opacity: 0.8;
}
@media print, screen and (max-width: 1023px) {
	.cta01 .ctabtnlist li, .cta01 .ctabtnlist a.item {
		width: 100%;
	}
	.cta01 .ctabtnlist li + li {
		margin-top: 1rem;
	}
}
	
/*ボタン共通パーツ*/
	
.cta01 .btnttl {
	display: block;
	font-weight: bold;
	margin-bottom: 1rem;
}
.cta01 .infotxt {
	font-size: var(--rem18);	
	font-weight: 700;
    .note {
        font-size: var(--rem16);	
	    font-weight: 700;
        b {
            font-weight: 700;
        }
    }
}
	
/*電話ボタン*/
	
.cta01 .telnum {
	font-size: var(--rem36);
    font-weight: 800;
	margin-bottom: 1rem;
}
.cta01 .telbtn .btnttl {
	font-size: var(--rem20);
}
.cta01 a.telbtn {
    background: #fff;
	color: var(--color-font);
}
	
/*メールボタン*/
	
.cta01 .mailbtn .btnttl {
	font-size: var(--rem24);
    line-height: 1.2;
}
.cta01 a.mailbtn {
    background: #FFF04A;
	color: var(--color-primary-shade);
}
	
/*LINEボタン*/
	
.cta01 a.linebtn {
    background: #06C755;
    color: #fff;
}
.cta01 .linebtn .btnttl {
    font-size: var(--rem24);
    margin-bottom: 0;
}

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

/*--------------------------------------------------
	TOPページ
--------------------------------------------------*/
.home, #editor-style {
	#wrapper {
		max-width: 1600px;
        width: 90%;
	}
    /* CONTENT01 */
    #top_reason {
        padding: var(--rem120) 0;
        &.bg_wide {
            &::before {
                background: var(--color-primary);
            }
        }
    }
    /* CONTENT02 */
    #top_service {
        padding: var(--rem120) 0;
    }
    /* CONTENT03 */
    #top_price {
        padding: var(--rem120) 0;
        &.bg_wide {
            &::before {
                background: #EFF7FF;
                border-radius: 100px;
            }
        }
        .linkBtn.linkBtn_mod-02 {
            margin-top: var(--rem120);
        }
    }
    /* CONTENT04 */
    #top_area {
        max-width: 1240px;
        margin-left: auto;
        margin-right: auto;
        padding: var(--rem120) 0;
        .flexbox {
            .txtarea {
                max-width: 330px;
                margin: 0 auto;
                @media screen and (max-width: 768px) {
                    max-width: unset;
                }
            }
            .imgarea {
                max-width: 645px;
                margin: 0 auto;
            }
        }
    }
    /* INSTAGRAM */
    #top_instagram {
        padding: var(--rem120) 0;
    }
}

/*--------------------------------------------------
	下層ページ
--------------------------------------------------*/
body:not(.home) {
    #thumbImg::before, header#h1Header::before {
        display: none;
    }
    h1.title, .post h1, header#h1Header h1.title {
        color: #8B4726;
        font-size: var(--rem48);
        font-family: var(--font-family01);
        font-weight: 500;
    }
	&:is(.single) {
		h1.title {
			color: var(--color-font);
		}
	}
    &.post, .post {
        .page_contents_inner {
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }
		p {
            letter-spacing: .05em;
        }
		.table_mod-01 {
            border-color: #000;
            th, td {
                font-size: var(--rem20);
                font-weight: 500;
                letter-spacing: 0;
                padding: var(--rem14) var(--px16);
            }
            th {
                color: #fff;
                background: var(--color-primary);
                border-right: none;
            }
            td {
                border-left: none;
            }
        }
        table th, table td {
            font-size: var(--rem16);
            line-height: 1.7;
            border-color: #000;
            padding: min(calc(3.2rem + (1vw - 1.92rem) * 0.7120), 3.2rem) var(--rem24);
        }
        table th {
            font-weight: 700;
        }
		.w-fit {
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }
		.googlemap {
            padding-bottom: 28%;
            @media screen and (max-width: 768px) {
                padding-bottom: 45%;
            }
        }
    }
}
.spbr.page-header {
    display: none !important;
}
.title.first {
    .spbr.page-header {
        @media screen and (max-width: 768px) {
            display: block !important;
        }
    }
}

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

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

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

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

/*--FAQ-------------------------------------------*/

.qa_list {
	cursor: pointer;
    .credit-width {
        & > img {
            width: 50%;
            max-width: 431px;
            @media screen and (max-width: 414px) {
                width: 100%;
            }
        }
    }
}
.qa_list .qa_list_inner dt {
	position: relative;
	font-weight: normal;
	margin: 1rem 0 0 0;
	display: flex;
	align-items: stretch;
	padding: 0rem 1rem 0rem 0rem;
	background: #ffffff;
	border: 1px solid #000;
}
.qa_list .qa_list_inner dd .ans_flex {
	position: relative;
	font-weight: normal;
	margin: 0;
	display: flex;
	align-items: flex-start;
	padding: 0;
	background: #ffffff;
}
.qa_list .qa_list_inner .a_ico {
	color: var(--color-primary);
	background: #FFF04A;
	line-height: 1.0;
	padding: 1.5rem 1rem;
	font-size: 3rem;
	border-right: none;
	width: 100%;
	text-align: center;
	max-width: 73px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--body-font-family);
    @media screen and (max-width: 768px) {
        font-size: 2.2rem;
    }
}
.qa_list .qa_list_inner .q_ico {
	background: var(--color-primary);
	line-height: 1.0;
	padding: 1.5rem 1rem;
    color: #fff;
	font-size: 3rem;
	font-weight: bold;
	width: 100%;
	text-align: center;
	max-width: 73px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--body-font-family);
	border-right: 1px solid #cccccc;
    @media screen and (max-width: 768px) {
        font-size: 2.2rem;
    }
}
.qa_list .qa_list_inner .q_desc, .qa_list .qa_list_inner .a_desc {
    font-size: var(--rem18);
	padding: 1.5rem 1.5rem 1.5rem 2rem;
	line-height: 1.7;
}
.qa_list .qa_list_inner .q_desc {
    font-weight: 500;
}
.qa_list .qa_list_inner .a_desc {
  line-height: 1.8;
  width: 100%;
}
.qa_list .qa_list_inner dt:after {
  content: '';
  position: absolute;
  top: 46%;
  right: 3rem;
  width: 12px;
  height: 12px;
  border-right: 1px solid #494949;
  border-bottom: 1px solid #494949;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}
.qa_list .qa_list_inner .active:after {
  top: 43%;
  right: 2rem;
  -webkit-transform: rotate(-135deg) translateY(-50%);
  transform: rotate(-135deg) translateY(-50%);
}
.qa_list .qa_list_inner dd {
	display: none;
	position: relative;
	padding: 0;
	margin: 0 0 4rem 0;
	border: 1px solid #000;
	border-top: 0;
}
@media only screen and (max-width: 959px) {
	.qa_list .qa_list_inner {
		margin-bottom: 2rem;
	}
}
@media only screen and (max-width: 768px) {
	.qa_list .qa_list_inner .q_desc, .qa_list .qa_list_inner .a_desc {
		padding: 0.5rem 1rem 0.5rem 1rem;
	}
	.qa_list .qa_list_inner dt {
		padding: 0rem 1rem 0rem 0rem;
	}
	.qa_list .qa_list_inner .a_ico, .qa_list .qa_list_inner .q_ico {
		max-width: 50px;
		padding: 1.2rem 1.0rem;
	}
	.qa_list .qa_list_inner dt:after {
		right: 1.5rem;
		width: 6px;
		height: 6px;
	}
	.qa_list .qa_list_inner .active:after {
		right: 1.0rem;
	}
}
@media only screen and (max-width: 559px) {
	.qa_list .qa_list_inner dd {
		font-size: 1.4rem;
	}
	.qa_list .qa_list_inner {
		margin-bottom: 2rem;
	}
	.qa_list .qa_list_inner dt {
		font-size: 1.4rem;
	}
}

/*================================================
				　　ご利用の流れ
================================================*/

/*--flow02--------------------------------------------*/

ul.flowlist02 {
	counter-reset: flow_list;
}
ul.flowlist02 > li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
    align-items: center;
	flex-wrap: wrap;
	gap: min(calc(40px + (1vw - 19.2px) * 1.6181), 40px);
	width: 100%;
	padding: var(--rem40) var(--px50);
	border-radius: var(--px30);
	background: #EFF7FF;
	position: relative;
}
.flowlist02 > li:not(:last-child) {
	margin-bottom: 84px;
}
.flowlist02 .flow_img {
	width: 35%;
}
.post .flowlist02 > li > dl {
	width: calc(65% - min(calc(40px + (1vw - 19.2px) * 1.6181), 40px));
	line-height: 1.8;
}
.flowlist02 > li:not(:last-child) dl::before {
	display: none;
}
.flowlist02 > li:not(:last-child) dl::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 119px solid transparent;
    border-left: 119px solid transparent;
    border-top: 37px solid var(--color-primary);
    border-bottom: 0;
    position: absolute;
    top: calc(100% + 24px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.post .flowlist02 > li > dl dt {
	position: relative;
	display: flex;
	align-items: center;
	font-size: min(calc(2.4rem + (1vw - 19.2px) * 0.4531), 2.4rem); /* 2.4-1.7rem (1920-375) */
	font-weight: 500;
    line-height: 1.4;
	padding: 0;
	margin-bottom: var(--rem20);
    border-bottom: none;
    .icon {
        flex-shrink: 0;
        background: #FFF04A;
        margin-right: 10px;
	    padding: 15px 19px 11px;
    }
}
.flowlist02 > li dl dt .icon:before {
	content: counter(flow_list, decimal-leading-zero);
	counter-increment: flow_list;
	line-height: 1;
	color: var(--color-primary);
    font-size: var(--rem30);
    font-weight: 500;
	position: relative;
	z-index: 100;
}
.post .flowlist02 > li > dl dd {
    font-size: var(--rem18);
	padding: 0;
}
@media print, screen and (max-width: 768px) {
	.post .flowlist02 > li > dl, .flowlist02 .flow_img {
		width: 100%;
	}
	.flow_img::before {
		padding-top: calc(360px + (1vw - 7.68px) * 35.6234);
	}
}

/*================================================
					お問い合わせ
================================================*/
body:not(.home) {
	.wpcf7 {
		.wpcf7-form {
			table {
				th {
					width: 30%;
                    background: #EFF7FF;
				}
			}
			.subimitarea {
				.linkBtn {
					margin-left: auto;
					margin-right: auto;
					padding: 0;
				}
			}
		}
	}
}

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

#front_top_content, #front_bottom_content {
	z-index: 1;
	padding: var(--rem120) 0;
	margin-bottom: var(--rem120);
}