@charset "utf-8";

/*共通設定*/
*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

a:hover {
    opacity: 0.8;
}

body {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.05em;
}

img {
    max-width: 100%;
}

.wrap {
    position: relative;
    overflow: hidden;
}

.tb-br,
.sp-br {
    display: none;
}

.pc-br {
    display: block;
}

.parent {
    padding: 0 5vw;
}

.child {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.column-h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 32px;
    margin-bottom: 80px;
}

.column-h2 span {
    position: relative;
    color: #3D8CCC;
    font-size: 16px;
}

.column-h2 span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -16px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);    
    width: 8px;
    height: 8px;
    background-color: #3D8CCC;
}

.column-h2 span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);    
    width: 8px;
    height: 8px;
    background-color: #3D8CCC;
}
/*終わり*/


/*<header class="header">*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 50;
}

.header-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header-logo-wrap {
    width: 50%;
}

.header-logo {
    font-size: 12px;
    line-height: 1.2;
}

.header-logo span {
    font-family: "Aoboshi One", serif;
    color: #FF7F00;
    font-weight: 800;
    font-size: 18px;
}

.header-logo-txt {
    font-size: 12px;
}

.header-site-menu {
    width: 5%;
    height: 100%;
    position: relative;
}

    /*ハンバーガーボタン*/
.hamburger {
    display: block;
    z-index: 999;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 64px;
    height: 64px;
    cursor: pointer;
    text-align: center;
    color: #fff;
}

.hamburger::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 64px;
    height: 64px;
    background-color: #23b9f6;
    border-radius: 50vh;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 32px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background: #fff;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: calc(50% - 8px);
}

.hamburger span:nth-child(2) {
    top: 50%;
}

.hamburger span:nth-child(3) {
    top: calc(50% + 8px);
}

    /* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
    top: 50%;
    left: calc(50% - 15px);
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
}
    
.hamburger.active span:nth-child(2) {
    top: 50%;
    left: calc(50% - 15px);
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
}

.hamburger.active span:nth-child(3) {
    top: 50%;
    left: calc(50% - 15px);
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
}

.header-nav {
    position: fixed;
    z-index: 50;
    top: 0;
    right: 0;
    background-color: #3d8ccc;
    color: #fff;
    transform: translateX(100%);
    transition: all 0.5s;
    width: 40%;
    height: 100vh;
    padding: 0 16px;
    opacity: 0;
}

.header-nav ul {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
}

.header-nav ul a:hover {
    opacity: 0.8;
}

    /* このクラスを、jQueryで付与・削除する */
.header-nav.active {
    transform: translateX(0%);
    opacity: 1;
}
/*終わり*/


