@charset "UTF-8";
html {
    font-size: 62.5%;
}
pc_area {
    display: block;
}
phone_area {
    display: none;
}
/*サイド固定ボタン_PC*/

#floatMenu {
    width: 60px;
    height: 271px;
    position: absolute;
    top: 150px;
    right: 0px;
    padding: 0px;
}
@media screen and (min-width: 768px) {
    .br-sp {
        display: none;
    }
}
/* マウスリンク */

a img {
    border: none;
    verticle-align: top;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
a:hover img {
    opacity: 0.7; /* 透過レベル */
    filter: alpha(opacity=80);
}
/*表示・非表示PCとSP*/

.pc {
    display: inline !important;
}
.mb {
    display: none !important;
}
@media screen and (max-width: 768px) {
    /*タブレット、スマホの場合*/
    .pc {
        display: none !important;
    }
    .mb {
        display: inline !important;
    }
}
/*エフェクト*/

/* 画面外にいる状態 */

.fadein {
    opacity: 0.1;
    transform: translate(0, 50px);
    transition: all 500ms;
}
/* 画面内に入った状態 */

.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}
/*リンク設定*/

a {
    color: #e3cac7;
    transition: opacity 0.4s linear;
    text-decoration: none;
}
body {
    background-color: #fff;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    min-width: 1000px;
    margin: 0px auto;
}
.auto {
    background-color: #fff;
}
*,
*:before,
*:after {
    box-sizing: border-box;
}
img {
    width: 100%;
}

/*==================================================
ふわっ
===================================*/

/* fadeUp */

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* その場で */

.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeInAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* 右から */

.fadeRight {
    animation-name: fadeRightAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeRightAnime {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* 左から */

.fadeLeft {
    animation-name: fadeLeftAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 拡大 */
.zoomIn {
    animation-name: zoomInAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
    from {
        transform: scale(0.6);
    }

    to {
        transform: scale(1);
    }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger {
    opacity: 0;
}
.fadeInTrigger {
    opacity: 0;
}
.fadeRightTrigger {
    opacity: 0;
}
.fadeLeftTrigger {
    opacity: 0;
}

/* 動き もちもち動く*/
.mochimochi {
    animation: mochimochi 2s infinite;
}

@keyframes mochimochi {
    0% {
        transform: scale(1, 0.8);
    }
    20% {
        transform: scale(0.8, 1.1);
    }
    90% {
        transform: scale(1, 1);
    }
    100% {
        transform: scale(1, 0.8);
    }
}
/* 動き ぽよん*/
.poyon {
    animation: poyon 2.5s infinite;
}

@keyframes poyon {
    0% {
        transform: scale(1, 1) translate(0%, 0%);
    }
    15% {
        transform: scale(0.9, 0.9) translate(0%, 5%);
    }
    30% {
        transform: scale(1.3, 0.8) translate(0%, 10%);
    }
    50% {
        transform: scale(0.8, 1.3) translate(0%, -10%);
    }
    70% {
        transform: scale(1.1, 0.9) translate(0%, 5%);
    }
    100% {
        transform: scale(1, 1) translate(0%, 0%);
    }
}
.fuwafuwa {
    animation: fuwafuwa 2s infinite;
}

@keyframes fuwafuwa {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}
/*==================================================
スライダーのためのcss
===================================*/
.slider {
    margin-bottom: 40px;
}

.slider img {
    width: 100%; /*スライダー内の画像を横幅100%に*/
    height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin: 0 10px; /*スライド左右の余白調整*/
}

/*横並び２カラム_02_サービス内容*/

.col_2_2 {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 5px;
    display: flex;
    display: -ms-flexbox;
    /* IE10 */
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    /* IE10 */
}
.col_2_2 > div {
    width: 47.5%;
    padding-top: 0px;
    padding-bottom: 0px;
    margin: 8px;
    color: #000;
}
.col_2_2 > div p {
    font-size: 16px;
    margin: 0px 60px 0px 60px;
    line-height: 1.9em;
    text-align: left;
    font-size: 22px;
}
@media screen and (max-width: 767px) {
    .col_2_2 {
        margin-bottom: 0px;
    }
    .col_2_2 > div {
        width: 85%;
        margin: 0 auto;
        margin-bottom: 10px;
        text-align: center;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .col_2_2 > div p {
        font-size: 15px;
        line-height: 1.9em;
        margin: 0px 40px 0px 40px;
        font-size: 18px;
    }
}
/*よくある質問アコーディオン*/
.qa-006 {
    max-width: 100%;
    margin-bottom: 5px;
    border-bottom: 2px solid #d6dde3;
}

.qa-006 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 400;
    font-size: 140%;
    cursor: pointer;
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
@media screen and (max-width: 767px) {
    .qa-006 summary {
        font-size: 120%;
    }
}
.qa-006 summary::before,
.qa-006 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-006 summary::before {
    color: #94784d;
    content: "Q";
}

.qa-006 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: "";
    transition: transform 0.5s;
}

.qa-006[open] summary::after {
    transform: rotate(225deg);
}

.qa-006 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 0.3em 3em 1.5em;
    color: #986618;
    font-size: 20px;
    line-height: 1.8em;
    transition: transform 0.5s, opacity 0.5s;
}
@media screen and (max-width: 767px) {
    .qa-006 p {
        font-size: 16px;
    }
}

.qa-006[open] p {
    transform: none;
    opacity: 1;
}

.qa-006 p::before {
    color: #94784d;
    line-height: 1.2;
    content: "A";
}

/* 開かないQ&A */
.qa-008 {
    margin-top: 2em;
    margin-left: 20px;
    margin-right: 20px;
}
.qa-008 dt {
    margin-bottom: 1em;
    color: #333333;
    font-weight: 200;
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-size: 140%;
}

.qa-008 dt::before,
.qa-008 dd::before {
    margin-right: 0.4em;
}

.qa-008 dt::before {
    content: "Q.";
    color: #94784d;
    font-size: 120%;
}

.qa-008 dd {
    margin: 0 0 2.5em;
    padding: 1em 1.5em;
    background-color: #faf7f3;
    color: #333333;
    line-height: 1.8em;
}

.qa-008 dd::before {
    content: "A.";
}

@media screen and (max-width: 767px) {
    .qa-008 dt {
        margin-bottom: 1em;
        color: #333333;
        font-weight: 200;
        font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
        font-size: 120%;
    }
}
/* ページ全体の大枠 */

.container-wb {
    margin: 0px auto;
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: #fff;
    margin-top: 0px;
    margin-bottom: 0px;
}
/* 運営会社情報テーブル */
#table01 {
    width: 100%;
    margin-bottom: 0px;
}
#table01 tr {
    border-bottom: 1px solid #b5b1b1;
}

#table01 th,
#table01 td {
    padding: 12px 0;
    border: none;
    text-align: left;
}

#table01 th {
    width: 40%;
    font-size: 110%;
    text-align: left;
    font-weight: 300;
}

/* sp */
@media only screen and (max-width: 480px) {
    #table01 {
        margin-bottom: 0px;
    }
    #table01 th,
    #table01 td {
        width: 100%;
        display: block;
    }

    #table01 th {
        width: 100%;
        font-size: 120%;
        font-weight: 600;
    }

    #table01 td {
        padding-top: 0;
        text-align: left;
    }
}
.inner_img {
    width: 80%;
}
@media screen and (max-width: 767px) {
    .inner_img {
        width: 100%;
        margin: auto 0;
    }
}
/* FV_ボックス */
.box_fv {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
    padding: 0px;
    position: relative;
}
.box_fv p {
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .box_fv {
        width: 100%;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        padding: 0px;
        z-index: 1;
    }
    .box_fv p {
        margin: 0 auto;
    }
}

