@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&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    /*------▼基本設定▼------*/
    --color-background: #FFF;
    --color-font: #333;
    --color-font-secondary: #9D9D9A;
    --color-primary: #37C5EC;
    --color-primary-shade: #F8F8F8;
    --color-primary-tint: #E6B429;
    --color-secondary: #F73737;
    --color-secondary-tint: #FD3D3D;
    --color-table-border: #E8E8E8;
    --body-font-size: clamp(14px, .84vw, 16px);
    --body-font-family: "Noto Sans JP", sans-serif;
    --content-max-width: 1100px;
    /*------▼ヘッダー設定▼------*/
    --header-background: #FFF;
    --header-color-font: #333333;
    --header-color-primary: #37C5EC;
    --header-color-primary-shade: #F5F5F5;
    --header-color-primary-tint: #E6B429;
    /*------▼フッター設定▼------*/
    --footer-background: #FFF;
    --footer-color-font: #777;
    --footer-color-primary: #777;
    /*------▼フォント設定▼------*/
    --font-family01: "Noto Sans JP", sans-serif;
    --font-family02: "Poppins", sans-serif;
    --font-family03: "Oswald", sans-serif;
    /*------▼フォントサイズ設定▼------*/
    --font-size12: clamp(10px, .63vw, 12px);
    --font-size14: clamp(12px, .73vw, 14px);
    --font-size16: clamp(14px, .84vw, 16px);
    --font-size18: clamp(14px, .94vw, 18px);
    --font-size20: clamp(18px, 1.1vw, 20px);
    --font-size22: clamp(18px, 1.15vw, 22px);
    --font-size24: clamp(18px, 1.25vw, 24px);
    --font-size26: clamp(20px, 1.36vw, 26px);
    --font-size28: clamp(20px, 1.6vw, 28px);
    --font-size30: clamp(22px, 1.7vw, 30px);
    --font-size32: clamp(22px, 1.7vw, 32px);
    --font-size34: clamp(24px, 1.85vw, 34px);
    --font-size36: clamp(24px, 1.85vw, 36px);
    --font-size38: clamp(26px, 2vw, 38px);
    --font-size40: clamp(26px, 2.1vw, 40px);
    --font-size42: clamp(26px, 2.3vw, 42px);
    --font-size46: clamp(26px, 2.4vw, 46px);
    --font-size50: clamp(30px, 2.61vw, 50px);
    --font-size52: clamp(26px, 2.71vw, 52px);
    --font-size60: clamp(30px, 3.13vw, 60px);
    /* ---- 追加 ---- */
    --font-size80: clamp(40px, 4.17vw, 80px);
    --color-grad: linear-gradient(90deg, red, orange);
    /*------▼clampバリエーション設定▼------*/
    --clamp-10: clamp(5px, 0.52vw, 10px);
    --clamp-14: clamp(7px, 0.73vw, 14px);
    --clamp-20: clamp(10px, 1.04vw, 20px);
    --clamp-30: clamp(15px, 1.56vw, 30px);
    --clamp-40: clamp(20px, 2.08vw, 40px);
    --clamp-50: clamp(25px, 2.61vw, 50px);
    --clamp-60: clamp(30px, 3.13vw, 60px);
    --clamp-70: clamp(35px, 3.65vw, 70px);
    --clamp-80: clamp(40px, 4.17vw, 80px);
    --clamp-90: clamp(45px, 4.69vw, 90px); 
    --clamp-100: clamp(50px, 5.42vw, 100px);
    --clamp-110: clamp(55px, 5.73vw, 110px);
    --clamp-120: clamp(60px, 6.25vw, 120px);
    --clamp-130: clamp(65px, 6.78vw, 130px);
    --clamp-140: clamp(70px, 7.3vw, 140px);
    --clamp-150: clamp(76px, 7.92vw, 150px);
    --clamp-200: clamp(100px, 10.42vw, 200px);
}
::selection {
    background-color: var(--color-primary-tint);
    color: #FFF;
}
/* == == == == == == == == == == == == == == == == == == 
* inner/outer
* == == == == == == == == == == == == == == == == == == */
.content_inner {
    position: relative;
    z-index: 0; 
}
.max_w350 {max-width: 350px;}
.max_w880 {max-width: 880px;}
.max_w1280 {max-width: 1280px;}
.max_w1540 {max-width: 1540px;}
.max_wFull {
    position: relative;
    width:100vw;
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
}
.max_wFull::before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: -1;
}
/* == == == == == == == == == == == == == == == == == == 
*  テキスト/text 
*  == == == == == == == == == == == == == == == == == == */
.post h2, .post h3, .post h4 {
    padding: 0;
    margin: 0; 
    border: none;
}
.post h2::before, .post h3::before, .post h4::before, .post h2::after{
    content: none;
}
/* ==== post ~ ===== */
.post p, .post h1, .post h2, .post h3, .post h4, .post h5 {
    color: var(--color-font);
}
.post p, #footer p {
    font-size: var(--font-size16);
    line-height: 2;
    margin-bottom: 1.5em;
    font-weight: 500;
    letter-spacing: .05em;
}
.post h2, #footer h2 {
    font-size: var(--font-size26);
    line-height: 1.5;
    margin-bottom: .5em;
    font-weight: bold;
    letter-spacing: .05em;
    padding-bottom: .3em;
}
.post h3, #footer h3 {
    font-size: var(--font-size22);
    line-height: 1.5;
    margin-bottom: .7em;
    padding-bottom: .3em;
    font-weight: bold;
}
.post h4, #footer h4 {
    font-size: var(--font-size20);
    line-height: 1.5;
    margin-bottom: .5em;
    font-weight: bold;
}
.post h5, #footer h5 {
    font-size: var(--font-size18);
    line-height: 1.5;
    margin-bottom: .5em;
    font-weight: bold;
}
.post .name, .name {
    font-size: var(--font-size22);
    font-weight: bold; 
    font-family: var(--font-family03);
    text-align: center;
}
.post .name span, .name span {
    font-size: var(--font-size18);
    font-family: var(--font-family01);
    font-weight: 500;
    margin-right: 1.2em;
}
/* ==== text / ユーティリティ ===== */
.regular {font-weight: 400!important;}
.mid {font-weight: 500!important;}
.semi-bold {font-weight: 600!important;}
.bold {font-weight: bold!important;}
.ja {font-family: var(--font-family01);}
.en {font-family: var(--font-family02);}
.ff-01 {font-family: var(--font-family01);}
.ff-02 {font-family: var(--font-family02);}
.ff-03 {font-family: var(--font-family03);} 
.color-font {color: var(--color-font);}
.color-primary {color: var(--color-primary);}
.color-tint {color: var(--color-primary-tint);}
.color-shade {color: var(--color-primary-shade);}
.color-white {color: #FFF;}
.px12 {font-size: var(--font-size12)!important;}
.px14 {font-size: var(--font-size14)!important;}
.px16 {font-size: var(--font-size16)!important;}
.px18 {font-size: var(--font-size18)!important;}
.px20 {font-size: var(--font-size20)!important;}
.px22 {font-size: var(--font-size22)!important;}
.px24 {font-size: var(--font-size24)!important;}
.px26 {font-size: var(--font-size26)!important;}
.px28 {font-size: var(--font-size28)!important;}
.px30 {font-size: var(--font-size30)!important;}
.px32 {font-size: var(--font-size32)!important;}
.px34 {font-size: var(--font-size34)!important;}
.px36 {font-size: var(--font-size36)!important;}
.px38 {font-size: var(--font-size38)!important;}
.px40 {font-size: var(--font-size40)!important;}
.px46 {font-size: var(--font-size46)!important;}
.px50 {font-size: var(--font-size50)!important;}
.px52 {font-size: var(--font-size52)!important;}
.px60 {font-size: var(--font-size60)!important;}
/* ===== text / 追加ユーティリティ ===== */
.px80 {font-size: var(--font-size80)!important;}
.txt-underline {
    text-decoration: underline;
    text-decoration-thickness: 1px;
}
.txt-marker {background: linear-gradient(0, #6E9BA340 25%, transparent 25%);}
.txt-border {
    border: 2px solid;
    padding: .3em .8em!important;
}
.txt-bg-tint {
    display: inline-block;
    background: var(--color-primary-tint)!important;
    color: #FFF;
    padding: .2em 1.25em!important;
}
.txt-bg-grad {
    display: inline-block;
    background: var(--color-grad)!important;
    color: #FFF;
    padding: 0 .5em!important;
    margin-bottom: .3em;
}
/* ==== ttl-main-primary ==== */
.ttl-main-primary .ff-02, .post .ttl-main-primary .ff-02 {
    position: relative;
    padding-bottom: .2em;
}
.ttl-main-primary .dots, .post .ttl-main-primary .dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.ttl-main-primary .dot, .post .ttl-main-primary .dot {
    width: 5px;
    height: 5px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}
.ttl-main-primary--left, .post .ttl-main-primary--left {
    text-align: left;
} 
.ttl-main-primary--left .dots, .post .ttl-main-primary--left .dots {
    justify-content: left;
}
/* ==== ttl-main-secondary ==== */
.ttl-main-secondary .ff-02, .post .ttl-main-secondary .ff-02 {
    text-decoration: underline;
    padding-bottom: .5em;
    line-height: 1.2;
}
/* ==== ttl-sub-primary ==== */
.ttl-sub-primary, .post .ttl-sub-primary {
    background: var(--color-primary);
    background-image: repeating-linear-gradient(-48deg, #FFFFFF33, #FFFFFF33 1px, transparent 1px, transparent 8px);
    color: #FFF;
    padding: .3em .5em;
    font-size: var(--font-size26);
    text-align: center;
    line-height: 1.7;
}
/* ==== ttl-sub-secondary ==== */
.ttl-sub-secondary, .post .ttl-sub-secondary {
    font-size: var(--font-size22);
    padding-left: .8em;
    border-left: .36em solid var(--color-primary);
    text-align: left;
    padding-bottom: 0;
}
/* == == == == == == == == == == == == == == == == == == 
*  レイアウト/あしらい
*  == == == == == == == == == == == == == == == == == == */
.content {position: relative;}
.gap {gap: 4%;}
.box-shadow {box-shadow: 0 3px 20px #0000000D;}
.dis-block, .dis-inline-block, .dis-flex {position: relative;}
.dis-block {display: block;}
.dis-inline-block {display: inline-block;}
.dis-flex {display: flex;}
.bg-white {background: #FFF;}
.bg-gray {background: #F7F8F9;}
.bg-primary{background: var(--color-primary);}
.bg-tint {background: var(--color-primary-tint);}
.bg-shade {background: var(--color-primary-shade);}
.bg-img {
    background-image: url();
    background-size: cover;
    background-position: center;
}
.border-radius {
    border-radius: 20px;
    overflow: hidden;
}
.img-area.border-radius img {
    border-radius: 20px;
}
.sticky_space {
    padding-top: var(--clamp-150);
    margin-top: calc(var(--clamp-150) * -1);
}
.txt-area, .img-area {
    position: relative;
}
.img-area .txt {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.img-area img {
    width: 100%;
}
.txt-inner {
    max-width: 630px;
    width: 94%;
}
.inner-padding {
    margin: 0 (3%, 20px);
}
@media print, screen and (min-width: 769px) {
    .ml-auto {margin-left: auto!important;}
    .mr-auto {margin-right: auto!important;}
}
@media print, screen and (max-width: 768px) {
    .sp_center {
        text-align: center;
    }
    .txt-inner {
        max-width: 94%;
        width: 100%;
        margin: 0 auto;
    }
}
/* ==== 追加 ==== */
.icon-area {
    width: 60%;
    max-width: 205px;
    margin: 0 auto;
}
.abolute-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
@media print, screen and (min-width: 769px) {
}
@media print, screen and (max-width: 768px) {
}
/* == == == == == == == == == == == == == == == == == == 
*  flex / card
* == == == == == == == == == == == == == == == == == == */
/* == == == == == == == ==
* flex 
* == == == == == == == == */
.col-1{ width: 100%;}
.col-2{width: calc(50% - 22px);}
.col-3{width: calc(100% / 3);}
.col-4{width: calc(100% / 4);}
.col-5{width: calc(100% / 5);}
.w25 {width: 25%;}
.w35 {width: 35%;}
.w45 {width: 45%;}
.w55 {width: 55%;}
.w65 {width: 65%;}
.w75 {width: 75%;}
.w85 {width: 85%;}
.wrap {flex-wrap: wrap;}
.nowrap {flex-wrap: nowrap;}
.jc_between {justify-content: space-between;}
.jc_around {justify-content: space-around;}
.jc_evenly {justify-content: space-evenly;}
.ai_center {align-items: center;}
.ai_end {align-items: end;}
@media print, screen and (min-width: 769px) {
}
@media print, screen and (max-width: 768px) {
    .col-1, .col-2, .col-3, .col-4, .col-5 {
        width: 100%;
        margin-bottom: 20px;
    } 
    .w25, .w35, .w45, .w55, .w65, .w75, .w85 {
        width: 100%;
        margin-bottom: 20px;
    }
}
/* == == == == == == == ==
* card
* == == == == == == == == */
.card {
    display: flex;
    flex-direction: row;
}
.card:has(.col-2) {gap: 50px 20px;}
.card:has(.col-3) {gap: 20px 25px;}
.card:has(.col-4) {gap: 20px;}
.card:has(.col-5) {gap: 20px;}
.card .col-2 {
    width: calc((100% / 2) - 10px);
    overflow: hidden;
}
.card .col-3 {
    width: calc((100% / 3) - 17px);
    overflow: hidden;
}
.card .col-4 {
    width: calc((100% / 4) - 15px);
    overflow: hidden;
}
.card .col-5 {
    width: calc((100% / 5) - 16px);
    overflow: hidden;
}
.card .img-area {
    position: relative;
}
.card .txt-area {
    padding: min(3%, 20px) min(3%, 10px);
}
.card p:last-child {margin: 0;}
.card h3 {
    letter-spacing: 0;
}
.card .inner-padding {
    margin: 0 min(3%, 20px);
}
@media print, screen and (max-width: 1023px) {
    .card .col-5 {width: calc((100% / 4) - 20px);}
}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
    .card:has(.col-2), .card:has(.col-3) {
        gap: 20px;
    }
    .card {flex-direction: row;}
    .card .col-2, .card .col-3 {
        width: 100%;
        margin-bottom: 0;
    }
    .card .col-4, .card .col-5 {
        width: calc((100% / 2) - 10px);
        margin-bottom: 0;
    }
}
@media print, screen and (max-width: 500px) {
    .card .col-4, .card .col-5 {
        width: 100%;
    }
}
/* == == == == == == == == == == == == == == == == == == 
* テーブル、マップ調整/table,map
* == == == == == == == == == == == == == == == == == == */
.post table, .post table th, .post table td {
    border: 1px solid var(--color-table-border);
}
.post table th, .post table td {
    padding: 1em;
    font-size: var(--body-font-size);
    line-height: 1.8;
    color: var(--color-font);
    background: transparent;
    border-bottom: 1px solid var(--color-table-border);
    font-weight: 500;
}
.post table th {
    color: #FFF;
    background: var(--color-primary-tint);
}
@media print, screen and (min-width: 769px) {
}
@media print, screen and (max-width: 768px) {
    .post table th, .post table td {
        width: 100%;
        display: block;
        font-size: var(--font-size16);
        padding: 1em;
    }
}

@media print, screen and (min-width: 769px) {
}
@media print, screen and (max-width: 768px) {
}
/* == == == == == == == == == == == == == == == == == == 
* ボタン/btn
* == == == == == == == == == == == == == == == == == == */
.linkBtn, .post .linkBtn {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 260px;
    font-family: var(--font-family01);
    font-size: var(--font-size18);
    font-weight: bold;
    line-height: 2;
    text-align: center;
    color: #FFF;
    background: var(--color-primary);
    padding: 1em 2em;
    margin: 0;
    border-radius: 5px;
    transition: all .3s ease;
    outline: 1px solid;
}
.linkBtn:hover, .post .linkBtn:hover {
    color: var(--color-primary);
    background: #FFF;
    box-shadow: 0 6px 20px #0000001A;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}
.linkBtn::after, input.linkBtn::after, .post .linkBtn::after {
    border-right: 1px solid;
    border-bottom: 1px solid;
    right: 1em;
}
.linkBtn--primary, .post .linkBtn--primary {
    background: #FFF;
    color: var(--color-font);
    outline: 1px solid var(--color-primary);
    text-align: left;
    padding: 1em 3em 1em 1em;
    border-radius: 10px;
}
.linkBtn--primary::after, .post .linkBtn--primary::after {
    display: none;
}
.linkBtn .btn-arrow, .post .linkBtn .btn-arrow {
    width: 1.6em;
    height: 1.6em;
    position: absolute;
    right: 1em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transform-origin: right;
}
.linkBtn .btn-arrow::before, .post .linkBtn .btn-arrow::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(/wp-content/uploads/icon_btn-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: .3s ease;
}
.linkBtn:hover .btn-arrow::before, .post .linkBtn:hover .btn-arrow::before {
    background-image: url(/wp-content/uploads/icon_btn-arrow-hover.png);
}
@media print, screen and (max-width: 768px) {
}
/* == == == == == == == == == == == == == == == == == == 
 *  ul ol / リスト
 *  == == == == == == == == == == == == == == == == == == */
/* ==== list-check ==== */
.list-check {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.list-check li {
    font-size: var(--font-size16);
    font-weight: bold;
    padding-left: 2.5em;
    position: relative;
    line-height: 1.6;
}
.list-check li::before {
    content: '';
    position: absolute;
    width: 1.6em;
    height: 1.6em;
    background-image: url(/wp-content/uploads/icon_check.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    top: 0;
}
@media print, screen and (min-width: 769px) {
}
@media print, screen and (max-width: 768px) {
}
/* == == == == == == == == == == == == == == == == == == 
* アイキャッチ/eyecatch
* == == == == == == == == == == == == == == == == == == */
header#h1Header h1.title {
    font-weight: bold;
    font-size: var(--font-size34);
    font-family: var(--font-family01);
}
#thumbImg::before, header#h1Header::before {
    opacity: .76;
    background: var(--color-primary);
}
/* == == == == == == == == == == == == == == == == == == 
 * パンくず
 * == == == == == == == == == == == == == == == == == == */
 #breadcrumb {
    background: #FFF;
}
/* == == == == == == == == == == == == == == == == == == 
 * postlist
 * == == == == == == == == == == == == == == == == == == */
.postlist li {
    border-bottom: 1px solid var(--color-table-border);
}
 .postlist li:first-child {
    border-top: 0;
}
.postlist .time {
    font-size: var(--font-size16);
	background: var(--color-primary-tint);
    font-weight: 500;
    padding: .5em 1em;
    border-radius: 5px;
}
.postlist .time a {
    color: #FFF;
}
.postlist .ttls, .postlist .date {
    font-size: var(--font-size16);
    font-weight: 500;
}
.post .time, .postlist .time, .post2b .time, .post4b .time {
	display: block;
	background: var(--color-primary-tint);
}
.post_link a, .post2b_link a, .post4b_link a {
    color: var(--color-primary-tint);
}
.post_link, .post2b_link, .post4b_link {
    color: var(--color-primary-tint);
}
/* == == == == == == == == == == == == == == == == == == 
* サイトマップ
* == == == == == == == == == == == == == == == == == == */
.post ul#sitemap_list.sitemap_disp_level_0 > li a {
    font-family: var(--font-family01);
    font-weight: 500;
}
/* == == == == == == == == == == == == == == == == == == 
* コンタクトフォーム
* == == == == == == == == == == == == == == == == == == */
.wpcf7-form .must {
    border-radius: 5px;
}
.wpcf7-form .linkBtn {
    padding: 0;
    max-width: 550px;
    margin: 0 auto;
}
.wpcf7-form  .linkBtn input[type="submit"] {
    padding: 1em 2em;
	color: #FFF;
    font-size: var(--font-size18);
    font-weight: bold;
    font-family: var(--font-family01);
}
.wpcf7-form .linkBtn:hover input[type="submit"] {
    color: var(--color-primary);
}
.wpcf7-form table, .wpcf7-form table th, .wpcf7-form table td {
	border-width: 0;
}
.wpcf7-form table th {
	color: var(--color-font);
	background: transparent;
	border-bottom: 1px solid var(--color-table-border);
}
.wpcf7-form table td {
	border-bottom: 1px solid var(--color-table-border);
}
@media print, screen and (max-width: 768px) {
	.wpcf7-form table th {
		background: var(--color-primary-shade);
	}
}
/* == == == == == == == == == == == == == == == == == == 
* ヘッダー調整/header
* == == == == == == == == == == == == == == == == == == */
#header {
    position: relative;
}
@media print, screen and (min-width: 1024px) {
    #header {
        height: 145px;
        background: var(--header-background);
    }
    body.home #header {
        position: absolute;
        background: transparent;
    }
    .sticky-header #header-layout {
        height: 145px;
    }
    .sticky-header #header > .inner {
        background: transparent;
		box-shadow: unset; 
    }
    #header .logo {
        padding: 0;
    }
    #header .logo img {
        max-width: 300px;
        max-height: 145px;
    }
    #header-layout {
        align-items: center;
		gap: 20px;
    }
    #header .header__nav-contact {
        height: 90px;
        background: #FFFFFF;
        border-radius: 10px;
        margin-right: 2%;
    }
	.sticky-header .header__nav-contact {
		box-shadow: 0 6px 20px #0000001A;
	}
