@charset "utf-8";

/*
Theme Name:taigei
Description:This is taigei original theme.
Version:1.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

.pc {
    display: block;
}

.sp {
    display: none;
}

@media only screen and (max-width: 599px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/* ----------------------------------------------------------
Common Setting
---------------------------------------------------------- */

html {
    font-size: 62.5%;
}

/*body*/

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    color: #000000;
    font-family: "Inter", "Noto Sans JP", "メイリオ", "Meiryo",
        "ヒラギノ角ゴ ProN W3";
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: #DBEFD0;
}

.inner {
    width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/*img*/

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

/*link*/

a:link,
a:visited,
a:active {
    color: #333333;
    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    text-decoration: none;
    outline: 0;
    /* opacity: 0.8; */
}

input:hover,
a:hover img {
    outline: 0;
}

/* iOSでのデフォルトスタイルをリセット */

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

/* ----------------------------------------------------------
animation
---------------------------------------------------------- */

.fade_in,
.fade_in_up,
.fade_in_left,
.fade_in_right,
.zoom_in {
    opacity: 0;
    visibility: hidden;
}

.fade_in.active {
    visibility: visible;
    -webkit-animation: fade_in linear 0.5s;
    animation: fade_in linear 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.fade_in_up.active {
    visibility: visible;
    -webkit-animation: fade_in_up linear 0.5s;
    animation: fade_in_up linear 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.fade_in_left.active {
    visibility: visible;
    -webkit-animation: fade_in_left linear 0.5s;
    animation: fade_in_left linear 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.fade_in_right.active {
    visibility: visible;
    -webkit-animation: fade_in_right linear 0.5s;
    animation: fade_in_right linear 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.zoom_in.active {
    visibility: visible;
    -webkit-animation: zoom_in linear 0.5s;
    animation: zoom_in linear 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.slide_anime {
    position: relative;
}

.slide_anime:after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}

.slide_anime.active:after {
    visibility: visible;
    -webkit-animation: title_box linear 0.5s;
    animation: title_box linear 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    transform-origin: left top;
}

@-webkit-keyframes fade_in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade_in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fade_in_up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade_in_up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes fade_in_left {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade_in_left {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes fade_in_right {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade_in_right {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes zoom_in {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoom_in {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes title_box {
    0% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0);
    }
}

@keyframes title_box {
    0% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0);
    }
}

/* ----------------------------------------------------------
header
---------------------------------------------------------- */

.header {
    position: fixed;
    width: 100%;
    z-index: 200;
    transition: .5s;
}

.header.active {
    padding: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: rgba(219, 238, 208, 0.7);
}

.header .inner {
    width: 100%;
    padding: 15px 50px;
    box-sizing: border-box;
}

.header .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .layout .logo img {
    width: 230px
}


.header .layout .btn_layout {
    display: flex;
    align-items: center;
}

.header .layout .btn_layout .header_nav {
    display: flex;
    align-items: center;
}

.header .layout .btn_layout .header_nav .menu {
    margin-right: 30px;
}

.header .layout .btn_layout .header_nav .menu:last-of-type {
    margin-right: 40px;
}

.header .layout .btn_layout .header_nav .menu a:hover {
    color: #6EB944;
}

.header .layout .btn_layout .btn a {
    color: #fff;
    font-size: 1.6rem;
    background-color: #6EB944;
    padding: 10px 50px;
    border-radius: 50px;
    display: block;
    position: relative;
}

.header .layout .menu_btn {
    display: none;
}


/* ----------------------------------------------------------
mv
---------------------------------------------------------- */

.mv {
    background-image: url(images/mv_bg03.webp);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

.mv .mv_bg01 {
    position: absolute;
    left: 0;
    top: 130px;
}

.mv .mv_bg02 {
    position: absolute;
    right: 0;
    bottom: -150px;
}

.mv .inner {
    padding: 200px 0;
}

.mv .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mv .layout .img {
    margin-right: 140px;
}

.mv .layout .emblem {
    margin-top: 20px;
}

.mv .text {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.7;
    margin-top: 20px;
}



/* ----------------------------------------------------------
section
---------------------------------------------------------- */
.section {
    padding: 100px 0;
}

.section .section_title {
    font-size: 4.2rem;
    font-weight: 700;
}

.section .title_box {
    text-align: center;
    margin-bottom: 100px;
}

.en_title {
    margin-bottom: 10px;
}

/* ----------------------------------------------------------
problems
---------------------------------------------------------- */

.problems {
    background-color: #D2E3C8;
    padding-bottom: 250px;
}

.problems .img {
    text-align: center;
}

/* ----------------------------------------------------------
message
---------------------------------------------------------- */

.message {
    background-image: url(images/message_bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 150px 0;
    margin-top: -150px;
}

.message .layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.message .layout .box .img {
    text-align: center;
    margin-top: 20px;
}

/* ----------------------------------------------------------
service
---------------------------------------------------------- */

.service {
    position: relative;
}

.service .service_bg01 {
    position: absolute;
    left: 0;
    bottom: 670px;
}

.service .service_bg02 {
    position: absolute;
    right: 0;
    bottom: -150px;
}


.service .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.service .layout:first-of-type {
    margin-top: 100px;
}

.service .layout .contents {
    width: calc(100% - 650px);
}

.service .layout .contents .title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
}

.service .layout .contents .text {
    font-size: 2rem;
    margin-top: 20px;
}

.service .layout .img {
    text-align: center;
    width: 600px;
}

.service .area_box {
    margin-top: 100px;
}

.service .area_box .title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
}

.service .area_box .img {
    text-align: center;
    margin-top: 50px;
}

/* ----------------------------------------------------------
before_after
---------------------------------------------------------- */

.before_after {
    position: relative;
}

.before_after .before_after_bg {
    position: absolute;
    right: 0;
    bottom: 50px;
}


.before_after .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 50px;
}

.before_after .layout .title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.before_after .layout .before_after_arrow {
    position: absolute;
    left: 400px;
    top: 50%;
}

/* ----------------------------------------------------------
price
---------------------------------------------------------- */

.price {
    background-image: url(images/price_bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 200px 0 300px;
}

.price .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price .layout .box {
    background-color: #fff;
    width: 380px;
    padding: 70px 25px;
    box-sizing: border-box;
    border-radius: 20px;
}

.price .layout .box .img {
    text-align: center;
    height: 75px;
    line-height: 75px;
}

.price .layout .box .title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
}

.price .layout .box .price_box {
    height: 100px;
}

.price .layout .box .price_text {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin-top: 30px;
}

.price .layout .box .price_description {
    font-size: 2rem;
    text-align: center;
}

.price .layout .box .notes {
    text-align: center;
}

.price .travel_expenses {
    text-align: center;
    margin-top: 20px;
}

/* ----------------------------------------------------------
flow
---------------------------------------------------------- */

.flow {
    padding-top: 0;
    padding-bottom: 350px;
    background-image: url(images/flow_bg02.webp);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

.flow .flow_bg01 {
    position: absolute;
    left: 0;
    bottom: 150px;
}


.flow .flow_box {
    width: 900px;
    margin: 0 auto;
    position: relative;
}

.flow .flow_box:after {
    content: '';
    width: 7px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 300px;
    background-color: #CA7842;
    opacity: 0.3;
}

.flow .flow_box .layout {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.flow .flow_box .layout dl {
    width: 530px;
    padding-top: 20px;
    position: relative;
}

.flow .flow_box .layout dl:after {
    content: '';
    width: 19px;
    height: 19px;
    position: absolute;
    border-radius: 50%;
    top: 25px;
    left: -76px;
    background-color: #CA7842;
}

.flow .flow_box .layout dl dt {
    font-size: 2rem;
    font-weight: 700;
}

.flow .flow_box .layout dl dd {
    padding-top: 10px;
}

/* ----------------------------------------------------------
company
---------------------------------------------------------- */

.company {
    background-color: #fff;
    padding-top: 0;
    padding-bottom: 300px;
}

.company .company_box {
    width: 800px;
    margin: 0 auto;
}

.company dl {
    display: flex;
    border-top: 1px solid #EFD6C6;
    position: relative;
}

.company dl:last-of-type {
    border-bottom: 1px solid #EFD6C6;
}

.company dl dt {
    font-size: 1.8rem;
    font-weight: 700;
    padding: 20px 0;
    width: 200px;
}

.company dl dd {
    font-size: 1.8rem;
    padding: 20px 0;
    width: calc(100% - 200px);
    box-sizing: border-box;
}

/* ----------------------------------------------------------
contact
---------------------------------------------------------- */

.contact {
    background-color: #8A7650;
    border-radius: 50px 50px 0 0;
    margin-top: -50px;
    position: relative;
}

.contact .illust01 {
    position: absolute;
    left: 5%;
    top: -200px;
}

.contact .illust02 {
    position: absolute;
    right: 5%;
    top: -220px;
}

.contact .title_box {
    margin-bottom: 30px;
}

.contact .section_title {
    color: #fff;
}

.contact .contact_text {
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
}

.contact .form_box {
    width: 800px;
    margin: 0 auto;
    padding: 60px 100px;
    box-sizing: border-box;
    border-radius: 50px;
    background-color: #fff;
    margin-top: 70px;
}

.contact .text {
    text-align: center;
    margin-bottom: 100px;
}

.contact .layout {
    margin-bottom: 40px;
}

.contact .layout dt {
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 10px;
    margin-bottom: 10px;
}

.contact-confirm .contact .layout dt {
    padding-top: 0;
}


.contact .layout dt .required {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 300;
    border-radius: 4px;
    padding: 3px 5px;
    background-color: #6EB944;
    margin-left: 10px;
}

.contact .layout dd {
    width: 600px;
}

.contact .layout dd input {
    font-size: 1.8rem;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #D3D3D5;
    border-radius: 4px;
}

.contact .layout dd input[type="file"] {
    border: none;
    padding: 0;
}

.contact .layout dd textarea {
    font-size: 1.8rem;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #D3D3D5;
    border-radius: 4px;
    height: 200px;
}

.contact .layout dd .notes {
    font-size: 1.4rem;
    margin-top: 10px;
}

.contact .btn {
    text-align: center;
    margin: 100px auto 0;
}


.contact .btn span {
    display: inline-block;
    position: relative;
}

.contact .btn input {
    color: #fff;
    font-size: 1.6rem;
    background-color: #6EB944;
    padding: 10px 100px;
    border-radius: 50px;
    display: block;
}

.contact .btn span:after {
    content: '';
    width: 15px;
    height: 12px;
    background-image: url(images/arrow.svg);
    position: absolute;
    top: 16px;
    right: 20px;
    transition: 0.5s;
}

.contact .btn span:hover:after {
    right: 15px;
}

.contact .contact_back {
    text-align: center;
    margin-top: 100px;
}

.contact .contact_back a {
    color: #fff;
    font-size: 1.6rem;
    background-color: #6EB944;
    padding: 10px 50px;
    border-radius: 50px;
    display: inlin-block;
    position: relative;

}

/*.wpcf7-spinner {
    display: none !important;
}

.wpcf7-form.sent .wpcf7-response-output {
    display: none !important;
}*/


/* ----------------------------------------------------------
float_btn
---------------------------------------------------------- */

.float_btn {
    position: fixed;
    width: 100%;
    z-index: 100;
    bottom: 0;
    background-color: #E1D9BC;
}

.float_btn .inner {
    padding: 15px 0;
    box-sizing: border-box;
}

.float_btn .layout {
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 30px;
}

.float_btn .layout .text {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 60px;
}

.float_btn .layout .btn a {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 500;
    display: block;
    padding: 0 30px;
    line-height: 60px;
    border-radius: 8px;
}

.float_btn .layout .btn.line_btn a {
    background-color: #3AAE36;
}

.float_btn .layout .btn.mail_btn a {
    background-color: #BF4646;
}

.float_btn .layout .btn a img {
    margin-right: 10px;
}

/* ----------------------------------------------------------
footer
---------------------------------------------------------- */

.footer {
    padding: 30px 0 110px;
    background-color: #8A7650;
}

.to_top {
    position: fixed;
    right: 2%;
    bottom: 120px;
    z-index: 100;
}

.footer .copyright {
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
}

.grecaptcha-badge {
  z-index: 999;
}

@media only screen and (max-width: 1024px) {

    /* ----------------------------------------------------------
    Common Setting
    ---------------------------------------------------------- */

    /*body*/

    .inner {
        width: 95%;
        margin: 0 auto;
    }


    /* ----------------------------------------------------------
header
---------------------------------------------------------- */

    .header .inner {
        width: 95%;
        padding: 25px 0;
    }

    .header .logo {
        z-index: 300;
    }

    .header .layout .btn_layout {
        display: block;
        position: fixed;
        background: #DBEFD0;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        height: 0;
        padding-top: 20vh;
        transition: all 0.5s;
        z-index: 200;
    }

    .header .layout .btn_layout.active {
        opacity: 1;
        height: 100vh;
    }

    .header .layout .btn_layout .btn {
        display: none;
    }

    .header .layout .btn_layout.active .btn {
        display: block;
    }

    .header .layout .btn_layout .header_nav {
        display: none;
    }

    .header .layout .btn_layout.active .header_nav {
        display: block;
    }

    .header .layout .btn_layout .header_nav .menu {
        margin-right: 0;
        text-align: center;
        font-size: 1.8rem;
        margin-bottom: 50px;
    }

    .header .layout .btn_layout .header_nav .menu:last-of-type {
        margin-right: 0;
    }

    .header .layout .btn_layout .header_nav .menu_layout {
        justify-content: center;
    }

    .header .layout .btn_layout .header_nav .menu a {
        justify-content: center;
    }

    .header .layout .btn_layout .btn {
        text-align: center;
    }

    .header .layout .btn_layout .btn a {
        font-size: 1.8rem;
        display: inline-block;
    }

    .header .layout .menu_btn {
        display: block;
        position: relative;
        cursor: pointer;
        z-index: 300;
    }


    /* ----------------------------------------------------------
mv
---------------------------------------------------------- */


    .mv .mv_bg01 {
        position: absolute;
        left: 0;
        top: 130px;
    }

    .mv .mv_bg02 {
        position: absolute;
        right: 0;
        bottom: -150px;
    }

    .mv .inner {
        padding: 180px 0 100px;
    }

    .mv .layout {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mv .layout .img {
        margin-right: 0;
        width: 320px;
    }

    .mv .text {
        font-size: 2rem;
    }

    /* ----------------------------------------------------------
service
---------------------------------------------------------- */

    .service .layout .contents {
        width: calc(100% - 450px);
    }

    .service .layout .img {
        width: 400px;
    }

    /* ----------------------------------------------------------
before_after
---------------------------------------------------------- */

    .before_after .layout {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .before_after .layout .title {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .before_after .layout .before_after_arrow {
        position: absolute;
        left: calc(40% - 50px);
        top: 50%;
    }

    .before_after .layout .box {
        width: 40%;
    }

    .before_after .layout .after_img {
        width: 53%;
    }


    /* ----------------------------------------------------------
price
---------------------------------------------------------- */

    .price .layout {
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .price .layout .box {
        width: 350px;
        margin-top: 50px;
    }

    /* ----------------------------------------------------------
flow
---------------------------------------------------------- */

    .flow .flow_box {
        width: 100%;
    }

    .flow .flow_box:after {
        left: 270px;
    }

    .flow .flow_box .layout dl {
        width: calc(100% - 300px);
    }

    .flow .flow_box .layout dl:after {
        left: -36px;
    }

    /* ----------------------------------------------------------
company
---------------------------------------------------------- */

    .company {
        background-color: #fff;
        padding-top: 0;
        padding-bottom: 300px;
    }

    .company .company_box {
        width: 100%;
        margin: 0 auto;
    }

    .company dl {
        display: flex;
        border-top: 1px solid #EFD6C6;
        position: relative;
    }

    .company dl:last-of-type {
        border-bottom: 1px solid #EFD6C6;
    }

    .company dl dt {
        font-size: 1.8rem;
        font-weight: 700;
        padding: 20px 0;
        width: 390px;
    }

    .company dl dd {
        font-size: 1.8rem;
        padding: 20px 0;
        width: calc(100% - 390px);
        box-sizing: border-box;
    }

    /* ----------------------------------------------------------
contact
---------------------------------------------------------- */

    .contact {
        background-color: #8A7650;
        border-radius: 50px 50px 0 0;
        margin-top: -50px;
        position: relative;
    }

    .contact .illust01 {
        width: 25vw;
        left: 2%;
        top: -12%;
    }

    .contact .illust02 {
        width: 30vw;
        right: 2%;
        top: -11%;
    }


    .contact .title_box {
        margin-bottom: 30px;
    }

    .contact .section_title {
        color: #fff;
    }

    .contact .contact_text {
        color: #fff;
        font-size: 1.8rem;
        text-align: center;
    }

    .contact .form_box {
        width: 100%;
        margin: 0 auto;
        padding: 60px 50px;
        box-sizing: border-box;
        border-radius: 50px;
        background-color: #fff;
        margin-top: 70px;
    }

    .contact .text {
        text-align: center;
        margin-bottom: 100px;
    }

    .contact .layout {
        margin-bottom: 40px;
    }

    .contact .layout dt {
        font-size: 1.8rem;
        font-weight: 700;
        position: relative;
        display: flex;
        align-items: center;
        padding-top: 10px;
        margin-bottom: 10px;
    }

    .contact-confirm .contact .layout dt {
        padding-top: 0;
    }


    .contact .layout dt .required {
        color: #fff;
        font-size: 1.2rem;
        font-weight: 300;
        border-radius: 4px;
        padding: 3px 5px;
        background-color: #6EB944;
        margin-left: 10px;
    }

    .contact .layout dd {
        width: 100%;
    }

    .contact .layout dd input {
        font-size: 1.8rem;
        padding: 10px;
        width: 100%;
        box-sizing: border-box;
        border: 1px solid #D3D3D5;
        border-radius: 4px;
    }

    .contact .layout dd textarea {
        font-size: 1.8rem;
        padding: 10px;
        width: 100%;
        box-sizing: border-box;
        border: 1px solid #D3D3D5;
        border-radius: 4px;
        height: 200px;
    }

    .contact .btn {
        text-align: center;
        margin: 100px auto 0;
    }


    .contact .btn span {
        display: inline-block;
        position: relative;
    }

    .contact .btn input {
        color: #fff;
        font-size: 1.6rem;
        background-color: #6EB944;
        padding: 10px 100px;
        border-radius: 50px;
        display: block;
    }

    .contact .btn span:after {
        content: '';
        width: 15px;
        height: 12px;
        background-image: url(images/arrow.svg);
        position: absolute;
        top: 16px;
        right: 20px;
        transition: 0.5s;
    }

    .contact .btn span:hover:after {
        right: 15px;
    }

    .contact-confirm .contact .btn p {
        display: flex;
        justify-content: center;
    }

    .contact-confirm .contact .btn p span:first-of-type {
        margin-right: 20px;
    }

    .wpcf7-spinner {
        display: none !important;
    }

    /* ----------------------------------------------------------
float_btn
---------------------------------------------------------- */

    .float_btn .layout .text {
        display: none;
    }

    .float_btn .layout .btn a {
        font-size: 2rem;
        padding: 0 30px;
        line-height: 55px;
    }

    /* ----------------------------------------------------------
footer
---------------------------------------------------------- */

    .footer {
        padding: 30px 0 110px;
        background-color: #8A7650;
    }

    .to_top {
        position: fixed;
        right: 2%;
        bottom: 150px;
    }

    .footer .copyright {
        color: #fff;
        font-size: 1.2rem;
        text-align: center;
    }
}

@media only screen and (max-width: 599px) {

    body {
        font-size: 1.6rem;
    }


    /* ----------------------------------------------------------
header
---------------------------------------------------------- */

    .header .inner {
        width: 95%;
        padding: 15px 0;
    }

    .header .layout .logo {
        width: 45%;
    }

    .header .layout .menu_btn {
        width: 13%;
    }


    /* ----------------------------------------------------------
mv
---------------------------------------------------------- */

    .mv {
        background-image: url(images/mv_bg03.webp);
        background-position: left bottom;
        background-repeat: no-repeat;
        background-size: contain;
        position: relative;
    }

    .mv .mv_bg01 {
        width: 25vw;
        left: 0;
        top: 130px;
    }

    .mv .mv_bg02 {
        width: 50vw;
        right: 0;
        bottom: -180px;
    }

    .mv .inner {
        padding: 130px 0 0;
    }

    .mv .layout {
        display: block;
    }

    .mv .text {
        font-size: 5vw;
    }

    .mv .layout .img {
        text-align: center;
        margin-right: 0;
        width: 100%;
        margin-top: 30px;
    }



    /* ----------------------------------------------------------
section
---------------------------------------------------------- */
    .section {
        padding: 10% 0;
    }

    .section .section_title {
        font-size: 3.4rem;
    }

    .section .title_box {
        margin-bottom: 50px;
    }

    /* ----------------------------------------------------------
problems
---------------------------------------------------------- */

    .problems {
        padding-top: 100px;
        padding-bottom: 150px;
    }

    /* ----------------------------------------------------------
message
---------------------------------------------------------- */

    .message {
        background-image: url(images/message_bg.webp);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        padding: 80px 0 120px;
        margin-top: -100px;
    }

    .message .layout {
        justify-content: space-between;
        gap: 0;
    }

    .message .layout>.img {
        width: 37%;
    }

    .message .layout .box {
        width: 60%;
    }

    .message .layout .box .img img {
        width: 130px;
    }

    /* ----------------------------------------------------------
service
---------------------------------------------------------- */

    .service .service_bg01 {
        width: 50vw;
        bottom: 55%;
    }

    .service .service_bg02 {
        width: 80vw;
        bottom: 13%;
    }


    .service .layout {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        margin-top: 50px;
    }

    .service .layout .contents {
        width: 100%;
        order: 0;
    }

    .service .layout .img {
        width: 100%;
        order: 1;
        margin-top: 20px;
    }

    /* ----------------------------------------------------------
before_after
---------------------------------------------------------- */

    .before_after {
        overflow: hidden;
    }

    .before_after .before_after_bg {
        right: -25vw;
        width: 40vw;
    }

    .before_after .layout .title {
        font-size: 1.8rem;
    }

    .before_after .box {
        width: 40%;
        margin-top: -30px;
    }

    .before_after .after_img {
        width: 55%;
    }

    .before_after .layout .before_after_arrow {
        left: 35%;
        top: 50%;
        width: 15%;
    }

    /* ----------------------------------------------------------
price
---------------------------------------------------------- */

    .price {
        background-image: url(images/price_bg_sp.webp);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        padding: 150px 0 200px;
    }

    .price .layout {
        display: block;
    }

    .price .layout .box {
        width: 90%;
        padding: 50px 20px;
        margin: 50px auto 0;
    }

    .price .layout .box .price_box {
        height: auto;
    }

    .price .layout .box .notes {
        margin-top: 30px;
    }

    /* ----------------------------------------------------------
flow
---------------------------------------------------------- */

    .flow {
        padding-top: 0;
        padding-bottom: 150px;
        background-image: url(images/flow_bg02.webp);
        background-position: left bottom;
        background-repeat: no-repeat;
        background-size: contain;
        position: relative;
    }

    .flow .flow_bg01 {
        width: 60vw;
        bottom: 50px;
    }


    .flow .flow_box {
        width: 100%;
    }

    .flow .flow_box:after {
        width: 5px;
        height: calc(100% - 20px);
        top: 20px;
        left: 121px;
    }

    .flow .flow_box .layout {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
    }

    .flow .flow_box .layout .img {
        width: 110px;
    }

    .flow .flow_box .layout dl {
        width: calc(100% - 140px);
        padding-top: 10px;
    }

    .flow .flow_box .layout dl:after {
        width: 15px;
        height: 15px;
        top: 16px;
        left: -24px;
    }

    .flow .flow_box .layout dl dt {
        font-size: 1.8rem;
    }

    /* ----------------------------------------------------------
company
---------------------------------------------------------- */

    .company {
        padding-bottom: 200px;
    }

    .company .company_box {
        width: 100%;
    }

    .company dl dt {
        font-size: 1.6rem;
        width: 160px;
    }

    .company dl dd {
        font-size: 1.6rem;
        width: calc(100% - 160px);
    }

    /* ----------------------------------------------------------
contact
---------------------------------------------------------- */

    .contact .illust01 {
        width: 30vw;
        left: 2%;
        top: -110px;
    }

    .contact .illust02 {
        width: 35vw;
        right: 2%;
        top: -100px;
    }

    .contact .title_box {
        margin-bottom: 30px;
    }

    .contact .contact_text {
        font-size: 1.6rem;
    }

    .contact .form_box {
        padding: 50px 40px;
        margin-top: 50px;
    }

    .contact .layout {
        margin-bottom: 20px;
    }

    .contact .layout dt {
        font-size: 1.6rem;
    }

    .contact .layout dd input {
        font-size: 1.6rem;
    }

    .contact .layout dd textarea {
        font-size: 1.6rem;
    }

    .contact .btn {
        margin: 50px auto 0;
    }

    /* ----------------------------------------------------------
float_btn
---------------------------------------------------------- */

    .float_btn .inner {
        padding: 0;
        width: 100%;
    }

    .float_btn .layout {
        gap: 0;
    }

    .float_btn .layout .btn a {
        font-size: 1.4rem;
        padding: 0 10px;
        line-height: 40px;
        border-radius: 0;
        width: 50vw;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
    }

    .float_btn .layout .btn.line_btn a img {
        width: 26px;
    }

    .float_btn .layout .btn.mail_btn a img {
        width: 23px;
    }

    .float_btn .layout .btn a img {
        margin-right: 10px;
    }

    /* ----------------------------------------------------------
footer
---------------------------------------------------------- */

    .footer {
        padding: 30px 0 60px;
    }

    .to_top {
        position: fixed;
        right: 2%;
        bottom: 50px;
    }

    .to_top img {
        width: 50px;
    }
	
	.grecaptcha-badge {
    bottom: 110px !important;
	}
}

/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
*/
}