@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=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');
:root {
	/*------▼基本設定▼------*/
	--color-background: #FCF8F1;
	--color-background02: linear-gradient(135deg, #F7BBC640, #FCF9E5);
    --color-font: #2C2C2C;
	--color-font02: #F7BAC6;
    --color-primary: #FF8DA3;
    --color-primary-shade: #F8EDEB;
    --color-primary-tint: #E4F0F0;
    --color-secondary: #F8A93E;
    --color-secondary-tint: #eee;
    --color-table-border: #ccc;
	--body-font-size: clamp(14px, .94vw, 16px); /* 1.6-1.4rem (1920-375) */
	--body-font-family: 'Noto Sans JP', sans-serif;
	--content-max-width: 1100px;
	/*------▼ヘッダー設定▼------*/
	--header-background: #fff;
    --header-color-font: #111;
    --header-color-primary: #FF8DA3;
    --header-color-primary-shade: #111;
    --header-color-primary-tint: #aaa;
	/*------▼フッター設定▼------*/
	--footer-background: #FFF;
    --footer-color-font: #777;
    --footer-color-primary: #777;
	/*------▼フォント設定▼------*/
	--font-family01: 'Noto Sans JP', sans-serif;
	--font-family02: 'Zen Maru Gothic', system-ui;
	/*------▼フォントサイズ設定▼------*/
    --font-size12: clamp(10px, .8vw, 12px);
    --font-size14: clamp(12px, .8vw, 14px);
    --font-size16: clamp(14px, .94vw, 16px);
	--font-size18: clamp(16px, 1.1vw, 18px);
    --font-size20: clamp(18px, 1.1vw, 20px);
    --font-size22: clamp(18px, 1.4vw, 22px);
    --font-size28: clamp(20px, 1.6vw, 28px);
    --font-size32: clamp(24px, 1.7vw, 32px);
    --font-size38: clamp(26px, 2vw, 38px);
    --font-size50: clamp(26px, 2.61vw, 50px);
	/*------▼clampバリエーション設定▼------*/
    --clamp-10: clamp(5px, 0.52vw, 10px);
    --clamp-14: clamp(7px, 0.73vw, 14px);
    --clamp-20: clamp(10px, 1.04vw, 20px);
    --clamp-30: clamp(15px, 1.56vw, 30px);
    --clamp-40: clamp(20px, 2.08vw, 40px);
    --clamp-60: clamp(30px, 3.13vw, 60px);
    --clamp-80: clamp(40px, 4.17vw, 80px);
    --clamp-100: clamp(60px, 5.42vw, 100px);
    --clamp-120: clamp(60px, 6.25vw, 120px);
    --clamp-150: clamp(76px, 7.92vw, 150px);
    --clamp-200: clamp(100px, 10.42vw, 200px);
}
::selection {
  background-color: var(--color-primary);
}
/* == 非表示 =================================================== */
.post h2, .post h3, .post h4 {
	padding: 0;
	margin: 0; 
	border: none;
}
.post h2::before, .post h3::before, .post h4::before, .post h2::after{
	content: none;
}
/* == ヘッダー調整/header =================================================== */
@media print, screen and (min-width: 1024px) {
/* ========================
ヘッダー下部
======================== */
    #header {
        height: 100px;
    }
/* ========================
スティッキーヘッダー
======================== */
    .sticky-header #header-layout {
        height: 100px;
    }