/* == == == == == == == ==
 * ヘッダー下部__グローバルナビ
 * == == == == == == == == */
    nav#mainNav ul li a b, nav#mainNav ul li a span {
        letter-spacing: .05em;
        padding-bottom: .25em;
        color: var(--header-color-font);
        position: relative;
    }
    nav#mainNav ul li a b {
        font-family: var(--font-family01);
        font-size: var(--font-size18);
    }
    nav#mainNav ul li a span {
        font-family: var(--font-family01);
        font-size: var(--font-size14);
    }
    nav#mainNav ul li.current-menu-item a, nav#mainNav ul li a:hover, nav#mainNav ul li a:active, nav#mainNav ul li.current-menu-parent a, nav#mainNav ul li.current-menu-ancestor a {
        background: transparent;
    }
    nav#mainNav ul li.current-menu-item a b, nav#mainNav ul li a:hover b, nav#mainNav ul li a:active b, nav#mainNav ul li.current-menu-parent a b {
        color: var(--header-color-font);
    }
    nav#mainNav ul li.current-menu-item a span, nav#mainNav ul li a:hover span, nav#mainNav ul li a:active span, nav#mainNav ul li.current-menu-parent a span {
        color: var(--header-color-font);
    }
    nav#mainNav ul li a b::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        background: var(--header-color-font);
        left: 0;
        bottom: 0;
        transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: right;	
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
    nav#mainNav ul li.current-menu-item a b::before, nav#mainNav ul li a:hover b::before, nav#mainNav ul li a:active b::before, nav#mainNav ul li.current-menu-parent a b::before {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        transform-origin: left;
    }
	nav#mainNav ul li li a {
		font-weight: bold;
		font-size: var(--font-size18);
	}
	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: #FFF;
	}
