@charset "utf-8";
/*
Theme Name:mrp-child
Template:mrp
Version: 1.0.0
*/
/*
DesignCode CSS: ver 0.01
*/
/*------------------------------------------------------
Theme Material
------------------------------------------------------*/
@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+Serif:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
:root {
	/*------▼基本設定▼------*/
	--color-background: #FFF;
    --color-font: #333;
    --color-primary: #182769;
    --color-primary-shade: #F8EDEB;
    --color-primary-tint: #E4F0F0;
    --color-secondary: #F73737;
    --color-secondary-tint: #eee;
    --color-table-border: #DCDDDD;
	--body-font-size: clamp(14px, .94vw, 16px);
	--body-font-family: 'Noto Sans JP', sans-serif;
	--content-max-width: 1100px;
	/*------▼ヘッダー設定▼------*/
	--header-background: #FFF;
    --header-color-font: #333333;
    --header-color-primary: #182769;
    --header-color-primary-shade: #FFF;
    --header-color-primary-tint: #F8F8F8;
	/*------▼フッター設定▼------*/
	--footer-background: #182769;
    --footer-color-font: #FFF;
    --footer-color-primary: #FFF;
	/*------▼フォント設定▼------*/
	--font-family01: 'Noto Sans JP', sans-serif;
	--font-family02: 'Zen Old Mincho', serif;
	--font-family03: 'Oswald', serif;
	--font-family04: 'Noto Serif', 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-size28: clamp(20px, 1.6vw, 28px);
    --font-size32: clamp(24px, 1.7vw, 32px);
    --font-size35: clamp(24px, 1.83vw, 35px);
    --font-size38: clamp(26px, 2vw, 38px);
	--font-size48: clamp(26px, 2.61vw, 48px);
    --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-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-160: clamp(80px, 8.5vw, 160px);
    --clamp-200: clamp(100px, 10.42vw, 200px);
}
::selection {
    background-color: #9DABE8;
}
/* == == == == == == == == == == == == == == == == == == 
 * 非表示
 * == == == == == == == == == == == == == == == == == == */
 .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;
}
#mainImg {
    display: none;
}
/* == == == == == == == == == == == == == == == == == == 
 * ヘッダー調整/header
 * == == == == == == == == == == == == == == == == == == */
@media print, screen and (min-width: 1024px) {
/* == == == == == == == ==
 * ヘッダー下部
 * == == == == == == == == */
    #header {
        height: 100px;
		position: relative;
    }
/* == == == == == == == ==
 * スティッキーヘッダー
 * == == == == == == == == */
    .sticky-header #header-layout {
        height: 100px;
    }
/* 	.sticky-header #header > .inner {
		
	} */
/* == == == == == == == ==
 * ヘッダー下部__グローバルナビ
 * == == == == == == == == */
	nav#mainNav ul li a b {
		font-weight: 900;
		color: var(--header-color-primary);
		font-family: var(--font-family02);
		font-size: var(--font-size18);
		position: relative;
		padding-bottom: 5px;
	}
	nav#mainNav ul li a b::before {
		content: '';
		position: absolute;
		width: 100%;
		height: 1px;
		background: var(--header-color-primary);
		left: 0;
		bottom: 0;
		transition: .3s ease;
		transform: rotateY(90deg);
		transform-origin: left;
	}
	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);
	}
	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-primary);
	}
	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);
		font-family: var(--font-family02);
		font-weight: bold;
    }
	#header a.head_btn.mail_btn::before {
		content: '\f1d8';
	}
	#header a.head_btn:hover {
		color: var(--header-color-primary);
		background: var(--header-color-primary-shade);
	}
	#header a.head_btn.tel_btn::before {
		display: none; 
	}
	#header a.head_btn.tel_btn {
		color: var(--header-color-primary);	
		background: var(--header-color-primary-tint);
	}
	#header a.head_btn.tel_btn span.num {
		font-size: calc(var(--font-size28) - 2px);
	}
	#header a.head_btn.tel_btn span.num::before {
		content: '\f3cd';
		font-family: 'FontAwesome';
		margin-right: .5em;
		display: inline-block;
	}
	#header a.head_btn.tel_btn span.sub {
		font-family: var(--font-family01);
		font-size: 10px;
		font-weight: bold;
		color: var(--header-color-font);
		transition: .3s ease;
	}
	#header a.head_btn.tel_btn span.oswald {
		font-family: var(--font-family04);
		font-weight: 500;
	}
	#header a.head_btn.tel_btn:hover {
		color: var(--header-color-primary-shade);
		background: var(--header-color-primary);
	}
	#header a.head_btn.tel_btn:hover span.sub {
		color: var(--header-color-primary-shade);
	}
}
/* == == == == == == == ==
 * スマホ
 * == == == == == == == == */