/*<section class="fv">*/
.fv {
    position: relative;
    margin-top: 80px;
    width: 100%;
    height: calc(100vh - 80px);
    background-image: url(../img/fv_pc.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-shadow: 0 0 8px #fff;
}

.fv-in {
    width: 100%;
    height: 100%;
}

.fv-txt-wrap {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.fv-txt-01 {
    font-weight: 600;
}

.fv-h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.3;
}

.fv-h1 span {
    color: #FF7F00;
}

.fv-txt-02 {
    font-size: 14px;
}

.fv-flex-01 {
    display: flex;
    gap: 8px;
}

.fv-con-01 {
    background-color: #3D8CCC;
    color: #fff;
    text-align: center;
    display: inline-block;
    max-width: 80px;
    width: 100%;
    text-shadow: none;
}

.fv-txt-03 {
    font-weight: 800;
    font-size: 24px;
    line-height: 1.3;
}

.fv-txt-03 span {
    color: #FF7F00;
    font-size: 64px;
    -webkit-text-stroke: 1px #FFF;
    text-shadow: none;
}

.fv-txt-04 {
    font-weight: 600;
}

.fv-flex-02 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.fv-con-02 {
    position: relative;
    width: 33%;
}

.cta {
    position: absolute;
    right: 2vw;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    padding: 16px;
    background-color: #fff;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-shadow: none;
}

.cta-line-btn {
    color: #fff;
    background-color: #22C755;
    border-radius: 50vh;
    text-align: center;
    padding: 4px 8px;
    max-width: 160px;
    width: 100%;
}

.cta-mail-btn {
    color: #fff;
    background-color: #FF7F00;
    border-radius: 50vh;
    text-align: center;
    padding: 4px 8px;
    max-width: 160px;
    width: 100%;
}

/*モーダルウィンドウ*/
    /*モーダル本体の指定 + モーダル外側の背景の指定*/
    .modal-container-01{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        text-align: center;
        background: rgba(0,0,0,50%);
        padding: 40px 16px;
        overflow: auto;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        z-index: 20;
    }

    .modal-container-02 {
        display: none;
    }

    /*モーダル本体の擬似要素の指定*/
    .modal-container:before{
        content: "";
        display: inline-block;
        vertical-align: middle;
        height: 100%;
    }

    /*モーダル本体に「active」クラス付与した時のスタイル*/
    .modal-container.active{
        opacity: 1;
        visibility: visible;
    }

    /*モーダル枠の指定*/
    .modal-body{
        position: relative;
        display: inline-block;
        vertical-align: middle;
        max-width: 500px;
        width: 100%;
    }

    /*モーダルを閉じるボタンの指定*/
    .modal-close{
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        top: -40px;
        right: -40px;
        width: 40px;
        height: 40px;
        font-size: 40px;
        color: #fff;
        cursor: pointer;
    }

    /*モーダル内のコンテンツの指定*/
    .modal-content{
        background: #fff;
        text-align: left;
        padding: 30px;
    }
/*終わり*/


/*<div class="cta-sp-wrap">*/
.cta-sp {
    display: none;
}
/*終わり*/


/*<section class="lead">*/
.lead {
    padding: 120px 5vw;
}

.lead-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.lead-txt-wrap {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-weight: 600;
    font-size: 18px;
}

.lead-txt-01 span,
.lead-txt-02 span {
    color: #FF7F00;
    font-size: 24px;
}

.lead-img-wrap {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*終わり*/


/*<section class="thought">*/
.thought {
    padding: 40px 5vw 120px 5vw;
}

.thought-in {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.thought-h2 {
    position: relative;
    width: 30%;
    padding-left: 24px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.thought-h2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);    
    width: 16px;
    height: 16px;
    background-color: #FF7F00;
}

.thought-txt-wrap {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.thought-txt-wrap span {
    font-size: 18px;
    font-weight: 600;
}
/*終わり*/


/*<section class="feature">*/
.feature {
    padding: 120px 5vw;
    background-color: #EAF1F6;
}

.feature-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.feature-con {
    width: 49%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
}

.feature-img-wrap {
    position: relative;
    width: 20%;
}

.feature-num {
    position: absolute;
    top: 0;
    left: -16px;
    color: #FF7F00;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-shadow: 0 0 8px #fff;
    font-size: 14px;
}

.feature-num span {
    font-size: 32px;
}

.feature-txt-wrap {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-h3 {
    font-size: 18px;
}

.feature-txt-01 {
    font-size: 14px;
}

.feature-txt-02 {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: #3D8CCC;
    padding-left: 24px;
}

.feature-txt-02::before {
    content: "";
    width: 16px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    border-bottom: solid 1px #3D8CCC;
}
/*終わり*/


/*<section class="flow">*/
.flow {
    padding: 120px 5vw;
}

.flow-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.flow-con {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    background-color: #EAF1F6;
}

.flow-num-wrap {
    width: 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #3D8CCC;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 16px;
}

.flow-num-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.flow-num-txt span {
    font-size: 32px;
}

.flow-icon-wrap {
    width: 12%;
    text-align: center;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flow-icon {
    max-width: 64px;
}

.flow-txt-wrap {
    width: 80%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.flow-h3 {
    font-size: 18px;
}

.flow-con-orange {
    background-color: #FF7F00;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px;
    color: #fff;
}

.flow-con-orange .flow-h3 {
    font-size: 24px;
}
/*終わり*/


/*<section class="price">*/
.price {
    padding: 80px 5vw;
    background-color: #EAF1F6;
}

.price-in {
    max-width: 980px;
}

.price-wrap {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.price-flex-01 {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.price-con {
    background-color: #3D8CCC;
    color: #fff;
    text-align: center;
    display: inline-block;
    max-width: 120px;
    width: 100%;
}

.price-txt-01 {
    font-weight: 800;
    font-size: 24px;
    line-height: 1;
}

.price-txt-01 span {
    color: #FF7F00;
    font-size: 72px;
}

.price-flex-02 {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    font-weight: 600;
}
/*終わり*/


/*<section class="consul">*/
.consul {
    padding: 120px 5vw;
    background-image: url(../img/consul_back.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.consul-h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 80px;
}

.consul-flex {
    max-width: 980px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.consul-img-wrap {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.consul-ul {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.consul-ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 18px;
}

.check-icon {
    max-width: 16px;
    width: 100%;
}
/*終わり*/


/*<section class="faq">*/
.faq {
    padding: 120px 5vw;
}

.faq-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.nav-open {
    position: relative;
    background-color: #3D8CCC;
    padding: 16px 40px 16px 40px;
    font-weight: 600;
    color: #fff;
    margin-top: 24px;
}

.nav-open::before {
    content: "Q";
    font-size: 18px;
    color: #fff;
    font-weight: 800;
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.nav-open:hover {
    cursor: pointer;
}

.nav-open::after {/* 閉じている時 */
	content: "＋";
    font-size: 20px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    color: #fff;
}

.nav-open.active::after {/* 開いている時 */
	content: "－";
}

.faq-txt {
    background-color: #EAF1F6;
    position: relative;
    display: none;
    padding: 16px 40px 16px 40px;
}

.faq-txt::before {
    content: "A";
    font-size: 18px;
    color: #333;
    font-weight: 800;
    position: absolute;
    top: 14px;
    left: 16px;
}
/*終わり*/


/*<section class="info">*/
.info {
    padding: 80px 5vw;
}

.info-in {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 980px;
    width: 100%;
}

.info-h2 {
    position: relative;
    width: 20%;
    padding-left: 24px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.info-h2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);    
    width: 16px;
    height: 16px;
    background-color: #FF7F00;
}

.info-wrap {
    width: 75%;
}

.info-company {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-h3 {
    font-size: 18px;
}

.info-privacy {
    margin-top: 40px;
}

.nav-open-02 {
    position: relative;
    font-weight: 600;
    margin-top: 24px;
    border-bottom: solid 1px #3D8CCC;
}

.nav-open-02:hover {
    cursor: pointer;
}

.nav-open-02::after {/* 閉じている時 */
	content: "＋";
    font-size: 20px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    color: #3D8CCC;
}

.nav-open-02.active::after {/* 開いている時 */
	content: "－";
}

.privacy-txt-wrap {
    display: none;
    padding-top: 16px;
    font-size: 14px;
}

.privacy-title {
    margin-top: 16px;
    font-weight: 600;
}
/*終わり*/


/*<section class="contact">*/
.contact {
    padding: 120px 5vw;
    background-color: #EAF1F6;
}

.contact-lead {
    text-align: center;
    font-weight: 600;
}

.contact-lead span {
    color: #FF0000;
}

.form-area {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.form-area dt {
    width: 30%;
    font-weight: 600;
    padding: 16px 0;
    font-family: "Noto Sans JP", sans-serif;
}

.required {
    color: #FF0000;
}

.form-title {
    color: #3D8CCC;
    font-weight: 600;
    font-size: 20px;
    margin-top: 64px;
}

.form-area dd {
    width: 70%;
    padding: 16px 0;
}

.cate-flex {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 24px;
}

.date-select {
    width: 100%;
    padding: 8px;
    border: none;
    font-family: "Noto Sans JP", sans-serif;
}

.type-flex {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 24px;
}

.reason,
.else {
    width: 100% !important;
    height: 80px;
    border: none;
    padding: 8px;
    font-family: "Noto Sans JP", sans-serif;
}

.input-text {
    width: 100%;
    padding: 8px;
    border: none;
    font-family: "Noto Sans JP", sans-serif;
}

.prefectures-select {
    width: 100%;
    padding: 8px;
    border: none;
    font-family: "Noto Sans JP", sans-serif;
}

.submit-btn-area {
    margin-top: 40px;
    text-align: center;
}

.submit-button {
    font-weight: 600;
    max-width: 160px;
    width: 100%;
    background-color: #3D8CCC;
    border: none;
    padding: 12px;
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    transition: 0.2s;
    border-radius: 50vh;
}

.submit-button:hover {
    opacity: 0.8;
    cursor: pointer;
}

    /*contact form7設定*/
.wpcf7-spinner {
    display: none !important;
}

.cate-flex .wpcf7-form-control,
.type-flex .wpcf7-form-control {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cate-flex .wpcf7-list-item,
.type-flex .wpcf7-list-item {
    margin: 0;
}
/*終わり*/


/*<div class="thanks">*/
.thanks {
    width: 100%;
    height: 100vh;
}

.thanks-in {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.thanks-txt-01 {
    font-weight: 600;
    font-size: 24px;
}

.thanks-btn {
    text-align: center;
    font-weight: 600;
    max-width: 200px;
    width: 100%;
    background-color: #3D8CCC;
    border: none;
    padding: 10px;
    color: #fff;
    transition: 0.2s;
    border-radius: 50vh;
}
/*終わり*/


/*<footer class="footer">*/
.footer {
    background-color: #3D8CCC;
    color: #fff;
    padding: 40px 5vw 16px 5vw;
}

.footer-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.footer-logo {
    width: 30%;
    font-size: 14px;
    line-height: 1.5;
}

.footer-logo span {
    font-family: "Aoboshi One", serif;
    font-weight: 800;
    font-size: 24px;
}

.footer-ul {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: left;
    flex-wrap: wrap;
    font-size: 14px;
    gap: 24px;
}

.copyright {
    text-align: center;
    margin-top: 64px;
    font-size: 12px;
}
/*終わり*/


/*タブレット*/
@media (max-width: 1024px) {
/*共通設定*/
    .pc-br,
    .sp-br {
        display: none;
    }

    .tb-br {
        display: block;
    }

    .column-h2 {
        font-size: clamp(calc(20px), calc(32 / 1024 * 100vw), 32px);
    }
/*終わり*/


/*<header class="header">*/
    .header-nav {
        width: 100%;
    }
/*終わり*/


/*<section class="fv">*/
    .fv {
        text-shadow: 0 0 4px rgba(0,0,0,0.1);
        background-color:rgba(255,255,255,0.2);
        background-blend-mode:lighten;
    }

    .fv-txt-wrap {
        width: 100%;
    }

    .fv-flex-02 {
        width: 70%;
    }
/*終わり*/


/*<section class="lead">*/
    .lead-txt-wrap {
        width: 75%;
        font-size: clamp(calc(14px), calc(18 / 1024 * 100vw), 18px);
    }

    .lead-txt-01 span,
    .lead-txt-02 span {
        font-size: clamp(calc(18px), calc(24 / 1024 * 100vw), 24px);
    }

    .lead-img-wrap {
        width: 20%;
    }
/*終わり*/


/*<section class="thought">*/
    .thought-txt-wrap {
        font-size: clamp(calc(14px), calc(16 / 1024 * 100vw), 16px);
    }

    .thought-txt-wrap span {
        font-size: clamp(calc(16px), calc(18 / 1024 * 100vw), 18px);
    }
/*終わり*/


/*<section class="feature">*/
    .feature-flex {
        flex-direction: column;
        gap: 40px;
    }

    .feature-con {
        width: 100%;
        margin-top: 0;
    }
/*終わり*/


/*<section class="flow">*/
    .flow-num-wrap {
        width: 15%;
    }

    .flow-icon-wrap {
        width: 10%;
        padding: 16px 8px;
    }

    .flow-icon {
        max-width: clamp(calc(48px), calc(64 / 1024 * 100vw), 64px);
    }

    .flow-txt-wrap {
        width: 70%;
    }
/*終わり*/


/*<section class="consul">*/
    .consul-img-wrap {
        width: 30%;
    }

    .consul-ul {
        width: 65%;
    }
/*終わり*/


/*<section class="contact">*/
    .form-area dt {
        width: 100%;
    }

    .form-area dd {
        width: 100%;
        padding: 0 0 16px 0;
    }
/*終わり*/


/*<footer class="footer">*/
    .footer-flex {
        flex-direction: column;
        gap: 40px;
    }

    .footer-logo {
        width: 100%;
        font-size: 16px;
    }

    .footer-logo span {
        font-size: 40px;
    }

    .footer-ul {
        width: 100%;
    }
/*終わり*/

}


/*スマホ*/
@media (max-width: 599px) {

/*共通設定*/
    .pc-br,
    .tb-br {
        display: none;
    }

    .sp-br {
        display: block;
    }

    .column-h2 {
        font-size: clamp(calc(18px), calc(20 / 599 * 100vw), 20px);
        margin-bottom: 64px;
    }
/*終わり*/


/*<header class="header">*/
    .header {
    background-color: #fff;
    }

    .header-nav {
        padding: 0 5vw;
    }

    .header-nav ul {
        font-size: clamp(calc(14px), calc(16 / 599 * 100vw), 16px);
    }
/*終わり*/


/*<section class="fv">*/
    .fv {
        background-color:rgba(255,255,255,0.5);
    }

    .fv-h1 {
        font-size: clamp(calc(32px), calc(40 / 599 * 100vw), 40px);
    }

    .fv-txt-03 {
        font-size: clamp(calc(20px), calc(24 / 599 * 100vw), 24px);
    }

    .fv-txt-03 span {
        font-size: clamp(calc(56px), calc(64 / 599 * 100vw), 64px);
    }

    .fv-txt-04 {
        font-size: clamp(calc(14px), calc(16 / 599 * 100vw), 16px);
    }

    .fv-flex-02 {
        width: 100%;
    }

    .cta {
        display: none;
    }
/*終わり*/


/*<div class="cta-sp-wrap">*/
    .cta-sp-wrap {
        padding: 40px 5vw 0 5vw;
    }

    .cta-sp {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        border-radius: 8px;
        padding: 16px;
        background-color: #fff;
        font-weight: 600;
        font-size: 14px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        text-shadow: none;
    }

    .cta-sp .cta-line-btn {
        color: #fff;
        background-color: #22C755;
        border-radius: 50vh;
        text-align: center;
        padding: 8px;
        max-width: 200px;
        width: 100%;
    }

    .cta-sp .cta-mail-btn {
        color: #fff;
        background-color: #FF7F00;
        border-radius: 50vh;
        text-align: center;
        padding: 8px;
        max-width: 200px;
        width: 100%;
    }

    /*モーダルウィンドウ*/
    /*モーダル本体の指定 + モーダル外側の背景の指定*/
    .modal-container-02 {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        text-align: center;
        background: rgba(0,0,0,50%);
        padding: 40px 16px;
        overflow: auto;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        z-index: 20;
    }

    .modal-container-01 {
        display: none;
    }

    /*モーダル本体の擬似要素の指定*/
    .modal-container:before{
        content: "";
        display: inline-block;
        vertical-align: middle;
        height: 100%;
    }

    /*モーダル本体に「active」クラス付与した時のスタイル*/
    .modal-container.active{
        opacity: 1;
        visibility: visible;
    }

    /*モーダル枠の指定*/
    .modal-body{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        display: inline-block;
        vertical-align: middle;
        max-width: 320px;
        width: 100%;
    }

    /*モーダルを閉じるボタンの指定*/
    .modal-close{
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        top: -40px;
        right: 0;
        width: 40px;
        height: 40px;
        font-size: 40px;
        color: #fff;
        cursor: pointer;
    }

    /*モーダル内のコンテンツの指定*/
    .modal-content{
        background: #fff;
        text-align: left;
        padding: 30px;
    }
/*終わり*/

/*終わり*/


/*<section class="lead">*/
    .lead {
        padding: 80px 5vw;
    }

    .lead-txt-wrap {
        width: 100%;
        gap: 8px;
    }

    .lead-txt-01 span,
    .lead-txt-02 span {
        font-size: clamp(calc(16px), calc(18 / 599 * 100vw), 18px);
    }

    .lead-img-wrap {
        width: 100%;
        display: block;
        text-align: right;
    }

    .lead-img {
        max-width: 100px;
    }
/*終わり*/


/*<section class="thought">*/
    .thought {
        padding: 0 5vw 80px 5vw;
    }

    .thought-in {
        flex-direction: column;
        gap: 40px;
    }

    .thought-h2 {
        width: 100%;
        padding-left: 24px;
    }

    .thought-txt-wrap {
        width: 100%;
        gap: 8px;
    }
/*終わり*/


/*<section class="feature">*/
    .feature {
        padding: 80px 5vw;
    }

    .feature-h2 {
        font-size: clamp(calc(16px), calc(18 / 599 * 100vw), 18px);
    }

    .feature-num span {
        font-size: clamp(calc(24px), calc(32 / 599 * 100vw), 32px);
    }

    .feature-h3 {
        font-size: clamp(calc(16px), calc(18 / 599 * 100vw), 18px);
    }
/*終わり*/


/*<section class="flow">*/
    .flow {
        padding: 80px 5vw;
    }

    .flow-con {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .flow-num-wrap {
        width: 100%;
        font-size: 12px;
        padding: 8px 16px;
    }

    .flow-num-txt span {
        font-size: clamp(calc(24px), calc(32 / 599 * 100vw), 32px);
    }

    .flow-icon-wrap {
        width: 100%;
        padding: 0 16px;
    }

    .flow-icon {
        max-width: 64px;
    }

    .flow-txt-wrap {
        width: 100%;
        padding: 0 16px 16px 16px;
    }

    .flow-h3 {
        font-size: clamp(calc(16px), calc(18 / 599 * 100vw), 18px);
    }

    .flow-txt {
        font-size: clamp(calc(14px), calc(16 / 599 * 100vw), 16px);
    }

    .flow-con-orange .flow-h3 {
        font-size: clamp(calc(16px), calc(24 / 599 * 100vw), 24px);
    }

    .flow-con-orange {
        gap: 16px;
    }
/*終わり*/


/*<section class="price">*/
    .price-wrap {
        padding: 24px;
    }

    .price-txt-01 {
        font-size: clamp(calc(18px), calc(24 / 599 * 100vw), 24px);
    }

    .price-txt-01 span {
        font-size: clamp(calc(48px), calc(64 / 599 * 100vw), 64px);
    }

    .price-flex-02 {
        flex-direction: column;
        gap: 4px;
        font-size: clamp(calc(14px), calc(16 / 599 * 100vw), 16px);
    }
/*終わり*/


/*<section class="consul">*/
    .consul {
        padding: 80px 5vw;
    }

    .consul-h2 {
        font-size: clamp(calc(16px), calc(24 / 599 * 100vw), 24px);
        margin-bottom: 64px;
    }

    .consul-flex {
        flex-direction: column;
        gap: 40px;
    }

    .consul-img-wrap {
        width: 100%;
    }

    .consul-img {
        width: 40%;
    }

    .consul-ul {
        width: 100%;
        gap: 8px;
    }

    .consul-ul li {
        font-size: clamp(calc(14px), calc(18 / 599 * 100vw), 18px);
    }

    .check-icon {
        max-width: clamp(calc(14px), calc(16 / 599 * 100vw), 16px);
    }
/*終わり*/


/*<section class="faq">*/
    .faq {
        padding: 80px 5vw;
    }

    .nav-open {
        padding: 8px 40px 8px 40px;
    }

    .faq-txt {
            padding: 8px 40px 8px 40px;
    }
/*終わり*/


/*<section class="info">*/
    .info-in {
        flex-direction: column;
        gap: 40px;
    }

    .info-h2 {
        width: 100%;
        font-size: clamp(calc(18px), calc(20 / 599 * 100vw), 20px);
    }

    .info-wrap {
        width: 100%;
    }

    .info-h3 {
        font-size: clamp(calc(16px), calc(18 / 599 * 100vw), 18px);
    }

    .nav-open-02::after {/* 閉じている時 */
        font-size: clamp(calc(18px), calc(20 / 599 * 100vw), 20px);
        right: 0;
    }
/*終わり*/


/*<section class="contact">*/
    .contact {
        padding: 80px 5vw;
    }

    .contact-lead {
        text-align: left;
        font-size: clamp(calc(14px), calc(16 / 599 * 100vw), 16px);
    }

    .form-title {
        font-size: clamp(calc(18px), calc(20 / 599 * 100vw), 20px);
    }

    .cate-flex,
    .type-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .reason,
    .else {
        height: 160px;
    }

    /*contact form7設定*/
    .cate-flex .wpcf7-form-control,
    .type-flex .wpcf7-form-control {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

/*終わり*/


/*<footer class="footer">*/
    .footer-logo {
        font-size: 14px;
    }

    .footer-logo span {
        font-size: 32px;
    }

    .footer-ul {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
/*終わり*/
}