@charset "utf-8";
/*
Theme Name:mrp-child
Template:mrp
Version: 1.0.0
*/
/*
DesignCode CSS: ver 0.01
*/
/*------------------------------------------------------
Theme Material
------------------------------------------------------*/

/* フォント */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* 変数 */
:root {
    --color-background: #fff;
    --color-font: #333;
    --color-font2: #4B4B4B;
    --color-primary: #12C2E9;
    --color-primary-shade: linear-gradient(90deg, rgba(252,0,255,1) 0%, rgba(0,219,222,1) 100%);
    --color-primary-tint: linear-gradient(-90deg, rgba(252,0,255,1) 0%, rgba(0,219,222,1) 100%);
    --color-secondary: #FC00FF;
    --color-secondary-shade: #FDC325;
    --color-secondary-tint: #EA0483;
    --color-third: #898989;
    --color-third-tint: #F0FAFF;
    --color-border: #ccc;
    --color-table-border: #ccc;

    --body-font-size: min(calc(1.6rem + (1vw - 19.2px) * 0.1294), 1.6rem);
    --body-font-family: 'Noto Sans JP', sans-serif;
    --font-family01: 'Noto Sans JP', sans-serif;
    --font-family02: 'Work Sans', 'Noto Sans JP', sans-serif;


    --content-max-width: 1240px;

    --header-background: #12C2E9;
    --header-color-font: #fff;
    --header-color-primary: linear-gradient(90deg, rgba(252,0,255,1) 0%, rgba(0,219,222,1) 100%);
    --header-color-primary-shade: #EA0483;

    --footer-background: #333;
    --footer-color-font: #fff;
    --footer-color-primary: #fff;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    font-size: var(--body-font-size);
    font-family: var(--body-font-family);
    color: var(--color-font);
    font-size: var(--px16);
}
.pad_anchor{
    display: block;
    margin-top: -100px !important;
    padding-top: 100px !important;
}

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

/*--メディアクエリ--------------------------------------------*/
@media print, screen and (min-width: 1024px) {}
@media print, screen and (max-width: 1023px) {}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}


/*------------------------------------------------------
ベース修正
------------------------------------------------------*/
#front_top_content, #front_bottom_content {
    background: #fff;
}
#front-sectionPost {
    width: 94%;
}
/*------------------------------------------------------
幅フル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: var(--color-background01);
}
.widearea {
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
}

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

.post .col2_list {
	position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	flex-wrap: wrap;
}
.post .col2_list > li {
    width: 49%;
	margin-bottom: 2%;
}
@media print, screen and (max-width: 600px) {
	.post .col2_list > li {
		width: 100%;
	}
	.post .col2_list > li:last-child {
		margin-bottom: 0;
	}
}

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

.post .col3_list {
	position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	flex-wrap: wrap;
}
.post .col3_list > li {
    width: 32%;
}
.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: 49%;
        margin-bottom: 8%;
	}
	.post .col3_list::before, .post .col3_list:after {
		content: none;
	}
}
@media print, screen and (max-width: 600px) {
	.post .col3_list > li {
		width: 100%;
	}
	.post .col3_list > li:last-child {
		margin-bottom: 0;
	}
}

/*---------col4-----------*/

.post .col4_list {
	position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	flex-wrap: wrap;
}
.post .col4_list > li {
    width: 24%;
	margin-bottom: 1.5%
}
.post .col4_list::before {
    content: "";
    display: block;
    width: 24%;
    height: 0;
    order: 1;
}
.post .col4_list:after {
    content: "";
    display: block;
    width: 24%;
    height: 0;
}
@media print, screen and (max-width: 1240px) {
	.post .col4_list > li, .post .col4_list::before, .post .col4_list:after {
		width: 32%;
		margin-bottom: 2%;
	}
}
@media print, screen and (max-width: 768px) {
	.post .col4_list > li {
		width: 49%;
	}
	.post .col4_list::before, .post .col4_list:after {
		content: none;
	}
}
@media print, screen and (max-width: 600px) {
	.post .col4_list > li {
		width: 100%;
	}
	.post .col4_list > li:last-child {
		margin-bottom: 0;
	}
}

/*------------------------------------------------------
Hover
------------------------------------------------------*/
a:hover {
    opacity: .7;
    cursor: pointer;
}

