@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=Shippori+Mincho:wght@400;500;600;700;800&display=swap');
:root {
	/*------▼基本設定▼------*/
	--color-background: #231F1E;
    --color-font: #FFF;
    --color-primary: #9F0A25;
    --color-primary-shade: #231F1E;
    --color-primary-tint: #666;
    --color-secondary: #aaa;
    --color-secondary-tint: #eee;
    --color-table-border: #ccc;
	--body-font-size: clamp(14px, 1.1vw, 18px);
	--body-font-family: "Shippori Mincho", serif;
	--content-max-width: 1240px;
	/*------▼ヘッダー設定▼------*/
	--header-background: #231F1E;
    --header-color-font: #FFF;
    --header-color-primary: #333;
    --header-color-primary-shade: #111;
    --header-color-primary-tint: #aaa;
	/*------▼フッター設定▼------*/
	--footer-background: #231F1E;
    --footer-color-font: #fff;
    --footer-color-primary: #fff;
	/*------▼フォント設定▼------*/
	--font-family01: "Shippori Mincho", serif;
	--font-family02: 'Oswald', 'Noto Sans JP', sans-serif;
	/*------▼フォントサイズ設定▼------*/
    --font-size12: clamp(10px, .8vw, 12px);
    --font-size14: clamp(12px, .8vw, 14px);
    --font-size16: clamp(14px, .94vw, 16px);
	--font-size18: clamp(14px, 1.1vw, 18px);
    --font-size20: clamp(16px, 1.1vw, 20px);
    --font-size22: clamp(18px, 1.4vw, 22px);
    --font-size26: clamp(20px, 1.6vw, 26px);
    --font-size28: clamp(20px, 1.6vw, 28px);
    --font-size38: clamp(26px, 2vw, 38px);
    --font-size45: clamp(30px, 2vw, 45px);
	/*------▼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-180: clamp(90px, 9.375vw, 180px);
    --clamp-200: clamp(100px, 10.42vw, 200px);
}
a, .newsTitle p a:hover, a:active, a:hover {
	color: #FFF;
}
/* == 非表示 =================================================== */
.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: 120px;
    }
	body.home #header {
		position: absolute;
		background: transparent;
	}
/* ========================
スティッキーヘッダー
======================== */
    .sticky-header #header-layout {
        height: 120px;
    }
	.sticky-header #header > .inner {
		background: var(--header-background);
	}
