@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+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* 変数 */
:root {
    --color-background: #fff;
    --color-background02: #FBFBFB;
    --color-font: #252524;
    --color-primary: #004AAD;
    --color-primary-shade: #A4D7E5;
    --color-primary-tint: linear-gradient(-90deg,rgba(214, 242, 238, 1) 0%, rgba(164, 215, 229, 1) 100%);
    --color-secondary: #06C755;
    --color-secondary-tint: #eee;
    --color-border: #ccc;
    --color-table-border: #ccc;

    --body-font-size: min(calc(1.6rem + (1vw - 19.2px) * 0.1294), 1.6rem);
    --body-font-family: 'Noto Sans JP', sans-serif;
    --font-family01: 'Noto Sans JP', sans-serif;
    --font-family02: 'Montserrat', 'Noto Sans JP', sans-serif;


    --content-max-width: 1240px;

    --header-background: #fff;
    --header-color-font: #252524;
    --header-color-primary: #004AAD;
    --header-color-primary-tint: #004AAD;

    --footer-background: linear-gradient(-90deg,rgba(214, 242, 238, 1) 0%, rgba(164, 215, 229, 1) 100%);
    --footer-color-font: #252524;
    --footer-color-primary: #252524;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    font-size: var(--body-font-size);
    font-family: var(--body-font-family);
    color: var(--color-font);
    font-size: var(--px16);
}
.pad_anchor{
    display: block;
    margin-top: -100px !important;
    padding-top: 100px !important;
}

/*--メディアクエリ--------------------------------------------*/
@media print, screen and (min-width: 1024px) {}
@media print, screen and (max-width: 1023px) {}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}


/*------------------------------------------------------
ベース修正
------------------------------------------------------*/
#front_top_content, #front_bottom_content {
    background: #fff;
}
#front-sectionPost {
    width: 90%;
}
.postlist .post_text {
    padding: 20px 0;
}
/*------------------------------------------------------
幅フル100%
------------------------------------------------------*/
.widecolor {
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
	padding: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px) calc((100vw - 100%) / 2) min(calc(150px + (1vw - 19.2px) * 3.2362), 150px);
	margin-top: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px);/* 120-80px (1920-375) */
	background: var(--color-background01);
}
.widearea {
	margin-right: calc(((100vw - 100%) / 2) * -1);
	margin-left: calc(((100vw - 100%) / 2) * -1);
}

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

.post .col2_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 .col2_list > li {
    width: 49%;
	margin-bottom: 2%;
}
@media print, screen and (max-width: 600px) {
	.post .col2_list > li {
		width: 100%;
	}
	.post .col2_list > li:last-child {
		margin-bottom: 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%;
}
.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%;
        margin-bottom: 8%;
	}
	.post .col3_list::before, .post .col3_list:after {
		content: none;
	}
}
@media print, screen and (max-width: 600px) {
	.post .col3_list > li {
		width: 100%;
	}
	.post .col3_list > li:last-child {
		margin-bottom: 0;
	}
}

/*---------col4-----------*/

.post .col4_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 .col4_list > li {
    width: 24%;
	margin-bottom: 1.5%
}
.post .col4_list::before {
    content: "";
    display: block;
    width: 24%;
    height: 0;
    order: 1;
}
.post .col4_list:after {
    content: "";
    display: block;
    width: 24%;
    height: 0;
}
@media print, screen and (max-width: 1240px) {
	.post .col4_list > li, .post .col4_list::before, .post .col4_list:after {
		width: 32%;
		margin-bottom: 2%;
	}
}
@media print, screen and (max-width: 768px) {
	.post .col4_list > li {
		width: 49%;
	}
	.post .col4_list::before, .post .col4_list:after {
		content: none;
	}
}
@media print, screen and (max-width: 600px) {
	.post .col4_list > li {
		width: 100%;
	}
	.post .col4_list > li:last-child {
		margin-bottom: 0;
	}
}

/*------------------------------------------------------
Hover
------------------------------------------------------*/
a:hover {
    opacity: .7;
    cursor: pointer;
}

/*------------------------------------------------------
gap
------------------------------------------------------*/
/* 縦 */
.col_gap2 {
    display: flex;
    flex-direction: column;
    gap: var(--px20);
}
.col_gap6 {
    display: flex;
    flex-direction: column;
    gap: var(--px60);
}
.col_gap8 {
    display: flex;
    flex-direction: column;
    gap: var(--px80);
}
.col_gap10 {
    display: flex;
    flex-direction: column;
    gap: var(--px100);
}

