@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=Zen+Maru+Gothic:wght@400;500;700;900&display=swap');

/* 変数 */
:root {
    --color-background: #fff;
    --color-font: #111;
    --color-primary: #D82684;
    --color-primary-shade: #F28FB0;
    --color-primary-tint: #FFF1F8;
    --color-secondary: #2A9525;
    --color-secondary-tint: #F2FFE0;
    --color-third: #0BB0F7;
    --color-third-tint: #E3F7FF;
    --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: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;


    --content-max-width: 1240px;

    --header-background: #fff;
    --header-color-font: #111;
    --header-color-primary: #F28FB0;
    --header-color-primary-tint: #aaa;

    --footer-background: #fff;
    --footer-color-font: #111;
    --footer-color-primary: #111;
}

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;
}

#thumbImg::before,
header#h1Header::before {
    content: none;
}

header#h1Header h1.title {
    color: var(--color-font);
	font-family: var(--font-family02);
}

/*------------------------------------------------------
幅フル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: center;
    flex-wrap: wrap;
    gap: var(--px60) 2%;
}

.post .col3_list>li {
    width: 31%;
}

@media print,
screen and (max-width: 768px) {
    .post .col3_list>li {
        width: 48%;
    }
}

@media print,
screen and (max-width: 600px) {
    .post .col3_list>li {
        width: 100%;
    }
}

/*---------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_gap3 {
    display: flex;
    flex-direction: column;
    gap: var(--px30);
}

.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;
}

.color_pri {
    color: var(--color-primary) !important;
}

.color_third {
    color: var(--color-third) !important;
}

/* 配列 */
.txt_c_l {
    text-align: center;
}

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

/* サイズ */
.post p.fz18,
p.fz18 {
    font-size: var(--rem18);
}


/* テキスト */
.post p,
p {
    font-size: var(--rem16);
    line-height: 1.85;
}

.post .read p,
.read p {
    margin-bottom: 1.5em;
}

.post .read p:last-child,
.read p:last-child {
    margin-bottom: 0;
}


/* H1.H2 */
h1.title.top-loop,
h1.title.bottom-loop,
.post h2,
h2 {
    color: var(--color-primary);
    font-family: var(--font-family02);
    font-size: var(--rem40w);
    text-align: center;
    font-weight: 700;
    padding: 0;
    margin: 0 auto var(--px50);
}

.post h2::after,
h2::after {
    content: none;
}


/* H3 */
.post h3,
h3 {
    font-family: var(--font-family02);
    color: var(--color-primary);
    font-weight: 700;
    padding: 0 0 8px 0;
    margin: 0 0 var(--px30) 0;
    border-bottom: 1px solid var(--color-border);
}

.post h3.sub_ttl,
h3.sub_ttl {
    color: var(--color-font);
    padding: 0 0 0 12px;
    margin: 0 0 var(--px30) 0;
    border: none;
    border-left: 8px solid var(--color-primary);
}

.post h4,
h4 {
    font-family: var(--font-family02);
    font-weight: 700;
}



/*------------------------------------------------------
リスト
------------------------------------------------------*/
/* ulリスト */
.post ul.list {
    margin: 0;
    padding: 0
}

.post ul.list li {
    list-style: disc;
    padding-left: 1.3em;
    text-indent: -1.3em;
    margin-bottom: .3em;
    line-height: 1.55;
    list-style-position: inside;
}

.post ul.list li:last-child {
    margin-bottom: 0;
}

