@charset "utf-8";

/*********************************************************************
*
*  For ALL
*
*********************************************************************/

/* ---------------------------------------------------- */
/* 変数 */
/* ---------------------------------------------------- */
:root {
    --co_1: #333;
    --co_2: #fff;
    --co_3: #4a7868;
    --co_4: #56974b;
    --co_5: #504032;
    --co_6: #f2efe7;
    --co_7: #c2a44f;
}

/* ---------------------------------------------------- */
/* html body */
/* ---------------------------------------------------- */
html {
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    /* iPhone */
    overflow-y: scroll;
    font-size: 62.5%;
}

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: var(--co_1);
    line-height: 1.5;
    font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    background-color: var(--co_2);
    overflow: hidden;
}

@media (min-width: 768px) {
    body {
        min-width: 1160px;
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    body {
        min-width: 320px;
        font-size: 1.4rem;
    }
}

/* ---------------------------------------------------- */
/* img */
/* ---------------------------------------------------- */
img {
    display: block;
    width: 100%;
    height: auto;
}

/* ---------------------------------------------------- */
/* a */
/* ---------------------------------------------------- */
a {
    color: var(--co_1);
    text-decoration: none;
    outline: none;
    transition: 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
}

/* ---------------------------------------------------- */
/* body_wrap */
/* ---------------------------------------------------- */
.body_wrap {
    max-height: 999999px;
    /* android chrome フォントサイズバグ回避 */
    opacity: 0;
}

/* ---------------------------------------------------- */
/* contents_wrap */
/* ---------------------------------------------------- */
@media (min-width: 768px) {
    .contents_wrap {
        padding-top: 0;
    }
}

@media (max-width: 767px) {
    .contents_wrap {
        padding-top: 80px;
    }
}

/* ---------------------------------------------------- */
/* .header_1 */
/* ---------------------------------------------------- */
@media (min-width: 768px) {
    .header_1 {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 100;
        background-color: var(--co_2);
    }

    .header_1 .header_inner {
        position: relative;
        margin: 0 auto;
        min-width: 1100px;
        height: 180px;
    }

    .header_1 .site_ttl {
        position: absolute;
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
        width: 70px;
    }

    .header_1 .site_ttl a {
        display: block;
    }

    .header_1 .btn_toggle_megamenu {
        display: none;
    }

    .header_1 .toggle_megamenu_wrap {
        display: block !important;
        opacity: 1 !important;
    }

    .header_1 .nav_1 {
        position: absolute;
        left: 0;
        bottom: 15px;
        width: 100%;
    }

    .header_1 .nav_1 > ul {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header_1 .nav_1 > ul > li + li {
        margin-left: 40px;
    }

    .header_1 .nav_1 a {
        position: relative;
        display: block;
        padding-bottom: 15px;
        font-weight: 500;
    }

    .header_1 .nav_1 a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        display: block;
        width: 0;
        height: 4px;
        background-color: var(--co_3);
        transition: 0.3s ease-in-out;
    }
    .header_1 .nav_1 a:hover::after {
        width: 60px;
    }
    .header_1 .nav_2 {
        display: none;
    }
}

@media (max-width: 767px) {
    .header_1 {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        background-color: var(--co_2);
        z-index: 100;
    }

    .header_1 .header_inner {
        position: relative;
        height: 80px;
    }

    .header_1 .site_ttl {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 50px;
    }

    .header_1 .site_ttl a {
        display: block;
    }

    .header_1 .btn_toggle_megamenu {
        position: absolute;
        right: 10px;
        top: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 55px;
        height: 55px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
        z-index: 110;
    }

    .header_1 .btn_toggle_megamenu div {
        position: relative;
        width: 28px;
        height: 20px;
    }

    .header .btn_toggle_megamenu::after {
        content: "menu";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        color: var(--co_1);
        font-size: 0.9rem;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        transition: 0.3s ease-in-out;
    }

    .header .btn_toggle_megamenu.is_show::after {
        content: "CLOSE";
    }

    .header_1 .btn_toggle_megamenu div > span span,
    .header_1 .btn_toggle_megamenu div > span:before,
    .header_1 .btn_toggle_megamenu div > span:after {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--co_1);
        transform-origin: center center;
        transition: 0.3s ease-in-out;
    }

    .header_1 .btn_toggle_megamenu div > span span {
        transform: translateY(-1px);
    }

    .header_1 .btn_toggle_megamenu div > span:before {
        transform: translateY(-9px);
    }

    .header_1 .btn_toggle_megamenu div > span:after {
        transform: translateY(7px);
    }

    .header_1 .btn_toggle_megamenu.is_show div > span span,
    .header_1 .btn_toggle_megamenu.is_show div > span:before,
    .header_1 .btn_toggle_megamenu.is_show div > span:after {
        width: 100% !important;
    }

    .header_1 .btn_toggle_megamenu.is_show div > span span {
        opacity: 0;
    }

    .header_1 .btn_toggle_megamenu.is_show div > span:before {
        transform: translateY(-50%) rotate(-45deg);
    }

    .header_1 .btn_toggle_megamenu.is_show div > span:after {
        bottom: 0;
        transform: translateY(-50%) rotate(45deg);
    }

    .header_1 .toggle_megamenu_wrap {
        display: none;
        position: fixed;
        left: 0;
        top: 80px;
        width: 100%;
        height: calc(100% - 80px);
        background-color: var(--co_2);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 100;
    }

    .header_1 .toggle_megamenu_wrap .toggle_inner {
        padding: 40px;
    }

    .header_1 .nav_1 > ul > li + li {
        margin-top: 25px;
    }

    .header_1 .nav_1 a {
        display: block;
        font-size: 1.7rem;
        font-weight: 500;
    }
    .header_1 .nav_2 {
        display: block;
        padding: 40px 20px;
        margin: 40px -20px 0;
        background-color: var(--co_6);
        border-radius: 10px;
    }
    .header_1 .nav_2 > ul > li + li {
        margin-top: 30px;
    }
    .header_1 .nav_2 .ttl {
        margin-bottom: 10px;
        font-style: 1.3rem;
        font-weight: 700;
        text-align: center;
    }
    .header_1 .nav_2 .btn_1 {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        font-weight: 600;
        line-height: 1;
        background-color: var(--co_2);
        border-radius: 25px;
        border: 2px solid var(--co_3);
    }
    .header_1 .nav_2 .btn_1 > span:nth-of-type(1) {
        margin-right: 5px;
        font-size: 1.5rem;
    }
    .header_1 .nav_2 .btn_1 > span:nth-of-type(2) {
        color: var(--co_3);
        font-size: 2.4rem;
    }

    .header_1 .nav_2 .btn_2 {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        color: var(--co_2);
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 1;
        background-color: #ff9933;
        border-radius: 5px;
    }
    .header_1 .nav_2 .btn_2::before {
        content: "";
        display: block;
        margin-right: 15px;
        width: 24px;
        height: 24px;
        background-image: url(../img/ico/reservation_1.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }
    .header_1 .nav_2 .btn_2::after {
        content: "";
        display: block;
        margin-left: 15px;
        width: 14px;
        height: 14px;
        background-image: url(../img/ico/arrow_1.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }
}

/* ---------------------------------------------------- */
/* sec_mv_wrap */
/* ---------------------------------------------------- */
.sec_mv_wrap {
    padding-bottom: 80px;
}
.sec_mv_wrap .mv_1 {
    position: relative;
    margin-bottom: 70px;
}
.sec_mv_wrap .img_1 {
    position: relative;
}
.sec_mv_wrap .img_1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 65px;
    background-image: url(../img/bg/1.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center top;
}
.sec_mv_wrap .img_1 span {
    padding-top: 574px;
}
.sec_mv_wrap .ttl_1 {
    position: absolute;
    left: 50%;
    top: 55px;
    transform: translateX(-50%);
    width: 1100px;
}
.sec_mv_wrap .desc_1 {
    position: absolute;
    left: 50%;
    bottom: 75px;
    transform: translateX(-50%);
    width: 1100px;
    font-size: 1.2rem;
    text-align: right;
}
.sec_mv_wrap .list_1 > ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-right: -25px;
}
.sec_mv_wrap .list_1 > ul > li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
    padding: 35px;
    width: 310px;
    color: #57954c;
    text-align: center;
    border: 3px solid #57954c;
    border-radius: 5px;
}