/* CTA */
/* CTA_茶色背景 */
.box_blown {
    width: 100%;
    margin: 0 auto;
    margin-top: 0px;
    padding: 80px 0px 80px 0px;
    font-size: 14px;
    color: #000;
    text-align: center;
    background: rgb(61, 46, 38);
    background: linear-gradient(90deg, rgba(61, 46, 38, 1) 0%, rgba(61, 46, 38, 1) 44%, rgba(103, 76, 33, 1) 100%, rgba(61, 46, 38, 1) 100%, rgba(0, 212, 255, 1) 100%);
}

.box_blown p {
    margin: 0 auto;
}
.box_blown h2 {
    margin: 0 auto;
    color: #fff;
    font-size: 200%;
    font-weight: 600;
}
@media screen and (max-width: 767px) {
    .box_blown {
        width: 100%;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        padding: 50px 10px 50px 10px;
        background: rgb(61, 46, 38);
        background: linear-gradient(90deg, rgba(61, 46, 38, 1) 0%, rgba(61, 46, 38, 1) 44%, rgba(103, 76, 33, 1) 100%, rgba(61, 46, 38, 1) 100%, rgba(0, 212, 255, 1) 100%);
    }

    .box_blown p {
        margin: 0 auto;
    }
}
/* CTA_ボックス */
.box_cta {
    width: 60%;
    margin: 0 auto;
    padding: 0px;
    text-align: left;
    font-size: 20px;
}