/*------------------------------------------------------
タイトル・テキスト
------------------------------------------------------*/
.post h2 {
	margin: var(--px60) auto var(--px50);
}
h1.title.bottom-loop,
h1.title.top-loop,
.post h2.main_ttl, h2.main_ttl {
    font-size: var(--rem48);
}
h1.title.bottom-loop span span,
h1.title.top-loop span span,
.post h2.main_ttl span.sub_ttl, h2.main_ttl span.sub_ttl {
    display: block;
    font-family: var(--font-family02);
    font-style: italic;
    font-size: var(--rem36);
    font-weight: 900;
    color: var(--color-primary);
}

.post h2.lower_ttl, h2.lower_ttl {
    font-size: var(--rem20);
    font-weight: 700;
    color: var(--color-font);
    margin: 0 auto var(--px60);
    text-align: center;
}
.post h2.lower_ttl span.en_ttl, h2.lower_ttl span.en_ttl {
    display: block;
    color: var(--color-primary);
    font-family: var(--font-family02);
    font-weight: 800;
    font-size: var(--rem48);
    font-style: italic;
    line-height: 1.25;
}
.post h2.main_ttl::after, h2.main_ttl::after,
.post h2.lower_ttl::after, h2.lower_ttl::after{
	content: none;
}

/*------------------------------------------------------
Btn
------------------------------------------------------*/
.linkBtn, .post .linkBtn, a.linkBtn, .post .subimitarea .linkBtn input[type="submit"] {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 240px;
    font-size: var(--rem16);
    color: #fff;
    line-height: 1.8;
    text-align: center;
    background: var(--color-primary-shade);
    font-weight: 600;
    padding: var(--rem20) 30px var(--rem20) 20px;
    margin: 0 auto;
    border: none;
    border-radius: 50vh;
    transition: all .3s;
}
.post .linkBtn::after, .linkBtn::after, a.linkBtn::after {
    border-color: #fff;
}
.post .linkBtn:hover, .linkBtn:hover, a.linkBtn:hover, .post .subimitarea .linkBtn input[type="submit"]:hover {
    color: #fff;
    background: var(--color-primary-tint);
}
.post .linkBtn:hover::after, .linkBtn:hover::after, a.linkBtn:hover::after {
    border-color: #fff;
}
.subimitarea > .linkBtn {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}
.post .subimitarea .linkBtn input[type="submit"] {
    margin-top: 0;
}
/*------------------------------------------------------
Header
------------------------------------------------------*/
.header__contact li a.mail_btn span {
    text-align: center;
    font-size: 1.2rem;
}
#header a.head_btn.tel_btn {
    background: var(--color-primary);
}
nav#mainNav ul li a:active, nav#mainNav ul li a:hover, nav#mainNav ul li.current-menu-ancestor a, nav#mainNav ul li.current-menu-item a, nav#mainNav ul li.current-menu-parent a {
    background: var(--color-primary);
}
nav#mainNav ul li.current-menu-item a b, nav#mainNav ul li a:hover b, nav#mainNav ul li a:active b, nav#mainNav ul li.current-menu-parent a b {
    color: var(--header-color-primary-shade);
}
nav#mainNav ul li a {
    background: var(--color-primary);
}

.sticky-header #header > .inner {
    background: var(--color-primary);
}

/* SP */
@media print, screen and (max-width: 1023px) {
	nav#mainNav ul li a {
		padding: 16px;
	}
	nav#mainNav ul li a {
		border-bottom: 1px solid var(--color-border);
	}
}

/*------------------------------------------------------
Footer
------------------------------------------------------*/
#footer {
    color: var(--footer-color-font);
    font-size: min(calc(1.4rem + (1vw - 19.2px) * 0.1942), 1.4rem); /* 1.4-1.1rem (1920-375) */
    padding: min(calc(50px + (1vw - 19.2px) * 0.9709), 50px) 0 30px; /* 50-35px(1920-375) */
    background: url(/wp-content/uploads/bg_footer.jpg) no-repeat center / cover;
}
#footer a {
    -webkit-transition: .2s;
    transition: .2s;
}
#footer .inner {
    width: 94%;
    max-width: var(--content-max-width);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