.sec_mv_wrap .list_1 .num {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    width: 170px;
    font-size: 2.2rem;
    font-weight: 700;
    background-color: var(--co_2);
}
.sec_mv_wrap .list_1 .num::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 100%;
    background-color: #fff59a;
}
.sec_mv_wrap .list_1 .num span {
    position: relative;
}

.sec_mv_wrap .list_1 .ttl {
    font-size: 2.2rem;
    font-weight: 700;
}
@media (max-width: 767px) {
    .sec_mv_wrap {
        padding-bottom: 40px;
    }
    .sec_mv_wrap .mv_1 {
        padding-bottom: 15%;
        margin-bottom: 40px;
    }
    .sec_mv_wrap .img_1::after {
        height: 30px;
    }
    .sec_mv_wrap .img_1 span {
        padding-top: 118%;
    }
    .sec_mv_wrap .ttl_1 {
        top: 5%;
        width: 100%;
    }
    .sec_mv_wrap .desc_1 {
        left: auto;
        right: 20px;
        bottom: 0;
        transform: translateX(0);
        width: auto;
        font-size: 1rem;
    }
    .sec_mv_wrap .list_1 {
        margin: 0 15px;
    }
    .sec_mv_wrap .list_1 > ul {
        margin-right: -5px;
    }
    .sec_mv_wrap .list_1 > ul > li {
        margin-right: 5px;
        padding: 20px 0;
        width: calc(100% / 3 - 5px);
    }

    .sec_mv_wrap .list_1 .num {
        width: 100px;
        font-size: 1.1rem;
    }
    .sec_mv_wrap .list_1 .num::before {
        width: 28px;
        height: 28px;
    }

    .sec_mv_wrap .list_1 .ttl {
        font-size: 1.5rem;
    }
}

/* ---------------------------------------------------- */
/* sec_worry_wrap */
/* ---------------------------------------------------- */
.sec_worry_wrap {
    padding-top: 100px;
    padding-bottom: 100px;
}

.sec_worry_wrap .ttl_1 {
    margin: 0 auto 100px;
    padding: 0 10px 5px;
    width: max-content;
    color: var(--co_5);
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    border-bottom: 3px solid var(--co_5);
}
.sec_worry_wrap .ttl_1 > span > span {
    color: var(--co_3);
}
.sec_worry_wrap .list_1 {
    margin-bottom: 80px;
}
.sec_worry_wrap .list_1 > ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-right: -60px;
    margin-bottom: -100px;
}
.sec_worry_wrap .list_1 > ul > li {
    position: relative;
    margin-right: 60px;
    margin-bottom: 100px;
    padding: 0 80px 30px;
    width: calc(100% / 2 - 60px);
    background-color: var(--co_6);
    border-radius: 10px;
}
.sec_worry_wrap .list_1 > ul > li::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 1px solid var(--co_2);
    border-radius: 8px;
}
.sec_worry_wrap .list_1 .img {
    position: relative;
    margin: -70px auto 20px;
    width: 260px;
}
.sec_worry_wrap .list_1 .ttl {
    margin-bottom: 20px;
    color: #504032;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
}

.sec_worry_wrap .list_1 .point > li {
    position: relative;
    padding: 20px 40px 20px 60px;
    background-color: var(--co_2);
    border-radius: 5px;
}

.sec_worry_wrap .list_1 .point > li::before {
    content: "●";
    position: absolute;
    left: 30px;
    top: 20px;
    color: var(--co_7);
}
.sec_worry_wrap .list_1 .point > li + li {
    margin-top: 10px;
}
.sec_worry_wrap .ttl_2 {
    position: relative;
    color: var(--co_5);
    font-size: 4.2rem;
    font-weight: 700;
    text-align: center;
    z-index: 2;
}
.sec_worry_wrap .ttl_2 img {
    margin: 0 auto 10px;
    width: 380px;
}
@media (max-width: 767px) {
    .sec_worry_wrap {
        padding-top: 80px;
        padding-bottom: 0;
    }

    .sec_worry_wrap .ttl_1 {
        margin: 0 auto 80px;
        padding: 0 10px 5px;
        font-size: 2.1rem;
    }

    .sec_worry_wrap .list_1 {
        margin-bottom: 40px;
    }
    .sec_worry_wrap .list_1 > ul {
        margin-right: 0;
        margin-bottom: -70px;
    }
    .sec_worry_wrap .list_1 > ul > li {
        margin-right: 0;
        margin-bottom: 70px;
        padding: 0 20px 20px;
        width: 100%;
    }

    .sec_worry_wrap .list_1 .img {
        margin: -50px auto 10px;
        width: 146px;
    }
    .sec_worry_wrap .list_1 .ttl {
        margin-bottom: 15px;
        font-size: 1.7rem;
    }

    .sec_worry_wrap .list_1 .point > li {
        padding: 10px 10px 10px 35px;
    }

    .sec_worry_wrap .list_1 .point > li::before {
        left: 12px;
        top: 10px;
    }
    .sec_worry_wrap .list_1 .point > li + li {
        margin-top: 10px;
    }
    .sec_worry_wrap .ttl_2 {
        color: var(--co_5);
        font-size: 2.1rem;
    }
    .sec_worry_wrap .ttl_2 img {
        width: 240px;
    }
}

