@charset "UTF-8";

/* サイト全体共通 */
html {
    scroll-padding-top: 80px;
}

body {
    font-family: "Zen Maru Gothic", serif;
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 500;
    color: #2F2928;
    background-color: #F9F9F9;
}

img {
    max-width: 100%;
}

.br_sp,
.br_tb,
.br_pc {
    display: none;
}

.sp_only {
    display: none;
}

.uppercase {
    text-transform: uppercase;
}


/* ホバー */
a {
    display: inline-block;
    transition: 0.4s;
}

a:hover {
    transform: scale(1.1);
}



/* スクロールアニメ */
.visible,
.invisible {
    opacity: 0.0;
}

.visible {
    opacity: 1.0;
}


/* コンテンツ幅 */

.vast {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.wide {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.middle {
    width: 90%;
    max-width: 850px;
    margin: 0 auto;
}

.narrow {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
}

/* タイトル */
.section_title {
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bgc {
    background-color: #F9F9F9;
}

.main_title {
    margin-top: 4em;
}


.title_left {
    justify-content: flex-start;
}

.decoration {
    width: 33px;
    height: 24px;
    position: relative;
    margin-right: 0.3em;
}

.decoration span,
.decoration::before,
.decoration::after {
    width: 57%;
    height: 4px;
    display: inline-block;
    background: #5D7505;
    position: absolute;
    right: 0;
}

.decoration::before {
    width: 100%;
    background: #B3B711;
}

.decoration span {
    top: 10px;
}

.decoration::before {
    content: "";
    top: 0;
}

.decoration::after {
    content: "";
    bottom: 0;
}

.white_title {
    color: #fff;
}

.white_title .decoration span,
.white_title .decoration::before,
.white_title .decoration::after {
    background-color: #F6DA91;
}

.orange_title .decoration span,
.orange_title .decoration::before,
.orange_title .decoration::after {
    background-color: #E4A607;
}

/* ボタン */
.button_area {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 80px;
}

.button {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: clamp(15px, 1.3vw, 20px);
    font-weight: bold;
    text-align: start;
    padding-left: 1em;
    line-height: 3;
    border-radius: 1.5em;
    width: 13em;
    background-color: #E4A607;
}

.button::before {
    content: '';
    position: absolute;
    left: 0;
    z-index: -1;
    width: 3em;
    height: 3em;
    background: #5D7505;
    border-radius: 1.5em;
    transition: .5s ease-in-out;
    opacity: 0;
}


.button:hover::before {
    width: 13em;
    opacity: 1;
}

.arrow::before {
    position: absolute;
    right: 25px;
    top: 50%;
    content: '';
    width: 10px;
    height: 0px;
    border-top: 2px solid;
    border-radius: 1px;
    color: #fff;
}

.arrow::after {
    position: absolute;
    right: 20px;
    top: 52%;
    content: '';
    width: 9px;
    height: 9px;
    border-top-right-radius: 5px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: translateY(-50%) rotate(45deg);
    color: #fff;
}

.nav_new::after {
    content: 'NEW';
    color: #fff;
    font-size: 12px;
    background-color: #E4A607;
    padding: 0 3px 2px 3px;
    margin-left: 7px;
    border-radius: 6px;
    flex-shrink: 0;
}

/* リンクタブ */

.tab {
    position: fixed;
    display: flex;
    flex-direction: column;
    right: 0;
    bottom: 5vh;
    z-index: 1;
}


.tab img {
    width: 25px;
    padding-bottom: 12px;
}

.tab-t {
    background-color: #E4A607;
}

.tab-l {
    background-color: #12AA0F;
}



.tab-t,
.tab-l {
    width: 3.8em;
    writing-mode: vertical-rl;
    color: #fff;
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: bold;
    letter-spacing: 0.2em;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 50px;
    padding-top: 2em;
    padding-bottom: 2.7em;
    box-shadow: -1px 3px 7px rgba(0, 0, 0, 0.3);
}

.tab a:hover {
    transform-origin: right;
}



/* ヘッダー */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}


.logo {
    width: 300px;
}


.header_nav {
    padding: 19px 0;
}

.header_nav ul {
    display: flex;
    font-size: 14px;
    font-weight: 700;
    color: #4F5442;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px 35px;
    border-radius: 24px;
}


.header_nav li:not(:last-child) {
    margin-right: 26px;
}

.hamburger {
    display: none;
}


/* お客様の声 */
.voice {
    max-width: 900px;
    background-color: #fff;
    outline: solid 2px #5D7505;
    outline-offset: -1px;
    border-radius: 35px;
    margin: 2vw;
    position: relative;
}

.voice_title {
    display: block;
    font-size: clamp(16px, 1.8vw, 24px);
    font-weight: bold;
    color: #fff;
    background-color: #5D7505;
    padding: 1em 2em;
    line-height: 1.5;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
}

.voice_wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 2vw 4vw;
}

.voice_text {
    font-size: clamp(13px, 1.2vw, 16px);
    line-height: 2.4;
    position: relative;
    align-self: center;
}

.sheet {
    width: 100%;
    max-width: 200px;
    float: right;
    margin: 0 0 auto 3vw;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    position: relative;
    z-index: 1;
}

.voice_img {
    height: 100%;
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0.1;
    padding: 100px 0 20px;
}

.slick-track {
    display: flex;
}

.slick-slide {
    height: auto !important;
}


/* フッター */

.menubar {
    display: none;
}

.global_nav {
    display: flex;
    color: #4F5442;
    width: 850px;
    justify-content: space-between;
    margin: 0 auto;
    padding-top: 100px;
}

.nav_group {
    border-left: 1px solid#4F5442;
    height: 17em;
    position: relative;
}

.nav_group p {
    position: absolute;
    text-align: right;
    transform: translateX(-50%) translateY(50%) rotate(-90deg);
    left: -1em;
    top: 0.5em;
}

.group_name {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
}

.nav_group ul {
    margin-left: 1em;
    margin-top: 2em;
    font-weight: bold;
}

.nav_group li:not(:first-child) {
    margin-top: 2.5em;

}

.footer_bottom {
    background-color: #525744;
    color: #fff;
    padding: 60px 10%;
}


.bottom_wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.footer_left {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.footer_bottom img {
    width: 30px;
}

.footer_left .logo {
    width: 400px;
    padding-top: 30px;
}

.tel_tt_wrapper {
    display: flex;
    align-items: flex-end;
}

.footer_left address {
    margin-top: 20px;
    /* white-space: nowrap; */
}

.wrapper {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.phone_number {
    font-size: clamp(25px, 2.2vw, 32px);
    border-bottom: solid 1px #fff;
    margin-right: 20px;
    margin-left: 12px;
    white-space: nowrap;
}

.footer_bottom .tt {
    font-size: clamp(13px, 1.2vw, 18px);
    padding-top: 10px;
}



.position p {
    font-size: clamp(18px, 1.5vw, 22px);
    margin-left: 12px;
}

.footer_right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: clamp(14px, 1.2vw, 18px);
}

.footer_right img {
    margin-left: 7px;
}

table {
    margin-top: 15px;
    margin-bottom: 13px;
}

table td {
    font-size: clamp(12px, 1.2vw, 18px);
    padding: 1em;
    white-space: nowrap;
    border-right: 1px solid #fff;
    vertical-align: middle;
    text-align: center;
}

.time {
    width: 100%;
    font-size: clamp(18px, 1.5vw, 22px);
}

.second_line {
    padding-top: 5px;
    padding-bottom: 5px;
}

.copyright {
    font-size: clamp(10px, 0.8vw, 12px);
    font-weight: 400;
    text-align: center;
    padding-top: 50px;
}


/* 以下レスポンシブ */

@media screen and (max-width: 1055px) {

    .main_title {
        margin-top: 150px;
    }

    .header {
        display: none;
    }

    .menubar {
        display: block;
        background-color: rgba(255, 255, 255, 0.9);
        height: 80px;
        display: flex;
        justify-content: space-between;
        padding: 0 80px;
        margin: 0 auto;
        align-items: center;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    }

    .sp_logo {
        width: 250px;
    }

    .sp_logo_mini {
        display: none;
    }

    #sp_fixed {
        position: fixed;
        width: 100%;
        top: 0px;
        z-index: 2;
    }

    .hamburger {
        width: 33px;
        height: 20px;
        position: relative;
        z-index: 3;
        display: inline-block;
        margin-bottom: 12px;
    }

    .hamburger_center,
    .hamburger::before,
    .hamburger::after {
        width: 100%;
        height: 3px;
        display: inline-block;
        background: #4F5442;
        position: absolute;
        transition: 0.8s ease;
    }

    .hamburger_center {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger::before {
        content: "";
        top: 0;
    }

    .hamburger::after {
        content: "";
        bottom: 0;
    }

    .ham_open {
        display: block;
        margin-top: 24px;
        font-size: 12px;
        color: #4F5442;
    }

    .ham_close {
        display: none;
        color: #4F5442;
    }



    /* メニューオープン時 */
    .open .hamburger_center {
        opacity: 0;
    }

    .open .hamburger::before {
        top: 8px;
        transform: rotate(45deg);
    }

    .open .hamburger::after {
        bottom: 9px;
        transform: rotate(-45deg);
    }

    .open .ham_open {
        display: none;
    }

    .open .ham_close {
        display: block;
        font-size: 11px;
        margin-top: 24px;
    }



    .global_nav {
        position: absolute;
        z-index: 2;
        top: 0;
        right: 0;
        align-items: center;
        width: 100%;
        height: 100vh;
        transition-duration: 1s;
        transform: translateX(100%);
        background-color: rgba(231, 238, 226, 1);
        font-weight: 700;
        flex-wrap: wrap;
        padding: 80px 50px 0;
        max-width: 600px;
        justify-content: space-around;
        align-items: flex-start;
        align-content: space-around;
        justify-content: flex-start;
    }

    .nav_group {
        margin-left: 30px;
        margin-bottom: 30px;
    }

    .open .global_nav {
        transform: translateX(0);
    }


    .decoration {
        transform: scale(0.7);
    }


}


@media screen and (max-width: 900px) {

    .menubar {
        padding: 0 10vw;
    }

    .br_pc {
        display: block;
    }

    .bottom_wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer_left address {
        display: flex;
        flex-direction: column;
        margin: 0 auto;
    }

    .footer_bottom img {
        width: 20px;
    }

    .footer_left .logo {
        width: 320px;
        padding-top: 0px;
        padding-bottom: 10px;
    }



    .footer_right {
        align-items: center;
        margin-top: 10px;
    }

    .footer_right table {
        margin-right: 20px;
    }

    .insta {
        order: 3;
    }

    .footer_right img {
        padding-left: 7px;
        width: 25px;
    }

}

@media screen and (max-width: 650px) {

    .br_tb {
        display: block;
    }

    .br_tb_none {
        display: none;
    }

    .tab a:hover {
        transform: none;
    }

    .tab {
        flex-direction: row;
        right: 0;
        bottom: 0;
    }


    .tab img {
        padding-bottom: 0;
        padding-right: 3px;
    }


    .tab-t,
    .tab-l {
        width: 50vw;
        writing-mode: horizontal-tb;
        border-bottom-left-radius: 0;
        letter-spacing: 0;
        padding-top: 1em;
        padding-bottom: 1.4em;
        box-shadow: inset 3px -3px 8px rgba(0, 0, 0, .1), inset -1px 5px 7px rgba(255, 255, 255, 0.2);
    }

    .tab a:hover {
        transform-origin: right;
    }

    .footer_bottom {
        padding: 50px 0 80px;
    }
}


@media screen and (max-width: 428px) {


    .br_sp {
        display: block;
    }

    .br_sp_none {
        display: none;
    }

    .sp_none {
        display: none;
    }

    .sp_only {
        display: block;
    }

    .sp_logo {
        display: none;
    }

    .sp_logo_mini {
        display: block;
        width: 140px;
        max-width: 50vw;
    }


    .global_nav {
        padding: 10vw 10px 25vw;
        flex-direction: column;
        justify-content: space-around;
    }

    .nav_group ul {
        margin-top: 5vw;
        margin-bottom: 3vw;
    }

    .nav_group li:not(:first-child) {
        margin-top: 5vw;
    }


    .nav_group {
        height: auto;
        margin-bottom: 0;
    }

    .tab img {
        width: 7vw;
    }

    .footer_left .logo {
        width: 80%;
        padding-top: 10px;
    }

    .footer_left address {
        margin-top: 20px;
        align-items: center;
    }

    .tel_tt_wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .wrapper {
        display: flex;
        align-items: center;
        margin-top: 10px;
    }

    .phone_number {
        font-size: clamp(25px, 2.2vw, 32px);
        border-bottom: solid 1px #fff;
        margin-right: 20px;
        margin-left: 12px;
    }

    .footer_bottom .tt {
        font-size: clamp(15px, 1.2vw, 18px);
        padding-top: 10px;
        padding-bottom: 20px;
    }

    .position p {
        font-size: clamp(15px, 1.5vw, 22px);
        margin-left: 12px;
    }

    .footer_right {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .footer_right img {
        margin-left: 7px;
    }

    footer table td {
        padding: .5em;
    }
}


@media screen and (max-width: 320px) {

    .footer_right table {
        transform: scale(0.8);
        margin-right: 0px;
    }

}