/* == == == == == == == ==
 * ヘッダー下部__コンタクトボタン
 * == == == == == == == == */
    #header ul.header__contact {
        margin-right: var(--px20);
        margin-left: var(--px20);
    }
    #header ul.header__contact li {
        display: flex;
        align-items: center;
    }
    #header a.head_btn {
        font-size: var(--font-size20);
        font-family: var(--font-family01);
        font-weight: bold;
        flex-direction: row;
        background: var(--header-color-primary);
        outline: 1px solid;
        min-width: 180px;
        height: 55px;
        border-radius: 50vw;
        color: #FFF;
        padding: 0 2.5em;
    }
    #header a.head_btn::before {
        margin-right: .5em;
        font-size: 1em;
    }
    #header a.head_btn:hover {
        background: #FFF;
        color: var(--header-color-primary);
    }
}
/* == == == == == == == ==
* スマホ
* == == == == == == == == */
/* .spmenu #menu span, .spmenu #menu span:before, .spmenu #menu span:after {
    background: #FFF;
}
.spmenu #menu p {
    color: #FFF;
} */
@media print, screen and (max-width: 1023px) {
    nav#mainNav ul li a {
        background: #FFF;
        color: var(--color-font);
        font-family: var(--font-family01);
    }
}
/* == == == == == == == == == == == == == == == == == == 
*  フッター調整/footer 
* == == == == == == == == == == == == == == == == == == */
#footer {
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
}
#footer a {
    transition: .5s ease;
}
#footer h2 {
    line-height: 1.2;
}
#footer .footer-content {
    background-image: url(/wp-content/uploads/footer_bg.jpg);
    background-size: cover;
    background-position: center;
    padding-top: var(--clamp-40);
    padding-bottom: var(--clamp-60);
}
#footer .inner {
    padding-top: 15px;
}
#copyright {
    margin: 0;
    padding-bottom: 10px;
}
#footer ul.footer__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 20px 44px;
    margin-top: var(--clamp-40);
}
#footer a.foot_btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #FFF;
    color: #9D9D9A;
    font-size: var(--font-size18);
    font-family: var(--font-family02);
    font-weight: 600;
    line-height: 1.4;
    outline: 1px solid;
    padding: min(calc(10px + (1vw - 19.2px) * 0.2232), 10px) min(calc(20px + (1vw - 19.2px) * 0.5580), 20px); /* 10-8px、20-15px (1920-1024) */
    -webkit-transition: .3s ease;
    transition: .3s ease;
    height: 4em;
    border-radius: 50vw;
    color: var(--header-color-font);
    padding: 0 2.5em;
    min-width: 260px;
}
#footer a.foot_btn:hover {
    background: var(--color-primary);
    color: #FFF;
    text-decoration: none;
}
#footer a.foot_btn::before {
    display: block;
    font-family: 'FontAwesome';
    font-weight: 400;
    line-height: 1;
    margin-right: .5em;
    font-size: 1em;
}
#footer a.foot_btn.tel_btn::before {
    content: '\f3cd';
}
#footer a.foot_btn.mail_btn::before {
    content: '\f0e0';
}
@media print, screen and (min-width: 769px) {	
}
@media print, screen and (max-width: 768px) {
    #footer ul.footer__contact {
        flex-direction: column;
    }
    #footer a.foot_btn {
        width: 100%;
    }
}
/* == == == == == == == == == == == == == == == == == == 
* その他の調整 / other
* == == == == == == == == == == == == == == == == == == */
/* == #content.wide ==== */
#content, body:not(.home) #content.wide {
    padding-top: 0;
    padding-bottom: 0;
}
body.archive.category #content.wide,
body.single #content.wide,
body.page-contact #content.wide,
body.page-thanks #content.wide,
body.page-sitemap #content.wide,
body.page-privacy #content.wide {
    padding: var(--clamp-80) 0;
}
@media print, screen and (min-width: 769px) {
}
@media print, screen and (max-width: 768px) {
}
/* == == == == == == == == == == == == == == == == == == 
* トップ、下層調整/ .top-content, .page-content
* == == == == == == == == == == == == == == == == == == */
.mv-content, .top-content, .page-content, .cta-content {
    position: relative;
    width: 100vw;
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
}
.top-content::before, .page-content::before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: -1;
}