/* ---------------------------------------------------- */
/* sec_service_wrap */
/* ---------------------------------------------------- */
.sec_service_wrap {
    margin-top: -150px;
    margin-bottom: 100px;
    padding-top: 230px;
    padding-bottom: 50px;
    background-color: #f3f3f3;
    background-image: url(../img/bg/3.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center top;
}
.sec_service_wrap::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    width: 100%;
    height: 144px;
    background-image: url(../img/bg/2.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center top;
}

.sec_service_wrap::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 65px;
    background-image: url(../img/bg/1.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center top;
}
.sec_service_wrap .ttl_1 {
    position: relative;
    margin-bottom: 100px;
    font-weight: 700;
    text-align: center;
}

.sec_service_wrap .ttl_1 .en {
    position: absolute;
    left: 0;
    top: -50px;
    width: 100%;
    color: var(--co_2);
    font-size: 10rem;
    line-height: 1;
    letter-spacing: 0.1em;
}

.sec_service_wrap .ttl_1 .ja {
    position: relative;
    display: block;
    color: var(--co_5);
    font-size: 3.6rem;
}
.sec_service_wrap .ttl_1 > span > span {
    color: var(--co_3);
}
.sec_service_wrap .list_1 {
    margin-bottom: 80px;
}
.sec_service_wrap .list_1 > ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-right: -25px;
    margin-bottom: -80px;
}
.sec_service_wrap .list_1 > ul > li {
    position: relative;
    margin-right: 25px;
    margin-bottom: 80px;
    padding: 35px;
    width: calc(100% / 3 - 25px);
    background-color: var(--co_2);
    border-radius: 10px;
}

.sec_service_wrap .list_1 .num {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-50%);
    width: 100%;
    color: var(--co_4);
    font-size: 5.5rem;
    font-weight: 700;
    text-align: center;
}
.sec_service_wrap .list_1 .img {
    margin: 0 auto 20px;
    width: 200px;
}
.sec_service_wrap .list_1 .ttl {
    margin-bottom: 20px;
    color: var(--co_3);
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
}

.sec_service_wrap .block_1 {
    position: relative;
}

.sec_service_wrap .block_1 .ttl {
    margin-bottom: 20px;
    text-align: center;
}
.sec_service_wrap .block_1 .ttl > span:nth-of-type(1) {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 700;
}
.sec_service_wrap .block_1 .ttl > span:nth-of-type(1)::before,
.sec_service_wrap .block_1 .ttl > span:nth-of-type(1)::after {
    content: "";
    display: block;
    width: 2px;
    height: 30px;
    background-color: var(--co_1);
}

.sec_service_wrap .block_1 .ttl > span:nth-of-type(1)::before {
    margin-right: 30px;
    transform: rotate(-30deg);
}

.sec_service_wrap .block_1 .ttl > span:nth-of-type(1)::after {
    margin-left: 30px;
    transform: rotate(30deg);
}
.sec_service_wrap .block_1 .ttl > span:nth-of-type(2) {
    display: block;
    font-size: 3rem;
    font-weight: 500;
}
.sec_service_wrap .block_1 .ttl > span:nth-of-type(2) span {
    color: var(--co_3);
}
.sec_service_wrap .block_1 .desc {
    text-align: center;
}
.sec_service_wrap .block_1 .img_a {
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 232px;
}
.sec_service_wrap .block_1 .img_b {
    position: absolute;
    right: 0;
    bottom: -50px;
    width: 232px;
}
@media (max-width: 767px) {
    .sec_service_wrap {
        margin-top: 0;
        margin-bottom: 50px;
        padding-top: 120px;
        padding-bottom: 30px;
    }
    .sec_service_wrap::before {
        height: 50px;
    }

    .sec_service_wrap::after {
        bottom: -1px;
        height: 30px;
    }
    .sec_service_wrap .ttl_1 {
        margin-bottom: 50px;
    }

    .sec_service_wrap .ttl_1 .en {
        font-size: 5rem;
    }

    .sec_service_wrap .ttl_1 .ja {
        font-size: 2rem;
    }
    .sec_service_wrap .ttl_1 > span > span {
        color: var(--co_3);
    }
    .sec_service_wrap .list_1 {
        margin-bottom: 50px;
    }
    .sec_service_wrap .list_1 > ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-right: 0;
        margin-bottom: -50px;
    }
    .sec_service_wrap .list_1 > ul > li {
        position: relative;
        margin-right: 0;
        margin-bottom: 50px;
        padding: 30px 20px;
        width: 100%;
        background-color: var(--co_2);
        border-radius: 10px;
    }
    .sec_service_wrap .list_1 .clms_wrap {
        display: flex;
        align-items: center;
    }
    .sec_service_wrap .list_1 .num {
        font-size: 3.6rem;
    }
    .sec_service_wrap .list_1 .img {
        flex: none;
        margin: 0;
        margin-right: 20px;
        width: 110px;
    }
    .sec_service_wrap .list_1 .ttl {
        margin-bottom: 20px;
        font-size: 1.7rem;
    }

    .sec_service_wrap .list_1 .desc {
        font-size: 1.3rem;
    }

    .sec_service_wrap .block_1 .ttl {
        margin-bottom: 20px;
    }

    .sec_service_wrap .block_1 .ttl > span:nth-of-type(1)::before,
    .sec_service_wrap .block_1 .ttl > span:nth-of-type(1)::after {
        height: 20px;
    }

    .sec_service_wrap .block_1 .ttl > span:nth-of-type(2) {
        font-size: 2rem;
    }

    .sec_service_wrap .block_1 .img_a {
        left: -40px;
        bottom: auto;
        top: -20px;
        width: 110px;
        height: 125px;
        overflow: hidden;
    }
    .sec_service_wrap .block_1 .img_b {
        right: -40px;
        bottom: auto;
        top: -20px;
        width: 110px;
        height: 125px;
        overflow: hidden;
    }
}

/* ---------------------------------------------------- */
/* sec_diagnose_wrap */
/* ---------------------------------------------------- */
.sec_diagnose_wrap {
    padding-top: 100px;
    padding-bottom: 100px;
}

.sec_diagnose_wrap .ttl_1 {
    position: relative;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.sec_diagnose_wrap .ttl_1 .en {
    position: absolute;
    left: 0;
    top: -50px;
    width: 100%;
    color: var(--co_6);
    font-size: 10rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
}

.sec_diagnose_wrap .ttl_1 .ja {
    position: relative;
    display: block;
    color: var(--co_5);
    font-size: 5.2rem;
}

.sec_diagnose_wrap .ttl_2 {
    margin-bottom: 100px;
    color: var(--co_3);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

.sec_diagnose_wrap .ttl_2::after {
    content: "";
    display: block;
    margin: 10px auto 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 50px 0 50px;
    border-color: var(--co_3) transparent transparent transparent;
}

.sec_diagnose_wrap .block_1 {
    position: relative;
    padding: 80px 0;
}
.sec_diagnose_wrap .block_1::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    display: block;
    width: 1400px;
    height: 100%;
    background-color: #e6dfd8;
    border-radius: 50px;
    z-index: -1;
}

.sec_diagnose_wrap .img_1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 237px;
    transform: translateY(-100%);
}
.sec_diagnose_wrap .img_2 {
    position: absolute;
    right: 0;
    top: 0;
    width: 237px;
    transform: translateY(-100%);
}
.sec_diagnose_wrap .ttl_3 {
    margin-bottom: 50px;
    padding-bottom: 20px;
    color: var(--co_5);
    text-align: center;
    border-bottom: 3px solid var(--co_5);
}
.sec_diagnose_wrap .ttl_3 > span:nth-of-type(1) {
    display: block;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 500;
}
.sec_diagnose_wrap .ttl_3 > span:nth-of-type(2) {
    display: block;
    font-size: 3.6rem;
    font-weight: 700;
}
.sec_diagnose_wrap .ttl_4 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
    margin: 0 auto 50px;
    width: max-content;
    height: 66px;
    color: var(--co_2);
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    background-color: #c8ae95;
    border-radius: 33px;
}
.sec_diagnose_wrap .list_1 {
    margin-bottom: 40px;
}
.sec_diagnose_wrap .list_1 > ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-right: -20px;
}
.sec_diagnose_wrap .list_1 > ul > li {
    position: relative;
    margin-right: 20px;
    width: calc(100% / 4 - 20px);
    background-color: var(--co_2);
    border-radius: 10px;
    overflow: hidden;
}
.sec_diagnose_wrap .list_1 .ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    height: 60px;
    color: var(--co_2);
    font-size: 2.2rem;
    font-weight: 500;
}
.sec_diagnose_wrap .list_1 > ul > li:nth-child(1) .ttl {
    background-color: #81c0eb;
}
.sec_diagnose_wrap .list_1 > ul > li:nth-child(2) .ttl {
    background-color: #e2b956;
}
.sec_diagnose_wrap .list_1 > ul > li:nth-child(3) .ttl {
    background-color: #f09168;
}
.sec_diagnose_wrap .list_1 > ul > li:nth-child(4) .ttl {
    background-color: #e37f73;
}
.sec_diagnose_wrap .list_1 .img {
    margin: 0 auto;
    width: 198px;
}