@media print, screen and (max-width: 1023px) {
	body.home #header {
		position: relative;
		z-index: 1;
	}
    
}
/* == == == == == == == == == == == == == == == == == == 
 * トップ記事投稿（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: 0;
	position: relative;
	z-index: 0;
}
#footer .inner {
    padding-top: 15px;
}
#copyright {
    margin: 0;
    padding: 10px 0 15px;
}
#footer h2 {
	color: var(--color-primary);
    font-size: var(--font-size28);
    line-height: 1.5;
    margin-bottom: 1em;
	font-weight: 400;
}
#footer h2 .en {
	font-size: var(--font-size50);
}
#footer h2 .ja {
	font-size: var(--font-size16);
}
.footer-content {
	background-image: url(/wp-content/uploads/footer_bg.jpg);
	background-position: center;
	background-size: cover;
	padding-top: var(--clamp-80);
	padding-bottom: var(--clamp-100);
	text-align: center;
}
#footer .btn-content {
	max-width: 775px;
	margin: 0 auto var(--clamp-30);
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: var(--clamp-30) 0;
}
#footer a.tel_btn {
    position: relative;
    display: inline-block;
    transition: .5s ease;
    color: var(--color-primary);
    background: transparent;
    font-size: calc(var(--font-size38) + 2px);
    font-weight: bold;
    font-family: var(--font-family02);
    line-height: 1.5;
    width: 90%;
    max-width: 325px;
    text-align: center;
    border-radius: 0;
	margin: 10px;
}
#footer a.tel_btn span.sub {
    font-family: var(--font-family01);
    font-size: var(--font-size16);
    font-weight: 500;
    color: var(--header-color-font);
    transition: .3s ease;
    display: block;
}
#footer a.tel_btn:hover {
	transform: translateY(-3px);
	opacity: .7;
}
#footer a.tel_btn span.num::before {
	content: '\f3cd';
	font-family: 'FontAwesome';
	margin-right: .3em;
	display: inline-block;
	font-size: .8em;
	position: relative;
	bottom: .1em;
}
#footer a.mail_btn {
    position: relative;
    display: inline-block;
    transition: .5s ease;
    color: #FFF;
    background: var(--color-primary);
    font-size: var(--font-size16);
    font-weight: bold;
    font-family: var(--font-family01);
    line-height: 1.5;
    padding: 1.2em 2em;
    width: 90%;
    max-width: 325px;
    text-align: center;
    border-radius: 0;
    margin: 10px;
}
#footer a.mail_btn::after {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 6px;
    height: 6px;
    border-right: 1px solid;
    border-bottom: 1px solid;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -3px;
    transition: all .3s;
}
#footer a.mail_btn:hover {
	transform: translateY(-3px);
	background: #FFF;
	color: var(--color-primary);
	outline: 1px solid;
	box-shadow: 0 4px 20px #0000001A;
}
@media print, screen and (min-width: 769px) {	
}
@media print, screen and (max-width: 768px) {}
/* == == == == == == == == == == == == == == == == == == 
 * アイキャッチ/eyecatch
 * == == == == == == == == == == == == == == == == == == */
header#h1Header h1.title {
    font-size: clamp(30px, 2.4vw, 46px);
	font-family: var(--font-family02);
	font-weight: 900;
}
#thumbImg::before, header#h1Header::before {
    opacity: .46;
	background: #000000;
}
/* == == == == == == == == == == == == == == == == == == 
 * パンくず
 * == == == == == == == == == == == == == == == == == == */

/* == == == == == == == == == == == == == == == == == == 
 * postlist
 * == == == == == == == == == == == == == == == == == == */