#footer ul {
    font-size: 100%;
    padding: 0;
}
#footer ul li {
    display: block;
    padding: 0;
    margin: 0;
}
#footer ul li::before {
    content: none;
    position: static;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    background: none;
}
#footer ul li a {
    padding: 0;
    color: #fff;
}

#footer img {
    width: auto;
    max-width: 100%;
}
/*------フッターロゴ
--------------------------------------------*/
#footer .footer__logo:not(:last-child) {
    text-align: left;
    margin: 0 auto var(--px80);
    width: 94%;
    max-width: var(--content-max-width);
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: var(--rem24);
    font-weight: 600;
}
#footer .footer__logo dl.address {
    font-family: var(--font-family01);
    font-size: var(--rem16);
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: var(--px30);
    max-width: 500px;
}
#footer .footer__logo dl.address dt {
    width: 25%;
    margin-bottom: .5em;
}
#footer .footer__logo dl.address dd {
    width: 75%;
    margin-bottom: .5em;
}

/*------フッターナビ
--------------------------------------------*/
#footer .footnav {
    float: none;
}
#footer .footnav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
#footer .footnav ul > li {
    position: relative;
    padding: 0 min(calc(16px + (1vw - 19.2px) * 0.4531), 16px) 0 min(calc(15px + (1vw - 19.2px) * 0.4531), 15px);
    margin-bottom: 0;
    line-height: 1;
}
#footer .footnav ul > li::before, #footer .footnav ul > li::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: #fff;
    top: 0;
}
#footer .footnav ul > li::before {
    left: 0;
}
#footer .footnav ul > li::after {
    right: -1px;
}
#footer .footnav:not(:last-child) {
    margin-bottom: 0;
}

@media print, screen and (max-width: 768px) {
    #footer .footer__logo:not(:last-child) {
        text-align: center;
    }
    #footer .inner {
        display: block;
    }
    #footer .footnav ul > li {
        margin-bottom: 2em;
    }
    #footer .footer__logo dl.address {
        display: block;
        margin: var(--px40) auto 0;
    }
    #footer .footer__logo dl.address dt {
        width: 100%;
        margin-bottom: .1em;
    }
    #footer .footer__logo dl.address dd {
        width: 100%;
        margin-bottom: 1.2em;
    }
    #footer .footer__logo dl.address dd:last-child {
        margin-bottom: 0;
    }
}
/*------コピーライト
--------------------------------------------*/
#copyright {
    color: #fff;
    font-size: min(calc(1.2rem + (1vw - 19.2px) * 0.1294), 1.2rem); /* 1.2-1rem (1920-375) */
    letter-spacing: .1rem;
    padding: 0;
    background: transparent;
    margin: 0;
}

/*------------------------------------------------------
サイトマップ
------------------------------------------------------*/
.post ul#sitemap_list li {
	margin-bottom: min(calc(2.0rem + (1vw - 1.92rem) * 0.2589) ,20px);
	padding-left: 0;
	padding-bottom: min(calc(2.0rem + (1vw - 1.92rem) * 0.2589) ,20px);
	border-bottom: 1px solid var(--color-border);
}

/*------------------------------------------------------
お問い合わせ
------------------------------------------------------*/
.post h2.contact_title {
	font-family: var(--font-family01);
	text-align-last: left;
	font-size: min(calc(3.0rem + (1vw - 1.92rem) * 0.6472), 3.0rem);
	margin: 0 auto var(--px30);
    text-align: left;
}
.post h2.contact_title::after {
    content: none;
}
.aligncenter {
	text-align-last: left;
	font-family: var(--font-family01);
	font-weight: normal;
    line-height: 1.85;
}
.wpcf7-form .must {
	background: var(--color-primary)
}
.contact_area {
	font-family: var(--font-family01);
	font-weight: normal;
}
.contact_area th {
	font-weight: bold;
}
.contact_area th.sup {
	font-size: 1.2rem;
	color: var(--color-primary);
}
.post .subimitarea .linkBtn input[type="submit"] {
	font-family: var(--font-family01);
}
.post table th,
.post table td {
    padding: var(--px20);
}

/* 完了 */
.post .thanks_btn {
    margin: var(--px60) auto 0 !important;
    display: block;
}
@media print, screen and (max-width: 768px) {
    .post .thanks {
        text-align: left;
    }
}