.sec_diagnose_wrap .list_1 .desc {
    padding: 30px 20px;
    color: #686868;
    font-style: 1.5rem;
    text-align: center;
}

.sec_diagnose_wrap .ttl_5 {
    position: relative;
    margin: 0 auto 30px;
    padding: 0 10px;
    width: max-content;
    color: var(--co_4);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.sec_diagnose_wrap .ttl_5::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 10px;
    background-color: #fff59a;
}
.sec_diagnose_wrap .ttl_5 span {
    position: relative;
}
.sec_diagnose_wrap .list_2 {
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
}
.sec_diagnose_wrap .list_2 > ul {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-right: -50px;
}
.sec_diagnose_wrap .list_2 > ul > li {
    position: relative;
    margin-right: 40px;
    padding: 20px;
    width: 240px;
    background-color: #eee1bc;
    border-radius: 10px;
    overflow: hidden;
}
.sec_diagnose_wrap .list_2 > ul > li:nth-child(2) {
    padding-top: 40px;
    background-color: #f8dacf;
}

.sec_diagnose_wrap .list_2 .img {
    margin: 0 auto 20px;
    width: 70px;
}
.sec_diagnose_wrap .list_2 .ttl {
    margin-bottom: 10px;
    color: var(--co_5);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}
.sec_diagnose_wrap .list_2 .cat {
    margin: 0 auto 15px;
    width: 180px;
    padding: 5px 10px;
    color: var(--co_2);
    font-size: 1.4rem;
    text-align: center;
    background-color: #c2a44f;
    border-radius: 20px;
}
.sec_diagnose_wrap .list_2 > ul > li:nth-child(2) .cat {
    background-color: #f2906b;
}

.sec_diagnose_wrap .list_2 .desc {
    color: #7e654f;
    text-align: center;
    line-height: 1.4;
}
.sec_diagnose_wrap .list_2 > ul > li:nth-child(2) .desc {
    font-size: 1.8rem;
    font-weight: 700;
}