/* ========================
ヘッダー下部__グローバルナビ
======================== */
	nav#mainNav ul li a b, nav#mainNav ul li a span {
		font-weight: bold;
		font-family: var(--font-family02);
	}
	nav#mainNav ul li a b {
		font-size: var(--font-size18);
	}
	nav#mainNav ul li a span {
		color: var(--header-color-primary-tint);
	}
	nav#mainNav ul li a b {
		position: relative;
	}
	nav#mainNav ul li.current-menu-item a b::before, nav#mainNav ul li a:hover b::before, nav#mainNav ul li a:active b::before, nav#mainNav ul li.current-menu-parent a b::before {
		position: absolute;
		content: '';
		width: .5em;
		height: .5em;
		background: #FFBAF7;
		border-radius: 50vw;
		bottom: -1em;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	nav#mainNav ul li.current-menu-item a, nav#mainNav ul li a:hover, nav#mainNav ul li a:active, nav#mainNav ul li.current-menu-parent a, nav#mainNav ul li.current-menu-ancestor a {
		background: transparent;/* アクション時の背景色の設定 */
	}
	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(--color-font);/* アクション時の文字色（上部）の設定 */
	}
	nav#mainNav ul li.current-menu-item a span, nav#mainNav ul li a:hover span, nav#mainNav ul li a:active span, nav#mainNav ul li.current-menu-parent a span {
		color: var(--header-color-primary);/* アクション時の文字色（下部）の設定 */
	}
	
	/*------ヘッダー下部__コンタクトボタン
--------------------------------------------*/
    #header a.head_btn {
        font-size: var(--font-size18);
    }
	span.num {
		font-size: clamp(20px, 1.7vw, 32px);
		font-family: var(--font-family02);
		font-weight: 900;
	}
	#header a.head_btn.tel_btn {
		color: var(--color-font);
		background: transparent;
		position: relative;        
		padding-left: 3em;
        padding-right: 2em;
	}
	#header a.head_btn.tel_btn::before {
		position: absolute;
		left: 1em;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	#header a.head_btn.tel_btn:hover {
		opacity: .7;
	}
	/*------ヘッダーロゴ
--------------------------------------------*/
	#header .logo img {
		width: 100%;
		height: auto;
		max-width: 100%;
	}
}
/* == トップ記事投稿（archive） =================================================== */
#front_top_content, #front_bottom_content {
	background: transparent;
    width: 100vw;
    margin-left: calc(((100vw - 100%) / 2)* -1);
    margin-right: calc(((100vw - 100%) / 2)* -1);
}
#front-sectionPost {
	width: 90%;
	max-width: var(--content-max-width);
	margin: 0 auto;
}
/* == リスト表示 =================================================== */
/* == フッター調整/footer =================================================== */
#footer {
    padding-bottom: 0;
    background: var(--color-background02);
    border-radius: 50px 50px 0 0;
}
#footer .inner {
    max-width: 100%;
    width: 100%;
    padding: 15px 0 0;
	background: #FFF;
}
#footer .content_inner {
    padding-bottom: var(--px50);
}
#copyright {
    margin: 0;
    padding-bottom: 10px;
}
#footer .footer__logo:not(:last-child) {
    text-align: left;
}
#footer p {
    font-size: var(--font-size16);
    line-height: 2;
    color: var(--color-font);
    margin-bottom: 0;
    font-weight: 500;
	text-align: left;
}
#footer p a {
    text-decoration: underline;
}
#footer p a:hover {
    text-decoration: none;
}
#footer a.btn {
    max-width: 440px;
    margin-top: 20px;
	transition: .5s;
}
#footer a.tel_btn {
    display: flex;
    flex-direction: column;
    color: #523E1E;
    padding-left: 4em;
    position: relative;
    line-height: 1.2;
    transition: .3s;
}
#footer a.tel_btn span.num {
    font-size: calc(var(--font-size50) + 5px);
}
#footer a.tel_btn span.note {
    font-size: var(--font-size20);
}
#footer a.tel_btn::before {
    display: block;
    font-family: 'FontAwesome';
    font-size: 3em;
    font-weight: 400;
    line-height: 1;
    margin-bottom: .1em;
    content: '\f095';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
