@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=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');
/*------@import------*/
:root {
	/*------▼基本設定▼------*/
	--color-background: #FFF;
	--color-font: #111;
	--color-primary: #F39B16;
	--color-primary-shade: #1E90FF;
	--color-primary-tint: #1E90FF;
	--color-secondary: #00B900;
	--color-secondary-tint: #4dce4d;
	--color-table-border: #DDD;
	--body-font-size: min(calc(1.6rem + (1vw - 19.2px) * 0.1294), 1.6rem);
	/* 1.6-1.4rem (1920-375) */
	--body-font-family: 'Noto Sans JP', sans-serif;
	--content-max-width: 1240px;
	/*------▼ヘッダー設定▼------*/
	--header-background: #FFF;
	--header-color-font: #444;
	--header-color-primary: #F39B16;
	--header-color-primary-shade: #1E90FF;
	--header-color-primary-tint: #1E90FF;
	/*------▼フッター設定▼------*/
	--footer-background: #00296A;
	--footer-color-font: #fff;
	--footer-color-primary: #111;
	/*------▼フォント設定▼------*/
	--font-family01: 'Noto Sans JP', sans-serif;
	--font-family02: "Montserrat", sans-serif;
	--font-family03: "Shippori Mincho", serif;
}

/*--------------------------------------------------
	共通
--------------------------------------------------*/
.post {
    .ttl {
        &.ttl--primary {
            display: flex;
            flex-direction: column;
			position: relative;
            &::after {
				background: var(--color-primary);
                margin: 1.1em 0 0;
				width: 2.1em;
            }
            &:is(.color-white) {
                .ttl--primary__en, .ttl--primary__ja {
                    color: #fff;
                }
            }
            .ttl--primary__en {
                color: #0D4091;
				font-family: var(--font-family02);
                font-size: min(calc(6.5rem + (1vw - 1.92rem) * 1.6181), 6.5rem);
                font-weight: 700;
                line-height: 1;
				margin-bottom: var(--rem12);
				position: relative;
            }
            .ttl--primary__ja {
                font-size: var(--rem30);
                font-weight: 700;
                line-height: 1;
            }
        }
		&:is(.txt_c) {
			.ttl--primary__en {
				justify-content: center;
                &::after {
                    margin: 1.1em auto 0;
                }
			}
			&::after {
				margin: 1.1em auto 0;
			}
		}
		&:is(.color-white) {
			.ttl--primary__en, .ttl--primary__ja {
				color: #fff;
			}
		}
    }
    h2 {
		text-align: unset;
        letter-spacing: unset;
	}
    p {
        line-height:2;
        letter-spacing: .05em;
    }
    .color-white {
        color: #fff;
    }
    .color-yellow {
        color: #EFF316;
    }
	.color-gradation {
		background: linear-gradient(263deg, #27B7EC 9%, #073190 97%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
    .m-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/**/
.bg_wide { position: relative; }
.bg_wide::before,
.bg_wide.bg_after::after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100vw;
	height: 100%;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
	content: "";
	z-index: -1;
}
.box_w2_sp {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.box_w2_sp.rev { flex-direction: row-reverse; }
.box_w2_sp.vtop { align-items: flex-start; }
.box_w2_sp.vcen { align-items: center; }
.box_w2_sp.vbtm { align-items: flex-end; }
.box_pad { padding: 20px; box-sizing: border-box; }
.box_w2 .column2_50:not(.cen) { text-align: left; }
@media print, screen and (min-width: 641px){ /* PC用 */
	.bg_fix::before { background-attachment: fixed !important; }
	.box_w2 {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.box_w2.rev { flex-direction: row-reverse; }
	.box_w2.vtop { align-items: flex-start; }
	.box_w2.vcen { align-items: center; }
	.box_w2.vbtm { align-items: flex-end; }
	.box_pad { padding: 30px; }
	.box_w2 .column3_33 { width: 32%; }
	.box_w2 .column2_50 { width: 48.5%; }
	.box_w2 .column2_60 { width: 57%; }
	.box_w2 .column2_70 { width: 67%; }
	.box_w2 .column2_80 { width: 77%; }
}
@media print, screen and (min-width:769px){ /* PCのみ */
	.box_pad { padding: 50px; }
}
/**/
.box_w2 .column3_33 img, .box_w2 .column2_30 img,
.box_w2 .column2_40 img, .box_w2 .column2_50 img {
	max-width: 100%;
}
/**/
.w100 {
	width: 100vw;
	margin-left: calc(((100vw - 100%) / 2) * -1) !important;
	margin-right: calc(((100vw - 100%) / 2) * -1) !important;
}
.w600, .w800, .w900 {
	width: 600px;
	max-width: 100%;
	margin: auto;
}
.w800 { width: 800px; }
.w900 { width: 900px; }
.max-w-960 {
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
}

/**/
.post .linkBtn {
	border-radius: 0;
	/* background: var(--color-primary); */
}

.fw_contents {
    margin-top: 0;
    margin-bottom: 0;
}
#content:has(.fw_contents), body:not(.home) #content:has(.fw_contents).wide {
    padding: 0;
}

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

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

/*-----------------------------
card
------------------------------*/
.sec01 {
  background: #aaa;
}
.toptxtarea {
  max-width: 960px;
  width: 94%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.card01_wrap {
  position: relative;
  margin: var(--px60) 0 0;
}
.card01_inner {
  max-width: 1600px;
  width: 94%;
  margin: 0 auto;
}
.card01_list > li {
  position: relative;
  background: transparent;
}
.card01_list .imgarea {
  width: 100%;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  line-height: 0;
}
.card01_list .imgarea img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card01_list .txtarea {
  padding: 20px 0 0 0;
  line-height: 1.6;
  text-align: left;
  background: transparent;
}
  
/*---------txtstyle02 -----------*/
  
.post .txtstyle02, .txtstyle02 {
  font-family: var(--font-family02);
  font-size: var(--rem36);
  font-weight: 600;
  text-align: left;
  margin: var(--rem36) auto;
  background: transparent;
    color: #111;
    line-height: 1.4;
  padding: 0;
}
.post .txtstyle02:before, .post .txtstyle02:after, .txtstyle02:before, .txtstyle02:after {
  content: none;
}
.post .card01_list .txtstyle02, .card01_list .txtstyle02 {
  font-size: var(--rem20);
  margin: 0 0 1rem;
}
  
/*---------column04-----------*/
  
.col4_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: var(--px40);
}
.col4_list {
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.col4_list::before {
  content:"";
  display: block;
  width: calc(100% / 4 - var(--px40));
  order: 1;
}
.col4_list:after {
    content: "";
    display: block;
    width: calc((100% - (var(--px40) * 3)) / 4);
  order: 2;
}
.col4_list > li {
    width: calc((100% - (var(--px40) * 3)) / 4);
}
  
@media print, screen and (max-width: 768px) {
  .col4_list > li {
    width: calc((100% - (var(--px40)* 1)) / 2);
  }
}
@media print, screen and (max-width: 414px) {
  .col4_list > li {
    width: 100%;
  }
} 

/*-----------------------------
column_05
------------------------------*/
.sec01 {
	background: #f1f1f1;
}
.toptxtarea {
	max-width: 960px;
	width: 94%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.column05 {
	position: relative;
	margin: var(--px60) 0 0;
}
.column05_wrap {
	position: relative;
    width: 100vw;
    margin: 0 auto;
    margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	z-index: 20;
}
.column05_wrap + .column05_wrap {
	margin-top: calc(100px + 70px);
}
.column05 .imgarea {
	position: relative;
	aspect-ratio: 1200 / 650;
	overflow: hidden;
	width: 62%;
}
.column05 .imgarea img {
	object-fit: cover;
    width: 100%;
    height: 100%;
}
.column05 .txtarea {
	position: relative;
	width: 51.5%;
	display: flex;
    align-items: center;
    justify-content: center;;
	background: #fff;
	padding: var(--px80) var(--px40) var(--px50);
	margin: 0 auto -10px -14%;
	z-index: 10;
}
.column05 .txtarea .txtinner {
    max-width: 810px;
}
@media print, screen and (min-width: 1024px) {
	/*左右反転*/
	.column05_wrap + .column05_wrap {
		margin-top: 50px;
	}
	.column05_wrap.rev {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.column05_wrap.rev .txtarea {
		margin: 0 -14% -40px auto;
	}
}
@media print, screen and (max-width: 1023px) {
	.column05_wrap + .column05_wrap {
		margin-top: calc(100px + (1vw - 10.23px) * 7.7160);
	}
	.column05_wrap.rev {
		flex-direction: row;
	}
	.column05 .imgarea, .column05 .txtarea {
		width: 93%;
	}
	.column05 .txtarea {
		margin: calc(-60px + (1vw - 10.23px) * -3.8580) 0 0 auto;
	}
}
	
/*---------txtstyle-----------*/
	
.post .txtstyle02, .txtstyle02 {
	font-family: var(--font-family02);
	font-size: var(--rem36);
	font-weight: 600;
	text-align: left;
	margin: var(--rem36) auto;
	background: transparent;
    color: #111;
    line-height: 1.4;
	padding: 0;
}
.post .txtstyle02:before, .post .txtstyle02:after, .txtstyle02:before, .txtstyle02:after {
	content: none;
}
.post .column05 .txtstyle02, .column05 .txtstyle02 {
    font-family: var(--font-family01);
	font-size: min(calc(3.2rem + (1vw - 1.92rem) * 0.3883), 3.2rem);
    font-weight: 700;
    letter-spacing: .05em;
	margin: var(--rem20) 0;
    b {
        letter-spacing: unset;
    }
}
.post .txtstyle04, .txtstyle04 {
	font-family: var(--font-family02);
	font-size: var(--rem36);
	font-weight: 600;
	text-align: left;
	margin: var(--rem24) auto;
	background: transparent;
	border: none;
    color: #111;
    line-height: 1.4;
	padding: 0;
}
.post .txtstyle04:before, .txtstyle04:before {
	content: none;
}
.post .column05 .txtstyle04, .column05 .txtstyle04 {
    color: #00296A;
    font-family: var(--font-family02);
	font-size: min(calc(9.4rem + (1vw - 1.92rem) * 3.1068), 9.4rem);
    font-weight: 700;
    line-height: 1;
}
.post .column05 .txtstyle04:after, .column05 .txtstyle04:after {
    content: '';
    position: relative;
    visibility: visible;
    display: block;
    width: var(--px100);
    height: 2px;
    background: var(--color-primary);
    margin: var(--rem20) 0 0 0.5rem;
}

/*-----------------------------
button
------------------------------*/
.linkBtn, .post .linkBtn, a.linkBtn {
    max-width: 230px;
    color: #fff;
	font-weight: 700;
	text-align: center;
    line-height: 2;
    background: var(--color-primary);
    padding: var(--rem12) 30px var(--rem12) 20px;
    border: 1px solid var(--color-primary);
}
.post .linkBtn:hover, .linkBtn:hover, a.linkBtn:hover {
    color: var(--color-primary);;
    background: #fff;
    border-color: var(--color-primary);
    &::after {
        border-color: var(--color-primary);
    }
}
/* mod1 */
.linkBtn-mod1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5em;
    outline: none;
    border: none;
    padding: var(--rem12) 30px var(--rem12) 20px;
    margin: 0;
    max-width: 400px;
    width: 100%;
    color: #fff;
    font-weight: 700;
    text-align: center;
    line-height: 2;
    position: relative;
    letter-spacing: .14em;
    overflow: hidden;
    background: var(--color-primary-shade);
}
   .linkBtn-mod1 span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
   }
   .linkBtn-mod1:hover span {
    color: #fff;
   }
   .linkBtn-mod1::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    content: "";
    background: var(--color-primary);
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
   }
   .linkBtn-mod1:hover::before {
    transform: translate3d(100%, 0, 0);
   }
   .linkBtn-mod1::after {
    display: inline-block;
    content: "\f061";
    color: #fff;
    font-family: 'FontAwesome';
    font-weight: 700;
    position: relative;
   }
   .linkBtn-mod1:hover::after {

   }

/*--------------------------------------------------
	ヘッダー
--------------------------------------------------*/
@media print, screen and (min-width: 1024px) {
    #header {
        height: 100px;
    }
    #header a.head_btn {
        color: #444;
        padding-left: var(--rem28);
        padding-right: var(--rem28);
    }
    #header a.head_btn.sns_btn {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: var(--px16);
        color: #fff;
        font-size: var(--rem18);
        background: var(--color-secondary);
        padding-left: var(--rem48);
        padding-right: var(--rem48);
        position: relative;
        &::before {
            display: block;
            content: "";
            width: 30px;
            height: 30px;
            background: url(/wp-content/uploads/icon_line_01.png.webp) no-repeat center / contain;
        }
        &:hover {
            background: var(--color-primary-shade);
        }
    }
    #header a.head_btn.mail_btn {
        flex-direction: row;
        align-items: center;
		gap: 10px;
		color: #fff;
        font-size: var(--rem18);
		background: var(--color-primary);
        padding-left: var(--rem36);
        padding-right: var(--rem36);
		position: relative;
		z-index: 1;
		&::before {
			margin-bottom: 0;
		}
		&::after {
			display: block !important;
			content: "";
			width: 100%;
			height: 100%;
			background: linear-gradient(57deg, #F39B16 30%, #F9C16E 96%);
			transition: all .3s;
			position: absolute;
			top: 0;
			left: 0;
			z-index: -1;
		}
		&:hover {
			background: var(--color-primary-shade);
			&::after {
				opacity: 0;
			}
		}
    }
    #header a.head_btn.mail_btn::before {
        position: relative;
        top: 1px;
		margin-right: 10px;
        margin-bottom: 0;
    }
    #header a.head_btn.mail_btn span {
        font-size: var(--rem14);
    }
    nav#mainNav ul li.current-menu-item a b, nav#mainNav ul li.current-menu-parent a b {
        color: var(--header-color-font);
    }
    nav#mainNav ul li.current-menu-item a:hover b, nav#mainNav ul li.current-menu-parent a:hover b {
        color: var(--header-color-primary);
    }
    body:not(.home) {
        nav#mainNav ul li.current-menu-item a b, nav#mainNav ul li.current-menu-parent a b {
            color: var(--header-color-primary);
        }
    }
    nav#mainNav ul li a:active span, nav#mainNav ul li a:hover span, nav#mainNav ul li.current-menu-item a span, nav#mainNav ul li.current-menu-parent a span {
        color: var(--header-color-primary);
    }
    nav#mainNav ul li a {
        font-size: var(--rem20);
        font-weight: 700;
    }
	nav#mainNav ul li:hover ul.sub-menu {
	background: #fff;
    }
    nav#mainNav ul li a span {
        color: #F39B16;
        font-size: var(--rem14);
        font-weight: 300;
    }
}