@media (max-width: 767px) {
    .sec_diagnose_wrap {
        padding-top: 80px;
        padding-bottom: 0;
    }

    .sec_diagnose_wrap .ttl_1 {
        margin-bottom: 30px;
    }

    .sec_diagnose_wrap .ttl_1 .en {
        top: -30px;
        font-size: 5.5rem;
    }

    .sec_diagnose_wrap .ttl_1 .ja {
        font-size: 2.7rem;
    }

    .sec_diagnose_wrap .ttl_2 {
        margin-bottom: 30px;
        font-size: 1.7rem;
    }

    .sec_diagnose_wrap .ttl_2::after {
        margin: 10px auto 0;
        border-width: 20px 20px 0 20px;
    }

    .sec_diagnose_wrap .block_1 {
        padding: 40px 0;
    }

    .sec_diagnose_wrap .img_1 {
        left: -45px;
        width: 160px;
    }
    .sec_diagnose_wrap .img_2 {
        right: -45px;
        width: 160px;
    }
    .sec_diagnose_wrap .ttl_3 {
        margin-bottom: 30px;
        padding-bottom: 10px;
    }
    .sec_diagnose_wrap .ttl_3 > span:nth-of-type(1) {
        margin-bottom: 20px;
        font-size: 1.5rem;
    }
    .sec_diagnose_wrap .ttl_3 > span:nth-of-type(2) {
        font-size: 2rem;
    }
    .sec_diagnose_wrap .ttl_4 {
        padding: 0 30px;
        margin: 0 auto 20px;
        height: 40px;
        font-size: 1.7rem;
        border-radius: 20px;
    }
    .sec_diagnose_wrap .list_1 {
        margin-bottom: 20px;
    }
    .sec_diagnose_wrap .list_1 > ul {
        margin-right: -15px;
        margin-bottom: -15px;
    }
    .sec_diagnose_wrap .list_1 > ul > li {
        margin-right: 15px;
        margin-bottom: 15px;
        width: calc(100% / 2 - 15px);
    }
    .sec_diagnose_wrap .list_1 .ttl {
        margin-bottom: 20px;
        height: 40px;
        font-size: 1.4rem;
    }
    .sec_diagnose_wrap .list_1 > ul > li:nth-child(1) .ttl {
        background-color: #81c0eb;
    }
    .sec_diagnose_wrap .list_1 > ul > li:nth-child(2) .ttl {
        background-color: #e2b956;
    }
    .sec_diagnose_wrap .list_1 > ul > li:nth-child(3) .ttl {
        background-color: #f09168;
    }
    .sec_diagnose_wrap .list_1 > ul > li:nth-child(4) .ttl {
        background-color: #e37f73;
    }
    .sec_diagnose_wrap .list_1 .img {
        margin: 0 auto;
        width: 80%;
    }

    .sec_diagnose_wrap .list_1 .desc {
        padding: 20px 15px;
        font-size: 1.1rem;
    }

    .sec_diagnose_wrap .ttl_5 {
        margin: 0 auto 20px;
        font-size: 1.6rem;
    }

    .sec_diagnose_wrap .list_2 {
        padding: 15px 5px;
    }
    .sec_diagnose_wrap .list_2 > ul {
        margin-right: -5px;
    }
    .sec_diagnose_wrap .list_2 > ul > li {
        margin-right: 5px;
        padding: 5px 5px 20px;
        width: calc(100% / 3 - 5px);
    }

    .sec_diagnose_wrap .list_2 > ul > li:nth-child(2) {
        padding-top: 20px;
    }

    .sec_diagnose_wrap .list_2 .img {
        margin: 0 auto 10px;
        width: 80%;
    }
    .sec_diagnose_wrap .list_2 .ttl {
        margin-bottom: 10px;
        font-size: 1.2rem;
    }
    .sec_diagnose_wrap .list_2 .cat {
        margin: 0 auto 15px;
        width: auto;
        padding: 5px 5px;
        color: var(--co_2);
        font-size: 1rem;
        border-radius: 10px;
    }

    .sec_diagnose_wrap .list_2 .desc {
        font-size: 1rem;
    }
    .sec_diagnose_wrap .list_2 > ul > li:nth-child(2) .desc {
        font-size: 1.2rem;
    }
}
/* ---------------------------------------------------- */
/* sec_feature_wrap */
/* ---------------------------------------------------- */
.sec_feature_wrap {
    padding-top: 150px;
    padding-bottom: 100px;
    background-color: var(--co_6);
}
.sec_feature_wrap::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 65px;
    background-image: url(../img/bg/1.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center top;
}
.sec_feature_wrap .ttl_1 {
    position: relative;
    margin-bottom: 80px;
    text-align: center;
}
.sec_feature_wrap .ttl_1::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -40%);
    display: block;
    width: 240px;
    height: 240px;
    background-image: url(../img/logo/sato_2_b.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.sec_feature_wrap .ttl_1 .en {
    position: relative;
    display: block;
    color: var(--co_3);
    font-size: 2.4rem;
    font-weight: 700;
}
.sec_feature_wrap .ttl_1 .ja {
    position: relative;
    display: block;
    color: var(--co_5);
    font-size: 4.2rem;
    font-weight: 700;
}

.sec_feature_wrap .list_1 > ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-right: -60px;
    margin-bottom: -60px;
}
.sec_feature_wrap .list_1 > ul > li {
    margin-right: 60px;
    margin-bottom: 60px;
    width: calc(100% / 3 - 60px);
}
.sec_feature_wrap .list_1 .num {
    margin-bottom: 10px;
    color: var(--co_4);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 1;
}
.sec_feature_wrap .list_1 .num span {
    display: block;
    font-size: 4.2rem;
}
.sec_feature_wrap .list_1 .img {
    margin: 0 auto 20px;
    width: 224px;
    border-radius: 100%;
    overflow: hidden;
}
.sec_feature_wrap .list_1 .ttl {
    margin-bottom: 15px;
    color: var(--co_3);
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
}
@media (max-width: 767px) {
    .sec_feature_wrap {
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .sec_feature_wrap::after {
        bottom: -1px;
        height: 30px;
    }
    .sec_feature_wrap .ttl_1 {
        position: relative;
        margin-bottom: 80px;
        text-align: center;
    }
    .sec_feature_wrap .ttl_1::before {
        transform: translate(-50%, -30%);
        width: 180px;
        height: 180px;
    }
    .sec_feature_wrap .ttl_1 .en {
        font-size: 1.2rem;
    }
    .sec_feature_wrap .ttl_1 .ja {
        font-size: 2.6rem;
    }

    .sec_feature_wrap .list_1 > ul {
        margin-right: -20px;
        margin-bottom: -30px;
    }
    .sec_feature_wrap .list_1 > ul > li {
        margin-right: 20px;
        margin-bottom: 30px;
        width: calc(100% / 2 - 20px);
    }
    .sec_feature_wrap .list_1 .num {
        margin-bottom: 10px;
        font-size: 1.3rem;
    }
    .sec_feature_wrap .list_1 .num span {
        font-size: 3.2rem;
    }
    .sec_feature_wrap .list_1 .img {
        margin: 0 auto 15px;
        width: 80%;
    }
    .sec_feature_wrap .list_1 .ttl {
        margin-bottom: 15px;
        font-size: 1.5rem;
    }
}

/* ---------------------------------------------------- */
/* sec_flow_wrap */
/* ---------------------------------------------------- */
.sec_flow_wrap {
    padding-top: 100px;
    padding-bottom: 100px;
}
.sec_flow_wrap .ttl_1 {
    margin-bottom: 40px;
    text-align: center;
}
.sec_flow_wrap .ttl_1 .en {
    display: block;
    color: var(--co_3);
    font-size: 2.4rem;
    font-weight: 700;
}
.sec_flow_wrap .ttl_1 .ja {
    display: block;
    color: var(--co_5);
    font-size: 4.2rem;
    font-weight: 700;
}

.sec_flow_wrap .list_1 > ul > li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sec_flow_wrap .list_1 .img {
    border-radius: 100%;
}

.sec_flow_wrap .list_1 .num {
    color: var(--co_4);
    font-weight: 600;
}

.sec_flow_wrap .list_1 .ttl {
    margin-bottom: 30px;
    font-size: 3.2rem;
    font-weight: 700;
}

.sec_flow_wrap .list_1 > ul > li + li {
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px dashed #c4c4c4;
}

.sec_flow_wrap .list_1 > ul > li > .clm_wrap:nth-of-type(1) {
    flex: none;
    width: 201px;
}

.sec_flow_wrap .list_1 > ul > li > .clm_wrap:nth-of-type(2) {
    flex: none;
    width: 820px;
}

@media (max-width: 767px) {
    .sec_flow_wrap {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .sec_flow_wrap .ttl_1 {
        margin-bottom: 30px;
    }
    .sec_flow_wrap .ttl_1 .en {
        font-size: 1.2rem;
    }
    .sec_flow_wrap .ttl_1 .ja {
        font-size: 2.6rem;
    }

    .sec_flow_wrap .list_1 .ttl {
        margin-bottom: 20px;
        font-size: 1.8rem;
    }

    .sec_flow_wrap .list_1 > ul > li + li {
        padding-top: 30px;
        margin-top: 30px;
    }

    .sec_flow_wrap .list_1 > ul > li > .clm_wrap:nth-of-type(1) {
        margin-left: 20px;
        width: 150px;
        order: 2;
    }

    .sec_flow_wrap .list_1 > ul > li > .clm_wrap:nth-of-type(2) {
        flex: auto;
        width: auto;
    }
}

/* ---------------------------------------------------- */
/* sec_qa_wrap */
/* ---------------------------------------------------- */
.sec_qa_wrap {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f3f3f3;
}
.sec_qa_wrap::before {
    content: "";
    position: absolute;
    right: -200px;
    top: 0;
    display: block;
    width: 480px;
    height: 480px;
    background-image: url(../img/logo/sato_2.svg);
    background-size: contain;
}
.sec_qa_wrap .ttl_1 {
    margin-bottom: 40px;
    text-align: center;
}
.sec_qa_wrap .ttl_1 .en {
    display: block;
    color: var(--co_3);
    font-size: 2.4rem;
    font-weight: 700;
}
.sec_qa_wrap .ttl_1 .ja {
    display: block;
    color: var(--co_5);
    font-size: 4.2rem;
    font-weight: 700;
}

.sec_qa_wrap .list_1 > ul > li + li {
    margin-top: 30px;
}

.sec_qa_wrap .list_1 .q {
    position: relative;
    padding: 20px 60px 20px 110px;
    color: var(--co_3);
    font-size: 2rem;
    font-weight: 700;
    text-align: justify;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
    background-color: var(--co_2);
    transition: 0.3s ease-in-out;
}

.sec_qa_wrap .list_1 .q::before {
    content: "Q";
    position: absolute;
    left: 45px;
    top: 18px;
    color: var(--co_3);
    font-family: "Poppins", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
}
.sec_qa_wrap .list_1 .q::after {
    content: "";
    position: absolute;
    right: 40px;
    top: 25px;
    width: 16px;
    height: 16px;
    border-top: 3px solid var(--co_7);
    border-right: 3px solid var(--co_7);
    transform: rotate(135deg);
    transition: 0.3s ease-in-out;
}

.sec_qa_wrap .list_1 .q.is_show::after {
    top: 30px;
    transform: rotate(-45deg);
}

.sec_qa_wrap .list_1 .a {
    position: relative;
    display: none;
    padding: 20px 30px 20px 110px;
}
.sec_qa_wrap .list_1 .a::before {
    content: "A";
    position: absolute;
    left: 45px;
    top: 18px;
    color: var(--co_3);
    font-family: "Poppins", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 767px) {
    .sec_qa_wrap {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .sec_qa_wrap::before {
        display: none;
    }
    .sec_qa_wrap .ttl_1 {
        margin-bottom: 30px;
    }
    .sec_qa_wrap .ttl_1 .en {
        font-size: 1.2rem;
    }
    .sec_qa_wrap .ttl_1 .ja {
        font-size: 2.6rem;
    }

    .sec_qa_wrap .list_1 > ul > li + li {
        margin-top: 15px;
    }

    .sec_qa_wrap .list_1 .q {
        padding: 10px 55px 10px 40px;
        font-size: 1.5rem;
    }

    .sec_qa_wrap .list_1 .q::before {
        left: 10px;
        top: 10px;
        font-size: 2rem;
    }
    .sec_qa_wrap .list_1 .q::after {
        right: 10px;
        top: 13px;
        width: 12px;
        height: 12px;
    }

    .sec_qa_wrap .list_1 .q.is_show::after {
        top: 18px;
    }

    .sec_qa_wrap .list_1 .a {
        padding: 10px 10px 10px 40px;
        font-size: 1.3rem;
    }
    .sec_qa_wrap .list_1 .a::before {
        left: 10px;
        top: 10px;
        font-size: 2rem;
    }
}

/* ---------------------------------------------------- */
/* sec_about_wrap */
/* ---------------------------------------------------- */
.sec_about_wrap {
    padding-top: 100px;
}
.sec_about_wrap::before {
    content: "";
    position: absolute;
    right: -200px;
    top: 0;
    display: block;
    width: 480px;
    height: 480px;
    background-image: url(../img/logo/sato_2.svg);
    background-size: contain;
}
.sec_about_wrap .ttl_1 {
    margin-bottom: 30px;
    text-align: center;
}
.sec_about_wrap .ttl_1 .en {
    display: block;
    color: var(--co_3);
    font-size: 2.4rem;
    font-weight: 700;
}
.sec_about_wrap .ttl_1 .ja {
    display: block;
    color: var(--co_5);
    font-size: 4.2rem;
    font-weight: 700;
}

.sec_about_wrap .desc_1 {
    margin-bottom: 100px;
    color: var(--co_5);
    font-size: 2rem;
    text-align: center;
}
.sec_about_wrap .clms_wrap_1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 100px;
}

.sec_about_wrap .clms_wrap_1::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: block;
    width: 100vw;
    height: 320px;
    background-color: var(--co_6);
}

.sec_about_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(1) {
    position: relative;
    flex: none;
    margin-right: -150px;
    width: 700px;
    order: 2;
}
.sec_about_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(2) {
    position: relative;
    flex: none;
    width: 550px;
}

.sec_about_wrap .logo_1 {
    margin: 0 auto 30px;
    width: 150px;
}

.sec_about_wrap .address_1 {
    margin-bottom: 5px;
    text-align: center;
}

.sec_about_wrap .tel_1 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 600;
}

