@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=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');
:root {
	/*------▼基本設定▼------*/
	--color-background: #FFF;
    --color-font: #333;
    --color-primary: #333333;
    --color-primary-shade: #A0A0A0;
    --color-primary-tint: #F8F8F8;
    --color-secondary: #F73737;
    --color-secondary-tint: #eee;
    --color-table-border: #ccc;
	--body-font-size: clamp(14px, .94vw, 16px);
	--body-font-family: 'Noto Sans JP', sans-serif;
	--content-max-width: 1100px;
	/*------▼ヘッダー設定▼------*/
	--header-background: #393939;
    --header-color-font: #FFF;
    --header-color-primary: #333333;
    --header-color-primary-shade: #A0A0A0;
    --header-color-primary-tint: #F8F8F8;
	/*------▼フッター設定▼------*/
	--footer-background: #333333;
    --footer-color-font: #FFF;
    --footer-color-primary: #FFF;
	/*------▼フォント設定▼------*/
	--font-family01: 'Noto Sans JP', sans-serif;
	--font-family02: 'Shippori Mincho', serif;
    --font-family03: 'Cormorant Garamond', serif;
	/*------▼フォントサイズ設定▼------*/
    --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-size24: clamp(18px, 1.45vw, 24px);
    --font-size26: clamp(20px, 1.6vw, 26px);
    --font-size28: clamp(20px, 1.6vw, 28px);
    --font-size32: clamp(22px, 1.7vw, 32px);
    --font-size35: clamp(24px, 1.83vw, 35px);
    --font-size36: clamp(24px, 1.85vw, 36px);
    --font-size38: clamp(26px, 2vw, 38px);
    --font-size40: clamp(26px, 2.1vw, 40px);
	--font-size42: clamp(26px, 2.61vw, 42px);
	--font-size46: clamp(26px, 2.61vw, 46px);
    --font-size50: clamp(26px, 2.61vw, 50px);
    --font-size52: clamp(26px, 2.7vw, 52px);
    --font-size60: clamp(30px, 3.13vw, 60px);
    --font-size70: clamp(30px, 3.65vw, 70px);
	/*------▼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-50: clamp(25px, 2.61vw, 50px);
    --clamp-60: clamp(30px, 3.13vw, 60px);
    --clamp-70: clamp(35px, 3.65vw, 70px);
    --clamp-80: clamp(40px, 4.17vw, 80px);
    --clamp-90: clamp(45px, 4.69vw, 90px); 
    --clamp-100: clamp(50px, 5.42vw, 100px);
    --clamp-110: clamp(55px, 5.73vw, 110px);
    --clamp-120: clamp(60px, 6.25vw, 120px);
    --clamp-130: clamp(65px, 6.78vw, 130px);
    --clamp-140: clamp(70px, 7.3vw, 140px);
    --clamp-150: clamp(76px, 7.92vw, 150px);
    --clamp-200: clamp(100px, 10.42vw, 200px);
}
::selection {
    background-color: var(--color-primary);
    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
 * == == == == == == == == == == == == == == == == == == */
#header {
	position: relative;
}
@media print, screen and (min-width: 1024px) {
/* == == == == == == == ==
 * ヘッダー下部
 * == == == == == == == == */
    #header {
        height: 100px;
    }
	body.home #header {
		position: absolute;
		background: transparent;
	}
/* == == == == == == == ==
 * スティッキーヘッダー
 * == == == == == == == == */
    .sticky-header #header-layout {
        height: 100px;
    }
	.sticky-header #header > .inner {
		background: var(--header-background);
	}
/* == == == == == == == ==
 * ヘッダー下部__グローバルナビ
 * == == == == == == == == */
	nav#mainNav ul li a b {
		font-family: var(--font-family01);
        font-size: var(--font-size18);
		font-weight: bold;
		position: relative; 
	}
    nav#mainNav ul li a span {
        font-family: var(--font-family01);
        font-size: var(--font-size14);
		font-weight: bold;
    }
	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 a b::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: #FFF;
        bottom: -5px;
        left: 0;
        transform-origin: left;
        transform: rotateY(90deg);
        transition: .3s ease;
		border-radius: 50vw;
	}
	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 {
        transform: rotateY(0deg);
	}