/* ========================
ヘッダー下部__グローバルナビ
======================== */
	nav#mainNav ul li a b, nav#mainNav ul li a span {
		font-weight: 500;
		font-family: var(--font-family01);
		font-weight: bold;
	}
	nav#mainNav ul li a b {
		font-size: var(--font-size18);
	}
	nav#mainNav ul li a span {
		color: var(--header-color-font);
		font-size: var(--font-size14);
		position: relative;
		padding-bottom: 5px;
	}
	nav#mainNav ul li a span::before {
		content: '';
		position: absolute;
		width: 100%;
		height: 1px;
		background: #FFF;
		left: 0;
		bottom: 0;
		transform-origin: left;
		transform: rotateY(90deg);
		transition: .5s ease;
	}
	nav#mainNav ul li.current-menu-item a span::before, nav#mainNav ul li a:hover span::before, nav#mainNav ul li a:active span::before, nav#mainNav ul li.current-menu-parent a span::before {
		transform: rotateY(0deg);
	}
	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(--header-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-font);
	}
	nav#mainNav ul li ul.sub-menu li a {
		background: #231F1EB3;
		color: #FFF;
		font-size: var(--font-size14);
	}
	nav#mainNav ul li ul.sub-menu li a:hover {
		background: #444343B3;
	}
	nav#mainNav ul li li a:hover, nav#mainNav ul li li.current-menu-item a, nav#mainNav ul li li.current-menu-item li a:hover, nav#mainNav ul li.current-menu-item li a:hover, nav#mainNav ul li.current-menu-ancestor li.current-menu-item a, nav#mainNav ul li.current-menu-ancestor li a:hover {
		background: #231F1EB3;
	}

	/*------ヘッダー下部__コンタクトボタン
--------------------------------------------*/
    #header a.head_btn {
        font-size: var(--font-size18);
		font-weight: bold;
		background: transparent;
    }
	#header a.head_btn::before {
		font-size: 1.2em;
	}
	#header a.head_btn.tel_btn {
		font-size: var(--font-size20);
		background: transparent;
	}
	#header a.head_btn.tel_btn .num::before {
		content: '\f3cd';
		font-family: 'FontAwesome';
		margin-right: .5em;
	}
	#header a.head_btn.tel_btn .sub {
		font-size: var(--font-size14);
	}
	#header a.head_btn.tel_btn::before {
		display: none;
	} 
	#header a.head_btn:hover, #header a.head_btn.tel_btn:hover {
		opacity: .7;
		background: transparent;
		color: #FFF;
	}
}
@media print, screen and (max-width: 1023px) {
	body.home #header {
		position: relative;
		z-index: 1;
	}
    .spmenu #menu span, .spmenu #menu span:before, .spmenu #menu span:after {
        background: #FFF;
    }
    
    .spmenu #menu p {
        color: #FFF;
    }
    
    nav#mainNav ul li a {
        background: #231F1EE6;
    }
    nav#mainNav ul li li a, nav#mainNav ul li.current-menu-item li a, nav#mainNav ul li li:last-child a {
        color: #FFF;
        background: #231F1EE6;
    }
	nav#mainNav ul li.current-menu-item a, nav#mainNav ul li a:hover {
		background: #444343!important;
		color: #FFF;
	}
	nav#mainNav ul li li a:hover, nav#mainNav ul li li.current-menu-item a, nav#mainNav ul li.current-menu-item li a:hover {
		color: #FFF;
	}
	nav#mainNav ul li li.current-menu-item:last-child a, nav#mainNav ul li li:last-child a:hover, nav#mainNav ul li.current-menu-item li:last-child a:hover {
		color: #FFF;
	}
}


/* == トップ記事投稿（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;
}
/* == パンくず =================================================== */
#breadcrumb ul li, #breadcrumb ul li a {
	color: #FFF;
}
/* == フッター調整/footer =================================================== */
#footer {
    padding-bottom: 0;
    background: linear-gradient(0deg, #B5B5B5, #D1D1D1 70%);
    position: relative;
    z-index: 0;
}
#footer .inner {
    max-width: 100%;
    width: 100%;
    padding: 15px 0 10px;
	background: var(--footer-background);
}
#copyright {
	margin: 0;
	padding: 0 0 15px;
}
#footer a {
	transition: .3s ease;
}
#footer p {
    font-size: var(--font-size18);
    text-align: center;
    color: var(--color-background);
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 1em;
}
.ft-btn {
    display: flex;
    justify-content: center;
    margin-bottom: var(--clamp-40);
}
.ft-btn a.linkBtn {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100px;
    font-size: var(--font-size26);
    padding: 0 1em;
    max-width: 300px;
	transition: .3s ease;
}
.ft-btn a.linkBtn.tel {
    background: var(--color-background);
    font-size: var(--font-size28);
}
.ft-btn a.linkBtn::after {
    display: none;
}
.ft-btn a.linkBtn.tel .sub {
    font-size: var(--font-size18);
}
.ft-btn a.linkBtn.tel .num::before {
    content: '\f3cd';
    font-family: 'FontAwesome';
    margin-right: .5em;
    font-size: .8em;
    position: relative;
    bottom: .05em;
}
.ft-btn a.linkBtn.mail span::before {
    content: '\f0e0';
    font-family: 'FontAwesome';
    margin-right: .5em;
    font-size: .8em;
    position: relative;
    bottom: .05em;
}
.ft-btn a.linkBtn.tel:hover {
	background: var(--color-background);
	transform: unset;
}
.ft-btn a.linkBtn.mail:hover {
	background: var(--color-primary);
	transform: unset;
}
@media print, screen and (min-width: 769px) {	
}
@media print, screen and (max-width: 768px) {
	.ft-btn {
		flex-direction: column;
		align-items: center;
	}
	.ft-btn a.linkBtn {
		height: 80px;
	}
	#footer .footer__logo img {
		max-height: 100px;
	}
}
/* == アイキャッチ/eyecatch =================================================== */
header#h1Header h1.title {
    font-size: var(--font-size45);
}
#thumbImg::before, header#h1Header::before {
    opacity: .3;
}
/* == postlist =================================================== */
.postlist li:first-child {
    border-top: 0;
}
.postlist li {
    border-bottom: 1px solid #FFFFFF;
}
.postlist .time {
    font-size: var(--font-size18);
    background: var(--color-primary);
    border-radius: 5px;
    padding: .5em 1em;
}
.postlist .time a {
    color: #FFF;
}
.postlist .ttls, .postlist .date {
    font-size: var(--font-size18);
}
/* == 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;
}
.content_inner {
	position: relative;
	z-index: 0;
}
/* == テキスト調整/text =================================================== */
 