@media screen and (max-width: 767px) {
    /* 基本のボックス */
    .box_cta {
        width: 90%;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        padding: 0px;
        font-size: 18px;
    }
}
/*CTA_横並び２カラム*/
.col_2 {
    width: 100%;
    margin-top: 0px;
    display: flex;
    display: -ms-flexbox;
    gap: 0 100px;
    /* IE10 */
}
.col_2 > div {
    width: 47.5%;
    padding-top: 0px;
    padding-bottom: 0px;
    margin: 4px 0 0 0;
    color: #000;
}
.col_2 > div p {
    margin: 0px;
    line-height: 1.9em;
    text-align: left;
    font-size: 20px;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .col_2 {
        flex-direction: column;
    }
    .col_2 > div {
        width: 100%;
        margin: 0 auto;
        margin-bottom: 0px;
        text-align: center;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .col_2 > div p {
        font-size: 18px;
        line-height: 1.9em;
        margin: 0px;
    }
}
/* 02_顧問医師 */
/* 02_顧問医師_画像背景 */
.box_doctor {
    width: 100%;
    margin: 0 auto;
    margin-top: 0px;
    padding: 100px 0px 100px 0px;
    font-size: 14px;
    color: #000;
    text-align: center;
    background-image: url("../images/lp_202502_9bb1e515/doctor_bg_pc.jpg");
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

@media screen and (max-width: 767px) {
    .box_doctor {
        width: 100%;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        padding: 40px 0px 0px 0px;
        background-image: url("../images/lp_202502_9bb1e515/doctor_bg_sp.png");
        background-position: left top;
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-color: #dce8ee;
    }
}
/*02_顧問医師_横並び２カラム*/

.col_2_doctor {
    width: 100%;
    margin-top: 0px;
    display: flex;
    display: -ms-flexbox;
    /* IE10 */
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    /* IE10 */
}
.col_2_doctor > div {
    width: 50%;
    padding-top: 0px;
    padding-bottom: 0px;
    margin: 0px;
    color: #000;
}
.col_2_doctor > div p {
    margin: 0px;
    line-height: 1.9em;
    text-align: left;
    font-size: 18px;
}
.col_2_doctor > div h2 {
    font-size: 22px;
    margin: 0px;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 600;
}
@media screen and (max-width: 767px) {
    .col_2_doctor > div {
        width: 90%;
        margin: 0 auto;
        margin-bottom: 0px;
        text-align: center;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .col_2_doctor > div p {
        line-height: 1.9em;
        margin: 0px;
        font-size: 16px;
    }
    .col_2_doctor > div h2 {
        font-size: 20px;
    }
}
/* 03_提供サービス */
/* 03_提供サービス_オレンジ背景 */
.box_orange {
    width: 100%;
    margin: 0 auto;
    margin-top: -2px;
    padding: 80px 0px 40px 0px;
    font-size: 14px;
    color: #000;
    text-align: center;
    background-color: #ffe4b8;
}
.box_orange_2 {
    width: 100%;
    margin: 0 auto;
    margin-top: -2px;
    padding: 80px 0px 80px 0px;
    font-size: 14px;
    color: #000;
    text-align: center;
    background-color: #ffedd1;
}

@media screen and (max-width: 767px) {
    .box_orange {
        width: 100%;
        margin-top: -2px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        padding: 40px 0px 10px 0px;
        background-color: #ffe4b8;
    }
    .box_orange_2 {
        width: 100%;
        margin-top: -2px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        padding: 40px 0px 40px 0px;
        background-color: #ffedd1;
    }
}
/* 03_提供サービス_ボックス_ttl */

.box_orange_ttl {
    width: 60%;
    margin: 0 auto;
    padding: 0px;
    font-size: 14px;
    color: #000;
    text-align: center;
}
.box_orange_ttl p {
    margin: 30px;
    text-align: left;
    font-size: 18px;
    line-height: 1.8em;
}
@media screen and (max-width: 767px) {
    /* 03_提供サービス_ボックス_ttl */
    .box_orange_ttl {
        width: 100%;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        padding: 0px;
    }
    .box_orange_ttl p {
        margin: 30px;
        text-align: left;
        font-size: 16px;
        line-height: 1.8em;
    }
}
/*03_提供サービス_ボックス */
.box_orange_fst {
    width: 55%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 16px;
}
.box_orange_fst_txt {
    width: 55%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff6e7;
    margin-top: 0px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: normal;
    text-align: center;
}
.box_orange_fst_txt h3 {
    padding: 0.5rem 3rem;
    color: #fff;
    border-radius: 100vh;
    background-color: #3d2e26;
    color: #fff;
    font-weight: normal;
    margin-bottom: 10px;
}
.box_orange_wh {
    width: 55%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    margin-top: 0px;
    margin-bottom: 20px;
    font-size: 16px;
}
.box_orange_wh p {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.8em;
}
@media screen and (max-width: 767px) {
    .box_orange_fst {
        width: 90%;
        text-align: left;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        font-size: 14px;
        padding: 20px;
        background-color: #fff;
    }

    .box_orange_fst_txt {
        width: 90%;
        text-align: center;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 20px;
        margin-left: auto;
        font-size: 16px;
        padding: 20px 30px 30px 30px;
        background-color: #fff6e7;
    }
    .box_orange_fst_txt h3 {
        padding: 0.5rem 3rem;
        color: #fff;
        border-radius: 100vh;
        background-color: #3d2e26;
        color: #fff;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .box_orange_wh {
        width: 90%;
        text-align: left;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        font-size: 14px;
        padding: 20px;
        background-color: #fff;
    }
    .box_orange_wh p {
        text-align: left;
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 1.8em;
    }
}
/*03_提供サービス_横並び２カラム*/

.col_2_service {
    width: 100%;
    margin-top: 0px;
    display: flex;
    display: -ms-flexbox;
    /* IE10 */
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    /* IE10 */
}
.col_2_service > div {
    width: 47%;
    padding-top: 0px;
    padding-bottom: 0px;
    margin: 8px;
    color: #000;
}
.col_2_service > div p {
    margin: 0px;
    line-height: 1.9em;
    text-align: left;
    font-size: 18px;
    margin-left: 10px;
}
.col_2_service > div h2 {
    font-size: 22px;
    margin: 0px;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 600;
}
@media screen and (max-width: 767px) {
    .col_2_service > div {
        width: 100%;
        margin: 0 auto;
        margin-bottom: 0px;
        text-align: center;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .col_2_service > div p {
        font-size: 16px;
        line-height: 1.9em;
        margin: 0px;
        margin-left: 0px;
    }
}
/*03_提供サービス_オプション_横並び２カラム*/

.col_2_service2 {
    width: 100%;
    margin-top: 0px;
    display: flex;
    display: -ms-flexbox;
    /* IE10 */
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    /* IE10 */
}
.col_2_service2 > div {
    width: 47%;
    padding: 20px;
    margin: 8px;
    color: #000;
    background-color: #fff;
}
.col_2_service2 > div p {
    margin: 0px;
    line-height: 1.9em;
    text-align: left;
    font-size: 18px;
    margin-left: 10px;
}
.col_2_service2 > div h2 {
    font-size: 22px;
    margin: 0px;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 600;
}
@media screen and (max-width: 767px) {
    .col_2_service2 > div {
        width: 90%;
        margin: 0 auto;
        margin-bottom: 10px;
        text-align: center;
    }
    .col_2_service2 > div p {
        font-size: 16px;
        line-height: 1.9em;
        margin: 0px;
        margin-left: 0px;
    }
}
/* 04_対応事案 */
/* 04_対応事案_画像背景 */
.box_case {
    width: 100%;
    margin: 0 auto;
    margin-top: 0px;
    padding: 100px 0px 100px 0px;
    font-size: 14px;
    color: #000;
    text-align: center;
    background-image: url("../images/lp_202502_9bb1e515/case_bg_pc.jpg");
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-color: #f9f9f9;
}

@media screen and (max-width: 767px) {
    .box_case {
        width: 100%;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        padding: 40px 0px 40px 0px;
        background-image: url("http://book-bug.com/test_05/asset/images/04_case/case_bg_sp.jpg");
        background-position: left top;
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-color: #f9f9f9;
    }
}
/*04_対応事案_横並び4カラム*/

.col_4 {
    width: 100%;
    margin-top: 0px;
    display: flex;
    display: -ms-flexbox;
    /* IE10 */
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    /* IE10 */
}
.col_4 > div {
    width: 25%;
    padding-top: 0px;
    padding-bottom: 0px;
    margin: 0px;
    color: #000;
}

@media screen and (max-width: 767px) {
    .col_4 > div {
        width: 50%;
        margin: 0 auto;
        margin-bottom: 0px;
        text-align: center;
        padding-top: 0px;
        padding-bottom: 0px;
    }
}

.txt_case_appeal {
    /*font-weight: bolder;*/
    text-align: center;
    font-size: 24px;
    line-height: 1.5em;
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    padding-top: 15px;
}

/* 05_こんな方に選ばれています */
/* 05_こんな方に選ばれています_画像背景 */
.box_choice {
    width: 100%;
    margin: 0 auto;
    margin-top: 0px;
    padding: 90px 0px 90px 0px;
    font-size: 14px;
    color: #000;
    text-align: center;
    background-image: url("../images/lp_202502_9bb1e515/choice_bg.jpg");
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

@media screen and (max-width: 767px) {
    .box_choice {
        width: 100%;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        padding: 40px 0px 40px 0px;
        background-image: url("../images/lp_202502_9bb1e515/choice_bg_sp.jpg");
        background-position: left top;
        background-repeat: no-repeat;
        background-size: 100% auto;
    }
}
/*06_特徴*/
.marker {
    background: linear-gradient(transparent 0, #fff4e2 0);
}
.feature_ttl {
    width: 100%;
    max-width: 470px;
}
.box_feature {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    padding: 0px;
    /* padding-bottom: 80px; */
    /* background-color: #fff; */
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 16px;
}
.box_feature p {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 80px;
    margin-right: 80px;
    font-size: 20px;
    line-height: 1.8em;
}
@media screen and (max-width: 767px) {
    .feature_ttl {
        width: 90%;
        margin-bottom: 40px;
    }
    .box_feature {
        width: 90%;
        text-align: left;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 40px;
        margin-left: auto;
        font-size: 14px;
    }
    .box_feature p {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 20px;
        margin-right: 20px;
        font-size: 18px;
        line-height: 1.8em;
    }
}
/* 07_料金 */
/* 07_料金_グレー背景 */
.box_gray {
    width: 100%;
    margin: 0 auto;
    margin-top: -2px;
    padding: 80px 0px 40px 0px;
    font-size: 14px;
    color: #000;
    text-align: center;
    background-color: #f9f9f9;
}
.box_gray2 {
    width: 100%;
    margin: 0 auto;
    margin-top: -2px;
    padding: 80px 0px 80px 0px;
    font-size: 14px;
    color: #000;
    text-align: center;
    background-color: #eeeeee;
}
@media screen and (max-width: 767px) {
    .box_gray {
        width: 100%;
        margin-top: -2px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        padding: 40px 0px 10px 0px;
        background-color: #f9f9f9;
    }
    .box_gray2 {
        width: 100%;
        margin-top: -2px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        padding: 40px 0px 10px 0px;
        background-color: #eeeeee;
    }
}
/* 07_料金_ボックス */
.box_price {
    width: 55%;
    margin: 0 auto;
    padding: 0px;
    padding-bottom: 40px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 16px;
}
.box_price h2 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 80px;
    margin-right: 80px;
    font-size: 20px;
    line-height: 1.8em;
}
.box_price p {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.8em;
}
@media screen and (max-width: 767px) {
    .box_price {
        width: 90%;
        text-align: left;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        font-size: 14px;
    }
    .box_price h2 {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 30px;
        margin-right: 30px;
        font-size: 16px;
        line-height: 1.8em;
    }
    .box_price p {
        text-align: left;
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 1.8em;
    }
}
/*08_依頼者_横並び3カラム*/

.col_3 {
    width: 100%;
    margin-top: 0px;
    display: flex;
    display: -ms-flexbox;
    /* IE10 */
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    /* IE10 */
}
.col_3 > div {
    width: 30.33333%;
    padding-top: 0px;
    padding-bottom: 0px;
    margin: 8px;
    color: #000;
}

@media screen and (max-width: 767px) {
    .col_3 > div {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 10px;
        text-align: center;
        padding-top: 0px;
        padding-bottom: 0px;
    }
}
/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
    display: none;
}
.hide-area p {
    font-size: 16px;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
    background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
    background: #666;
}
/* イメージボックス */

.box_img {
    width: 65%;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 60px;
    text-align: left;
    font-size: 18px;
    background-color: #fff;
}

@media screen and (max-width: 767px) {
    /* 基本のボックス */
    .box_img {
        width: 95%;
        margin-top: 30px;
        margin-right: auto;
        margin-bottom: 10px;
        margin-left: auto;
        padding: 10px;
        font-size: 16px;
    }
}

/* 011_自負 */
/* 011_自負 */
.box_last {
    width: 100%;
    margin: 0 auto;
    margin-top: 0px;
    padding: 80px 0px 80px 0px;
    font-size: 14px;
    color: #000;
    text-align: center;
    background-image: url("../images/lp_202502_9bb1e515/last_bg.jpg");
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-color: #000;
}

.box_last_in {
    width: 75%;
    margin: 0 auto;
    padding: 0px;
    padding-bottom: 0px;
    background-color: #fff;
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 16px;
}
.box_last_in p {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 80px;
    margin-right: 80px;
    font-size: 19px;
    line-height: 2.2em;
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
@media screen and (max-width: 767px) {
    .box_last {
        width: 100%;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        padding: 40px 0px 40px 0px;
        background-image: url("../images/lp_202502_9bb1e515/last_bg_sp.jpg");
        background-position: left top;
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-color: #000000;
    }
    .box_last_in {
        width: 90%;
        text-align: left;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        font-size: 14px;
        background-color: #fff;
    }
    .box_last_in p {
        text-align: left;
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 1.8em;
        margin-left: 30px;
        margin-right: 30px;
        font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    }
}
/* 基本のコンテンツボックス */

.box {
    width: 70%;
    margin: 0 auto;
    padding: 0px;
    font-size: 14px;
    color: #000;
    text-align: center;
}

.box p {
    margin: 30px;
    text-align: left;
    font-size: 18px;
    line-height: 1.8em;
}
@media screen and (max-width: 767px) {
    /* 基本のボックス */
    .box {
        width: 90%;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        padding: 0px;
    }

    .box p {
        margin: 30px;
        text-align: left;
        font-size: 16px;
        line-height: 1.8em;
    }
}
/* 基本のコンテンツボックス2_PCの場合横長 */

.box2 {
    width: 100%;
    margin: 0 auto;
    padding: 0px;
    font-size: 14px;
    color: #000;
    text-align: center;
}

@media screen and (max-width: 767px) {
    /* 基本のボックス */
    .box2 {
        width: 100%;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        padding: 0px;
    }
}

/* 08_料金プラン用背景_水色 */

.box_aqua {
    width: 100%;
    margin: 0 auto;
    margin-top: 0px;
    margin-bottom: 60px;
    padding: 80px 0px 40px 0px;
    font-size: 14px;
    color: #000;
    text-align: center;
    background-color: #01d7c0;
}

.box_aqua p {
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .box_aqua {
        width: 100%;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 50px;
        margin-left: auto;
        padding: 40px 0px 0px 0px;
        background-color: #01d7c0;
    }
    .box_aqua p {
        margin: 0 auto;
    }
}

/*containerの設定*/

.container {
    width: 100%;
    margin: 0px auto;
}
.br-onlypc {
    display: block;
}
.br-onlysp {
    display: none;
}
.image {
    line-height: 0;
}
/*フッターの設定*/

.footer {
    width: 100%;
    background-color: #fff;
    color: #222;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0 auto;
    font-size: 12px;
}

.js-end {
    background-color: #000;
    font-size: 50px;
    font-weight: bold;
    color: #ff0000;
    text-align: center;
    max-width: 930px;
    margin: 0 auto;
    padding: 2rem 0;
}
@media screen and (max-width: 767px) {
    body {
        min-width: 100%;
        line-height: 1.5;
    }
    .auto {
        background-color: #fff;
    }
    pc_area {
        display: none;
    }
    phone_area {
        display: block;
    }
    .container-wb {
        width: 100%;
        margin: 0px auto;
        margin-bottom: 0px;
        margin-top: 0px;
        padding: 0px auto;
        padding-bottom: 0px;
        padding-top: 0px;
        overflow: hidden;
    }

    /* フッター */
    .footer {
        width: 100%;
        background-color: #fff;
        text-align: center;
        width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
        margin-bottom: 0px;
        margin-top: 0px;
        color: #222;
        height: 170px;
        font-size: 12px;
    }
    .footer2 {
        padding-top: 0px;
        padding-bottom: 0px;
        text-align: center;
        width: 100%;
        z-index: 100;
        position: fixed;
        /*←絶対位置*/
        bottom: 0;
        /*下に固定*/
    }
}

/* 20241019 CTA変更 追加分 */

.cta2 {
    background: #f39800;
    padding-top: 70px;
    padding-bottom: 80px;
}
.cta2 img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta2__container {
    width: 70%;
    max-width: 1340px;
    margin-inline: auto;
}
.cta2__inner {
    background: #fff;
    border-radius: 20px;
    padding-block: 40px;
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
}
.cta2__info {
    width: 46%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.cta2__title {
    width: 63.4%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.cta2__tel-image {
    width: 82%;
    margin-inline: auto;
    padding-left: 4px;
}
.cta2__tel-image.pc {
    display: flex !important;
}
.cta2__tel-image.mb {
    display: none !important;
}
.cta2__tel {
    position: relative;
}
.cta2__tel:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 135px;
    background: #eee;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.cta2__cta {
    width: 85%;
    margin-inline: auto;
}
.cta2__cta-text {
    width: 55%;
    margin-inline: auto;
    margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
    .cta2 {
        padding-top: 46px;
        padding-bottom: 60px;
    }
    .cta2__container {
        width: 90%;
    }
    .cta2__inner {
        grid-template-columns: 1fr;
        padding-block: 30px 21px;
    }
    .cta2__info {
        width: 90%;
        margin-bottom: 27px;
    }
    .cta2__title {
        width: 90%;
        margin-bottom: 16px;
    }
    .cta2__tel {
        padding-bottom: 20px;
    }
    .cta2__tel:before {
        inset: unset;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 88%;
        height: 2px;
    }
    .cta2__tel-image {
        width: 85%;
        margin-inline: auto;
        padding-inline: 0;
    }
    .cta2__tel-image.pc {
        display: none !important;
    }
    .cta2__tel-image.mb {
        display: flex !important;
    }
    .cta2__cta {
        width: 90%;
        margin-inline: auto;
        padding-inline: 0;
        padding-top: 20px;
    }
    .cta2__cta-text {
        width: 71%;
    }
}

/* 20241114 追加分 */
.service-section {
    padding-block: 104px 100px;
}
.service-title {
    margin-inline: auto;
    width: 22%;
    max-width: 425px;
    margin-bottom: 40px;
}
.service-contents {
    background-color: #ffe4b8;
}
.service-contents-image {
    width: 90%;
    max-width: 1060px;
    margin-inline: auto;
}

.box_case {
    padding-bottom: 67px;
}
.case-title {
    width: calc(302 / 1900 * 100vw);
    max-width: 302px;
    margin-bottom: 40px;
}

.feature-title-wrapper,
.flow-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.feature-company-logo,
.flow-company-logo {
    width: calc(350 / 1900 * 100vw);
    max-width: 350px;
    margin-bottom: 32px;
}
.feature-title {
    width: calc(451 / 1900 * 100vw);
    max-width: 451px;
}
.box-feature-first {
    margin-top: 20px;
}
.feature-section {
    padding-block: 77px 110px;
}
.price-title {
    width: calc(289 / 1900 * 100vw);
    max-width: 289px;
    /* margin-bottom: 40px; */
}

.user-title {
    width: calc(665 / 1900 * 100vw);
    max-width: 665px;
}
.user-section {
    padding-top: 100px;
    padding-bottom: 100px;
}
.box_user {
    width: 55%;
    margin: 0 auto;
    padding: 0px;
    margin-top: 50px;
    margin-bottom: 0;
}
.user_badge_wrap {
    display: block;
    width: min(calc((755 / 1920) * 100vw), 755px);
    margin: min(calc((62 / 1920) * 100vw), 62px) auto 10px;
}
.user_voice_wrap {
    display: block;
    width: min(calc((1060 / 1920) * 100vw), 1060px);
    margin: 0 auto;
}
.flow-title {
    width: calc(438 / 1900 * 100vw);
    max-width: 438px;
    /* margin-bottom: 40px; */
}

.flow-section {
    padding-block: 77px 100px;
}
.box_flow {
    width: 55%;
    margin: 0 auto;
    padding: 0px;
    margin-top: 50px;
}
.qa-title {
    width: calc(298 / 1900 * 100vw);
    max-width: 298px;
    /* margin-bottom: 40px; */
}
.box_choice {
    background-size: cover;
}
.box_cta {
    min-width: 650px;
}
.box_feature {
    width: 90%;
}

@media screen and (max-width: 767px) {
    .box_choice {
        background-size: cover;
    }
    .box_cta {
        min-width: unset;
    }
    .service-section {
        padding-block: 60px 50px;
    }
    .service-title {
        width: calc(475 / 750 * 100vw);
        max-width: unset;
        /* max-width: calc(475px / 2); */
        margin-bottom: 28px;
    }
    .service-contents-image {
        width: calc(690 / 750 * 100vw);
    }
    .case-title {
        width: calc(350 / 750 * 100vw);
        max-width: unset;
        margin-bottom: 28px;
    }
    .box_case {
        padding-top: 50px;
        padding-bottom: 45px;
    }
    .box_feature {
        width: calc(690 / 750 * 100vw);
        margin-bottom: 19px;
    }
    .feature-company-logo,
    .flow-company-logo {
        width: calc(342 / 750 * 100vw);
        max-width: unset;
        margin-bottom: 16px;
    }
    .feature-section {
        padding-block: 41px 27px;
    }
    .feature-title {
        width: calc(510 / 750 * 100vw);
        max-width: unset;
    }
    .box-feature-first {
        margin-top: 16px;
    }
    .price-title {
        width: calc(332 / 750 * 100vw);
        max-width: unset;
        margin-bottom: 50px;
    }
    .user-title {
        width: calc(644 / 750 * 100vw);
        max-width: unset;
    }
    .user-section {
        padding-top: 51px;
        padding-bottom: 62px;
    }
    .box_user {
        width: 90%;
        margin-top: 25px;
    }
    .user_badge_wrap {
        width: min(calc((335 / 375) * 100vw), 670px);
        margin: min(calc((25 / 375) * 100vw), 50px) auto min(calc((7 / 375) * 100vw), 14px);
    }
    .user_voice_wrap {
        width: min(calc((345 / 375) * 100vw), 690px);
    }
    .flow-title {
        width: calc(522 / 750 * 100vw);
        max-width: unset;
    }
    .flow-section {
        padding-block: 39px 53px;
    }
    .box_flow {
        width: 90%;
        margin-top: 26px;
    }
    .qa-title {
        width: calc(356 / 750 * 100vw);
        max-width: unset;
        /* margin-bottom: 40px; */
    }
}

/* ==================================================
フォーム
================================================== */
.header_logo_wrap {
    display: none;
}
.box_orange.box_form {
    padding: 60px 0 50px;
    position: relative;
    z-index: 2;
}
.form_ttl {
    width: min(calc((234 / 375) * 100vw), 527px);
}
@media all and (min-width: 768px) {
    .box_orange.box_form {
        padding: 112px 0;
    }
    .form_ttl {
        width: 465px;
    }
}

.contact-form table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
}

/* .c-form
================================================== */
input.c-form-parts,
select.c-form-parts,
textarea.c-form-parts,
button.c-form-parts {
    display: block;
    width: 100%;
    height: 50px;
    padding: 5px 15px;
    border: 1px solid #dddddd;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 1.4rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

input.c-form-parts::-webkit-input-placeholder,
select.c-form-parts::-webkit-input-placeholder,
textarea.c-form-parts::-webkit-input-placeholder,
button.c-form-parts::-webkit-input-placeholder {
    color: #808080;
    font-size: 1.4rem;
}

input.c-form-parts::-moz-placeholder,
select.c-form-parts::-moz-placeholder,
textarea.c-form-parts::-moz-placeholder,
button.c-form-parts::-moz-placeholder {
    color: #808080;
    font-size: 1.4rem;
}

input.c-form-parts:-ms-input-placeholder,
select.c-form-parts:-ms-input-placeholder,
textarea.c-form-parts:-ms-input-placeholder,
button.c-form-parts:-ms-input-placeholder {
    color: #808080;
    font-size: 1.4rem;
}

input.c-form-parts::-ms-input-placeholder,
select.c-form-parts::-ms-input-placeholder,
textarea.c-form-parts::-ms-input-placeholder,
button.c-form-parts::-ms-input-placeholder {
    color: #808080;
    font-size: 1.4rem;
}

input.c-form-parts::placeholder,
select.c-form-parts::placeholder,
textarea.c-form-parts::placeholder,
button.c-form-parts::placeholder {
    color: #808080;
    font-size: 1.4rem;
}

@media all and (min-width: 768px) {
    input.c-form-parts,
    select.c-form-parts,
    textarea.c-form-parts,
    button.c-form-parts {
        height: 46px;
        font-size: 1.6rem;
    }
    input.c-form-parts::-webkit-input-placeholder,
    select.c-form-parts::-webkit-input-placeholder,
    textarea.c-form-parts::-webkit-input-placeholder,
    button.c-form-parts::-webkit-input-placeholder {
        font-size: 1.6rem;
    }

    input.c-form-parts::-moz-placeholder,
    select.c-form-parts::-moz-placeholder,
    textarea.c-form-parts::-moz-placeholder,
    button.c-form-parts::-moz-placeholder {
        font-size: 1.6rem;
    }

    input.c-form-parts:-ms-input-placeholder,
    select.c-form-parts:-ms-input-placeholder,
    textarea.c-form-parts:-ms-input-placeholder,
    button.c-form-parts:-ms-input-placeholder {
        font-size: 1.6rem;
    }

    input.c-form-parts::-ms-input-placeholder,
    select.c-form-parts::-ms-input-placeholder,
    textarea.c-form-parts::-ms-input-placeholder,
    button.c-form-parts::-ms-input-placeholder {
        font-size: 1.6rem;
    }

    input.c-form-parts::placeholder,
    select.c-form-parts::placeholder,
    textarea.c-form-parts::placeholder,
    button.c-form-parts::placeholder {
        font-size: 1.6rem;
    }
}

textarea.c-form-parts {
    height: 180px;
    resize: vertical;
    padding: 10px 15px;
}

@media all and (min-width: 768px) {
    textarea.c-form-parts {
        height: 250px;
        padding: 15px;
    }
}

.c-form-parts-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -20px;
}

.c-form-parts-list .c-form-parts {
    margin-right: 20px;
}

.c-form-parts-list.is-flex-enb {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

/* .c-form.is-default
================================================== */
.c-form.is-default tr:first-of-type {
    border-top: 1px solid #dddddd;
}

.c-form.is-default th,
.c-form.is-default td {
    border-width: 0;
    border-style: solid;
    color: #000 !important;
}

.c-form.is-default th {
    padding: 26px 0 19px;
    font-weight: 700;
    text-align: left;
    vertical-align: middle;
}

.c-form.is-default td {
    text-align: left;
    padding-bottom: 29px;
    border-bottom: 1px solid #dddddd;
}
.c-form.is-default td a {
    color: #000 !important;
}
@media all and (max-width: 767px) {
    .c-form.is-default table,
    .c-form.is-default thead,
    .c-form.is-default tbody,
    .c-form.is-default tr,
    .c-form.is-default th,
    .c-form.is-default td {
        display: block;
    }
}

@media all and (min-width: 768px) {
    .c-form.is-default th {
        position: relative;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 340px;
        padding: 35px 72px 35px 10px;
        border-bottom: 1px solid #dddddd;
        vertical-align: top;
        font-size: 2rem;
    }
    .c-form.is-default td {
        padding: 30px 0 30px 47px;
        vertical-align: top;
    }
}

@media all and (min-width: 768px) {
    .mw_wp_form_confirm .c-form.is-default th,
    .mw_wp_form_confirm .c-form.is-default td {
        padding: 35px 25px;
    }
    .mw_wp_form_confirm .c-form.is-default td {
        font-size: 1.8rem;
    }
}

/* .c-form-label
================================================== */
.c-form-label {
    display: inline-block;
    -webkit-transform: translatey(-1px);
    transform: translatey(-1px);
    margin-left: 26px;
    padding: 4px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #8b8d98;
    font-size: 1.1rem;
    color: #fff;
    line-height: 1;
    font-weight: normal;
}

.c-form-label.is-required {
    background: #ffaf00;
}

@media all and (min-width: 768px) {
    .c-form-label {
        position: absolute;
        top: 40px;
        right: 0;
        -webkit-transform: translatey(0);
        transform: translatey(0);
        padding: 4px 12px;
        font-size: 1.6rem;
    }
}

/* .c-form-postcode
================================================== */
.c-form-postcode {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.c-form-postcode__prefix {
    -ms-flex-preferred-size: 23px;
    flex-basis: 23px;
    max-width: 23px;
    padding-top: 10px;
    font-weight: 700;
}

.c-form-postcode__input {
    -ms-flex-preferred-size: calc(100% - 26px);
    flex-basis: calc(100% - 26px);
    max-width: calc(100% - 26px);
}

@media all and (min-width: 768px) {
    .c-form-postcode__prefix {
        -ms-flex-preferred-size: 26px;
        flex-basis: 26px;
        max-width: 26px;
        font-size: 18px;
    }
    .c-form-postcode__input {
        -ms-flex-preferred-size: 200px;
        flex-basis: 200px;
        max-width: 200px;
    }
}
/* 確認画面・thnaks共通
================================================ */
.container-wb:has(.mw_wp_form_confirm, .contact-thanks) .header_logo_wrap {
    display: block;
    background: #fff;
    padding: 20px 10px;
    text-align: center;
}
.container-wb:has(.mw_wp_form_confirm, .contact-thanks) .header_logo_wrap img {
    width: 80%;
}
:is(.mw_wp_form_confirm, .contact-thanks) .box_orange.box_form {
    padding: 40px 0;
}
.container-wb:has(.mw_wp_form_confirm, .contact-thanks) .footer {
    height: auto !important;
}
@media all and (min-width: 768px) {
    .container-wb:has(.mw_wp_form_confirm, .contact-thanks) .header_logo_wrap {
        padding: 25px;
    }
    .container-wb:has(.mw_wp_form_confirm, .contact-thanks) .header_logo_wrap img {
        width: 348px;
    }
    :is(.mw_wp_form_confirm, .contact-thanks) .box_orange.box_form {
        padding: 95px 0 100px;
    }
}
/* 確認画面
================================================ */

.mw_wp_form_confirm .c-form-postcode .c-form-postcode__prefix,
.is-confirm .c-form-postcode .c-form-postcode__prefix {
    max-width: none;
    padding-top: 0;
}

.mw_wp_form_confirm .c-form-postcode .c-form-postcode__input,
.is-confirm .c-form-postcode .c-form-postcode__input {
    max-width: none;
}

.container-wb:has(.mw_wp_form_confirm) .lp-inner,
.container-wb:has(.mw_wp_form_confirm) .box_orange_ttl.form_ttl,
.container-wb:has(.mw_wp_form_confirm) .box_orange_ttl.form_ttl,
.container-wb:has(.mw_wp_form_confirm) .box_blown,
.container-wb:has(.mw_wp_form_confirm) ~ .footer2.mb,
.container-wb:has(.mw_wp_form_confirm) ~ #floatMenu {
    display: none !important;
}

/* .c-form-address
================================================== */
.c-form-address {
    margin-top: 10px;
}

@media all and (min-width: 768px) {
    .c-form-address {
        margin-top: 15px;
    }
}

/* .c-form-agreement
================================================== */
.c-form-agreement {
    margin-top: 24px;
    text-align: center;
}

.c-form-agreement-area {
    margin-top: 25px;
    padding: 0 7px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.c-form-agreement__txt {
    margin-bottom: 16px;
    line-height: 1.6;
}
.c-form-agreement__txt a {
    color: #16305b;
}

@media all and (min-width: 768px) {
    .c-form-agreement {
        margin-top: 36px;
        font-size: 1.6rem;
        line-height: 2;
    }
    .c-form-agreement-area {
        margin-top: 40px;
        padding: 0;
        text-align: center;
    }
    .c-form-agreement__txt {
        margin-bottom: 20px;
        font-size: 1.6rem;
    }
}
.c-form-policy-box {
    height: 130px;
    padding: 12px 12px 10px 0;
    overflow-y: scroll;
    border: 1px solid #ccc;
}
.c-form-policy-box__ttl {
    margin-bottom: 8px;
    padding-left: 12px;
    font-weight: bold;
    text-align: left;
    font-size: 1.2rem;
}
@media all and (min-width: 768px) {
    .c-form-policy-box {
        height: 160px;
        padding: 20px 20px 10px 0;
    }
    .c-form-policy-box__ttl {
        margin-bottom: 8px;
        padding-left: 1.5em;
        font-size: 1.6rem;
    }
}
.c-form-policy-box .c-list-num01 {
    counter-reset: count 0;
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.6;
}

.c-form-policy-box .c-list-num01__item {
    position: relative;
    padding-left: 12px;
}
@media all and (min-width: 768px) {
    .c-form-policy-box .c-list-num01 {
        font-size: 1.6rem;
    }
    .c-form-policy-box .c-list-num01__item {
        padding-left: 1.5em;
    }
}
.c-form-policy-box .c-list-num01__item::before {
    content: counter(count) ". ";
    counter-increment: count 1;
}
.c-form-policy-box .privacy-sec-list__item-head {
    display: inline-block;
}
.privacy-sec-list__item {
    margin-bottom: 16px;
}

.privacy-sec-list__item:last-child {
    margin-bottom: 0;
}

.privacy-sec-list__item-txt + .privacy-sec-list__item-txt {
    margin-top: 15px;
}

.privacy-sec-list-child + .privacy-sec-list__item-txt {
    margin-top: 15px;
}

.privacy-sec-box + .privacy-sec-list__item-txt {
    margin-top: 15px;
}

.privacy-sec-list-child {
    margin: 15px 0 0;
}
@media all and (min-width: 768px) {
    .privacy-sec-list__item {
        margin-bottom: 30px;
    }
    .privacy-sec-list__item:last-child {
        margin-bottom: 0;
    }
    .privacy-sec-list__item-txt + .privacy-sec-list__item-txt {
        margin-top: 20px;
    }
    .privacy-sec-list-child + .privacy-sec-list__item-txt {
        margin-top: 10px;
    }
    .privacy-sec-box + .privacy-sec-list__item-txt {
        margin-top: 10px;
    }
    .privacy-sec-list-child {
        margin-top: 10px;
    }
}
.mw_wp_form_confirm .c-form-agreement-area {
    display: none;
}

/*  .c-btn01.is-yellow
================================================== */
.c-btn01.is-yellow .c-btn01__link {
    color: #fff;
    background: #ffaf00;
    border: none;
}

.c-btn01.is-yellow .c-btn01__ico {
    color: #fff;
}

/*  .c-btn01
================================================== */
.c-btn01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 260px;
    max-width: 100%;
    margin: 25px auto 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.c-btn01__link {
    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;
    position: relative;
    width: 100%;
    min-height: 60px;
    padding: 10px 35px;
    overflow: hidden;
    border: 1px solid #4c4948;
    border-radius: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    font-weight: 700;
    line-height: 1.5;
}

.c-btn01__ico {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-btn01__ico svg {
    width: 11.25px;
    height: 9.84px;
}
.c-btn01__txt {
    font-size: 16px;
}
@media all and (max-width: 360px) {
    .c-btn01__link {
        padding: 10px 30px;
    }
    .c-btn01__ico {
        right: 15px;
    }
}

@media all and (min-width: 768px) {
    .c-btn01 {
        width: 310px;
    }
    .c-btn01__link {
        min-height: 64px;
        padding: 10px 45px;
        border-radius: 32px;
        -webkit-transition: color 0.4s ease;
        transition: color 0.4s ease;
    }
    .c-btn01__link:hover {
        color: #fff;
    }
    .c-btn01__link:hover::before {
        right: auto;
        left: 0;
        width: 100%;
    }
    .c-btn01__link::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 100%;
        background: #4c4948;
        -webkit-transition: width 0.4s ease;
        transition: width 0.4s ease;
    }
    .c-btn01__txt {
        position: relative;
        z-index: 1;
    }
    .c-btn01__ico {
        right: 30px;
    }
    .c-btn01__ico svg {
        width: 14px;
        height: 12.25px;
    }
}

/* .c-form-btn
================================================== */
.c-form-area-btn {
    margin-top: 35px;
}

@media all and (min-width: 768px) {
    .c-form-area-btn {
        margin-top: 45px;
    }
}

.c-form-btn {
    width: 100%;
    max-width: 280px;
    cursor: pointer;
    border: none;
    background: none;
}

.c-form-btn.is-reverse .c-form-btn__link::after {
    right: auto;
    left: 20px;
    -webkit-transform: translateY(-50%) scale(-1, 1);
    transform: translateY(-50%) scale(-1, 1);
}

.c-form-btn__link {
    height: 60px;
    font-weight: 700;
}

.c-form-btn__link::after {
    content: "";
    display: block;
    width: 11.25px;
    height: 9.84px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2215%22%20height%3D%2213.127%22%20viewBox%3D%220%200%2015%2013.127%22%3E%20%3Cpath%20id%3D%22%E5%90%88%E4%BD%93_48%22%20data-name%3D%22%E5%90%88%E4%BD%93%2048%22%20d%3D%22M17789.773%2C17378.85a.936.936%2C0%2C0%2C1%2C0-1.326l4.023-4.023h-10.859a.938.938%2C0%2C0%2C1%2C0-1.875h10.857l-4.021-4.02a.957.957%2C0%2C0%2C1-.277-.668.943.943%2C0%2C0%2C1%2C.277-.662.936.936%2C0%2C0%2C1%2C1.326%2C0l5.625%2C5.625a.933.933%2C0%2C0%2C1%2C.275.662.946.946%2C0%2C0%2C1-.275.668l-5.625%2C5.619a.931.931%2C0%2C0%2C1-1.326%2C0Z%22%20transform%3D%22translate(-17782%20-17366)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-form-btn + .c-form-btn {
    margin-top: 10px;
}

@media all and (max-width: 360px) {
    .c-form-btn {
        max-width: 220px;
    }
}

@media all and (min-width: 768px) {
    .c-form-btn {
        max-width: 300px;
    }
    .c-form-btn.is-reverse .c-form-btn__link::after {
        right: auto;
        left: 30px;
    }
    .c-form-btn__link {
        font-size: 1.6rem;
    }
    .c-form-btn__link::after {
        width: 14px;
        height: 12.25px;
        right: 30px;
    }
}

@media all and (min-width: 768px) {
    .mw_wp_form_confirm .c-form-area-btn {
        margin-top: 44px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
    .mw_wp_form_confirm .c-form-btn {
        margin: 0 30px;
    }
    .mw_wp_form_confirm .c-form-btn + .mw_wp_form_confirm .c-form-btn {
        margin-top: 0;
    }
}

/* .c-form .mwform-radio-field
================================================ */
.c-form .mwform-radio-field,
.c-form .c-radio {
    display: block;
}

.c-form .mwform-radio-field + .mwform-radio-field,
.c-form .mwform-radio-field + .c-radio,
.c-form .c-radio + .mwform-radio-field,
.c-form .c-radio + .c-radio {
    margin-top: 10px;
}
.mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0;
}
.c-form .mwform-radio-field label,
.c-form .c-radio label {
    display: block;
    cursor: pointer;
}

.c-form .mwform-radio-field input,
.c-form .c-radio input {
    display: none;
}

.c-form .mwform-radio-field .mwform-radio-field-text,
.c-form .mwform-radio-field .c-radio__text,
.c-form .c-radio .mwform-radio-field-text,
.c-form .c-radio .c-radio__text {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    vertical-align: top;
}

.c-form .mwform-radio-field .mwform-radio-field-text::before,
.c-form .mwform-radio-field .c-radio__text::before,
.c-form .c-radio .mwform-radio-field-text::before,
.c-form .c-radio .c-radio__text::before {
    content: "";
    display: block;
    position: absolute;
    top: 1px;
    left: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #dddddd;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.c-form .mwform-radio-field input:checked + .mwform-radio-field-text::after,
.c-form .mwform-radio-field input:checked + .c-radio__text::after,
.c-form .c-radio input:checked + .mwform-radio-field-text::after,
.c-form .c-radio input:checked + .c-radio__text::after {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 1px;
    width: 14px;
    height: 14px;
    border: 3px solid #fff;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #ffaf00;
}

@media all and (min-width: 768px) {
    .c-form .mwform-radio-field .mwform-radio-field-text,
    .c-form .mwform-radio-field .c-radio__text,
    .c-form .c-radio .mwform-radio-field-text,
    .c-form .c-radio .c-radio__text {
        font-size: 1.8rem;
    }
    .c-form .mwform-radio-field .mwform-radio-field-text::before,
    .c-form .mwform-radio-field .c-radio__text::before,
    .c-form .c-radio .mwform-radio-field-text::before,
    .c-form .c-radio .c-radio__text::before {
        top: 5px;
        width: 18px;
        height: 18px;
    }
    .c-form .mwform-radio-field input:checked + .mwform-radio-field-text::after,
    .c-form .mwform-radio-field input:checked + .c-radio__text::after,
    .c-form .c-radio input:checked + .mwform-radio-field-text::after,
    .c-form .c-radio input:checked + .c-radio__text::after {
        top: 6px;
        left: 1px;
        width: 16px;
        height: 16px;
    }
}

.c-radio-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 5px;
}

.c-radio-list .mwform-radio-field,
.c-radio-list .c-radio {
    display: inline-block;
    width: 50%;
}

.c-radio-list .mwform-radio-field + .mwform-radio-field,
.c-radio-list .mwform-radio-field + .c-radio,
.c-radio-list .c-radio + .mwform-radio-field,
.c-radio-list .c-radio + .c-radio {
    margin-top: 0;
}

@media all and (min-width: 768px) {
    .c-radio-list {
        margin-top: 8px;
    }
    .c-radio-list .mwform-radio-field,
    .c-radio-list .c-radio {
        width: auto;
    }
    .c-radio-list .mwform-radio-field + .mwform-radio-field,
    .c-radio-list .mwform-radio-field + .c-radio,
    .c-radio-list .c-radio + .mwform-radio-field,
    .c-radio-list .c-radio + .c-radio {
        margin-left: 28px;
    }
}

/* .c-form .mwform-checkbox-field
================================================ */
.c-form .mwform-checkbox-field,
.c-form .c-checkbox {
    display: block;
}

.c-form .mwform-checkbox-field + .mwform-checkbox-field,
.c-form .mwform-checkbox-field + .c-checkbox,
.c-form .c-checkbox + .mwform-checkbox-field,
.c-form .c-checkbox + .c-checkbox {
    margin-top: 10px;
}

.c-form .mwform-checkbox-field label,
.c-form .c-checkbox label {
    display: block;
    cursor: pointer;
}

.c-form .mwform-checkbox-field input,
.c-form .c-checkbox input {
    display: none;
}

.c-form .mwform-checkbox-field .mwform-checkbox-field-text,
.c-form .mwform-checkbox-field .c-checkbox__text,
.c-form .c-checkbox .mwform-checkbox-field-text,
.c-form .c-checkbox .c-checkbox__text {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    text-align: left;
    vertical-align: top;
}

.c-form .mwform-checkbox-field .mwform-checkbox-field-text::before,
.c-form .mwform-checkbox-field .c-checkbox__text::before,
.c-form .c-checkbox .mwform-checkbox-field-text::before,
.c-form .c-checkbox .c-checkbox__text::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    border: 1px solid #dddddd;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.c-form .mwform-checkbox-field input:checked + .mwform-checkbox-field-text::after,
.c-form .mwform-checkbox-field input:checked + .c-checkbox__text::after,
.c-form .c-checkbox input:checked + .mwform-checkbox-field-text::after,
.c-form .c-checkbox input:checked + .c-checkbox__text::after {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 5px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    width: 12px;
    height: 9px;
    border-width: 3px 3px 0 0;
    border-style: solid;
    border-color: #ffaf00;
}

@media all and (min-width: 768px) {
    .c-form .mwform-checkbox-field .mwform-checkbox-field-text,
    .c-form .mwform-checkbox-field .c-checkbox__text,
    .c-form .c-checkbox .mwform-checkbox-field-text,
    .c-form .c-checkbox .c-checkbox__text {
        padding-left: 40px;
        font-size: 1.8rem;
    }
    .c-form .mwform-checkbox-field .mwform-checkbox-field-text::before,
    .c-form .mwform-checkbox-field .c-checkbox__text::before,
    .c-form .c-checkbox .mwform-checkbox-field-text::before,
    .c-form .c-checkbox .c-checkbox__text::before {
        top: 5px;
    }
    .c-form .mwform-checkbox-field input:checked + .mwform-checkbox-field-text::after,
    .c-form .mwform-checkbox-field input:checked + .c-checkbox__text::after,
    .c-form .c-checkbox input:checked + .mwform-checkbox-field-text::after,
    .c-form .c-checkbox input:checked + .c-checkbox__text::after {
        top: 12px;
    }
}

.c-checkbox-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.c-checkbox-list .mwform-checkbox-field,
.c-checkbox-list .c-checkbox {
    display: inline-block;
    margin-right: 20px;
}

.c-checkbox-list .mwform-checkbox-field + .mwform-checkbox-field,
.c-checkbox-list .mwform-checkbox-field + .c-checkbox,
.c-checkbox-list .c-checkbox + .mwform-checkbox-field,
.c-checkbox-list .c-checkbox + .c-checkbox {
    margin-top: 0;
}

/* .contact-form
================================================== */

.contact-form__inner {
    padding: 0 20px;
}

.contact-form__wrap {
    padding: 41px 20px 50px;
    background: #fff;
}

.contact-form-step {
    position: relative;
    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;
    margin-bottom: 28px;
}

.contact-form-step::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 50%;
    display: block;
    width: calc(100% - 30px);
    height: 1px;
    background: #dddddd;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.contact-form-step__item {
    position: relative;
    width: 32px;
    padding-top: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
}

.contact-form-step__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 23px;
    height: 23px;
    background: #dddddd;
    border: 6px solid #fff;
    -webkit-box-shadow: 0 0 0 1px #dddddd;
    box-shadow: 0 0 0 1px #dddddd;
    border-radius: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

@media all and (min-width: 768px) {
    .contact-form {
        position: relative;
        z-index: 1;
    }
    .contact-form__wrap {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        max-width: 1060px;
        margin: 0 auto;
        padding: 91px min(calc((130 / 1280) * 100vw), 130px) 80px;
    }
    .contact-form-step {
        width: calc(100% - 450px);
        margin: 0 auto 58px;
    }
}

.mw_wp_form_input .contact-form-step__item.is-input {
    color: #ffaf00;
}

.mw_wp_form_input .contact-form-step__item.is-input::before {
    background: #ffaf00;
}

.mw_wp_form_confirm .contact-form-step__item.is-confirm {
    color: #ffaf00;
}

.mw_wp_form_confirm .contact-form-step__item.is-confirm::before {
    background: #ffaf00;
}

.mw_wp_form_complete .contact-form-step {
    margin: 0 30px 28px;
}

.mw_wp_form_complete .contact-form-step__item {
    color: #ffaf00;
}

.mw_wp_form_complete .contact-form-step__item::before {
    background: #ffaf00;
}

@media all and (min-width: 768px) {
    .mw_wp_form_complete .contact-form-step {
        width: 450px;
        margin: 0 auto 70px;
    }
    .mw_wp_form .error {
        font-size: 13px;
    }
}
.mw_wp_form .error {
    font-size: 15px;
    color: #b70000;
    display: block;
}
/* .contact-confirm
================================================== */
.contact-confirm__inner {
    padding-bottom: 50px;
}

@media all and (min-width: 768px) {
    .contact-confirm__inner {
        padding-top: 79px;
        padding-bottom: 90px;
    }
    .contact-confirm__txt {
        text-align: center;
    }
}

/* .contact-thanks
================================================== */

.contact-thanks__head {
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.5;
    font-weight: bold;
}
.contact-thanks__txt {
    margin-bottom: 40px;
    text-align: left;
}

.contact-thanks__cta {
    display: flex;
    flex-direction: column;
    gap: 12px 20px;
    justify-content: center;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 20px 4px;
    font-weight: bold;
}
.contact-thanks__cta-txt {
    letter-spacing: -0.05em;
}
.contact-thanks__cta-tel-wrap {
    display: grid;
    grid-template-columns: 46px auto;
    text-align: left;
}
.contact-thanks__cta-tel-wrap::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    grid-row: 1 / 3;
    margin-top: 4px;
    background: url("../images/icon_tel.svg") no-repeat center / contain;
}
.contact-thanks__cta-tel {
    font-size: 3.2rem;
    line-height: 1;
    font-family: "Noto Serif JP", serif;
    color: #000 !important;
}
.contact-thanks__cta-tel a {
    color: #000 !important;
}
@media all and (max-width: 767px) {
    .contact-thanks__cta-tel-wrap {
        grid-template-columns: 36px auto;
        width: fit-content;
        margin: 0 auto;
        position: relative;
        right: 8px;
    }
}
@media all and (min-width: 768px) {
    .contact-thanks {
        position: relative;
        z-index: 1;
    }
    .contact-thanks__inner {
        padding-top: 79px;
        padding-bottom: 120px;
    }
    .contact-thanks__head {
        margin-bottom: 16px;
        font-size: 2.8rem;
    }
    .contact-thanks__txt {
        text-align: center;
        font-size: 1.6rem;
        line-height: 1.8;
    }
    .contact-thanks__cta {
        flex-direction: row;
        align-items: center;
        padding: 28px 4px;
        font-size: 1.6rem;
    }
    .contact-thanks__cta-txt {
        text-align: left;
        letter-spacing: normal;
    }
    .contact-thanks__cta-tel {
        font-size: 3.8rem;
    }
    .contact-thanks__cta-tel-wrap::before {
        width: 36px;
        height: 36px;
        top: 4px;
        left: -8px;
    }
}
.feature-section.delete {
    display: none !important;
}