@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {
}
/* == == == == == == == == == == == == == == == == == == 
* section
* == == == == == == == == == == == == == == == == == == */
/* ==== #about ==== */
.top-content#about {
    padding-top: var(--clamp-30);
}
.top-content#about .col-3 .img-area {
    max-width: 350px;
    margin: 0 auto;
}

@media print, screen and (min-width: 769px) {
}
@media print, screen and (max-width: 768px) {
}
/* ==== #reason ==== */
.top-content#reason {
    padding-top: var(--clamp-30);
    padding-bottom: var(--clamp-60);
    background-image: linear-gradient(#37C5ECBF, #37C5ECBF), url(/wp-content/uploads/top-reason_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.top-content#reason .ttl-main-primary .dot {
    background: #FFF;
}
.top-content#reason .ttl-sub-primary {
    background: #FFF;
    background-image: repeating-linear-gradient(-48deg, #37C5EC1A, #37C5EC1A 1px, transparent 1px, transparent 8px);
    color: var(--color-primary);
}
.top-content#reason .col-3 .img-area {
    max-width: 350px;
    margin: 0 auto;
}

@media print, screen and (min-width: 769px) {
}
@media print, screen and (max-width: 768px) {
    .top-content#reason .col-3 {
        margin: 0 auto;
    }
}
/* ==== #service ==== */
.top-content#service {
    padding-top: var(--clamp-60); 
}
@media print, screen and (min-width: 769px) {
}
@media print, screen and (max-width: 768px) {
}
/* ==== #car ==== */
.top-content#car {
    padding-top: var(--clamp-90);
    padding-bottom: var(--clamp-50);
}
@media print, screen and (min-width: 769px) {
}
@media print, screen and (max-width: 768px) {
}
/* ==== #greeting ==== */
.top-content#greeting {
    padding-top: var(--clamp-50);
    padding-bottom: var(--clamp40);  
}
.top-content#greeting::before, .top-content#greeting::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.top-content#greeting::before {
    width: min(25%, 450px);
    background-image: url(/wp-content/uploads/top-greeting_bg01.png);
    left: -6.5%;
}
.top-content#greeting::after {
    width: min(25%, 450px);
    background-image: url(/wp-content/uploads/top-greeting_bg02.png);
    right: -6.5%;
}
@media print, screen and (min-width: 769px) {
}
@media print, screen and (max-width: 768px) {
}
/* ==== #instagram ==== */
.top-content#instagram {
    padding-top: var(--clamp-90); 
}
@media print, screen and (min-width: 769px) {
}
@media print, screen and (max-width: 768px) {
}
/* ==== cta-content ==== */
.cta-content {
	padding: var(--clamp-60) 0;
}
.cta-content .content_inner {
    outline: 1px solid var(--color-table-border);
    padding: min(3%,35px) min(3%,25px);
}
.cta-content .flexbox {
    gap: 20px;
}
.cta-content .txt {
    background-color: var(--color-primary-tint);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(var(--font-size24) * 5.5);
    width: calc(var(--font-size24) * 14.5);
	text-align: center;
}
.cta-content .txt h2 {
    margin-bottom: 0;
    padding-bottom: 0;
    padding-right: 1em;
    position: relative;
}
.cta-content .txt h2::after {
    content: '';
    position: absolute;
    width: auto;
    height: auto;
    background: transparent;
    border-left: calc(var(--font-size24) / 1.5) solid #FFF;
    border-top: calc(var(--font-size24) / 2) solid transparent;
    border-bottom: calc(var(--font-size24) / 2) solid transparent;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}