/* == == == == == == == ==
 * ヘッダー下部__コンタクトボタン
 * == == == == == == == == */
    #header a.head_btn {
        font-size: var(--font-size18);
    }
}
/* == == == == == == == ==
 * スマホ
 * == == == == == == == == */
.spmenu #menu span, .spmenu #menu span:before, .spmenu #menu span:after {
	background: #FFF;
}
.spmenu #menu p {
	color: #FFF;
}
@media print, screen and (max-width: 1023px) {
	nav#mainNav ul li a, nav#mainNav ul li.current-menu-item a, nav#mainNav ul li a:hover {
		background: #333333E6;
		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;
}
/* == == == == == == == == == == == == == == == == == == 
 *  リスト表示
 * == == == == == == == == == == == == == == == == == == */
/* == == == == == == == == == == == == == == == == == == 
 *  フッター調整/footer 
 * == == == == == == == == == == == == == == == == == == */
#footer {
    position: relative;
	padding: 0 0 10px;
}
#footer p  {
    font-size: var(--font-size16);
    line-height: 2;
    margin-bottom: 1.5em;
	font-weight: 400;
    letter-spacing: .5px;
	text-align: left;
}
#footer .footer-content {
	padding-top: var(--clamp-120);
	padding-bottom: var(--clamp-100);
}
#footer .content_inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
#footer .footnav ul {
    justify-content: end;
}
#footer .footnav ul > li::before, #footer .footnav ul > li::after {
    display: none;
}
#copyright {
    margin-top: var(--px20);
}
@media print, screen and (min-width: 769px) {	
}
@media print, screen and (max-width: 768px) {
    #footer .content_inner {
        flex-direction: column;
        gap: 30px;
    }
    #footer .footnav ul {
        justify-content: center;
    }
    #footer .footer-content {
        padding-bottom: 0;
    }
    #footer p {
        text-align: center;
    }
}
/* == == == == == == == == == == == == == == == == == == 
 * アイキャッチ/eyecatch
 * == == == == == == == == == == == == == == == == == == */
header#h1Header h1.title {
    font-weight: bold;
    font-size: var(--font-size42);
    font-family: var(--font-family01);
}
#thumbImg::before, header#h1Header::before {
    opacity: .2;
	background: var(--color-primary);
}
/* == == == == == == == == == == == == == == == == == == 
 * パンくず
 * == == == == == == == == == == == == == == == == == == */

/* == == == == == == == == == == == == == == == == == == 
 * postlist
 * == == == == == == == == == == == == == == == == == == */