#footer a.tel_btn:hover {
    opacity: .7;
}
@media print, screen and (min-width: 769px) {	
}
@media print, screen and (max-width: 768px) {
	#footer .footer__logo:not(:last-child) {
		text-align: center;
	}
	#footer p {
		text-align: center;
	}
	#footer a.tel_btn {
		max-width: 400px;
		margin: 0 auto;
	}
	#footer a.tel_btn {
		align-items: center;
		width: 90%;
	}
}
/* == アイキャッチ/eyecatch =================================================== */
header#h1Header h1.title {
    font-size: var(--font-size50);
	font-family: var(--font-family02);
	font-weight: 900;
}
#thumbImg::before, header#h1Header::before {
    opacity: .45;
	background: #E0768B;
}
/* == postlist =================================================== */
/* == inner/outer =================================================== */
.max_wFull {
    position: relative;
    width: 100vw;
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
}
.max_wFull::before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
	z-index: -1;
}
body:not(.home) #content.wide {
    padding-bottom: var(--clamp-100);
}
/* == テキスト調整/text =================================================== */
.post p, .post h3, .post h4, .post h5 {
	color: var(--color-font);
}
.post h2, .post h3, .post h4, .post h5, h1.title {
	font-family: var(--font-family02);
}
.post p {
    font-size: var(--font-size16);
    line-height: 2;
    margin-bottom: 1em;
	font-weight: 500;
}
.post h2, h1.title {
    font-size: var(--font-size32);
    line-height: 1.5;
    margin-bottom: 1em;
	font-weight: 900;
	color: var(--color-font02);
}
.post h3 {
    font-size: var(--font-size22);
    line-height: 1.5;
    margin-bottom: 1em;
	font-weight: bold;
}
.post h4 {
    font-size: var(--font-size20);
    line-height: 1.5;
    margin-bottom: 1em;
	font-weight: bold;
}
.post h5 {
    font-size: var(--font-size18);
    line-height: 1.5;
    margin-bottom: 1em;
	font-weight: bold;
}
span.bold {
	font-weight: bold;
}
span.pink {
    color: var(--color-font02);
}
span.bg_pink {
    background: var(--color-font02)!important;
    color: #FFF;
    padding: .3em 1em!important;
    border-radius: 20px;
}
span.yellow {
    color: var(--color-secondary);
}
span.bg_yellow {
    background: var(--color-secondary)!important;
    color: #FFF;
    padding: .3em 1em!important;
    border-radius: 20px;
}
span.px12 {
    font-size: var(--font-size12);
}
span.px14 {
    font-size: var(--font-size14);
}
span.px16 {
    font-size: var(--font-size16);
}
span.px18 {
    font-size: var(--font-size18);
}
span.px20 {
    font-size: var(--font-size20);
}
span.px22 {
    font-size: var(--font-size22);
}
span.px28 {
    font-size: var(--font-size28);
}
span.px32 {
    font-size: var(--font-size32);
}
span.px38 {
    font-size: var(--font-size38);
}
span.px50 {
    font-size: var(--font-size50);
}
span.ttl {
    background: var(--color-primary);
    color: #FFF;
    font-size: var(--font-size20);
    padding: .5em 1em;
    border-radius: 20px;
}
span.cat_icon {
    position: relative;
    width: 1.5em;
    height: 1.5em;
    display: inline-block;
    vertical-align: bottom;
    margin-right: .5em;
}
span.cat_icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(/wp-content/uploads/icon_cat.png);
    background-size: contain;
    background-repeat: no-repeat;
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
/* == レイアウト調整 =================================================== */
.gap_1 {
    gap: 1%;
}
.flex_1 {
    flex: 1;
}
.w25 {
    width: 25%;
}
.w35 {
    width: 35%;
}
.w45 {
    width: 45%;
}
.w65 {
	width: 65%;
}
.w75 {
    width: 75%;
}
.jc_between {
    justify-content: space-between;
}
.jc_around {
    justify-content: space-around;
}
.jc_evenly {
    justify-content: space-evenly;
}
.align_center {
	align-items: center;
}
.shadow {
    box-shadow: 0 4px 4px #00000026;
}
.content-item+.content-item { 
    padding-top: var(--clamp-80);
}
.txt-inner {
    max-width: 528px;
	width: 94%;
}
.img-area img {
    width: 100%;
}
@media print, screen and (min-width: 769px) {
	.ml-auto {
		margin-left: auto;
	}
	.mr-auto {
		margin-right: auto;
	}
}
@media print, screen and (max-width: 768px) {
    .w25, .w35, .w45, .w55, .w65, .w75 {
        width: 100%;
		margin-bottom: 20px;
    }
	.flex_1 {
		margin-bottom: 40px;
	}
	.txt-inner {
		margin: 0 auto;
	}
}
/* == grid_container =================================================== */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    grid-template-rows: auto;
    gap: 20px;
}
.grid-item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0;
	border: 1px solid #DCDDDD;
	border-radius: 5px;
	background: #FFF;
}
.grid-item img {
    width: 100%;
}
.gCol-3 {
	grid-template-columns: repeat(3, 1fr)!important;
}
.gCol-2 {
	grid-template-columns: repeat(2, 1fr)!important;
}
@media print, screen and (max-width: 768px){
	.gCol-2, .gCol-3 {
		grid-template-columns: repeat(1, 1fr)!important;
	}
}
/* == flex-container =================================================== */
.flex-container {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
.flex-container.wrap {
    flex-wrap: wrap;
}
.flex-container.nowrap {
    flex-wrap: nowrap;
}
.flex-container:has(.flex-container__col-3) {
    align-items: normal;
}
.flex-container__col-2, .col-2 {
    width: calc(50% - 25px);
}
.flex-container__col-3, .col-3 {
    width: calc((100% / 3) - 25px);
}
.flex-container__col-4, .col-4 {
    width: calc((100% / 4) - 10px);
}
.flex-container__col-5, .col-5 {
    width: calc((100% / 5) - 15px);
}
.flex-container__img img {
    width: 100%;
}
.flex-container__text {
    width: 90%;
}
.col-3 p:last-child {
    margin: 0;
}
.col-3 h3 {
    margin-bottom: 0;
    padding-bottom: .5em;
}
.col-5 .img-area {
    width: 82%;
    margin: 0 auto 10px;
}
.col-5 p {
    line-height: 1.5;
}
@media print, screen and (max-width: 1023px) {
	.flex-container__col-5, .col-5 {
	    width: calc((100% / 4) - 15px);
	}
}
@media print, screen and (min-width: 769px) {
    .flex-container__text {
        max-width: 500px;
    }
    .flex-container.rev {
        flex-direction: row-reverse;
    }
}
@media print, screen and (max-width: 768px) {
    .flex-container {
        flex-direction: column;
        margin-bottom: 30px;
    }
    .flex-container__col-2, .flex-container__col-3, .flex-container__col-4, .col-2, .col-3, .col-4 {
        width: 100%;
        margin-bottom: 20px;
    }
	.flex-container__col-5, .col-5 {
	    width: calc((100% / 2) - 5px);
		margin-bottom: 20px;
	}
    .flex-container__text {
        margin: 0 auto;
    }
}
/* == テーブル、マップ調整/table,map =================================================== */
.post table, .post table th, .post table td {
    border: 0;
}
.post table th, .post table td {
    padding: .7em 1em;
    vertical-align: middle;
	font-size: var(--font-size18);
	font-weight: 500;
	border: 1px solid #CBCBCB;
}
.post table th {
	background: var(--color-primary);
	color: #FFF;
}
.post table td {
	background: #FFF;
}
.page-content table th {
	text-align: center;
}
.page-content_menu table, .page-content_menu table:first-child, .page-content_menu table:last-child {
    margin: 0;
}
.page-content_menu table th, .page-content_menu table td {
	width: 50%;
}
.content-item_trimming table th, .content-item_trimming table td {
    width: calc(100% / 3);
}
.content-item_care table th {
    background: var(--color-secondary);
}
@media print, screen and (max-width: 768px) {
    .post table th, .post table td {
        width: 100%;
		display: block;
		font-size: var(--font-size16);
    }
	.page-content_menu table th, .page-content_menu table td {
		display: table-cell;
	}
	.page-content_menu table th:first-child, .page-content_menu table td:first-child {
		width: 50%;
	}
	.content-item_trimming table th, .content-item_trimming table td {
		padding: .7em .5em;
		width: 27%;
	}
	.content-item_trimming table th:first-child, .content-item_trimming table td:first-child {
		width: 46%;
	}
}
/* == ボタン調整/btn =================================================== */
.btn_container {
    display: flex;
}
a.btn, .linkBtn, .post .linkBtn, a.linkBtn {
    position: relative;
    display: inline-block;
    transition: .5s;
    color: #FFF;
    background: var(--color-primary);
    font-size: var(--font-size18);
    font-weight: bold;
    line-height: 1.5;
    padding: 1em 2em;
    width: 90%;
    max-width: 250px;
    text-align: center;
    border-radius: 0;
}
a.btn:hover, .linkBtn:hover, .post .linkBtn:hover, a.linkBtn:hover {
    transform: translateY(-5px);
	box-shadow: 0 4px 6px #00000020;
	background: #FFF;
	color:var(--color-primary);
	outline: 1px solid;
}
a.btn::after, .linkBtn::after, .post .linkBtn::after, a.linkBtn::after {
	display: block;
	content: '→';
	position: absolute;
	top: 50%;
	right: 1em;
	width: auto;
	height: auto;
	border-right: 0;
	border-bottom: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	margin-top: 0;
}

.wpcf7 .linkBtn {
    padding: 0;
}
.wpcf7 .linkBtn:hover input[type="submit"] {
    color: var(--color-primary);
}
@media print, screen and (max-width: 768px) {}
/* == メインビジュアル / MV =================================================== */
.nivoSlider::before, .nivoSlider::after {
    content: '';
    position: absolute;
    width: 15.6vw;
    height: 15.6vw;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 8%;
    right: 8%;
}
.nivoSlider::before {
    animation: rotate 30s linear infinite;
    background-image: url(/wp-content/uploads/mv_icon01.png);
}
.nivoSlider::after {
    background-image: url(/wp-content/uploads/mv_icon02-1.png);
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media print, screen and (max-width: 768px) {
	.nivoSlider::before, .nivoSlider::after {
		width: max(100px, 28vw);
		height: max(100px, 28vw);
		bottom: 24%;
		right: 3%;
	}
}

/* == トップ、下層調整/top,page =================================================== */
.top-content, .page-content {
    position: relative;
    width: 100vw;
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
}
.top-content::before, .page-content::before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
	z-index: -1;
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
/* ========================
トップ調整/top
======================== */
.top-content {
    padding: var(--clamp-100) 0;
}
.top-content h2 {
    color: var(--color-font);
	line-height: 1;
}
.top-content_concept .img-item {
    width: 31%;
}
.top-content_concept .txt-item {
    width: 67%;
}
.top-content_concept .content-item {
    overflow: hidden;
    border-radius: 20px;
    border: 3px solid var(--color-primary);
    margin-top: var(--clamp-100);
}
.top-content_concept .txt-area {
    padding: max(3%, 20px) max(5%, 20px) 0 max(5%, 20px);
}
.top-content_menu {
    background: var(--color-background02);
    border-radius: 50px 50px 0 0;
}
.top-content_menu .col-3 {
    border-radius: 20px;
    overflow: hidden;
    background: #FFF;
    text-align: center;
}
.top-content_menu .col-3 p {
    line-height: 1.5;
    padding: .5em;
}
.top-content_others {
    text-align: center;
    padding: 0;
}
.top-content_course {
    background: var(--color-primary-tint);
}
.top-content_guide {
    background: var(--color-primary-shade);
}
.top-content_course, .top-content_guide {
    padding: var(--clamp-100) 0 var(--clamp-80);
    margin-top: var(--clamp-60);
    position: relative;
}
.top-content_course::before, .top-content_guide::before {
    content: '';
    position: absolute;
    font-size: var(--font-size50);
    width: 2.4em;
    height: 2.4em;
    background-size: contain;
    background-repeat: no-repeat;
    top: calc(var(--clamp-60) * -1);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.top-content_course::before {
    background-image: url(/wp-content/uploads/icon_course.png);
}
.top-content_guide::before{
    background-image: url(/wp-content/uploads/icon_store.png);
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
	.top-content_concept .img-item {
        width: 60%;
        margin: 0 auto 20px;
    }
    .top-content_concept .txt-item {
        width: 100%;
    }
	.top-content_course {
		margin-bottom: 0;
		padding-bottom: calc(var(--clamp-80) + var(--clamp-60));
	}
	.top-content_guide {
		margin-top: 0;
	}
}
/* ========================
下層調整/page
======================== */
.page-content .gallery {
    margin: 0!important;
}
.page-content .gallery-columns-1 .gallery-item img {
    max-width: 98%;
}
.page-content_store {
    text-align: center;
}
.page-content_store .img-item {
    max-width: 340px;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 1em;
}
.page-content_store .flexbox {
    flex-wrap: wrap;
    justify-content: center;
    gap: 37.5px;
	margin-top: var(--clamp-80);
}
.page-content_store .col-3 p {
    text-align: left;
}
.page-content_feature .flexbox {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 18px;
}

@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
	.content-item_other-plan .col-2:last-child {
		padding-top: var(--clamp-80);
	}
	.page-content_feature .flexbox {
		display: flex;
		justify-content: space-between;
		gap: 0 10px;
	}
}
/* ========================
その他の調整/other
======================== */
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