.cta-content .ctaBtn-area {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
	justify-content: center;
    gap: 20px;
    width: calc((100% - (var(--font-size24) * 14.5)) - 20px);
}
.cta-content a.ctaBtn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size20);
    font-weight: bold;
    font-family: var(--font-family01);
    line-height: 1.35;
    text-align: center;
    background-color: transparent;
    height: calc(var(--font-size20) * 5.5);
    width: 50%;
	color: var(--color-font);
	transition: .3s ease;
}
.cta-content a.ctaBtn:hover {
	opacity: .6;
}
.cta-content a.ctaBtn .num {
    position: relative;
    font-family: var(--font-family03);
    font-weight: bold;
    font-size: var(--font-size52);
    padding-left: 1.25em;
	transform: translateY(-2px);
}
.cta-content a.ctaBtn .num::before {
    font-family: 'FontAwesome';
    content: '\f095';
    position: absolute;
    left: 0;
    top: 0;
	color: var(--color-primary);
}
.cta-content a.ctaBtn .sub {
    position: relative;
    font-weight: 500;
    font-size: var(--font-size16);
    line-height: 2;
}
.cta-content a.ctaBtn--tel {
    /* background: transparent; */
    min-width: 150px;
}
.cta-content a.ctaBtn--mail {
    color: #FFF;
    background: var(--color-primary);
    border-radius: 55px;
}
.cta-content a.ctaBtn--mail::before {
    font-family: 'FontAwesome';
    content: '\f0e0';
}
@media print, screen and (min-width: 769px) {
}
@media print, screen and (max-width: 768px) {
.cta-content .flexbox {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cta-content .txt {
    width: 100%;
}
.cta-content .ctaBtn-area {
    width: 100%;
    flex-direction: column;
}
.cta-content .txt h2::after {
    border-top: calc(var(--font-size24) / 1.5) solid #FFF;
    border-left: calc(var(--font-size24) / 2) solid transparent;
    border-right: calc(var(--font-size24) / 2) solid transparent;
    border-bottom: 0;
}
.cta-content a.ctaBtn {
    width: 100%;
}
.cta-content a.ctaBtn--tel {
    height: auto;
}
}