.postlist li:first-child {
    border-top: 0;
}
.postlist li {
    border-bottom: 1px dotted #CCC;
}
.postlist .time {
    font-size: var(--font-size14);
    background: var(--color-primary);
    padding: .5em 1em;
    border-radius: 5px;
}
.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-size16);
    line-height: 2;
    margin-bottom: 1.5em;
	font-weight: 500;
    letter-spacing: .5px;
}
.post h2 {
    font-size: var(--font-size28);
    line-height: 1.5;
    margin-bottom: 1em;
	font-weight: bold;
    letter-spacing: 1px;
}
.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;
}
p.lead {
    font-size: var(--font-size28);
    font-family: var(--font-family02);
    font-weight: bold!important;
    line-height: 1.78;
}
p.mid {
    font-size: var(--font-size22);
    font-weight: 500;
    line-height: 1.78;  
}
p.name {
    font-size: var(--font-size18);
    font-family: var(--font-family02);
    font-weight: bold;
    text-align: right;
}
.bold {font-weight: bold;}
.ja {font-family: var(--font-family02);}
.en {font-family: var(--font-family03);}
.color {color: var(--color-primary-shade);}
.color-font {color: var(--color-font);}
.px12 {font-size: var(--font-size12);}
.px14 {font-size: var(--font-size14);}
.px16 {font-size: var(--font-size16);}
.px18 {font-size: var(--font-size18);}
.px20 {font-size: var(--font-size20);}
.px22 {font-size: var(--font-size22);}
.px26 {font-size: var(--font-size26);}
.px28 {font-size: var(--font-size28);}
.px32 {font-size: var(--font-size32);}
.px35 {font-size: var(--font-size35);}
.px36 {font-size: var(--font-size36);}
.px38 {font-size: var(--font-size38);}
.px42 {font-size: var(--font-size42);}
.px50 {font-size: var(--font-size50);}
.px52 {font-size: var(--font-size52);}
.px60 {font-size: var(--font-size60);}
.white {color: #FFF;}
.weight-mid {font-weight: 500!important;}
.underline {text-decoration: underline;}
.ttl-bg {
    display: inline-block;
    background: var(--color-primary)!important;
    color: #FFF;
    padding: .3em .5em!important;
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
 /* == == == == == == == == == == == == == == == == == == 
 *  レイアウト/あしらい調整
 *  == == == == == == == == == == == == == == == == == == */
.shadow {box-shadow: 0 3px 20px #00000026;}
.border {border: 1px solid #E5E5E5;}
.content-item {
    padding-top: var(--clamp-120);
    margin-top: calc(var(--clamp-60) * -1);
}
.content-item+.content-item {
    padding-top: var(--clamp-120);
    margin-top: calc(var(--clamp-20) * -1);
}
.img-area img {width: 100%;}
.icon-area {
    width: 30%;
    max-width: 90px;
    margin: var(--clamp-20) auto;
}
.bg-white {
    background: #FFF;
}
.bg-tint {
    background: var(--color-primary-tint);
}
.bg-shade {
    background: #F8F8F8;
}
.b-radius {
    border-radius: 10px;
    overflow: hidden;
}
@media print, screen and (max-width: 768px) {
}
/* == == == == == == == == == == == == == == == == == == 
 *  flex / card
 * == == == == == == == == == == == == == == == == == == */
/* == == == == == == == ==
 * flex 
 * == == == == == == == == */
.col-2{width: calc(50% - 20px);}
.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: 96%;
}
@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 {
        max-width: 100%;
		width: 96%;
        margin: 0 auto;
    }
}
/* == == == == == == == ==
 * 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: 22px;}
.card:has(.col-4) {gap: 13px;}
.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 {
    position: relative;
}
.card .num-icon {
    position: absolute;
    width: 39%;
    top: 0;
}
.card .txt-area {
    margin: 0;
    padding: 0 2%;
}
.card h3 {
    font-size: var(--font-size18);
    font-weight: 500;
}
.card h3 .en {
    color: var(--color-primary-shade);
}
.card p {
    font-size: var(--font-size16);
    line-height: 2;
}
.card p.ttl {
    font-size: var(--font-size20);
    text-align: center;
}
.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: row;}
    .card .col-2, .card .col-3, .col-2, .col-3 {
        width: 100%;
        margin-bottom: 0;
    }
	.card .col-4, .col-4, .card .col-5, .col-5 {
	    width: calc((100% / 2) - 10px);
        margin-bottom: 0;
	}
    .col-2, .col-3, .col-4, .col-5 {
        margin-bottom: 20px;
    } 
}
@media print, screen and (max-width: 500px) {
	.card .col-4, .col-4, .card .col-5, .col-5 {
	   width: 100%;
	}
    .card p.ttl {
        font-size: var(--font-size18);
    }
}
/* == == == == == == == == == == == == == == == == == == 
 * テーブル、マップ調整/table,map
 * == == == == == == == == == == == == == == == == == == */
.post table, .post table th, .post table td {
    border: 0;
}
.post table th, .post table td {
    padding: 1.2em;
    font-size: var(--body-font-size);
	background: transparent;
	color: var(--color-font);
}
.post table th {
	border-bottom: 1px solid #C6C6C6;
	font-weight: bold;
}
.post table td {
	border-bottom: 1px solid #C6C6C6;   
	font-weight: 500;
}
.page-content table, .page-content table th, .page-content table td {
    border: 1px solid #C6C6C6;
}
.page-content table th {
    background: #EBEBEB;
}
.page-content table td {
    background: #FFF;
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
    .post table th, .post table td {
        width: 100%;
		display: block;
		font-size: var(--font-size16);
        padding: 1em;
    }
	.post table tr:first-child th, .post table tr:first-child td {
		border-top: 0;
	}
}
/* == == == == == == == == == == == == == == == == == == 
 * ボタン調整/btn
 * == == == == == == == == == == == == == == == == == == */
 .btn-content {
    display: flex;
    justify-content: center;
    margin-top: var(--clamp-40);
}
.btn-content a.linkBtn {
    margin: 5px var(--clamp-30);
}
.linkBtn, .post .linkBtn, a.linkBtn {
    position: relative;
    display: inline-block;
    transition: .5s;
    color: #FFF;
    background: var(--color-primary);
    font-size: var(--font-size16);
    font-family: var(--font-family01);
    font-weight: bold;
    line-height: 1.5;
    padding: 1.2em 2em;
    width: 90%;
    max-width: 320px;
    text-align: center;
    border-radius: 0;
    outline: 1px solid;
}
.linkBtn:hover, .post .linkBtn:hover, a.linkBtn:hover {
    transform: translateY(-3px);
	box-shadow: 0 4px 6px #00000020;
	background: #FFF;
	color: var(--color-primary);
}
.linkBtn::after, input.linkBtn::after, .post .linkBtn::after {
    width: 1.25em;
    height: 1px;
    background: #FFF;
    transform: translateY(-50%);
    margin-top: 0;
    transition: .3s ease;
	border-width: 0;
    right: 0;
}
.linkBtn:hover::after, input.linkBtn:hover::after, .post .linkBtn:hover::after {
    width: .5em;
    background: var(--color-primary);
}
@media print, screen and (max-width: 768px) {
    .linkBtn, .post .linkBtn, a.linkBtn {
        padding: 1em 2em;
    }
}
 /* == == == == == == == == == == == == == == == == == == 
 *  accordion
 *  == == == == == == == == == == == == == == == == == == */
.accordion {
    margin-bottom: 15px;
}
.accordion__summary {
  display: block;
  background: #F2F2F2; /* 見出しの背景色 */
  position: relative;
  list-style: none; /* 矢印を消す */
  cursor: pointer;
  font-size: var(--font-size18);
  font-weight: bold;
  line-height: 1.5;
  padding: 1.2em 1.5em;
}
.accordion__summary::-webkit-details-marker {
  display: none;
}

.accordion__detail {
    border: 1px solid #DBDBDB;
}
.accordion__summary p, .accordion__detail p {
    font-size: var(--font-size18);
    padding: 1.2em 1.5em;
    margin-bottom: 0;
}
.accordion__summary p {
    color: #FFF;
    font-weight: bold;
}
@media print, screen and (max-width: 768px) {}
/* == == == == == == == == == == == == == == == == == == 
 * トップ、下層調整/ .top-content, .page-content
 * == == == == == == == == == == == == == == == == == == */
.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;
}
.top-content {
	padding-top: var(--clamp-100);
	padding-bottom: var(--clamp-100);
	background: #FFF;
}
.top-content h2 {
    text-align: left;
}
.top-content h2 .en {
    font-size: var(--font-size70);
    font-weight: 600;
    display: inline-block;
    line-height: 1.2;
}
.top-content h2 .ja {
    font-size: var(--font-size20);
    display: inline-block;
    line-height: 1.2;
}
.page-content h2 {
    text-align: left;
    margin-bottom: .5em;
}
.page-content {
	padding-top: var(--clamp-50);
	padding-bottom: var(--clamp-50);
}
.page-content h3 {
    background: var(--color-primary);
    padding: .4em 1em;
    color: #FFF;
    margin-top: var(--clamp-30)!important;
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
/* == == == == == == == ==
 * .section__
 * == == == == == == == == */
.section__about {
    padding-top: var(--clamp-150);
    padding-bottom: var(--clamp-50);
	background: transparent;
}
.section__about::before {
    content: '';
    top: 0;
    left: 0;
    background: var(--color-primary);
    z-index: 0;
    opacity: .7;
}
.section__about h2, .section__about p {
    color: #FFF;
}
.section__about .card .img-area {
	padding-top: 12%;
}
@media print, screen and (min-width: 769px) {
    .section__about .card .col-3:nth-child(2) {
        margin-top: var(--clamp-40);
    }
}
@media print, screen and (max-width: 768px) {}
/* == == == == == == == ==
 * .section__facility
 * .section__plan
 * .section__access
 * == == == == == == == == */
.section__facility {
    padding-top: var(--clamp-100);
    padding-bottom: 0;
}
.section__plan,
.section__access {
    padding-top: var(--clamp-60);
    padding-bottom: 0;
}
.section__facility .flexbox,
.section__plan .flexbox,
.section__access .flexbox {
    align-items: center;
}
.section__facility .img-area,
.section__plan .img-area,
.section__access .img-area {
    width: 57%;
    max-width: 1080px;
}
.section__facility .txt-area,
.section__plan .txt-area,
.section__access .txt-area {
    position: relative;
    width: 50%;
    background: #FFF;
    padding: min(5%, 90px);
}
.section__facility .txt-area,
.section__access .txt-area {
    margin-left: -7%;
}
.section__plan .txt-area {
    margin-right: -7%;
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
    .section__facility .img-area, .section__plan .img-area, .section__access .img-area {
        width: 100%;
    }
    .section__facility .txt-area, .section__plan .txt-area, .section__access .txt-area {
        margin: 0;
        width: 100%;
        padding: 3%;
    }
}
/* == == == == == == == ==
 * .section__
 * == == == == == == == == */

@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
/* == == == == == == == ==
 * .section__
 * == == == == == == == == */

@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
/* == == == == == == == ==
 * .page-content調整
 * == == == == == == == == */

@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
/* == == == == == == == == == == == == == == == == == == 
 * サイトマップ
 * == == == == == == == == == == == == == == == == == == */
/* == == == == == == == == == == == == == == == == == == 
 * コンタクトフォーム
 * == == == == == == == == == == == == == == == == == == */
.wpcf7-form .must {
    border-radius: 5px;
}
.wpcf7-form .linkBtn {
    padding: 0;
}
.wpcf7-form .linkBtn:hover input[type="submit"] {
    color: var(--color-primary);
}
.post .subimitarea .linkBtn input[type="submit"] {
    padding: 1em 2em;
}
/* == == == == == == == == == == == == == == == == == == 
 * その他の調整 / other
 * == == == == == == == == == == == == == == == == == == */
/* == body調整 ===== */
body.home {
    position: relative;
}
body.home::before {
    content: '';
    position: fixed;
    background-image: url(/wp-content/uploads/top_bg.jpg););
    background-position: center;
    background-size: cover;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}
/* == #content.wide ==== */
#content, body:not(.home) #content.wide {
    padding: 0;
}
body.archive.category #content.wide,
body.single #content.wide,
body.page-contact #content.wide,
body.page-thanks #content.wide,
body.page-sitemap #content.wide,
body.page-privacy #content.wide {
    padding: var(--clamp-100) 0;
}

/* == .nivo-caption ==== */
.nivo-caption {
    width: auto!important;
    height: auto!important;
    background: #FFF!important;
    opacity: 1!important;
    border: 1px solid #707070!important;
    left: 50%!important;
    bottom: 20%!important;
    transform: translateX(-50%)!important;
    padding: 1% 5%!important;
}
.vacant-content p {
    font-size: var(--font-size16);
    font-family: var(--font-family01);
    font-weight: bold;
    color: var(--color-font);
}
.vacant-txt {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
}
.vacant-txt .num {
    font-size: clamp(26px, 4.02vw, 77px);
    font-family: oswald;
    line-height: 1;
}
.vacant-txt .note {
    font-size: var(--font-size40);
    line-height: 1;
}

@media print, screen and (min-width: 769px) {
	
		.nivo-caption {
    left: 75% !important;
}
}
@media print, screen and (max-width: 768px) {
	.nivo-caption {
    width: 80%!important;
    height: 20%!important;
    bottom: 7%!important;
		left: 50%!important;
    padding: 3% 16%!important;
}
	.vacant-content p {
		font-size: 3.87vw;
	}
	.vacant-txt .note {
		font-size: 5.47vw;
	}
	.vacant-txt .num {
		font-size: 10vw;
	}
}