/* 横 */
.gap8 {
    gap: var(--px80) !important;
}

/*------------------------------------------------------
タイトル・テキスト
------------------------------------------------------*/
/* 色 */
.color_w {
    color: #fff !important;
}

/* 配列 */
.txt_c_l {
    text-align: center;
}
@media print, screen and (max-width: 768px) {
    .txt_c_l {
        text-align: left;
    }
}

/* テキスト */
.post p, p {
    font-size: var(--rem16);
    line-height: 1.75;
}
.post .read p, .read p {
    margin-bottom: 1.5em;
}
.post .read p:last-child, .read p:last-child {
    margin-bottom: 0;
}

/* H2 */
.post h2, h2 {
    font-size: var(--rem36);
    font-weight: 600;
    color: var(--color-font);
    &::after {
        content: '';
        position: relative;
        visibility: visible;
        display: block;
        width: 2em;
        height: 2px;
        background: var(--color-primary);
        margin: 0.4em auto 0;
    }
    &.txt_l {
        &::after {
            margin: 0.4em 0 0;
        }
    }
}

h1.title.top-loop,
h1.title.bottom-loop,
.post h2.main_ttl, h2.main_ttl {
    margin: 0 auto var(--px40);
    .en {
        font-family: var(--font-family02);
        font-weight: 700;
        color: var(--color-primary);
        font-size: var(--rem30);
        line-height: 1;
    }
    .jp {
        font-size: var(--rem40w);
        color: var(--color-font);
        display: block;
        line-height: 1.25;
    }
    &::after {
        content: '';
        position: relative;
        visibility: visible;
        display: block;
        width: 2em;
        height: 2px;
        background: var(--color-primary);
        margin: 0.4em auto 0;
    }
    &.txt_l {
        &::after {
        margin: 0.6em 0 0;
        }
    }
    &.bg_ttl {
        background: url(/wp-content/uploads/bg_ttl01.jpg) no-repeat center / cover;
        padding: var(--px120) var(--px20);
        .en {
            color: #fff;
        }
        .jp {
            color: #fff;
        }
        &::after {
            background: #fff;
        }
    }
}

/* H3 */
.post h3, h3 {
    color: var(--color-font);
    font-size: var(--rem24w);
    font-weight: 600;
    padding: 0 0 10px 0;
    margin: 0 0 var(--px30);
    border-bottom: 1px solid var(--color-primary);
}
.post h3.catch_ttl, h3.catch_ttl {
    text-align: center;
    border: none;
    padding: 0;
    margin: 0 auto var(--px30);
}
.post h3.sub_ttl, h3.sub_ttl {
    font-size: var(--rem20w);
    border: none;
    padding: 0;
    margin: 0 auto var(--px30);
}

/*------------------------------------------------------
リスト
------------------------------------------------------*/
/* ulリスト */
.post ul.list {
    list-style: none; /* デフォルトのマーカーを消す */
    padding-left: 0;
}
.post ul.list li {
    position: relative;
    padding-left: 1em; /* マーカー分のスペース */
    line-height: 1.45;
    margin-bottom: .7em;
}
.post ul.list li::before {
    content: "•"; /* 任意のマーカー */
    position: absolute;
    left: 0;
    color: var(--color-font);
}
.post ul.list li:last-child {
    margin-bottom: 0;
}

.post ul.box_list h3 {
    text-align: center;
    font-size: var(--rem20);
    margin: var(--px30) auto var(--px20);
    padding: 0;
    border: none;
}

/* olリスト */
.post ol.num  {
    margin: 0;
    padding: 0
}
.post ol.num li {
    list-style: none;
    padding-left: 1.3em;
    text-indent: -1.3em;
    margin-bottom: .7em;
    line-height: 1.55;
}
.post ol.num li:last-child {
    margin-bottom: 0;
}