.postlist li:first-child {
    border-top: 0;
}
.postlist li {
    border-bottom: 1px dotted #CCCCCC;
}
.postlist .time {
    font-size: var(--font-size16);
    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;
}
/* body:not(.home) #content.wide {
    padding-bottom: var(--clamp-100);
} */
 /* == == == == == == == == == == == == == == == == == == 
 *  テキスト調整/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: 1em;
	font-weight: 400;
}
.post h2 {
    font-size: var(--font-size28);
    line-height: 1.5;
    margin-bottom: 1em;
	font-weight: 400;
	color: var(--color-primary);
	font-family: var(--font-family02);
}
.post h3 {
    font-size: var(--font-size22);
    line-height: 1.5;
    margin-bottom: 1em;
	font-weight: 400;
	color: var(--color-primary);
	font-family: var(--font-family02);
}
.post h4 {
    font-size: var(--font-size20);
    line-height: 1.5;
    margin-bottom: 1em;
	font-weight: 400;
	color: var(--color-primary);
	font-family: var(--font-family02);
}
.post h5 {
    font-size: var(--font-size18);
    line-height: 1.5;
    margin-bottom: 1em;
	color: var(--color-primary);
	font-family: var(--font-family02);
}
p.lead {
    font-size: var(--font-size32);
	font-family: var(--font-family02);
	color: #000;
    line-height: 1.75;
	font-weight: 400;
}
p.name {
	text-align: right;
}
p.name img {
    width: clamp(150px, 8.9vw, 180px);
}
p.name span {
	margin-right: 1em;
}
span.bold {
	font-weight: bold;
}
span.ja {
	font-family: var(--font-family01);
	font-weight: 500;
	display: inline-block;
	letter-spacing: .5px;
}
span.en {
	font-family: var(--font-family02);
	font-weight: 400;
	display: inline-block;
	letter-spacing: 3px;
}
span.color {
    color: var(--color-primary-shade);
}
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.px26 {font-size: var(--font-size26);}
span.px28 {font-size: var(--font-size28);}
span.px32 {font-size: var(--font-size32);}
span.px35 {font-size: var(--font-size35);}
span.px38 {font-size: var(--font-size38);}
span.px42 {font-size: var(--font-size42);}
span.px50 {font-size: var(--font-size50);}
span.px60 {font-size: var(--font-size60);}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
 /* == == == == == == == == == == == == == == == == == == 
 *  レイアウト/あしらい調整
 *  == == == == == == == == == == == == == == == == == == */
.shadow {box-shadow: 0 4px 4px #00000026;}
.content-item+.content-item {padding-top: var(--clamp-80);}
.img-area img {width: 100%;}
 /* == == == == == == == == == == == == == == == == == == 
 *  grid
 *  == == == == == == == == == == == == == == == == == == */
.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 / 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: 550px;
	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);
    background: #FFF;
    overflow: hidden;
    border: 1px solid #DCDDDD;
}
.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: 1em;
    vertical-align: middle;
    font-size: var(--body-font-size);
	background: transparent;
}
.post table th {
	border-bottom: 2px solid #DDD;
	font-weight: bold;
	color: var(--color-font);
}
.post table td {
	border-bottom: 2px solid #DDD;
	font-weight: 500;
}
.page-content table, .page-content table th, .page-content table td {
	border: 0;
}
.page-content table th, .page-content table td {
	border: 1px solid #A3A3A3;
	font-weight: 400;
}
.page-content table th {
	background: var(--color-primary);
	color: #FFF;
}
@media print, screen and (max-width: 768px) {
    .post table th, .post table td {
        width: 100%;
		display: block;
		font-size: var(--font-size16);
    }
	.post table tr:first-child th, .post table tr:first-child td {
		border-top: 0;
	}
}
/* == == == == == == == == == == == == == == == == == == 
 * ボタン調整/btn
 * == == == == == == == == == == == == == == == == == == */
.btn-content {
	display: flex;
    margin-top: var(--clamp-40);
}
a.topBtn {
    position: relative;
    transition: .5s ease;
    font-family: var(--font-family02);
    font-weight: 400;
    font-size: var(--font-size16);
    display: flex;
    align-items: center;
}
a.topBtn .arrow {
    display: inline-block;
    width: 4em;
    height: 1.8em;
    text-align: center;
    border: 1px solid;
    border-radius: 50vw;
    margin-left: 2em;
    transition: .2s ease;
	position: relative;
}
a.topBtn .arrow::before {
    content: '→';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .4s ease;
}
a.topBtn .arrow::after {
    content: '→';
    position: absolute;
    top: 50%;
    left: calc(50% - 2em);
    transform: translate(-50%, -50%);
    transition: .4s ease;
    opacity: 0;
}
a.topBtn:hover .arrow {
	background: var(--color-primary);
	color: #FFF;
}
a.topBtn:hover .arrow::before {
    left: calc(50% + 2em);
    opacity: 0;
}
a.topBtn:hover .arrow::after {
    opacity: 1;
    left: 50%;
}
.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: 550px;
    text-align: center;
    border-radius: 5px;
}
.linkBtn::after, .post .linkBtn::after, a.linkBtn::after {
	border-right: 1px solid;
	border-bottom: 1px solid;
}
.linkBtn:hover, .post .linkBtn:hover, a.linkBtn:hover {
    transform: translateY(-5px);
	box-shadow: 0 4px 6px #00000020;
	background: #FFF;
	outline: 1px solid;
	color: var(--color-primary);
}
/* .linkBtn::after, .post .linkBtn::after, a.linkBtn::after {} */
@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;
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
/* == == == == == == == ==
 * .mv-content
 * == == == == == == == == */