/* 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: 300px;
    font-weight: 600;
    font-size: var(--rem20);
    color: var(--color-font);
    letter-spacing: .1em;
    line-height: 1.45;
    text-align: left;
    background: transparent;
    padding: 0 30px var(--rem16) 10px;
    margin: 0 auto;
    border-bottom: solid 1px var(--color-font);
    border-radius: 0;
    transition: all .3s;
}

.post .subimitarea .linkBtn input[type="submit"] {
    border: none;
    padding: 0 30px 0 10px;
}

.post .linkBtn::before,
.linkBtn::before,
a.linkBtn::before {
    content: "";
    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;
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    border-radius: 50%;
    right: 20px;
    top: 20%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: .4s;
    transition: .4s;
}

.post .linkBtn::after,
.linkBtn::after,
a.linkBtn::after {
    border-color: #fff;
    top: 20%;
    right: 38px;
}

.post .linkBtn:hover,
.linkBtn:hover,
a.linkBtn:hover {
    background: transparent;
    color: var(--color-font);
}

.post .linkBtn:hover::before,
.linkBtn:hover::before,
a.linkBtn:hover::before {
    background: #fff;
    right: 0;
}

.post .linkBtn:hover::after,
.linkBtn:hover::after,
a.linkBtn:hover::after {
    border-color: var(--color-primary);
    right: 19px;
}

.subimitarea {
    margin-top: var(--px60);
}

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

    .post .linkBtn::before,
    .linkBtn::before,
    a.linkBtn::before {
        width: 30px;
        height: 30px;
        right: 20px;
    }

    .post .linkBtn::after,
    .linkBtn::after,
    a.linkBtn::after {
        right: 34px;
    }

    .post .linkBtn:hover::after,
    .linkBtn:hover::after,
    a.linkBtn:hover::after {
        right: 14px;
    }
}



.sub_btn,
.post .sub_btn,
a.sub_btn,
.post .subimitarea .sub_btn input[type="submit"] {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 300px;
    font-size: var(--rem14);
    color: #fff;
    line-height: 1.8;
    text-align: center;
    background: var(--color-secondary);
    font-weight: 600;
    padding: var(--rem12) 30px var(--rem12) 20px;
    margin: 0 auto;
    border: none;
    border-radius: 50vh;
    transition: all .3s;
}

.post .sub_btn::after,
.sub_btn::after,
a.sub_btn::after {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    right: 30px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -3px;
    transition: all .3s;
    border-color: #fff;
}

.post .sub_btn:hover,
.sub_btn:hover,
a.sub_btn:hover,
.post .subimitarea .sub_btn input[type="submit"]:hover {
    color: #fff;
}

.post .sub_btn:hover::after,
.sub_btn:hover::after,
a.sub_btn:hover::after {
    right: 20px;
}

.subimitarea>.sub_btn {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

.post .subimitarea .sub_btn input[type="submit"] {
    margin-top: 0;
}



.linkBtn02, .post .linkBtn02, a.linkBtn02, .post .subimitarea .linkBtn02 input[type="submit"] {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 320px;
    font-size: var(--rem16);
    color: #fff;
    line-height: 1.8;
    text-align: center;
    background: var(--color-primary);
    font-weight: 600;
    padding: var(--rem20) 30px var(--rem20) 20px;
    margin: 0 auto;
    border: 2px solid var(--color-primary);
    border-radius: 0;
    transition: all .3s;
}
.post .linkBtn02:hover, .linkBtn02:hover, a.linkBtn02:hover, .post .subimitarea .linkBtn02 input[type="submit"]:hover {
    color: var(--color-primary);
    background: #fff;
    border-color: #fff;
}
.post .linkBtn02::after, .linkBtn02::after, a.linkBtn02::after {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -3px;
    transition: all .3s;
}
.post .linkBtn02:hover::after, .linkBtn02:hover::after, a.linkBtn02:hover::after {
    border-color: var(--color-primary);
}
.subimitarea > .linkBtn02 {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}
.post .subimitarea .linkBtn02 input[type="submit"] {
    margin-top: 0;
}

/*------------------------------------------------------
画像
------------------------------------------------------*/
.post .img_70 img {
    margin: 0 auto;
    display: block;
    max-width: 679px;
    width: 70%;
}

/*------------------------------------------------------
table
------------------------------------------------------*/
.post table th,
.post table td {
    padding: 20px;
}

.post table th {
    background: var(--color-primary-tint);
}

.post table.bg_green th {
    background: var(--color-secondary-tint);
}

.post table.bg_blue th {
    background: var(--color-third-tint);
}