/*------------------------------------------------------
Btn
------------------------------------------------------*/
.linkBtn, .post .linkBtn, a.linkBtn, .post .subimitarea .linkBtn input[type="submit"] {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 240px;
    font-size: var(--rem16);
    color: #fff;
    line-height: 1.8;
    text-align: center;
    background: var(--color-primary);
    font-weight: 600;
    padding: var(--rem16) 30px var(--rem16) 20px;
    margin: 0 auto;
    border: 1px solid var(--color-primary);
    border-radius: 50vh;
    transition: all .3s;
}
.post .linkBtn:hover, .linkBtn:hover, a.linkBtn:hover, .post .subimitarea .linkBtn input[type="submit"]:hover {
    color: var(--color-primary);
    background: #fff;
    border-color: var(--color-primary);
    box-shadow: 3px 4px 16px rgba(0, 0, 0, .1);
}
.post .linkBtn::after, .linkBtn::after, a.linkBtn::after {
    border-color: #fff;
}
.post .linkBtn:hover::after, .linkBtn:hover::after, a.linkBtn:hover::after {
    border-color: var(--color-primary);
}
.subimitarea > .linkBtn {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}
.post .subimitarea .linkBtn input[type="submit"] {
    margin-top: 0;
}

/*------------------------------------------------------
画像
------------------------------------------------------*/


/*------------------------------------------------------
table
------------------------------------------------------*/
.post table th, .post table td {
    padding: 16px;
}
.post table th {
    color: #fff;
    background: var(--color-primary);
}


/*------------------------------------------------------
inner
------------------------------------------------------*/
.inner {
    max-width: var(--content-max-width);
    width: 90%;
    margin: 0 auto;
}

/*------------------------------------------------------
Header
------------------------------------------------------*/
#header a.head_btn.tel_btn::before {
    display: none;
}

/* ナビゲーション */
nav#mainNav ul li a {
    padding: var(--px20);
}

/* ボタン共通 */
#header a.head_btn span {
    display: block;
}

/* 電話ボタン */
#header a.head_btn.tel_btn {
    background: #fff;
    color: var(--color-font);
    font-family: var(--font-family01);
    font-weight: 600;
    font-size: 2.4rem;
    position: relative;
}
#header a.head_btn.tel_btn::before {
    content: "";
    display: block;
    width: 1px;
    height: 60px;
    background: var(--color-font);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0,-50%);
}
#header a.head_btn.tel_btn .tel_icon::before {
    content: '\f095';
    display: inline-block;
    font-family: 'FontAwesome';
    font-size: 2.0rem;
    font-weight: 400;
    line-height: 1;
    padding-right: 6px;
}
#header a.head_btn .tel_text-sub {
    font-size: 1.2rem;
}
#header a.head_btn.tel_btn:hover {
    opacity: .7;
}

nav#mainNav ul li li a:hover, nav#mainNav ul li li.current-menu-item a, nav#mainNav ul li li.current-menu-item li a:hover, nav#mainNav ul li.current-menu-item li a:hover, nav#mainNav ul li.current-menu-ancestor li.current-menu-item a, nav#mainNav ul li.current-menu-ancestor li a:hover {
    background: var(--color-secondary);
    color: #fff;
}

/* SP */
@media print, screen and (max-width: 1023px) {
	nav#mainNav ul li a {
		padding: 16px;
	}
	nav#mainNav ul li a {
		border-bottom: 1px solid var(--color-border);
	}
}

/*------------------------------------------------------
Footer
------------------------------------------------------*/
#footer .footer__logo img {
    width: 90%;
}

/*------------------------------------------------------
CTA
------------------------------------------------------*/
body.home .cta01.foot_bottom {
    display: none;
}
.cta01 {
	background: url(/wp-content/uploads/bg_cta.jpg) no-repeat center / cover;
    padding: var(--px120) 0;
	position: relative;
	z-index: 0;
}
.cta01 .cta01_wrap {
	max-width: 1240px;
    width: 90%;
    margin: 0 auto;
}
.cta01 .ctabtnlist {
    justify-content: space-between;
    margin: var(--px50) auto 0 auto;
}
.cta01 .ctabtnlist li {
    width: calc(100% / 3);
    margin: 0;
    padding: 0;
    line-height: 1;
    display: flex;
}
.cta01 a.item {
	position: relative;
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--px30) 0;
    text-align: center;
    box-sizing: border-box;
    color: #111;
    border-radius: 0;
    transition: all ease .15s;
}
.cta01 a.item:hover{
	opacity: 0.8;
}
@media print, screen and (max-width: 768px) {
	.cta01 .ctabtnlist li, .cta01 .ctabtnlist a.item {
		width: 100%;
	}
	.cta01 .ctabtnlist li + li {
		margin-top: 1rem;
	}
}