.sec_about_wrap .time_1 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: center;
}
.sec_about_wrap .time_1 span {
    display: block;
    margin: 0 auto 10px;
    padding: 2px 20px;
    width: max-content;
    border: 1px solid var(--co_1);
}
.sec_about_wrap .img_1 {
    overflow: hidden;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .sec_about_wrap {
        padding-top: 50px;
    }
    .sec_about_wrap::before {
        display: none;
    }
    .sec_about_wrap .ttl_1 {
        margin-bottom: 30px;
    }
    .sec_about_wrap .ttl_1 .en {
        font-size: 1.2rem;
    }
    .sec_about_wrap .ttl_1 .ja {
        font-size: 2.6rem;
    }

    .sec_about_wrap .desc_1 {
        margin-bottom: 20px;
        font-size: 1.5rem;
    }
    .sec_about_wrap .clms_wrap_1 {
        display: block;
        margin: 0 -15px;
        padding-bottom: 10px;
        background-color: var(--co_6);
    }

    .sec_about_wrap .clms_wrap_1::before {
        display: none;
    }

    .sec_about_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(1) {
        margin-right: 0;
        width: auto;
    }
    .sec_about_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(2) {
        padding-top: 30px;
        width: auto;
    }
    .sec_about_wrap .logo_1 {
        margin: 0 auto 20px;
        width: 140px;
    }
    .sec_about_wrap .address_1 {
        margin-bottom: 20px;
    }
    .sec_about_wrap .tel_1 {
        display: block;
        padding: 5px 25px;
        margin: 0 auto 20px;
        width: max-content;
        font-size: 1.4rem;
        border: 2px solid var(--co_3);
        background-color: var(--co_2);
        border-radius: 30px;
    }
    .sec_about_wrap .tel_1 span {
        color: var(--co_3);
        font-size: 2.4rem;
    }

    .sec_about_wrap .time_1 {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
        font-size: 1.1rem;
    }
    .sec_about_wrap .time_1 span {
        margin: 0;
        margin-right: 10px;
        padding: 2px 10px;
    }
    .sec_about_wrap .img_1 {
        border-radius: 0;
    }

    .sec_about_wrap .map_1 iframe {
        height: 270px;
    }
}

/* ---------------------------------------------------- */
/* sec_greeting_wrap */
/* ---------------------------------------------------- */
.sec_greeting_wrap {
    padding-top: 100px;
    padding-bottom: 100px;
}

.sec_greeting_wrap .clms_wrap_1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.sec_greeting_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(1) {
    flex: none;
    width: 396px;
}
.sec_greeting_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(2) {
    flex: none;
    width: 590px;
}
.sec_greeting_wrap .img_1 {
    overflow: hidden;
    border-radius: 10px;
}
.sec_greeting_wrap .ttl_1 {
    margin-bottom: 30px;
    color: var(--co_6);
    font-size: 11rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
}

.sec_greeting_wrap .desc_1 {
    margin-bottom: 10px;
    line-height: 2;
}
.sec_greeting_wrap .name_1 {
    font-size: 2rem;
    font-weight: 700;
    text-align: right;
}

.sec_greeting_wrap .clms_wrap_2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: var(--co_6);
    border-radius: 10px;
}

.sec_greeting_wrap .clms_wrap_2 > .clm_wrap {
    flex: none;
    width: 460px;
}
.sec_greeting_wrap .ttl_2 {
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 1px solid var(--co_7);
}
.sec_greeting_wrap .desc_2 {
    font-size: 1.5rem;
    line-height: 2;
}