/*--------------------------------------------------
	フッター
--------------------------------------------------*/
#footer {
    padding: var(--px60) 0 var(--px40);
}
#footer ul li a {
    color: #fff;
}
#footer .footnav ul > li::before {
	content: "\f054";
	position: absolute;
    color: var(--color-primary);
    font-family: 'FontAwesome';
    font-size: var(--rem12);
	height: 100%;
	background: transparent;
	top: 2px;
}
@media screen and (max-width: 768px) {
    #footer .footnav ul > li::before {
        top: 0px;
        left: -3px;
    }
}
#footer .footnav ul > li::after {
	display: none;
}

#footer .footnav ul > li:first-child {
    padding-right: var(--px30);
}

#footer .footnav ul > li:last-child {
    padding-right: 0;
}
#footer .footnav ul > li:last-child::after {
    display: none;
}
#footer li a, .footeradd, .footertel, #footer li a:hover {
    color: #fff;
}

/*--------------------------------------------------
	CTA
--------------------------------------------------*/
.home {
	#foot-contact_pt01.cta {
		display: none;
	}
}
#foot-contact_pt01 {
	clear: both;
	position: relative;
	backgrou.home {
		#foot-contact_pt01.cta {
			display: none;
		}
	}
}
#foot-contact_pt01 {
	clear: both;
	position: relative;
	background: url(/wp-content/uploads/cta_bg_01.png.webp) no-repeat center / cover;
	/*margin-top: min(calc(180px + (1vw - 19.2px) * 3.8835), 180px);*/
	margin-left: calc(((100vw - 100%) / 2) * -1);
	/*margin-bottom: max(calc(-180px + (1vw - 19.2px) * -3.8835), -180px);*/
	margin-right: calc(((100vw - 100%) / 2) * -1);
	padding: var(--rem72) calc((100vw - 100%) / 2);
}
#foot-contact_pt01::before, #foot-contact_pt01::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 70%;
	top: 0;
	left: 0;
}
#foot-contact_pt01::after {
    display: none;
	/* background: url(/wp-content/uploads/bg_contact.jpg) no-repeat center / cover; */
}
#foot-contact_pt01.front_contact {
	background: none;
}
#foot-contact_pt01 .contactTtl {
	position: relative;
	color: #111;
	font-size: min(calc(2rem + (1vw - 19.2px) * 0.3883), 2rem);
	font-weight: 500;
	letter-spacing: .1rem;
	line-height: 1.6;
	text-align: center;
	margin-bottom: var(--rem48);
	z-index: 20;
}
#foot-contact_pt01 .contactTtl .en_ttl {
	display: block;
	font-size: min(calc(5.2rem + (1vw - 19.2px) * 1.5534), 5.2rem);
	font-family: var(--body-font-family-en);
	font-weight: 500;
	line-height: 1.2;
}
#foot-contact_pt01 .wrapper_content {
    width: 100%;
    max-width: 1600px;
	padding: 0;
	@media screen and (max-width: 768px) {
		width: 94%;
	}
}
#foot-contact_pt01 .f-contact-read {
	position: relative;
	color: #333;
	line-height: 2;
    font-size: var(--rem20);
	font-weight: 500;
	text-align: center;
	letter-spacing: .1rem;
	z-index: 10;
	margin-bottom: min(calc(60px + (1vw - 19.2px) * 1.9417), 60px);
}
#foot-contact_pt01 .f-contact-read .emTxt {
	font-size: calc(2.5rem + (1vw - 19.2px) * 0.4531);
	font-weight: 800;
	margin-bottom: 1em;
}
#foot-contact_pt01 a.f-contact_btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #FFF;
	background: var(--color-primary);
	font-size: min(calc(1.6rem + (1vw - 19.2px) * 0.1294), 1.6rem);
	font-weight: 500;
	text-align: center;
	line-height: 1.6;
	padding: min(calc(20px + (1vw - 19.2px) * 0.5178), 20px) min(calc(30px + (1vw - 19.2px) * 0.9709), 30px);
	border: 1px solid var(--color-primary);
	transition: .3s;
}
#foot-contact_pt01 a.f-contact_btn:hover {
	color: var(--color-primary);
	background: #FFF;
}
#foot-contact_pt01 a.f-contact_btn::after {
	content: none;
}
#foot-contact_pt01 a.f-contact_btn .ico::before {
	display: inline-block;
	font-size: min(calc(3rem + (1vw - 19.2px) * 0.5825), 3rem);
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: .4em;
}
#foot-contact_pt01 a.f-contact_btn.snsBtn .ico {
	display: block;
	font-size: min(calc(3.2rem + (1vw - 19.2px) * 0.4531), 3.2rem);
}
#foot-contact_pt01 a.f-contact_btn .ico {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    flex-direction: column;
	font-size: min(calc(3.2rem + (1vw - 1.92rem) * 0.3883), 3.2rem);
    line-height: 1;
    @media screen and (max-width: 768px) {
        font-size: var(--rem30);
    }
}
#foot-contact_pt01 a.f-contact_btn.snsBtn .ico::before {
	content: '\f095';
}
#foot-contact_pt01 a.f-contact_btn.lineBtn .ico::before {
	content: '\f3c0';
	font-family: 'Font Awesome 6 Brands';
	font-weight: 400;
}
#foot-contact_pt01 a.f-contact_btn.mailBtn .ico::before {
	content: '\f0e0';
    margin-bottom: .4em;
}
#foot-contact_pt01 a.f-contact_btn .note {
    font-size: min(calc(2.2rem + (1vw - 1.92rem) * 0.6472), 2.2rem);
    font-weight: 700;
    letter-spacing: .1em;
}
#foot-contact_pt01 a.f-contact_btn .note > b {
	font-weight: 500;
}
#foot-contact_pt01 a.f-contact_btn .note > b::after {
	content: '：';
}
#foot-contact_pt01 ul.contactbtn_list {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
	z-index: 10;
}
#foot-contact_pt01 ul.contactbtn_list > li {
	width: 100%;
}
#foot-contact_pt01 ul.contactbtn_list > li a.f-contact_btn {
	width: 100%;
	max-width: none;
	min-width: inherit;
	flex-grow: 1;
	padding: var(--px20) min(calc(5.6rem + (1vw - 1.92rem) * 1.4239), 5.6rem) var(--px18) ;
}
#foot-contact_pt01 ul.contactbtn_list:first-child {
	margin-top: 0;
}
#foot-contact_pt01 ul.contactbtn_list:last-child {
	margin-bottom: 0;
}
/*レスポンシブ対応*/
@media print, screen and (min-width: 641px) {
	#foot-contact_pt01 ul.contactbtn_list > li {
		width: calc((100% - var(--px20)) / 2);
		display: flex;
        flex-direction: column;
        align-items: center;
		justify-content: center;	
	}
}
/* CTA調整用 */
#foot-contact_pt01 h2 {
	color: #111 !important;
}
#foot-contact_pt01 .contactbtn_sns a.f-contact_btn.snsBtn {
	color: #fff;
	background: var(--color-secondary-tint);
	border: none;
    padding: var(--px20) min(calc(5.6rem + (1vw - 1.92rem) * 1.4239), 5.6rem) var(--px50);
	transition: all .3s;
    position: relative;
    z-index: 1;
    &::before {
        display: block;
        content: "";
        width: 100%;
        height: 100%;
        background: linear-gradient(97deg, #00B900 5%, #4BD34B 98%);
        border: none;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        transition: all .3s;
    }
    &:hover {
        color: #fff;
        background: var(--color-primary-shade);
        border: none;
        &::before {
            opacity: 0;
        }
    }
}
#foot-contact_pt01::before, #foot-contact_pt01::after {
    display: none;
}
/* #foot-contact_pt01 .contactbtn_sns a.f-contact_btn.snsBtn:hover {
	color: #333;
	background: #fff;
	border: 1px solid #333;
} */
#foot-contact_pt01 .contactbtn_mail a.f-contact_btn.mailBtn {
    font-size: min(calc(3.2rem + (1vw - 1.92rem) * 0.3883), 3.2rem);
    font-weight: 700;
    letter-spacing: .06em;
	background: var(--color-primary-shade);
    border: none;
	transition: all .3s;
    position: relative;
    z-index: 1;
    &::before {
        display: block;
        content: "";
        width: 100%;
        height: 100%;
        background: linear-gradient(57deg, #F39B16 30%, #F9C16E 96%);
        border: none;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        transition: all .3s;
    }
    &:hover {
        color: #fff;
        background: var(--color-primary-shade);
        border: none;
        &::before {
            opacity: 0;
        }
    }
}
#foot-contact_pt01 .contactTtl {
	color: #333;
    font-size: min(calc(4.5rem + (1vw - 1.92rem) * 1.3592), 4.5rem);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .1em;
    &::after {
        display: none;
    }
}
#foot-contact_pt01 .contactbtn_mail {
	font-weight: 700;
}
#foot-contact_pt01 .contactbtn_sns .snsbtn-ttl {
	font-size: var(--rem20);
    font-weight: 500;
}
#foot-contact_pt01 .contactbtn_sns a.f-contact_btn .note {
	font-size: min(calc(2.2rem + (1vw - 1.92rem) * 0.6472), 2.2rem);
    font-weight: 700;
    letter-spacing: .1em;
}
#foot-contact_pt01 .contactbtn_mail .mailbtn-ttl {
	font-size: var(--rem20);
	margin-bottom: 5px;
}
#foot-contact_pt01 .contactbtn_mail .note {
	font-size: min(calc(2.2rem + (1vw - 1.92rem) * 0.5178), 2.2rem);
	margin-top: 5px;
}
#foot-contact_pt01 a.f-contact_btn.snsBtn .ico {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: min(calc(3.2rem + (1vw - 1.92rem) * 0.3883), 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .06em;
    @media screen and (max-width: 768px) {
        font-size: var(--rem30);
    }
}
#foot-contact_pt01 a.f-contact_btn.snsBtn .ico::before {
    display: block;
    content: "";
    width: var(--rem48);
    height: var(--rem48);
    background: url(/wp-content/uploads/icon_line_02.png.webp) no-repeat center / contain;
    margin-right: 0;
    margin-bottom: .4em;
}
@media print, screen and (max-width: 768px)  {
	#foot-contact_pt01 ul.contactbtn_list:last-child {
		gap: min(calc(15px + (1vw - 19.2px) * 0.6472), 15px);
	}
	#foot-contact_pt01 .contactbtn_mail {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
}
#foot-contact_pt01 .foot-contact-bg {
    max-width: 1760px;
    background: rgba(255, 255, 255, .8);
    padding: var(--px100) var(--px120) var(--px80);
    margin: 0 auto;
    @media screen and (max-width: 768px) {
        padding: min(calc(90px + (1vw - 19.2px) * 1.9417), 90px) calc((100vw - 100%) / 2);
    }
    p {
        font-size: var(--rem18);
        font-weight: 700;
        margin-bottom: var(--px50);
    }
}
#foot-contact_pt01 {
    .ttl {
        &.ttl--primary {
            display: flex;
            flex-direction: column;
			position: relative;
            &::after {
				background: var(--color-primary);
                margin: 1.1em 0 0;
				width: 2.1em;
            }
            &:is(.color-white) {
                .ttl--primary__en, .ttl--primary__ja {
                    color: #fff;
                }
            }
            .ttl--primary__en {
                color: #0D4091;
				font-family: var(--font-family02);
                font-size: min(calc(6.5rem + (1vw - 1.92rem) * 1.6181), 6.5rem);
                font-weight: 700;
                line-height: 1;
				margin-bottom: var(--rem12);
				position: relative;
            }
            .ttl--primary__ja {
                font-size: var(--rem30);
                font-weight: 700;
                line-height: 1;
            }
        }
		&:is(.txt_c) {
			.ttl--primary__en {
				justify-content: center;
                &::after {
                    margin: 1.1em auto 0;
                }
			}
			&::after {
				margin: 1.1em auto 0;
			}
		}
		&:is(.color-white) {
			.ttl--primary__en, .ttl--primary__ja {
				color: #fff;
			}
		}
    }
}