.cta01 .cta01_wrap h2.main_ttl {
    .en {
        color: #fff !important;
    }
    .jp {
        color: #fff !important;
    }
    &::after {
        background: #fff !important;
    }
}

/*ボタン共通パーツ*/
.cta01 .btnttl {
	display: block;
	font-weight: bold;
	margin-bottom: 1rem;
}
.cta01 .infotxt {
	font-size: var(--rem16);
	font-weight: 600;
}
/*電話ボタン*/
.cta01 .telnum {
	font-size: var(--rem36);
    font-weight: 700;
	margin-bottom: 1rem;
}
.cta01 .telbtn .btnttl {
	font-size: var(--rem20);
}
.cta01 a.telbtn {
    background: var(--color-primary-shade);
	color: var(--color-primary);
}
/*メールボタン*/
.cta01 .mailbtn .btnttl {
	font-size: var(--rem24);
}
.cta01 a.mailbtn {
    background: var(--color-primary);
	color: #fff;
}
/*LINEボタン*/
.cta01 a.linebtn {
    background: var(--color-secondary);
    color: #fff;
}
.cta01 .linebtn .btnttl {
    font-size: var(--rem24);
    margin-bottom: 0;
}

/*ボタンアイコン*/
.cta01 .telnum::before, .cta01 .mailbtn .btnttl::before, .cta01 .linebtn .btnttl::before {
	content: '';
	display: inline-block;
	font-family: 'Font Awesome 5 Free', 'FontAwesome';
	font-weight: 900;
	margin-right: 1rem;
}
.cta01 .telnum::before {
	content: '\f3cd';
}
.cta01 .mailbtn .btnttl::before {
	content: '\f0e0';
}
.cta01 .linebtn .btnttl::before {
    content: '\f3c0';
	font-weight: 400;
}

/*------------------------------------------------------
サイトマップ
------------------------------------------------------*/
.post ul#sitemap_list li {
	margin-bottom: min(calc(2.0rem + (1vw - 1.92rem) * 0.2589) ,20px);
	padding-left: 0;
	padding-bottom: min(calc(2.0rem + (1vw - 1.92rem) * 0.2589) ,20px);
	border-bottom: 1px solid var(--color-border);
}

/*------------------------------------------------------
お問い合わせ
------------------------------------------------------*/
.post .wpcf7 table {
    border: none;
}
.post .wpcf7 table th,
.post .wpcf7 table td {
    padding: 20px 16px;
    border: none;
    border-top: 1px solid var(--color-table-border);
    border-bottom: 1px solid var(--color-table-border);
}
.post .wpcf7 table th {
    width: 30%;
    color: var(--color-font);
    background: #fff;
    line-height: 1.25;
    vertical-align: middle;
}
.wpcf7-form .must {
    background: var(--color-primary);
}

.post p.contact_message, p.contact_message {
    font-size: var(--rem16);
    margin-bottom: var(--px60);
    line-height: 2.4;
}

@media print, screen and (max-width: 640px) {
    .post .wpcf7 table th {
            border-right: none;
            border-bottom: none;
            border-top: none;
            padding-bottom: 0;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            justify-content: space-between;
    }
    .post .wpcf7 table td {
            border-top: none;
            padding-top: 5px;
    }
    .post .wpcf7 table tr:first-child {
            border-top: 1px solid var(--color-table-border);
    }
}

/* 完了 */
.post h2.thanks, h2.thanks {
    font-size: var(--rem30);
    margin: 0 0 var(--px30);
    text-align: left;
}
.post h2.thanks::after, h2.thanks::after {
    content: none;
}
.post .thanks_btn {
    margin: var(--px80) auto 0 !important;
    display: block;
}