.post p, .post h2, .post h3, .post h4, .post h5, h1.title {
	color: var(--color-font);
}
.post p {
    font-size: var(--font-size18);
    line-height: 2;
    margin-bottom: 1em;
	font-weight: 400;
}
.post h2, h1.title {
    font-size: var(--font-size38);
    line-height: 1.5;
    margin-bottom: 1em;
	font-weight: bold;
}
.post h3 {
    font-size: var(--font-size26);
    line-height: 1.5;
    margin-bottom: 1em;
	font-weight: 400;
}
.post h4 {
    font-size: var(--font-size22);
    line-height: 1.5;
    margin-bottom: 1em;
	font-weight: 400;
}
.post h5 {
    font-size: var(--font-size18);
    line-height: 1.5;
    margin-bottom: 1em;
	font-weight: 400;
}
h2 span.en {
	font-size: var(--font-size20);
}
h2 span.ja {
	font-size: var(--font-size38);
}
span.px16 {
	font-size: var(--font-size16);
}
@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-150);
}
.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;
	}
}
/* == == == == == == == == == == == == == == == == == == 
 *  flex / card
 * == == == == == == == == == == == == == == == == == == */
/* == == == == == == == ==
 * flex 
 * == == == == == == == == */
.col-2{width: calc(50% - 22px);}
.col-3{width: calc(100% / 3);}
.col-4{width: calc(100% / 4);}
.col-5{width: calc(100% / 5);}
.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;}
.ai_center {align-items: center;}
.txt-inner {
    max-width: 528px;
	width: 94%;
}
@media print, screen and (min-width: 769px) {
	.ml-auto {margin-left: auto;}
	.mr-auto {margin-right: auto;}
}
@media print, screen and (max-width: 768px) {
    .col-2, .col-3, .col-4, .col-5 {
        width: 100%;
        margin-bottom: 20px;
    } 
    .w25, .w35, .w45, .w55, .w65, .w75 {
        width: 100%;
		margin-bottom: 20px;
    }
	.flex_1 {
		margin-bottom: 40px;
	}
	.txt-inner {
		margin: 0 auto;
        max-width: 100%;
	}
}
/* == == == == == == == ==
 * card
 * == == == == == == == == */