/*------------------------------------------------------
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);
}

nav#mainNav ul li ul.sub-menu li a:hover {
    background: var(--color-primary-shade);
}

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

/* 電話ボタン */
#header a.head_btn.tel_btn {
    background: #E2E2E2;
    color: var(--color-font);
    font-family: var(--font-family01);
    font-weight: 600;
    font-size: 2.4rem;
}

#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;
}

/* メールボタン */
#header a.head_btn.mail_btn,
#header a.head_btn.line_btn {
    flex-direction: row;
    gap: 8px;
}

/* メールボタン */
#header a.head_btn.line_btn {
    background: var(--color-secondary);
}

#header a.head_btn.line_btn::before {
    content: '\f3c0';
    font-family: 'Font Awesome 6 Brands';
    font-weight: 900;
}

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 .footnav:not(:last-child) {
    margin-bottom: 0;
}

#footer .footer__logo img {
    width: 90%;
}

/*------------------------------------------------------
CTA
------------------------------------------------------*/
.cta01 {
    background: url(/wp-content/uploads/bg_cta.jpg) no-repeat center / cover;
    position: relative;
    z-index: 0;
}

.cta01 .cta01_wrap {
    max-width: 1240px;
    width: 90%;
    margin: 0 auto;
    background: rgba(255, 255, 255, .8);
    padding: var(--px120) var(--px40);
}

.cta01 .ctabtnlist {
    justify-content: space-between;
    max-width: 900px;
    margin: 10px auto 0 auto;
}

.cta01 .ctabtnlist li {
    width: 50%;
    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(--px20) 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 .btnttl {
    display: block;
    font-weight: bold;
    max-width: 1000px;
}

.cta01 .infotxt {
    font-size: var(--rem16);
    font-weight: 400;
}

/*電話ボタン*/
.cta01 .telnum {
    font-size: var(--rem36);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta01 .telbtn .btnttl {
    font-size: var(--rem20);
}

.cta01 a.telbtn {
    background: #fff;
    color: var(--color-primary);
}

/*メールボタン*/
.cta01 .mailbtn .btnttl {
    font-size: var(--rem24);
}

.cta01 a.mailbtn {
    background: var(--color-primary);
    color: #fff;
	padding: var(--px30) 0 !important;
}

/*LINEボタン*/
.cta01 a.linebtn {
    background: var(--color-secondary);
    color: #fff;
}

.cta01 .linebtn .btnttl {
    font-size: var(--rem24);
}

/*ボタンアイコン*/
.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;
}



.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;
}

body:not(.home) .post h2.cat-loop {
    text-align: left;
}

/*------------------------------------------------------
新着情報
------------------------------------------------------*/
.post .time,
.postlist .time,
.post2b .time,
.post4b .time {
    background: var(--color-secondary-tint);
}

.post .time a,
.post2b .time a,
.post4b .time a,
.postlist .time a {
    color: var(--color-secondary);
}

.post .time>span,
.post2b .time>span,
.post4b .time>span {
    color: var(--color-secondary);
}

#front_top_content,
#front_bottom_content {
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
    background: #FFEAF5;
    background: linear-gradient(180deg, rgba(255, 234, 245, 1) 0%, rgba(255, 255, 255, 1) 100%);
}


/*------------------------------------------------------
TOP
------------------------------------------------------*/
/* 共通 */
.post .column .txtarea h3 {
    font-size: var(--rem36);
    font-family: var(--font-family02);
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    line-height: 1.45;
    padding: 0;
    border: none;
}

.column .txtarea .txtinner {
    max-width: 640px;
    width: 96%;
}

.column .imgarea {
    overflow: hidden;
    line-height: 0;
    margin: 0;
}

.column .imgarea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media print,
screen and (max-width: 768px) {
    .column .txtarea {
        padding: var(--px80) 0;
    }
}

/* column01 */
.column01 {
    position: relative;
    background: url(/wp-content/uploads/bg_about.jpg) no-repeat center / cover;
    padding: var(--px120) 0;
    background-attachment: fixed;
}

.column01_wrap {
    position: relative;
    max-width: var(--content-max-width);
    width: 90%;
    margin: 0 auto;
    border-radius: 10px;
    background: #fff;
    padding: var(--px20);
    z-index: 1;
}