/*--------------------------------------------------
	TOPページ
--------------------------------------------------*/
.home, #editor-style {
	#wrapper {
		max-width: 1760px;
        width: 94%;
	}
}
#mainImg {
	@media screen and (max-width: 768px) {
        display: none;
    }
}
.home {
	.fv-mobile {
        display: none;
        @media screen and (max-width: 768px) {
            width: 100vw !important;
            margin-left: calc(((100vw - 100%) / 2) * -1) !important;
	        margin-right: calc(((100vw - 100%) / 2) * -1) !important;
            display: block;
        }
    }
}

/* content01 */
.top_feature {
	padding: var(--rem60) 0 var(--rem72);
	&.bg_wide {
		&::before {
			background: url(/wp-content/uploads/top_feature_01.png.webp) no-repeat center / cover;
		}
	}
	.sec01 {
		background: rgba(0, 41, 106, .8);
        padding: var(--px120) var(--rem20);
        & > p {
            color: #fff;
            font-size: var(--rem48);
            font-weight: 700;
            line-height: 1.6;
            text-align: center;
        }
	}
    .card01_inner {
        max-width: 1480px;
        @media screen and (max-width: 960px) {
            width: 100%;
        }
    }
    .col3_list {
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        gap: var(--rem40);
        &::before, &::after {
            display: none;
        }
        @media screen and (max-width: 1000px) {
            justify-content: center;
            flex-wrap: wrap;
            gap: var(--px40);
        }
        @media screen and (max-width: 768px) {
            gap: var(--px20);
        }
        & > li {
            max-width: 380px;
            aspect-ratio: 1 / 1;
            position: relative;
            @media screen and (max-width: 1023px) {
                width: 42%;
            }
            /* &:first-child, &:nth-child(2) {
                &::after {
                    display: block;
                    content: "";
                    width: 6.4vw;
                    height: 4.7vw;
                    background: url(/wp-content/uploads/icon_cross_01.png.webp) no-repeat center / contain;
                    position: absolute;
                    top: 50%;
                    right: calc((min(calc(9rem + (1vw - 1.92rem) * 2.9126), 9rem)) / -2);
                    transform: translate(100%, -50%);
                }
                @media screen and (max-width: 1000px) {
                    width: calc((100% - var(--px40)) / 2);
                }
            } */
            &.crossIcon {
                display: flex;
                align-items: center;
                justify-content: center;
                background: transparent;
                width: 6.4vw;
                &::before {
                    display: none;
                }
                img {
                    width: 70%;
                }
            }
            /* &::before {
                display: block;
                content: "";
                width: 100%;
                height: 100%;
                background: #00296A;
                border-radius: 50%;
                position: absolute;
                top: var(--px20);
                left: var(--px20);
                z-index: -1;
            }
            @media screen and (max-width: 1000px) {
                width: calc((100% - var(--px40)) / 2);
            }
            @media print, screen and (max-width: 520px) {
                width: 60%;
                &:last-child {
                    margin-bottom: 0;
                }
            } */
            /* .txtarea {
                width: 100%;
                height: 100%;
                .vertical-rl {
                    writing-mode: vertical-rl;
                }
                .fsz-s {
                    font-size: var(--rem36);
                    font-weight: 700;
                    line-height: 1;
                }
                .fsz-m {
                    font-size: min(calc(5rem + (1vw - 1.92rem) * 1.6181), 5rem);
                    font-weight: 700;
                    line-height: 1.3;
                }
                .fsz-l {
                    font-size: min(calc(14rem + (1vw - 1.92rem) * 4.5307), 14rem);
                    font-weight: 700;
                    line-height: 1;
                }
            } */
            /* .top_feature_item {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                color: #fff;
                font-size: min(calc(6.5rem + (1vw - 1.92rem) * 1.6181), 6.5rem);
                font-weight: 900;
                line-height: 1.1;
                width: 100%;
                height: 100%;
                &.top_feature_item--01 {
                    .text-group {
                        display: flex;
                        align-items: baseline;
                    }
                }
            } */
        }
    }
}
/* POST */
.top-news {
	max-width: 1240px;
	padding: var(--px120) 0;
    margin-left: auto;
    margin-right: auto;
}
.postlist {
    .post_text {
        color: #CCC;
        padding: 26px 0;
    }
    li {
        border-bottom: 1px solid #ccc;
    }
}
.postlist .ttls, .postlist .date {
    color: var(--color-font);
    font-size: 100%;
}
.post .time, .postlist .time, .post2b .time, .post4b .time {
    background: #00296A;

}
.post .time, .postlist .time, .post2b .time, .post4b .time {
	line-height: 1.2 !important;
}
#top-news .linkBtn-mod1 {
    margin: 0 auto;
}