.mv-content {
    position: relative;
    width: 100vw;
    margin-left: calc(((100vw - 100%) / 2)* -1);
    margin-right: calc(((100vw - 100%) / 2)* -1);
    z-index: 1;
}
.mv-img img {
    width: 100%;
    height: auto;
}

.mv-txt {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
.mv-txt h1 {
    color: #FFF;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--font-family04);
    font-weight: 500;
    font-size: 3.49vw;
    letter-spacing: 0;
    line-height: 1.4;
}
.mv-txt h1 .sub {
    font-family: var(--font-family02);
    font-size: 1.98vw;
    letter-spacing: 3px;
}
.scroll-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  left: 0;
  bottom: 0;
}
.scroll-wrapper {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
  mix-blend-mode: soft-light;
  filter: brightness(150%);
  margin-bottom: -3%;
}
.scroll-text {
  font-family: 'YuMincho', serif;
  font-family: var(--font-family01);
  font-size: 13.125vw;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
  padding-right: 50px;
}

/* アニメーション */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media print, screen and (max-width: 768px) {
	.mv-txt h1 {
		font-size: 7.2vw;
	}
	.mv-txt h1 .sub {
		font-size: 4vw;
	}
	.scroll-text {
		font-size: 20vw;
	}
}
/* == == == == == == == ==
 * .top-content
 * == == == == == == == == */
.top-content .ja {
    font-size: var(--font-size16);
}
.top-content .en {
    font-size: var(--font-size50);
    padding-left: .5em;
    position: relative;
}
.top-content .en::before {
    content: '';
    position: absolute;
    width: .3em;
    height: .3em;
    background-image: url(/wp-content/uploads/icon_ttl.png);
    background-size: contain;
    background-repeat: no-repeat;
    left: 0;
    top: .4em;
}
.txt-item {
    position: absolute;
    font-family: var(--font-family02);
    font-weight: 400;
    line-height: 1;
    font-size: max(11.97vw, 75px);
    color: #727272;
    z-index: 0;
    opacity: .05;
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
/* == == == == == == == ==
 * .top-content__about-us
 * == == == == == == == == */
.top-content__about-us {
    padding: 0;
}
.top-content__about-us .content_wrapper {
	position: relative;
    padding: var(--clamp-160) 0;
}
.top-content__about-us h2 {
	text-align: left;
}
.top-content__about-us .txt-item {
    top: 7.5%;
    left: 0;
}
.parallax-item {
    position: fixed;
    width: 50%;
    height: 100vh;
    top: 0;
    right: 0;
    z-index: 0;
}
.parallax-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}
@media print, screen and (min-width: 769px) {
	.top-content__about-us .txt-inner {		
		padding-right: max(2%, 15px);
		width: 50%; 
	}
}
@media print, screen and (max-width: 768px) {
	.parallax-item {
		width: 100%;
	}
	.top-content__about-us {
		padding-top: 0;
		padding-bottom: 300px;
	}
	.top-content__about-us .content_wrapper {
		background: #FFF;
		padding: var(--clamp-80) 0;
	}
	.top-content__about-us .txt-item {
		top: 2%;
	}
}
/* == == == == == == == ==
 * .top-content__service
 * == == == == == == == == */