.column01 .txtarea {
    background: #fff;
    display: flex;
    align-items: center;
    padding: var(--px80) 0;
    margin: 0;
}

/* column02 */
.num_list01 .imgarea {
    position: relative;
    margin-bottom: var(--px20);
}

.num_list01 li .imgarea::before {
    content: "";
    position: absolute;
    display: inline-block;
    left: 50%;
    width: var(--px100);
    height: var(--px100);
    line-height: var(--px100);
    text-align: center;
    bottom: calc(-1* (var(--px100) /2));
    transform: translateX(-50%);
}

.num_list01 li:first-child .imgarea::before {
    background: url(/wp-content/uploads/icon_feauture01.png) no-repeat center / contain;
}

.num_list01 li:nth-of-type(2) .imgarea::before {
    background: url(/wp-content/uploads/icon_feauture02.png) no-repeat center / contain;
}

.num_list01 li:last-child .imgarea::before {
    background: url(/wp-content/uploads/icon_feauture03.png) no-repeat center / contain;
}

.num_list01 .txtarea {
    margin: var(--px60) auto 0;
}

.num_list01 .txtarea h3 {
    font-size: var(--rem24w);
    color: var(--color-font);
    text-align: center;
    margin: 0 auto var(--px12);
    padding: 0;
    border: none;
}

/* column03 */
.column03 {
    background: var(--color-primary-tint);
    padding: var(--px80) var(--px40);
    margin: 0 auto;
}

.column03 .inner {
    max-width: 1062px;
    width: 90%;
    margin: 0 auto;
}

/* column04 */
.post ul.card01_list.cardstyle05>li {
    display: flex;
    flex-direction: column;
}

.post ul.card01_list .imgarea {
    width: 100%;
    position: relative;
    line-height: 0;
}

.post ul.card01_list .imgarea img {
    width: 100%;
}

.post ul.card01_list.cardstyle05>li .txtarea {
    position: relative;
    background: rgba(255, 255, 255, .8);
    border-radius: 10px;
    padding: 20px 20px 30px 20px;
    width: 90%;
    margin: -30px auto;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post ul.card01_list .txtarea h3 {
    font-size: var(--rem24w);
    font-weight: 700;
    text-align: center;
    color: var(--color-primary);
    margin: 0 auto var(--px12);
    padding: 0;
    border: none;
    flex-grow: 1;
}

.post ul.card01_list .txtarea a.linkBtn {
    max-width: 220px;
    width: 90%;
    margin: 0 auto;
}

/* column05 */
.column05 {
    position: relative;
    padding-bottom: var(--px120);
}

.column05_wrap {
    position: relative;
    max-width: var(--content-max-width);
    width: 90%;
    margin: 0 auto;
    z-index: 1;
}

.column05 .txtarea {
    background: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--px80) var(--px40);
    margin: 0;
}



body > div.cta01 > div > ul:nth-child(2) {
	max-width: 900px;
	margin: 0 auto;
}


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

.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;
}

.marker.pink {
    background: linear-gradient(transparent 60%, #FFF1F8 60%);
}

.post .frame01 {
    max-width: var(--content-max-width);
    background: var(--color-primary-tint);
    padding: var(--px40);
}
.post .frame02 {
    max-width: var(--content-max-width);
    background: #FAFAFA;
    padding: var(--px80) var(--px40);
}
.post .frame01 .inner,
.post .frame02 .inner {
    max-width: 1024px;
    width: 90%;
    margin: 0 auto;
}
.post .frame01 h3.h3_ttl {
    font-size: var(--rem24w);
    text-align: center;
    padding: 0;
    margin: 0 auto var(--px20);
    border: none;
}
.post .frame02 h2 {
    color: var(--color-primary);
    font-size: var(--rem30w);
    text-align: center;
    padding: 0;
    margin: 0 auto var(--px20);
}



/*------------------------------------------------------
本店
------------------------------------------------------*/


.underline {
    color: #F28FB0;
}

.underline:hover {
    color: #F28FB0;
    text-decoration: underline dotted;
    text-decoration-color: #ec008c;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}