.card {
    display: flex;
    flex-direction: row;
}
.wrap {
    flex-wrap: wrap;
}
.nowrap {
    flex-wrap: nowrap;
}
.card:has(.col-2) {gap: 44.5px;}
.card:has(.col-3) {gap: 20px;}
.card:has(.col-4) {gap: 11.2px;}
.card:has(.col-5) {gap: 10.5px;}
.card .col-2 {width: calc(50% - 24px);}
.card .col-3 {
	width: calc((100% / 3) - 15px);
}
.card .img-area {
	margin-bottom: 20px;
}
.card .txt-area {
    padding: 7% 5%;
}
.card h3 {
    font-size: var(--font-size22);
    text-align: center;
}
.card p {
    font-size: var(--font-size16);
    line-height: 1.8;
}
.card .col-4 {width: calc((100% / 4) - 10px);}
.card .col-5 {width: calc((100% / 5) - 10px);}
.card p:last-child {margin: 0;}
@media print, screen and (max-width: 1023px) {
	.card .col-5 {width: calc((100% / 4) - 10px);}
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
    .card {flex-direction: column;}
    .card .col-2, .card .col-3, .card .col-4, .col-2, .col-3, .col-4 {
        width: 100%;
        gap: 15px;
        margin-bottom: 20px;
    }
	.card .col-5, .col-5 {
	    width: calc((100% / 2) - 5px);
        gap: 15px 10px;
		margin-bottom: 20px;
	}
}
/* == テーブル、マップ調整/table,map =================================================== */
.post table, .post table th, .post table td {
    border: 0;
}
.post table th, .post table td {
    padding: .6em 1em;
	border: 1px solid #151414;
	font-size: var(--font-size18);
}
.post table th {
	background: #444343;
	font-weight: bold;
}
.post table td {
	background: #EDEDED;
	font-weight: 400;
	color: #151414;
}
.post table td p {
    color: #151414;
}
@media print, screen and (max-width: 768px) {
    .post table th, .post table td {
        width: 100%;
		display: block;
    }
}
/* == ボタン調整/btn =================================================== */
.btn_container {
    display: flex;
}
a.btn, .linkBtn, .post .linkBtn, a.linkBtn {
    position: relative;
    display: block;
    transition: .5s;
    color: #FFF;
    background: var(--color-primary);
    font-size: var(--font-size-p);
    font-weight: bold;
    line-height: 1.5;
    padding: 1em;
    width: 90%;
    max-width: 365px;
    text-align: center;
    border-radius: 0;
	margin: auto;
}
a.btn:hover, .linkBtn:hover, .post .linkBtn:hover, a.linkBtn:hover {
    transform: translateY(-5px);
	opacity: .7;
}
a.btn::after, .linkBtn::after, .post .linkBtn::after, a.linkBtn::after {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: 1em;
	width: 6px;
	height: 6px;
	border-right: 2px solid;
	border-bottom: 2px solid;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin-top: -3px;
	display: none;
}
a.topBtn {
    display: inline-block;
    position: relative;
    transition: .5s ease;
    color: #FFF;
    font-size: var(--font-size18);
    font-weight: bold;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
a.topBtn:hover {
	transform: translateY(-3px);
	opacity: .7;
}
a.topBtn .arrow {
    transition: .5s ease;
    margin-left: 1em;
    font-size: .875em;
    border: 1px solid;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 2.86em;
    height: 2.86em;
    border-radius: 50vw;
}
a.topBtn:hover .arrow {
    color: #151414;
    background: #FFF;
}
.wpcf7 .linkBtn {
    padding: 0;
}
/* .wpcf7 .linkBtn:hover input[type="submit"] {
    color: var(--color-primary);
} */
@media print, screen and (max-width: 768px) {}
/* == トップ、下層調整/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;
}
body.home {
	position: relative;
}
body.home::before {
    content: '';
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-image: url(/wp-content/uploads/top_bg01.jpg);
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
    z-index: 0;
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
/* ========================
.section-lead
======================== */
.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: justify;
}
.vertical-text p {
    margin-left: 1em;
}
.vertical-text h2 {
    text-align: justify;
}
.parallax-content {
    height: 385px;
}
.section-lead {
	padding-top: 0;
}
.section-lead h2 {
	font-weight: 400;
}
.section-lead__01,
.section-lead__02,
.section-lead__03 {
	background: #151414;
}
.section-lead__01 {
	padding-top: var(--clamp-200);
}
.section-lead__01 .content_inner {
    text-align: -webkit-right;
    width: 80%;
	max-width: 1536px;
	margin-top: -12%;
	margin-bottom: var(--clamp-60);
}
.section-lead__01 a.topBtn {
    justify-content: end;
}
.section-lead__01 .flexbox .img-area {
    width: 60%;
    max-width: 1088px;
}
.section-lead__01 .flexbox .txt-area {
    width: 40%;
}
.section-lead__01 .flexbox .txt-inner {
	width: 80%;
    max-width: 576px;
    margin-right: auto;
    text-align: -webkit-right;
}
.section-lead__02 {
    padding-top: var(--clamp-60);
}
.section-lead__02 h2 {
	text-align: left;
}
.section-lead__02 .img-area {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.section-lead__02 .img-item {
    width: calc(50% - 10px);
}
.section-lead__03 {
    padding-top: var(--clamp-80);
	padding-bottom: var(--clamp-100);
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
    .section-lead__01 .flexbox .txt-area {
        width: 100%;
        margin-bottom: 20px;
    }
    .section-lead__01 .flexbox .img-area {
        width: 100%;
    }
    .section-lead__01 img {
        min-height: 200px;
        object-fit: cover;
    }
    .section-lead__01 .content_inner {
        margin-top: -20%;
    }
    .section-lead__02 .img-area {
        margin-bottom: 0;
    }
    .section-lead__03 .col-3 {
        width: 60%;
        margin: 0 auto;
    }
    .parallax-content {
        height: 200px;
    }
}
/* ========================
.section-menu
======================== */
.section-menu {
    background-image: url(/wp-content/uploads/bg_01.jpg);
    background-size: cover;
    background-position: center;
	padding-bottom: 0;
}
.section-menu::before {
    content: '';
    background: var(--color-background);
    z-index: 0;
    opacity: .85;
    top: 0;
    left: 0;
}
.section-menu__recommend .flexbox {
    margin-top: var(--clamp-60);
}
.section-menu__recommend h3 {
    border-bottom: 1px solid;
    padding-bottom: .3em;
}
.section-menu__recommend .menu-ttl {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.section-menu__recommend .name {
    font-size: var(--font-size22);
}
.section-menu__recommend .price {
    font-size: var(--font-size18);
}
.section-menu__menuList {
    padding-top: var(--clamp-80);
	position: relative;
	z-index: 2;
}
.section-menu__menuList h3 {
    text-align: center;
}
.section-menu__menuList .menu-btn {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    z-index: 0;
	margin-top: var(--clamp-40);
}
/* .menu-btn */
.menu-btn li {
    width: calc(100% / 3);
    position: relative;
    overflow: hidden;
}
.menu-btn a {
    display: block;
    transition: .5s ease;
}
.menu-btn a .img-area {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.menu-btn a .img-area::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: .6;
    left: 0;
    top: 0;
    z-index: 1;
    transition: .5s ease;
}
.menu-btn a:hover .img-area::before {
    opacity: .3;
}
.menu-btn a img {
    transition: .7s ease;
}
.menu-btn a:hover img {
    transform: scale(1.1);
	opacity: 1;
}
.menu-btn a .txt-area {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.menu-btn a p {
    font-size: var(--font-size26);
    margin: 0;
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
    .menu-btn a p {
        font-size: var(--font-size18);
    }
    .menu-btn li {
        width: calc(100% / 2);
    }
}
@media print, screen and (max-width: 455px) {
    .menu-btn li {
        width: 100%;
    }
} 
/* ========================
.section-information
======================== */
.section-information {
    background-image: url(/wp-content/uploads/bg_01.jpg);
    background-size: cover;
    background-position: center;
}
.section-information::before {
    content: '';
    background: var(--color-background);
    z-index: 0;
    opacity: .85;
    top: 0;
    left: 0;
}
.section-information__news {
	padding-top: var(--clamp-100);
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
/* ========================
.section-company
======================== */
.section-company {
    background-image: url(/wp-content/uploads/top_company_01.jpg);
    background-size: cover;
    background-position: left;
    padding-top: 0;
}
.section-company .flexbox {
    align-items: end;
}
.section-company .txt-area {
    position: relative;
    padding-top: var(--clamp-200);
}
.section-company .txt-area::before {
    content: '';
    position: absolute;
    width: 1px;
    height: var(--clamp-180);
    background: #FFF;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
.section-company table th, .section-company table td {
	background: transparent;
	padding: .6em 1em;
	color: #FFF;
	border: 0;
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
	.section-company {
		background-image: url(/wp-content/uploads/top_company_01-sp.jpg);
	}
	.section-company table td {
		border-bottom: 1px solid;
	}
	.section-company table th, .section-company table td {
		padding-top: 1em;
		padding-bottom: 1em;
	}
}
/* ========================
下層調整/page
.page-content
 -.section-menu
  -.menuDetail
======================== */
.page-content.section-menu {
    background: unset;
}
.page-content .section-menu__menuList h3 {
    border-bottom: 1px solid;
    padding-bottom: .3em;
}
.page-content .menu-btn {
    justify-content: space-between;
    margin-top: 10px;
}
.page-content .menu-btn li {
    width: calc(50% - 22px);
    margin-top: var(--clamp-30);
}
.page-content .menu-btn a img {
    aspect-ratio: 4/1;
    object-fit: cover;
    object-position: left;
}
.section-menu__menuDetail h2 {
    text-align: left;
    border-bottom: 1px solid;
    border-left: 5px solid;
    padding-left: .5em;
    padding-bottom: .3em;
    margin-bottom: 1.4em;
    font-weight: 400;
}
.section-menu__menuDetail h3 {
    border-bottom: 1px solid;
    font-size: var(--font-size26);
    max-width: 295px;
	width: 50%;
}
.menuDetail__content {
    padding-top: var(--clamp-150);
    margin-top: calc(var(--clamp-40) * -1);
}
.menuDetail__item img {
    margin-bottom: 10px;
}
.menuDetail__item ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 35px 20px;
	margin-bottom: var(--clamp-60);
}
.menuDetail__item .col-4 {
    width: calc(25% - 15px);
}
.menuDetail__item .col-8 {
    width: calc((100% / 8) - 17.5px);
}
.menuDetail__item .menu-txt {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 0 15px;
}
.menuDetail__item .name,
.menuDetail__item .price {
    font-size: var(--font-size18);
	line-height: 1.5;
}
.menuDetail__item ul.sub {
    flex-direction: column;
    gap: 0;
}
@media print, screen and (max-width: 1023px) {
	.menuDetail__item ul {
		gap: 20px 22px;
	}
	.menuDetail__item .col-4 {
		width: calc((100% / 3) - 15px);
	}
	.menuDetail__item .col-8 {
		width: calc((100% / 6) - 19.5px);
	}
}
@media print, screen and (max-width: 768px) {
	.page-content .menu-btn li {
		width: calc(50% - 7px);
	}
	.menuDetail__item .col-8 {
		width: calc((100% / 4) - 17px);
	}
	.menuDetail__item ul.sub .col-4 {
		width: calc((100% / 1) - 5px);
	}
}
@media print, screen and (max-width: 455px) {
    .page-content .menu-btn li {
        width: 100%;
        max-width: 300px;
        margin: 5px auto 0;
    }
	.menuDetail__item ul {
		gap: 15px 10px;
	}
	.menuDetail__item .col-4 {
		width: calc((100% / 2) - 5px);
	}
	.menuDetail__item .col-8 {
		width: calc((100% / 3) - 7px);
	}
} 
/* == == == == == == == == == == == == == == == == == == 
 * コンタクトフォーム
 * == == == == == == == == == == == == == == == == == == */
.wpcf7-form .must {
    border-radius: 5px;
	background: var(--color-primary);
}
.wpcf7-form .linkBtn {
    padding: 0;
}
.wpcf7-form .linkBtn:hover {
	background: #EDEDED;
}
.wpcf7-form .linkBtn:hover input[type="submit"] {
    color: var(--color-background);
}
.post .subimitarea .linkBtn input[type="submit"] {
    padding: 1em 2em;
}
/* ========================
その他の調整/other
======================== */
.post ul#sitemap_list.sitemap_disp_level_0 > li a {
	font-family: var(--font-family01);
}
#sb_instagram .sbi_inner_wrap {
    background: #ffffffcf;
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