.top-content__service {
	padding-bottom: 0;
}
.top-content__service::before {
	content: '';
	width: 100%;
	height: 70%;
	max-height: 960px;
	background-image: url(/wp-content/uploads/top_service_bg.jpg);
	background-size: cover;
	background-position: bottom;
	top: 0;
	left: 0;
	z-index: 0;
}
.top-content__service .txt-item {
    color: #FFF;
    right: 0;
    top: 0;
}
.top-content__service h2, .top-content__service p {
	color: #FFF;
	text-align: left;
}
.top-content__service .btn-content {
    justify-content: end;
}
.top-content__service a.topBtn {
	color: #FFF;
}
.top-content__service .flexbox {
    position: relative;
    z-index: 0;
    align-items: normal;
	margin-top: var(--clamp-120);
}
.top-content__service .col-3 {
    position: relative;
    z-index: 0;
    display: block;
    transition: .5s ease;
    overflow: hidden;
    background: #FFF;
}
.top-content__service img {
	transition: .7s ease;
}
.top-content__service .img-area {
    position: relative;
	overflow: hidden;
}
.top-content__service .img-area::before {
    content: '';
    position: absolute;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    outline: 5px solid #FFF;
    opacity: .3;
    z-index: 1;
}
.top-content__service .txt-area {
    text-align: center;
}
.top-content__service .txt-area h3 {
    margin: 0;
    font-size: var(--font-size32);
    padding: .5em;
}
.top-content__service .txt-area p {
    text-decoration: underline;
    color: var(--color-primary);
    text-align: center;
}
/* hover */
.top-content__service .col-3:hover img {
	opacity: .8;
	transform: scale(1.1);
}
.top-content__service .col-3:hover p {
	text-decoration: none;
}
@media print, screen and (min-width: 769px) {
    .top-content__service .col-3:nth-child(1) {
        margin-top: calc(var(--clamp-100) * 2);
    }
    .top-content__service .col-3:nth-child(2) {
        margin-top: calc(var(--clamp-100) * 1);
    }
}
@media print, screen and (max-width: 768px) {
	.top-content__service::before {
		height: 25%;
		min-height: 690px;
	}
	.top-content__service .col-3 {
		margin-bottom: 0;
		margin-top: 20px;
	}
}
/* == == == == == == == ==
 * .top-content__recruit
 * == == == == == == == == */
.top-content__recruit {
	padding: var(--clamp-120) 0;
}
.top-content__recruit::before {
	content: '';
	width: 66.7%;
	height: 100%;
	background-image: url(/wp-content/uploads/top_recruit_bg.jpg);
	background-size: cover;
	background-position: bottom;
	top: 0;
	right: 0;
	z-index: 0; 
}
.top-content__recruit h2 {
	text-align: left;
}
.top-content__recruit .txt-item {
    right: 0;
    top: 0;
}
.top-content__recruit .flexbox {
    position: relative;
	align-items: center;
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
    .top-content__recruit {
        padding-bottom: 0;
    }
    .top-content__recruit::before {
        width: 100%;
    }
    .top-content__recruit .txt-inner {
        padding-bottom: var(--clamp-80);
    }
	.top-content__recruit .img-area {
		margin-bottom: 0;
	}
	.top-content__recruit img {
		aspect-ratio: 16 / 9;
		object-fit: cover;
		object-position: center;
	}
}
/* == == == == == == == ==
 * .top-content__
 * == == == == == == == == */
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
/* == == == == == == == ==
 * .page-content
 * == == == == == == == == */