/*------------------------------------------------------
よくあるご質問
------------------------------------------------------*/
.qa_list {
	cursor: pointer;
}
.qa_list .qa_list_inner dt {
	position: relative;
	font-weight: normal;
	margin: 1rem 0 0 0;
	display: flex;
	align-items: stretch;
	padding: 0rem 1rem 0rem 0rem;
	background: #ffffff;
	border: 1px solid #cccccc;
}
.qa_list .qa_list_inner dd .ans_flex {
	position: relative;
	font-weight: normal;
	margin: 0;
	display: flex;
	align-items: stretch;
	padding: 0;
	background: #ffffff;
}
.qa_list .qa_list_inner .a_ico {
	color: var(--color-primary);
	background: #fff;
	line-height: 1.0;
	padding: 1rem 1rem 1rem 1rem;
	font-size: 2.2rem;
	border-right: 1px solid #cccccc;
	width: 100%;
	text-align: center;
	max-width: 90px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-family02);
    line-height: 1;
}
.qa_list .qa_list_inner .q_ico {
	background: var(--color-primary);
    color: #fff;
	line-height: 1.0;
	padding: 1rem 1rem 1rem 1rem;
	font-size: 2.2rem;
	font-weight: bold;
	width: 100%;
	text-align: center;
	max-width: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-family02);
    line-height: 1;
	border-right: 1px solid #cccccc;
}
.qa_list .qa_list_inner .q_desc, .qa_list .qa_list_inner .a_desc {
	padding: 1.5rem 1.5rem 1.5rem 2rem;
	line-height: 1.7;
}
.qa_list .qa_list_inner .a_desc {
  line-height: 1.8;
  width: 100%;
}
.qa_list .qa_list_inner dt:after {
  content: '';
  position: absolute;
  top: 46%;
  right: 3rem;
  width: 12px;
  height: 12px;
  border-right: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}
.qa_list .qa_list_inner .active:after {
  top: 43%;
  right: 2rem;
  -webkit-transform: rotate(-135deg) translateY(-50%);
  transform: rotate(-135deg) translateY(-50%);
}
.qa_list .qa_list_inner dd {
	display: none;
	position: relative;
	padding: 0;
	margin: 0 0 1rem 0;
	border: 1px solid #cccccc;
	border-top: 0;
}
@media only screen and (max-width: 959px) {
	.qa_list .qa_list_inner {
		margin-bottom: 8rem;
	}
}
@media only screen and (max-width: 768px) {
	.qa_list .qa_list_inner .q_desc, .qa_list .qa_list_inner .a_desc {
		padding: 0.5rem 1.6rem 0.5rem 1rem;
	}
	.qa_list .qa_list_inner dt {
		padding: 0rem 1rem 0rem 0rem;
	}
	.qa_list .qa_list_inner .a_ico, .qa_list .qa_list_inner .q_ico {
		max-width: 50px;
		padding: 1.2rem 1.0rem;
	}
	.qa_list .qa_list_inner dt:after {
		right: 1.5rem;
		width: 6px;
		height: 6px;
	}
	.qa_list .qa_list_inner .active:after {
		right: 1.0rem;
	}
}
@media only screen and (max-width: 559px) {
	.qa_list .qa_list_inner dd {
		font-size: 1.4rem;
	}
	.qa_list .qa_list_inner {
		margin-bottom: 6rem;
	}
	.qa_list .qa_list_inner dt {
		font-size: 1.4rem;
	}
}

/*------------------------------------------------------
ご利用の流れ
------------------------------------------------------*/
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: var(--px40);
	background: var(--color-background02);
	position: relative;
}
.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: var(--color-primary);
}
.flowlist02 > li:not(:last-child) dl::after {
	border-width: 20px;
}
.post .flowlist02 > li > dl dt {
	position: relative;
	display: flex;
	align-items: center;
    line-height: 1.35;
	font-size: var(--rem24w);
	font-weight: 600;
	padding: 0 0 1rem 0;
	margin-bottom: min(calc(30px + (1vw - 19.2px) * 0.9709), 30px);
	border-bottom: dotted 1px var(--color-primary);
}
.flowlist02 > li dl dt .icon:before {
	content: counter(flow_list, decimal-leading-zero);
	counter-increment: flow_list;
	line-height: 1;
	color: #fff;
    line-height: 1;
    font-family: var(--font-family02);
	background: var(--color-primary);
	padding: 5px 10px;
	margin-right: 10px;
	position: relative;
    text-align: center;
	z-index: 100;
    display: block;
}
.post .flowlist02 > li > dl dd {
	padding: 0;
}
@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);
	}
    .flowlist02 > li dl dt .icon:before {
        padding: 5px;
        width: 25px;
    }
}