/*------------------------------------------------------
TOP
------------------------------------------------------*/
/* Features */
.topGreet {
	position: relative;
	padding: var(--px100) 0 var(--px40);
    margin-top: var(--px100);
}
.topGreet:before {
    content: "";
    background: url(/wp-content/uploads/top_featurebg.jpg) no-repeat center / cover;
    width: 80%;
    height: 80%;
    position: absolute;
    top: -3%;
    right: 0;
    z-index: 0;
}
.post h2.topGreet_ttl {
    max-width: 1600px;
    width: 90%;
    margin: 0 auto var(--px80);
    text-align: left;
    font-size: var(--rem80);
}
.post h2.topGreet_ttl::after {
	content: none;
}
.topGreet_wrap {
	position: relative;
	max-width: 1600px;
	width: 90%;
    margin: 0 auto;
    gap: var(--px80);
	z-index: 1;
}
.topGreet .txtarea {
    background: transparent;
    padding: 0;
    margin: 0;
}
.topGreet .txtarea p {
    font-size: var(--rem16);
    line-height: 2.2;
    margin-bottom: 3em;
}
.topGreet .imgarea {
    overflow: hidden;
    line-height: 0;
    margin: 0;
}
.topGreet .imgarea img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.topGreet_btn {
    margin-top: var(--px100);
}
@media print, screen and (max-width: 768px) {
    .topGreet .txtarea {
        margin-top: var(--px40);
    }
}

/* Flow */
.topFlow {
	position: relative;
	padding: var(--px80) 0 var(--px40);
}
.topFlow:before {
    content: "";
    background: url(/wp-content/uploads/top_flowbg.jpg) no-repeat center / cover;
    width: 70%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.post h2.topFlow_ttl {
    margin: 0 0 var(--px30);
    text-align: left;
    font-size: var(--rem48);
    line-height: 1.35;
}
.post h2.topFlow_ttl::after {
	content: none;
}
.topFlow_wrap {
	position: relative;
	width: 100vw;
    margin: 0 auto;
	z-index: 1;
}
.topFlow .txtarea {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--px40) 20px;
    margin: 0;
}
.topFlow .txtarea .txtinnr {
    max-width: 720px;
    width: 80%;
    display: flex;
    flex-direction: column;
}
.topFlow .txtarea p {
    font-size: var(--rem16);
    line-height: 2.2;
}
.topFlow .imgarea {
    overflow: hidden;
    line-height: 0;
    margin: 0;
}
.topFlow .imgarea img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media print, screen and (max-width: 768px) {
    .topFlow .txtarea {
        padding: var(--px50) 0;
    }
    .topFlow .txtarea .txtinnr {
        width: 90%;
    }
}

/* Price */
.topPrice {
	position: relative;
	padding: var(--px60) 0 var(--px40);
}
.topPrice:before {
    content: "";
    background: url(/wp-content/uploads/top_pricebg.jpg) no-repeat center / cover;
    width: 70%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}
.post h2.topPrice_ttl {
    margin: 0 0 var(--px30);
    text-align: left;
    font-size: var(--rem48);
    line-height: 1.35;
}
.post h2.topPrice_ttl::after {
	content: none;
}
.topPrice_wrap {
	position: relative;
	width: 100vw;
    margin: 0 auto;
	z-index: 1;
}
.topPrice .txtarea {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--px40) 20px;
    margin: 0
}
.topPrice .txtarea .txtinnr {
    max-width: 720px;
    width: 80%;
    display: flex;
    flex-direction: column;
}
.topPrice .txtarea p {
    font-size: var(--rem16);
    line-height: 2.2;
}
.topPrice .imgarea {
    overflow: hidden;
    line-height: 0;
    margin: 0;
}
.topPrice .imgarea img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media print, screen and (max-width: 768px) {
    .topPrice .txtarea {
        padding: var(--px50) 0;
    }
    .topPrice .txtarea .txtinnr {
        width: 90%;
    }
}

.topMap {
	position: relative;
	padding: var(--px120) 0 0;
}
.topMap:before {
    content: "";
    background: url(/wp-content/uploads/bg_map.jpg) no-repeat center / cover;
    width: 100%;
    height: 60%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}