@media (max-width: 767px) {
    .sec_greeting_wrap {
        padding-top: 50px;
        padding-bottom: 0;
    }

    .sec_greeting_wrap .clms_wrap_1 {
        margin-bottom: 20px;
    }

    .sec_greeting_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(1) {
        flex: auto;
        width: auto;
    }
    .sec_greeting_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(2) {
        flex: none;
        width: 160px;
    }

    .sec_greeting_wrap .ttl_1 {
        margin-bottom: 10px;
        font-size: 5rem;
        text-align: right;
    }

    .sec_greeting_wrap .desc_1 {
        margin-bottom: 20px;
        line-height: 2;
    }
    .sec_greeting_wrap .name_1 {
        font-size: 1.5rem;
    }

    .sec_greeting_wrap .clms_wrap_2 {
        display: block;
        margin: 0 -15px;
        padding: 40px 20px;
        border-radius: 0;
    }

    .sec_greeting_wrap .clms_wrap_2 > .clm_wrap {
        width: auto;
    }
    .sec_greeting_wrap .clms_wrap_2 > .clm_wrap + .clm_wrap {
        margin-top: 20px;
    }
    .sec_greeting_wrap .ttl_2 {
        padding-bottom: 5px;
        margin-bottom: 10px;
    }
    .sec_greeting_wrap .desc_2 {
        font-size: 1.3rem;
    }
}

/* ---------------------------------------------------- */
/* sec_cv_wrap_1 */
/* ---------------------------------------------------- */
.sec_cv_wrap_1 .ttl_1 {
    margin: 0 auto 25px;
    width: 656px;
}
.sec_cv_wrap_1 .bnr_1 {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 964px;
}
.sec_cv_wrap_1 .bnr_1 i {
    position: absolute;
    right: 0;
    top: -204px;
    width: 258px;
}
@media (max-width: 767px) {
    .sec_cv_wrap_1 .ttl_1 {
        margin: 0 auto 50px;
        width: auto;
    }
    .sec_cv_wrap_1 .bnr_1 {
        width: auto;
    }
    .sec_cv_wrap_1 .bnr_1 i {
        right: 2%;
        top: -20%;
        width: 55%;
    }
}

/* ---------------------------------------------------- */
/* sec_cv_wrap_2 */
/* ---------------------------------------------------- */
.sec_cv_wrap_2 {
    padding-top: 40px;
    padding-bottom: 40px;
    color: var(--co_2);
    background-image: url(../img/cv/bg_1.jpg);
    background-position: center;
    background-size: cover;
    z-index: 2;
}

.sec_cv_wrap_2 .ttl_1 {
    margin-bottom: 40px;
    text-align: center;
}
.sec_cv_wrap_2 .ttl_1 > span:nth-of-type(1) {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.sec_cv_wrap_2 .ttl_1 > span:nth-of-type(1)::before,
.sec_cv_wrap_2 .ttl_1 > span:nth-of-type(1)::after {
    content: "";
    display: block;
    width: 2px;
    height: 20px;
    background-color: var(--co_2);
}

.sec_cv_wrap_2 .ttl_1 > span:nth-of-type(1)::before {
    margin-right: 20px;
    transform: rotate(-30deg);
}

.sec_cv_wrap_2 .ttl_1 > span:nth-of-type(1)::after {
    margin-left: 20px;
    transform: rotate(30deg);
}
.sec_cv_wrap_2 .ttl_1 > span:nth-of-type(2) {
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
}

.sec_cv_wrap_2 .nav_1 {
    position: relative;
    background-color: #3b7761;
    border-radius: 10px;
}
.sec_cv_wrap_2 .img_1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 258px;
    transform: translateY(-100%);
}
.sec_cv_wrap_2 .img_2 {
    position: absolute;
    right: 0;
    top: 0;
    width: 258px;
    transform: translateY(-100%);
}
.sec_cv_wrap_2 .ico_1 {
    position: absolute;
    left: 0;
    top: -30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100px;
    height: 100px;
    color: var(--co_2);
    font-size: 1.8rem;
    line-height: 1.4;
    text-align: center;
    font-weight: 700;
    background-color: var(--co_7);
    border-radius: 100%;
}
.sec_cv_wrap_2 .ico_1 > span > span {
    display: block;
    width: 100%;
    font-size: 2.2rem;
}

.sec_cv_wrap_2 .nav_1 > ul {
    display: flex;
    justify-content: space-between;
    padding: 30px 40px 20px;
}

.sec_cv_wrap_2 .nav_1 > ul > li {
    flex: none;
    width: calc(100% / 2 - 20px);
}

.sec_cv_wrap_2 .nav_1 .ttl {
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.sec_cv_wrap_2 .nav_1 .copy {
    margin: 0 auto 20px;
    padding: 5px 20px;
    width: max-content;
    color: #3b7761;
    text-align: center;
    background-color: var(--co_2);
    border-radius: 20px;
}
.sec_cv_wrap_2 .nav_1 .time {
    font-size: 1.5rem;
    text-align: center;
}

.sec_cv_wrap_2 .nav_1 .btn_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    color: var(--co_2);
    font-weight: 600;
    line-height: 1;
}
.sec_cv_wrap_2 .nav_1 .btn_1 > span:nth-of-type(1) {
    margin-right: 10px;
    font-size: 3rem;
}
.sec_cv_wrap_2 .nav_1 .btn_1 > span:nth-of-type(2) {
    font-size: 4.8rem;
}