/*------------------------------------------------------
TOP
------------------------------------------------------*/
.sec01 {
    background: url(/wp-content/uploads/bg_greet.png) no-repeat center / cover;
}
.sec03 {
    background: var(--color-primary-tint);
    padding: var(--px120) 0;
}



.column06 {
	position: relative;
}
.column06_wrap {
	position: relative;
    width: 100%;
    margin: 0 auto;
	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: center;
	z-index: 20;
}
.column06 .imgarea {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	width: 60%;
}
.column06 .imgarea img {
	object-fit: cover;
    width: 100%;
    height: 100%;
}
.column06 .txtarea {
	position: relative;
	width: 45%;
	display: flex;
    align-items: center;
    justify-content: center;
	background: #fff;
	padding: var(--px80) var(--px40);
	margin: 0 auto -70px -5%;
	z-index: 10;
}
.column06 .txtarea .txtinner {
    max-width: 650px;
    width: 90%;
}
.column06_wrap + .column06_wrap {
	margin-top: var(--px80);
}

@media print, screen and (min-width: 1024px) {
	/*左右反転*/
	.column06_wrap.rev {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.column06_wrap.rev .txtarea {
		margin: 0 -5% -70px auto;
	}
}
@media print, screen and (max-width: 1023px) {
	.column06_wrap.rev {
		flex-direction: row;
	}
	.column06 .imgarea, .column06 .txtarea {
		width: 96%;
	}
	.column06 .txtarea {
		margin: calc(-60px + (1vw - 10.23px) * -3.8580) 0 0 auto;
	}
}

@media print, screen and (max-width: 768px) {
  .column06 .txtarea {
    padding: var(--px80) 5%;
    justify-content: flex-start;
  }
}


.column01 {
	position: relative;
    margin-top: var(--px120);
}
.column01_wrap {
	position: relative;
	max-width: var(--content-max-width);
	width: 90%;
    margin: 0 auto;
	z-index: 1;
}
.column01 .txtarea {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--px80) var(--px40);
    margin: 0;
}
.column01 .txtarea .txtinner {
    max-width: 666px;
}
.column01 .imgarea {
    overflow: hidden;
    line-height: 0;
    margin: 0;
}
.column01 .imgarea img {
	width: 100%;
    height: 100%;
	object-fit: cover;
}

@media print, screen and (max-width: 768px) {
  .column01 .txtarea {
    padding: var(--px80) 0;
    justify-content: flex-start;
  }
}


.post ul.card {
    display: flex;
    gap: var(--rem20);
    width: 90%;
    max-width: var(--content-max-width);
    margin: 0 auto;
}
.post ul.card .card_item {
    width: calc(100% / 2);
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    .post ul.card {
        flex-direction: column;
    }
    .post ul.card .card_item {
        width: 100%;
    }
}
.post ul.card a.card_link {
    display: block;
    padding: min(calc(32rem + (1vw - 1.92rem) * 5.1780) ,320px) var(--px40) var(--px50);
    background: rgba(0, 0, 0, .5);
}
.post ul.card a.card_link:hover .card_figure img {
    opacity: 1;
    transform: scale(1.2);
}
.post ul.card .card_textarea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #fff;
    &::after {
        content: "";
        display: block;
        background: url(/wp-content/uploads/top_arrow.svg) no-repeat center / contain;
        width: min(calc(7.4rem + (1vw - 1.92rem) * 2.7184) ,74px);
        height: min(calc(7.4rem + (1vw - 1.92rem) * 2.7184) ,74px);
    }
}
.post ul.card .card_textarea h2 {
    margin: 0;
    color: #fff;
    padding: 0 0 10px 0;
    text-align: left;

}
.post ul.card .card_textarea h2 .en {
    display: block;
    font-size: var(--rem20w);
    font-family: var(--font-family02);
    font-weight: 500;
}
.post ul.card .card_textarea h2 .jp {
    display: block;
    font-size: var(--rem40);
    font-weight: 600;
}
.post ul.card .card_textarea h2::after {
    content: none;
}
.post ul.card .card_figure {
    position: relative;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .3s;
}
.post ul.card .card_figure::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transition: all .3s;
}
.post ul.card .card_figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*================================================
				　採用情報　260306
================================================*/
/*---------txtstyle01-----------*/
  