.topMap_wrap {
	position: relative;
	max-width: 1600px;
	width: 94%;
    margin: 0 auto;
	z-index: 1;
}
.topMap .txtarea {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--px80);
    margin: 0;
}
.topMap h2.topMap_ttl {
    color: #fff;
    margin: 0 auto var(--px80);
}
.topMap h2.topMap_ttl::after {
	content: none;
}
.topMap h2.topMap_ttl span.sub_ttl {
    display: inline-block;
    background: var(--color-primary-shade);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.topMap h2.topMap_ttl span.jp_ttl {
    display: block;
}
.topMap .txtarea .txtinnr {
    max-width: 720px;
    width: 70%;
    display: flex;
    flex-direction: column;
}
.topMap .txtarea .txtinner dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    line-height: 1.65;
}
.topMap .txtarea .txtinner dt {
    width: 25%;
    color: var(--color-primary);
    font-size: var(--rem18);
    font-weight: 700;
    margin-bottom: .7em;
}
.topMap .txtarea .txtinner dd {
    width: 75%;
    color: var(--color-font);
    font-weight: 500;
    margin-bottom: .7em;
}
.topMap .topMap_iframe {
    overflow: hidden;
    line-height: 0;
    margin: 0;
}
.topMap .topMap_iframe iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media print, screen and (max-width: 768px) {
    .topMap .topMap_iframe iframe {
        height: 350px;
    }
    .topMap .txtarea {
        padding: var(--px80) var(--px60);
    }
}


/* 新着情報 */
#front_bottom_content {
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
}
.postlist .time {
    background: var(--color-third);
}
.postlist .post_text {
    padding: 20px 0;
}


/*------------------------------------------------------
特徴
------------------------------------------------------*/
.features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    gap: var(--px60);
}
.features_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: var(--px40);
}
.features_inner .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;
}
.post .features_inner .w50.text_box h3.features_ttl {
    font-size: var(--rem30);
    padding: 5px var(--px20) 8px;
    background: var(--color-primary-shade);
    color: #fff;
    font-weight: 600;
    text-align: left;
    width: 100%;
	border: none;
}
.post .features_inner .w50.text_box p.features_text {
    font-size: var(--rem16);
    line-height: 2;
}
@media print, screen and (min-width: 769px) {
	.features_inner .w50.image_box::before {
		padding-top: calc(550px + (1vw - 19.2px) * 17.3762);
	}
	.features_inner .w50.image_box img {
		width: auto;
		height: 116%;
	}
}
@media print, screen and (max-width: 768px) {
    .features_inner {
        display: block;
    }
	.features_inner .w50.image_box{
		margin-bottom:0;
	}
	.features_inner .w50.image_box::before {
		padding-top: calc(350px + (1vw - 7.68px) * 27.9898);
	}
	.features_inner .w50.text_box {
		padding: var(--px40) 0 0;
		margin-bottom:0;
	}
}


/*------------------------------------------------------
施設案内
------------------------------------------------------*/
table.table_style02 th,
table.table_style02 td {
    padding: var(--px20);
}
table.table_style02 th {
    background: var(--color-third-tint);
}
table.table_style02 td {
    background: #fff;
}
.post p.message_text, p.message_text {
    font-size: var(--rem18);
    line-height: 2;
}
.post p.message_name, p.message_name {
    text-align: right;
    font-weight: 500;
    font-size: var(--rem18);
}
#guidance iframe {
    width: 100%;
}

/*------------------------------------------------------
初めての方へ
------------------------------------------------------*/
.post .lead {
	font-size: min(calc(3.2rem + (1vw - 19.2px) * 0.5178), 3.2rem);
	font-weight: 500;
    line-height: 1.25;
}
.marker.mark_color2 {
    background: var(--color-primary-shade);
    color: #fff;
    font-style: italic;
}
.marker.mark_color2 span.em {
    font-size: var(--rem60);
    font-weight: 800;
    color: var(--color-secondary-shade);
    padding: 0 8px;
}
.post .message p {
    text-align: center;
    font-size: var(--rem18);
    line-height: 2;
    margin: var(--px50) auto 0;
}

.reservation_inner {
    max-width: 1060px;
    background: #FCF2F8;
    padding: var(--px40);
    margin: var(--px50) auto 0;
    border-radius: 10px;
}
.reservation_inner p.reservation_tag {
    display: inline-block;
    font-size: var(--px20);
    font-weight: 600;
    padding: 5px 10px;
    color: var(--color-secondary-tint);
    border: 1px solid var(--color-secondary-tint);
    margin-bottom: var(--rem20);
}
.reservation_inner p.reservation_text {
    font-size: var(--rem20);
    line-height: 1.85;
}