#content, body:not(.home) #content.wide {
    padding: var(--px80w) 0 var(--px80);
}
body.page-service #content.wide,
body.page-company #content.wide,
body.page-recruit #content.wide {
    padding: 0;
}
.page-content {
    padding: var(--clamp-60) 0;
}
.page-content h2 {
    font-size: var(--font-size28);
	text-align: left;
	border-bottom: 2px solid;
	padding-bottom: .5em;
	margin-bottom: .5em;
}
.page-content h2 .en {
    background: var(--color-primary);
    color: #FFF;
    display: inline-block;
    font-size: var(--font-size16);
    padding: .5em .7em;
    margin-bottom: 1em;
}
.page-content p.lead {
	font-size: var(--font-size22);
	margin-bottom: .5em;
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
/* == == == == == == == ==
 * .page-content__about
 * .page-content__service
 * .page-content__flow
 * == == == == == == == == */
/*  .page-content__about */
.feature-content {
    text-align: center;
    box-shadow: 0 3px 6px #00000026;
    padding: min(3%, 26px);
	margin-top: var(--clamp-40);
}
.feature-content ul {
    max-width: 965px;
    text-align: left;
    margin: 0 auto;
}
.feature-content ul li {
    font-size: var(--font-size20);
    font-weight: 500;
}
.feature-content ul li span {
    color: var(--color-primary);
}
/*  .page-content__service */
.page-content__service {
    background: #FAFAFA;
}
ul.service-list {
    counter-reset: number 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
ul.service-list li {
    width: calc(50% - 22px);
    border-bottom: 1px dashed #707070;
	margin-top: var(--clamp-30);
}
ul.service-list li h3 {
    color: #000;
    font-size: var(--font-size18);
    position: relative;
    padding-left: 3em;
    line-height: 2.3;
}
ul.service-list li h3 .num {
    color: #FFF;
    background: var(--color-primary);
    line-height: 1;
    font-size: var(--font-size22);
    padding: .37em .24em;
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
}
/* .page-content__flow */
.page-content.page-content__flow {
    background-image: url(https://p-crews.com/wp-content/uploads/flow_bg.png);
    background-size: auto;
    background-repeat: repeat;
}
.flow-content {
    counter-reset: number 0;
}
.flow-item {
    background: #FFF;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
	box-shadow: 0 3px 20px #0000001A;
}
.flow-item .num {
    position: absolute;
    counter-increment: number 1;
    left: 0;
    top: 0;
    font-size: var(--font-size22);
    font-family: var(--font-family02);
    font-weight: 900;
	line-height: 1;
	padding: .37em .32em;
    background: var(--color-primary); 
    color: #FFF;
}
/* .flow-item .num::before {
    content: '0' counter(number);
} */
.flow-item::after {
    content: '';
    position: absolute;
    background-image: url(/wp-content/uploads/icon_arrow.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 12px;
    height: 20px;
    bottom: -20px;
    left: 15%;
    transform: translateX(-50%);
}
.flow-item:last-child::after {
    display: none;
}
.flow-item .ttl {
    padding: 3em 2em 3em 4em;
    width: 32%;
/*     position: relative; */
}
.flow-item .txt {
    width: 68%;
    padding: max(2%, 10px) 4em max(2%, 10px) 2em;
    text-align: left;
}
.flow-item h3 {
    margin: 0;
    font-size: var(--font-size22);
	color: #000;
}
.flow-item p {
    line-height: 1.8;
    font-weight: 400;
}
.flow-item p:last-child {
    margin-bottom: 0;
}

@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
    .feature-content ul li {
        margin-bottom: 1em;
        font-size: var(--font-size16);
    }
    .feature-content ul li span {
        display: block;
    }
    ul.service-list li {
        width: 100%;
    }
	.flow-item {
		flex-direction: column;
	}
	.flow-item .ttl {
		width: 100%;
		padding: 2em 3em 1em;
	}
	.flow-item .txt {
		width: 100%;
		padding: max(2%, 10px) 1em;
	}
	.flow-item::after {
		left: 50%;
	}
}
/* == == == == == == == ==
 * .page-content__greeting
 * .page-content__over-view
 * == == == == == == == == */
.page-content__greeting {
    background: #FAFAFA;
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}
/* == == == == == == == ==
 * .page-content__message
 * .page-content__charm
 * == == == == == == == == */
.page-content__charm {
    counter-reset: number 0;
}
.page-content__charm h3 {
    position: relative;
    padding-left: 2.2em;
    line-height: 1.7;
}
.page-content__charm h3 .num::before {
    content: '0' counter(number);
    counter-increment: number 1;
    color: #FFF;
    background: var(--color-primary);
    line-height: 1;
    font-size: 1.22em;
    padding: .24em .15em;
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
}
.page-content__charm .flexbox {
	align-items: center;
}
.charm-content {
    padding: var(--clamp-30) 0;
    position: relative;
}
.charm-content + .charm-content {
    margin-top: var(--clamp-40);
}
.charm-content::before {
    content: '';
    position: absolute;
    width: 45%;
    height: 100%;
    background: #F5F5F5;
    top: 0;
    z-index: 0;
    opacity: .5;
}
.charm-content:nth-child(even)::before {
    left: 0;
}
.charm-content:nth-child(odd)::before {
    right: 0;
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
	.charm-content::before {
		width: 100%;
	}
}
/* == == == == == == == == == == == == == == == == == == 
 * サイトマップ
 * == == == == == == == == == == == == == == == == == == */
/* == == == == == == == == == == == == == == == == == == 
 * コンタクトフォーム
 * == == == == == == == == == == == == == == == == == == */
.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
 * == == == == == == == == == == == == == == == == == == */

@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {

}