/*--------------------------------------------------
	下層ページ
--------------------------------------------------*/
body:not(.home) {
    .post {
        .page-ttl {
            &.page-ttl--primary {
                display: flex;
                flex-direction: column;
                margin-bottom: var(--rem72);
                &::after {
                    display: none;
                }
                .page-ttl--primary__en {
                    color: #1E90FF;
                    font-family: var(--font-family02);
                    font-size: var(--rem40);
                    font-weight: 700;
                    line-height: 1.2;
                }
                .page-ttl--primary__ja {
                    font-size: var(--rem20);
                    font-weight: 700;
                }
            }
        }
        h3 {
            display: flex;
            align-items: center;
            font-size: var(--rem30);
            font-weight: 700;
            border: none;
            padding: 0 0 0 var(--px80);
            margin-bottom: var(--rem30);
            position: relative;
            &::before {
                display: block;
                content: "";
                width: var(--px60);
                height: 6px;
                background: #00296A;
                margin-top: 4px;
                position: absolute;
                left: 0;
            }
        }
        h4 {
            font-size: var(--rem30);
            font-weight: 700;
            line-height: 1.2;
            padding-left: 0;
            margin-top: var(--rem30);
            margin-bottom: var(--rem12);
            &::before {
                display: none;
            }            
        }
        p {
            font-size: var(--rem20);
            line-height: 1.7;
            letter-spacing: 0;
        }
        p + p {
            margin-top: var(--px24);
        }
        ul {
            li {
                font-size: var(--rem20);
            }
        }
        table th, table td {
            font-size: var(--rem20);
            padding: min(calc(3.2rem + (1vw - 1.92rem) * 0.7120), 3.2rem) var(--rem24);
            line-height: 1.7;
        }
        table th {
            font-weight: 700;
            background: #C9E4FF;
        }
        .color-skyblue {
            color: #1E90FF !important;
            &::before, &::after {
                color: #1E90FF !important;
                background-color: #1E90FF !important;
            }
        }
        .emphasis {
            font-size: var(--rem24);
            font-weight: 700;
            line-height: 1.5;
        }
        .decoration {
            &:is(.decoration--mod1) {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                font-family: var(--font-family03);
                font-size: var(--rem30);
                font-weight: 700;
                line-height: 1.23;
                &::after {
                    display: block;
                    content: "";
                    width: 1px;
                    height: 72px;
                    margin-top: var(--rem30);
                    background: #000;
                }
            }
        }
        .header-match {
            max-width: 1070px;
            margin-left: var(--px80);
            @media screen and (max-width: 768px) {
                margin-left: 0px;
            }
        }
        .top-bottom-border {
            max-width: 956px;
            padding: var(--rem30) 0 var(--rem40);
            margin-left: auto;
            margin-right: auto;
            border-top: 1px solid #ACACAC;
            border-bottom: 1px solid #ACACAC;
        }
        .contact-box {
            max-width: 736px;
            margin-left: auto;
            margin-right: auto;
            background: #06C755;
            border-radius: 10px;
            padding: var(--rem40) var(--px40);
            .contact-box__ttl {
                color: #fff;
                font-size: var(--rem20);
                font-weight: 700;
            }
            .contact-box__link {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                max-width: 432px;
                width: 100%;
                background: #fff;
                border: 1px solid #fff;
                border-radius: 50vw;
                padding: var(--rem16) var(--px20);
                margin: 10px auto 0;
                color: #06C755;
                font-size: var(--rem20);
                font-weight: 700;
                transition: all .3s;
                &::before {
                    display: block;
                    content: "";
                    width: 20px;
                    height: 20px;
                    background: url(/wp-content/uploads/icon_line_03.png.webp) no-repeat center / contain;
                    transition: all .3s;
                }
                &:hover {
                    color: #fff;
                    background: #06C755;
                    border: 1px solid #fff;
                    &::before {
                        background: url(/wp-content/uploads/icon_line_03_white.png.webp) no-repeat center / contain;
                    }
                }
            }
        }
    }
    #foot-contact_pt01 {
        padding-bottom: var(--px30);
    }