ul.flowlist02 {
	counter-reset: flow_list;
}
ul.flowlist02 > li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	gap: min(calc(40px + (1vw - 19.2px) * 1.6181), 40px);
	width: 100%;
	padding: 40px;
	border-radius: 10px;
	background: #fff;
	position: relative;
    align-items: center;
}
.flowlist02 > li:not(:last-child) {
	margin-bottom: 60px;
}
.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,
.flowlist02 > li:not(:last-child) dl::after {
	content: "";
	border: solid transparent;
	position: absolute;
	top: calc(100% + 20px);
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.flowlist02 > li:not(:last-child) dl::before {
	border-width: 22px;
	border-top-color: var(--color-primary);
}
.flowlist02 > li:not(:last-child) dl::after {
	border-width: 20px;
}
.post .flowlist02 > li > dl dt {
	position: relative;
	display: flex;
	align-items: center;
	font-size: var(--rem30);
	font-weight: 600;
	padding: 0 0 .7em 0;
	margin-bottom: var(--px40);
	border-bottom: solid 2px var(--color-secondary-tint);
}
.flowlist02 > li dl dt .icon:before {
	content: counter(flow_list, decimal-leading-zero);
	counter-increment: flow_list;
	line-height: 1;
	color: #fff;
	background: var(--color-primary-shade);
	padding: 5px 10px;
	margin-right: var(--px20);
	position: relative;
	z-index: 100;
}
.post .flowlist02 > li > dl dd {
	padding: 0;
    font-size: var(--rem18);
    line-height: 2;
}
@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);
	}
    .post .flowlist02 > li > dl {
        margin-top: var(--px40);
    }
}


/*------------------------------------------------------
料金案内
------------------------------------------------------*/
.discount_inner {
    max-width: 700px;
    width: 90%;
    background: #FCF2F8;
    padding: var(--px40) var(--px40) var(--px30);
    margin: 0 auto var(--px60);
    border-radius: 5px;
}
.discount_inner p.discount_text {
    font-size: var(--rem24);
    text-align: center;
    font-weight: 600;
    line-height: 1.85;
}
.discount_inner .mark_color2 {
    font-size: var(--rem30);
    padding: 0 10px;
    margin: 0 10px;
}
.cource {
    margin: 0 auto;
    max-width: 860px;
}
.cource ul.cource_wrap li {
    text-align: center;
    border: 3px solid var(--color-secondary-tint);
    border-radius: var(--px20);
}
.cource ul.cource_wrap li h3.cource_ttl {
    font-size: var(--rem40);
    font-weight: 800;
    color: #fff;
    background: var(--color-primary-shade);
    font-style: italic;
    border-radius: 10px 10px 0 0;
    padding: 10px;
    margin-bottom: var(--px40);
	border: none;
}
.cource ul.cource_wrap li .cource_tag {
    font-size: var(--rem14);
    font-weight: 700;
    color: var(--color-secondary-tint);
    border: 2px solid var(--color-secondary-tint);
    border-radius: 100vw;
    padding: 3px 20px;
    display: inline-block;
    margin-bottom: 8px;
}
.cource ul.cource_wrap .cource_inner {
    padding-bottom: var(--px40);
}
.cource ul.cource_wrap li .cource_inner .cource_price {
    font-size: var(--rem36);
    font-weight: 800;
    color: var(--color-font);
    font-style: italic;
    line-height: 1.25;
}
.cource ul.cource_wrap li .cource_inner .cource_price span {
    font-size: var(--rem20);
}
.cource ul.cource_wrap li .cource_inner.cource_border::after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 80%;
    padding-bottom: var(--px40);
    border-bottom: 1px solid var(--color-border);
}

.cource_frame {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-around;
}
.cource_frame .cource_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.cource ul.cource_wrap li .cource_frame .cource_tag {
    margin-bottom: 0;
}
.cource ul.cource_wrap li .cource_border2 {
    display: block;
    margin: 0 auto var(--px40);
    width: 80%;
    border-bottom: 1px solid var(--color-border);
}