.sec_cv_wrap_2 .nav_1 .btn_2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 420px;
    height: 70px;
    color: var(--co_2);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    background-color: #ff9933;
    border-radius: 5px;
}
.sec_cv_wrap_2 .nav_1 .btn_2::before {
    content: "";
    display: block;
    margin-right: 30px;
    width: 38px;
    height: 38px;
    background-image: url(../img/ico/reservation_1.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.sec_cv_wrap_2 .nav_1 .btn_2::after {
    content: "";
    display: block;
    margin-left: 30px;
    width: 24px;
    height: 24px;
    background-image: url(../img/ico/arrow_1.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

@media (max-width: 767px) {
    .sec_cv_wrap_2 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .sec_cv_wrap_2 .ttl_1 {
        margin-bottom: 20px;
    }
    .sec_cv_wrap_2 .ttl_1 > span:nth-of-type(1) {
        margin-bottom: 10px;
        font-size: 1.2rem;
    }

    .sec_cv_wrap_2 .ttl_1 > span:nth-of-type(1)::before {
        margin-right: 10px;
    }

    .sec_cv_wrap_2 .ttl_1 > span:nth-of-type(1)::after {
        margin-left: 10px;
    }
    .sec_cv_wrap_2 .ttl_1 > span:nth-of-type(2) {
        font-size: 2rem;
    }

    .sec_cv_wrap_2 .nav_1 {
        border-radius: 0 0 10px;
    }
    .sec_cv_wrap_2 .img_1 {
        left: -60px;
        width: 150px;
    }
    .sec_cv_wrap_2 .img_2 {
        right: -50px;
        width: 150px;
    }
    .sec_cv_wrap_2 .ico_1 {
        left: -10px;
        top: -10px;
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    .sec_cv_wrap_2 .ico_1 > span > span {
        font-size: 1.2rem;
    }

    .sec_cv_wrap_2 .nav_1 > ul {
        display: flex;
        flex-wrap: wrap;
        padding: 30px 30px 20px;
    }

    .sec_cv_wrap_2 .nav_1 > ul > li {
        width: 100%;
    }
    .sec_cv_wrap_2 .nav_1 > ul > li + li {
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid var(--co_2);
    }

    .sec_cv_wrap_2 .nav_1 .ttl {
        margin-bottom: 5px;
        font-size: 1.5rem;
    }

    .sec_cv_wrap_2 .nav_1 .copy {
        padding: 0;
        color: var(--co_2);
        font-size: 1.2rem;
        background-color: transparent;
    }
    .sec_cv_wrap_2 .nav_1 .time {
        font-size: 1.1rem;
        text-align: center;
    }

    .sec_cv_wrap_2 .nav_1 .btn_1 {
        padding: 10px;
        background-color: var(--co_2);
        border-radius: 30px;
    }
    .sec_cv_wrap_2 .nav_1 .btn_1 > span:nth-of-type(1) {
        margin-right: 10px;
        color: var(--co_1);
        font-size: 1.6rem;
    }
    .sec_cv_wrap_2 .nav_1 .btn_1 > span:nth-of-type(2) {
        font-size: 3rem;
        color: #3b7761;
    }

    .sec_cv_wrap_2 .nav_1 .btn_2 {
        height: 50px;
        font-size: 1.6rem;
    }
    .sec_cv_wrap_2 .nav_1 .btn_2::before {
        margin-right: 10px;
        width: 24px;
        height: 24px;
    }
    .sec_cv_wrap_2 .nav_1 .btn_2::after {
        margin-left: 10px;
        width: 18px;
        height: 18px;
    }
}

/* ---------------------------------------------------- */
/* sec_cv_wrap_3 */
/* ---------------------------------------------------- */
.sec_cv_wrap_3 {
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 2;
}
.sec_cv_wrap_3 .nav_1 {
    position: relative;
}
.sec_cv_wrap_3 .img_1 {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 156px;
}
.sec_cv_wrap_3 .ico_1 {
    position: absolute;
    left: 120px;
    top: -5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 58px;
    height: 58px;
    color: var(--co_2);
    font-size: 1.2rem;
    line-height: 1.4;
    text-align: center;
    font-weight: 700;
    background-color: var(--co_7);
    border-radius: 100%;
}
.sec_cv_wrap_3 .ico_1 > span > span {
    display: block;
    width: 100%;
}

.sec_cv_wrap_3 .nav_1 > ul {
    display: flex;
    justify-content: space-between;
    padding-left: 180px;
    padding-right: 40px;
}

.sec_cv_wrap_3 .nav_1 > ul > li {
    flex: none;
    width: calc(100% / 2 - 20px);
}

.sec_cv_wrap_3 .nav_1 .ttl {
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.sec_cv_wrap_3 .nav_1 .copy {
    margin: 0 auto 20px;
    padding: 5px 20px;
    width: max-content;
    color: #3b7761;
    text-align: center;
    background-color: var(--co_2);
    border-radius: 20px;
}
.sec_cv_wrap_3 .nav_1 .time {
    color: #949494;
    font-size: 1.2rem;
    text-align: center;
}

.sec_cv_wrap_3 .nav_1 .btn_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1;
}
.sec_cv_wrap_3 .nav_1 .btn_1 > span:nth-of-type(1) {
    margin-right: 10px;
    font-size: 3rem;
}
.sec_cv_wrap_3 .nav_1 .btn_1 > span:nth-of-type(2) {
    color: var(--co_3);
    font-size: 4.8rem;
}

.sec_cv_wrap_3 .nav_1 .btn_2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 420px;
    height: 70px;
    color: var(--co_2);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    background-color: #ff9933;
    border-radius: 5px;
}
.sec_cv_wrap_3 .nav_1 .btn_2::before {
    content: "";
    display: block;
    margin-right: 30px;
    width: 38px;
    height: 38px;
    background-image: url(../img/ico/reservation_1.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.sec_cv_wrap_3 .nav_1 .btn_2::after {
    content: "";
    display: block;
    margin-left: 30px;
    width: 24px;
    height: 24px;
    background-image: url(../img/ico/arrow_1.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

@media (max-width: 767px) {
    .sec_cv_wrap_3 {
        display: none;
    }
}
/* ---------------------------------------------------- */
/* sec_cv_wrap_4 */
/* ---------------------------------------------------- */
@media (min-width: 768px) {
    .sec_cv_wrap_4 {
        display: none;
    }
}
@media (max-width: 767px) {
    .sec_cv_wrap_4 {
        padding-top: 20px;
        padding-bottom: 100px;
    }
    .sec_cv_wrap_4 .btn_pagetop_1 {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        width: max-content;
        font-size: 1.8rem;
        font-weight: 700;
        text-align: center;
    }
    .sec_cv_wrap_4 .btn_pagetop_1::after {
        content: "";
        margin-left: 10px;
        width: 20px;
        height: 20px;
        background-image: url(../img/ico/arrow_2.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .sec_cv_wrap_4 .nav_1 {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 5px;
        background-color: var(--co_2);
        z-index: 10;
    }

    .sec_cv_wrap_4 .nav_1 > ul {
        display: flex;
        margin-right: -5px;
    }

    .sec_cv_wrap_4 .nav_1 > ul > li {
        position: relative;
        flex: none;
        margin-right: 5px;
        width: calc(100% / 2 - 5px);
    }

    .sec_cv_wrap_4 .nav_1 .ico_1 {
        position: absolute;
        left: -5px;
        top: -5px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 44px;
        height: 44px;
        color: var(--co_2);
        font-size: 1rem;
        line-height: 1.4;
        text-align: center;
        font-weight: 700;
        background-color: var(--co_7);
        border-radius: 100%;
    }
    .sec_cv_wrap_4 .nav_1 .ico_1 > span > span {
        display: block;
        width: 100%;
    }
    .sec_cv_wrap_4 .nav_1 .btn_1 {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        flex-wrap: wrap;
        margin: 0 auto;
        height: 70px;
        color: var(--co_2);
        background-color: var(--co_3);
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.4;
        text-align: center;
        border-radius: 5px;
    }
    .sec_cv_wrap_4 .nav_1 .btn_1 > span:nth-of-type(1) {
        font-size: 1rem;
    }
    .sec_cv_wrap_4 .nav_1 .btn_1 > span:nth-of-type(2) {
        font-size: 1.6rem;
    }
    .sec_cv_wrap_4 .nav_1 .btn_1 > span:nth-of-type(2) > span {
        font-size: 1rem;
    }

    .sec_cv_wrap_4 .nav_1 .btn_2 {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        height: 70px;
        color: var(--co_2);
        font-size: 1.2rem;
        font-weight: 700;
        text-align: center;
        line-height: 1.4;
        background-color: #ff9933;
        border-radius: 5px;
    }
    .sec_cv_wrap_4 .nav_1 .btn_2::before {
        content: "";
        display: block;
        margin-right: 5px;
        width: 24px;
        height: 24px;
        background-image: url(../img/ico/reservation_1.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }
    .sec_cv_wrap_4 .nav_1 .btn_2::after {
        content: "";
        display: block;
        margin-left: 5px;
        width: 16px;
        height: 16px;
        background-image: url(../img/ico/arrow_1.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }
}