/*================================================
				　　会社概要
================================================*/
    #page_company {
        .top-bottom-border {
            p {
                font-family: var(--font-family03);
                font-size: var(--rem30);
                font-weight: 700;
                line-height: 1.8;
            }
        }
    }
}

/*================================================
				事業概要
================================================*/

@media screen and (max-width: 768px) {
    .page-id-124 {
        #thumbImg img, header#h1Header img {
            left: 0;
        }
    }
}

/*--flow02--------------------------------------------*/

ul.flowlist02 {
	counter-reset: flow_list;
}
ul.flowlist02 > li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	gap: min(calc(40px + (1vw - 19.2px) * 1.6181), 40px);
	width: 100%;
	padding: 60px;
	border-radius: 10px;
	background: #C9E4FF;
	position: relative;
    @media screen and (max-width: 768px) {
padding: 60px 30px;
    }
}
.flowlist02 > li:not(:last-child) {
	margin-bottom: 60px;
}
.flowlist02 .flow_img {
	width: 35%;
}
.post .flowlist02 > li > dl {
	width: calc(65% - min(calc(40px + (1vw - 19.2px) * 1.6181), 40px));
	line-height: 1.8;
}
.flowlist02 > li:not(:last-child) dl::before,
.flowlist02 > li:not(:last-child) dl::after {
	content: "";
	border: solid transparent;
	position: absolute;
	top: calc(100% + 20px);
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.flowlist02 > li:not(:last-child) dl::before {
	border-width: 22px;
	border-top-color: #00296A;
}
.flowlist02 > li:not(:last-child) dl::after {
	border-width: 20px;
}
.post .flowlist02 > li > dl dt {
	position: relative;
	display: flex;
	align-items: center;
	font-size: var(--rem30);
	font-weight: 600;
    line-height: 1.2;
	padding: 0 0 1rem 0;
	margin-bottom: min(calc(30px + (1vw - 19.2px) * 0.9709), 30px);
	border-bottom: dotted 1px;
}
.flowlist02 > li dl dt .icon:before {
	content: counter(flow_list, decimal);
	counter-increment: flow_list;
	line-height: 1;
	color: #fff;
	background: var(--color-primary-shade);
    border-radius: 10px;
	padding: 5px 10px;
	margin-right: 10px;
	position: relative;
	z-index: 100;
	width: 50px;
    display: block;
    text-align: center;
}
.post .flowlist02 > li > dl dd {
	padding: 0;
    line-height: 2.25;
}
@media print, screen and (max-width: 768px) {
	.post .flowlist02 > li > dl, .flowlist02 .flow_img {
		width: 100%;
	}
	.flow_img::before {
		padding-top: calc(360px + (1vw - 7.68px) * 35.6234);
	}
}

.post {
    .service-card {
        display: flex;
        flex-wrap: nowrap;
        gap: var(--px18);
        margin-top: var(--rem120);
        @media screen and (max-width: 768px) {
            flex-direction: column;
            flex-wrap: wrap;
            gap: var(--px30);
        }
        .service-card__item {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            width: 50%;
            border: 1px solid #B2B2B2;
            padding: var(--rem30) 15px var(--rem40);
            box-shadow: 4px 4px 4px rgba(0, 0, 0, .25);
            @media screen and (max-width: 768px) {
                width: 100%;
            }
            &:last-child {
                .service-card__lead {
                    &:has(img) {
                       width: 76%;
                    }
                }
            }
        }
        .service-card__ttl {
            column-gap: var(--rem24);
            margin-left: 0;
            margin-right: 0;
            margin-bottom: 0;
            @media screen and (max-width: 1240px) {
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                &::before {
                    margin-top: 0.75em;
                }
            }
        }
        .service-card__subttl {
            max-width: 218px;
			max-width: fit-content;
            width: 100%;
            color: #fff;
            font-size: var(--rem18);
            font-weight: 500;
            text-align: center;
            background: var(--color-primary-shade);
            border-radius: 50vh;
            padding: 7px var(--rem16);
            @media screen and (max-width: 1240px) {
                position: relative;
                left: calc(var(--px80) * -1);
            }
        }
        .service-card__catch {
            margin-bottom: var(--rem14);
        }
        .service-card__lead {
			flex-grow: 1;
            font-size: var(--rem20);
            font-weight: 700;
            line-height: 1.75;
            margin-top: var(--rem24);
            margin-bottom: var(--rem40);
            &:has(img) {
                width: 76%;
                margin-left: auto;
                margin-right: auto;
            }
        }
        .service-card__list {
            display: flex;
            flex-direction: column;
        }
        .service-card__list-item {
            flex-grow: 1;
            letter-spacing: 0;
            line-height: 1.2;
            border: 1px solid #EBEBEB;
            padding: min(calc(3.4rem + (1vw - 1.92rem) * 0.7767), 3.4rem) var(--rem14);
            & + & {
                margin-top: 3px;
            }
        }
    }
}

/*================================================
				お問い合わせ
================================================*/
.wpcf7-form {
    .must {
        background: var(--color-primary);
    }
    table {
        th {
            background: transparent !important;
			@media screen and (max-width: 640px) {
    			background: #f2f2f2 !important;
			}
        }
    }
    .linkBtn-mod1 {
        padding: 0;
        &::after {
            display: none;
        }
        span {
            display: block;
            width: 100%;
        }
    }
    .linkBtn {
        padding: 0;
        &:hover {
            background: var(--color-primary-shade);
            border-color: var(--color-primary-shade);
            &::after {
                border-color: #fff;
            }
        }
    }
    .wpcf7-form-control.wpcf7-submit.has-spinner {
        max-width: 230px;
        width: 100%;
        padding: var(--rem20) 30px var(--rem20) 20px;
        background: transparent;
        position: relative;
    }
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}
@media only screen and (max-width: 640px) {
    .wpcf7-form .wpcf7-date {
        text-align: left;
        appearance: none;
        min-width: 100%;
        height: 30px;
    }
    input[type="date"]::-webkit-date-and-time-value {
        text-align: left;
      }
}

@media print, screen and (max-width: 1024px) {
	.flowlist02 > li dl dt .icon:before{
		width: 30px;
		display: block;
	    font-size: 18px;
		padding: 10px;
	}
	span.icon {
	    width: 60px;
	}
}

/* 追加修正260206 */
/*---------style03-------------*/
  
.card01_list.cardstyle03 > li {
    padding: 16px;
    background: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .2);
}
  
/*---------txtstyle02 -----------*/
  
.post .txtstyle02, .txtstyle02 {
  font-family: var(--font-family02);
  font-size: var(--rem24);
  font-weight: 600;
  text-align: center;
  margin: var(--rem16) auto;
  background: transparent;
    color: var(--font-color);
    line-height: 1.4;
  padding: 0;
}
.post .txtstyle02:before, .post .txtstyle02:after, .txtstyle02:before, .txtstyle02:after {
  content: none;
}

/*---------txtstyle002 -----------*/
  
.post .txtstyle002, .txtstyle002 {
    font-family: var(--font-family02);
    font-size: var(--rem36)!important;
    font-weight: 600;
    text-align: center;
    margin: var(--rem24) auto;
    background: transparent;
    color: var(--font-color);
    line-height: 1.4;
    padding: 0;
}
.post .txtstyle002:before, .post .txtstyle002:after, .txtstyle002:before, .txtstyle002:after {
  content: none;
}