.post .txtstyle01, .txtstyle01 {
    font-family: var(--font-family02);
    font-size: var(--rem24);
    font-weight: 600;
    text-align: center;
    color: var(--color-primary);
    line-height: 1.4;
    overflow-wrap: break-word;
    padding: 0;
    margin: var(--rem42) auto var(--rem12);
    border: none;
    background: transparent;
}
.post .txtstyle01:before, .post .txtstyle01:after, .txtstyle01:before, .txtstyle01:after {
  content: none;
}

.post .lead {
	font-size: min(calc(3.2rem + (1vw - 19.2px) * 0.5178), 3.2rem); /* 3.2-2.4rem (1920-375) */
	font-weight: 500;
	font-style: italic;
}

.post .lead_en {
	font-size: min(calc(1.8rem + (1vw - 19.2px) * 0.3236), 1.8rem);
	/* -- 1920 1.8rem 375 1.3rem -- */
	color: var(--color-primary-shade);
	letter-spacing: 0.8rem;
}
/*--ボタン別アイコン--------------------------------------------*/

a.external.ico_phone::before {
	content: '\f095';
	display: inline-block;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 1rem;
}
a.external.ico_mail::before {
	content: '\f0e0';
	display: inline-block;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 1rem;
}
a.external.ico_phone::after, a.external.ico_mail::after {
	content: none;
}
	
/*---table_style04-------------------------------------*/

.post table.table_style04 th {
	background-color: transparent;
}
.post table.table_style04, .post table.table_style04 th, .post table.table_style04 td{
	border: none;
}
table.table_style04 tr:first-child {
	border-top: 1px solid #ababab;
}
table.table_style04 tr:last-child {
	border-bottom: 1px solid #ababab;
}
table.table_style04 tr {
	border-top: 1px dashed #ababab;
	letter-spacing: 1px;
}
table.table_style04 th, table.table_style04 td {
	padding: 50px 30px;
}
table.table_style04 th {
    position: relative;
    z-index: 0;
    color: var(--color-primary);
}
table.table_style04 th:before {
	position: absolute;
	content: "";
	background: #c9ebec;
	top: 7px;
	left: 0;
	bottom: 7px;
	width: 100%;
	height: auto;
	z-index: -1;
}
table.table_style04 td ul li {
	padding-left: 1em;
	position: relative;
	line-height: 2;
}
table.table_style04 td ul li:before {
	position: absolute;
	content: "・";
	top: 0;
	left: 0;
}
@media print, screen and (max-width: 768px) {
	table.table_style04 th, table.table_style04 td {
		padding: 35px 10px;
		font-size: 1.4rem;
		vertical-align: middle;
	}
	table.table_style04 th {
		width: 32%;
	}
	table.table_style04 td {
		width: 68%;
	}
}



/*----------------------------
リンクボタンリスト
-----------------------------*/

/*---ボタンデザイン---*/

.link_btn {
    position: relative;
    display: inline-block;
    color: #fff;
    background: var(--color-primary);
    width: 100%;
    font-size: var(--rem16);
    font-weight: 500;
    letter-spacing: .1rem;
    line-height: 1.6;
    text-align: center;
    padding: 14px var(--px40) 12px;
    border-radius: 50vw;
    -webkit-transition: .3s;
    transition: .3s;
    border: solid 2px var(--color-primary);
}
.link_btn::after {
    content: '\f078';
    position: absolute;
    font-size: .85em;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    top: 50%;
    right: var(--rem16);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.link_btn:hover {
    color: var(--color-primary);
	background: #fff;
	border: solid 2px var(--color-primary);
}

/*---ボタンリストレイアウト---*/

.post ul.linkbtn_list {
    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;
    margin: var(--px40) auto;
    gap: 1%;
}
.post ul.linkbtn_list > li {
	width: auto;
	margin-bottom: var(--px20);
	text-align: center;
}
.post ul.linkbtn_list > li a.link_btn {
    width: auto;
    min-width: 400px;
    height: 100%;
    max-width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media print, screen and (max-width: 640px) {
	.post ul.linkbtn_list > li {
		width: 100%;
	}
	.post ul.linkbtn_list > li a.link_btn {
		max-width: none;
		width: 100%;
		min-width: auto;
	}
}
/*---------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(--color-primary);
    line-height: 1.4;
  padding: 0;
}
.post .txtstyle02:before, .post .txtstyle02:after, .txtstyle02:before, .txtstyle02:after {
  content: none;
}