@media print, screen and (max-width: 768px) {
    .cource_frame {
        display: block;
    }
    .cource_frame .cource_inner {
        display: block;
    }
}



.arrow_box {
    position: relative;
    width: 48%;
    background: var(--color-secondary-tint);
    padding: 30px;
    text-align: center;
    color: #fff;
    font-size: var(--rem16);
    font-weight: bold;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    line-height: 1.65;
    margin-top: 10px;
    margin-left: auto;
}
.arrow_box:after {
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    border-top-width:20px;
    border-bottom-width:20px;
    border-left-width:10px;
    border-right-width:10px;
    margin-left: -10px;
    border-bottom-color: var(--color-secondary-tint);
    bottom:100%;
    left:50%;
}
.arrow_box span {
    color: var(--color-secondary-shade);
    font-size: var(--rem24);
    font-weight: 800;
}

@media print, screen and (max-width: 768px) {
    .arrow_box {
        width: 100%;
        margin: 0 auto;
    }
}

/*------------------------------------------------------
CTA
------------------------------------------------------*/
#foot-contact_pt03 {
	clear: both;
	position: relative;
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-top: var(--px140);
    margin-bottom: var(--px140);
	padding: 0;
}
#foot-contact_pt03 h2.cta_ttl {
    text-align: center;
    width: 90%;
    margin: 0 auto var(--px60);
}
#foot-contact_pt03 h2.cta_ttl::after {
	content: none;
}
#foot-contact_pt03 ul.contact_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    border: 1px dotted var(--color-primary);
}
#foot-contact_pt03 ul.contact_list > li {
	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: calc(100% / 2);
	font-size: min(calc(2.2rem + (1vw - 19.2px) * 0.4531), 2.2rem);
	font-weight: 600;
	line-height: 1.6;
	text-align: center;
	padding: var(--px40) var(--px20);
}
#foot-contact_pt03 a.f-contact_btn {
	display: inline-block;
	width: 92%;
	max-width: 500px;
	color: var(--color-font2);
	font-size: min(calc(2.2rem + (1vw - 19.2px) * 0.4531), 2.2rem);
	font-weight: 600;
	text-align: center;
	padding: min(calc(15px + (1vw - 19.2px) * 0.4531), 15px) min(calc(40px + (1vw - 19.2px) * 0.9709), 40px);
	margin: 10px auto;
	border-radius: 50vw;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

#foot-contact_pt03 a.f-contact_btn::after {
	content: none;
}
#foot-contact_pt03 a.f-contact_btn .ico::before {
	display: inline-block;
	font-size: var(--px30);
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	margin-right: .4em;
}

#foot-contact_pt03 a.f-contact_btn.telBtn .ico::before {
	content: '\f3cd';
}
#foot-contact_pt03 a.f-contact_btn.mailBtn .ico::before {
	content: '\f0e0';
}
#foot-contact_pt03 a.f-contact_btn.lineBtn .ico::before {
	content: '\f3c0';
	font-family: 'Font Awesome 6 Brands';
	font-weight: 400;
}
#foot-contact_pt03 .note {
	font-size: 1.5rem;
	font-weight: 600;
}

/*色別*/
#foot-contact_pt03 ul.contact_list > li.fc_tel {
	color: var(--color-font2);
	background: var(--color-primary);
}
#foot-contact_pt03 ul.contact_list > li.fc_mail {
	color: var(--color-font2);
	background: var(--color-primary);
}
#foot-contact_pt03 ul.contact_list > li.fc_line {
	color: var(--color-font2);
	background: #fff;
}

#foot-contact_pt03 a.f-contact_btn.telBtn {
	background: none;
	font-size: var(--rem40);
	line-height: 1;
	padding: 0 min(calc(40px + (1vw - 19.2px) * 0.9709), 40px);
}
#foot-contact_pt03 a.f-contact_btn.lineBtn {
	color: var(--color-font2);
	background: var(--color-primary);
}
#foot-contact_pt03 a.f-contact_btn.mailBtn {
	color: var(--color-font2);
	background: #fff;
}


body.home #foot-contact_pt03.footer_bottom {
    display: none;
}

@media print, screen and (max-width: 1023px) {
	#foot-contact_pt03 ul.contact_list > li {
		width: 100%;
	}
}

ul.flowlist02 li dl dt span {
    white-space: nowrap;
}