@charset "UTF-8";
/* ブレイクポイント  900, 1120, 1360*/
/* pc コンテンツ1060/ 1360 */
/* sp コンテンツ327/ 375 */

/* ===========================================
変数宣言  フォント/余白を指定
============================================*/
:root {

    /* color */
    --link: #AACD06;
    /* --link: #E84466; */
    --accent1: #AACD06;
    --accent2: #F7CD0C;
    --hover: #F7CD0C;
    --base: #ffffff;
    --base_yellow: #f7f7ea;
    --card_base: #FFF7EE;
    --line_dot: #F1D59E;
    --text: #353131;
    --text_pale: rgba(53, 49, 49, 0.4);

    /* font-size */
    --size_sp_xs_10: 1rem;
    --size_sp_main14: 1.4rem;
    --size_sp_h3: 1.8rem;
    --size_sp_h2: 2.2rem;
    --size_sp_h1: 2.6rem;

    --size_pc_main16: 1.6rem;
    --size_pc_mainL: 1.8rem;
    --size_pc_h3: 2rem;
    --size_pc_h2: 3.2rem;
    --size_pc_h1: 4rem;

    /* font-family */
    --font-main: "Lato", sans-serif;
    --font-ttl: dnp-shuei-mgothic-std, sans-serif;
    --font-num: "Asap", sans-serif;
    --font-step: "wanpaku-rera", dnp-shuei-mgothic-std, sans-serif;

    /* gutter */
    --sp_gutter_12: 12px;
    --sp_gutter_24: 24px;
    --sp_gutter_50: 50px;
    --sp_gutter_100: 100px;
    --pc_gutter_24: 24px;
    --pc_gutter_40: 40px;
    --pc_gutter_60: 60px;
    --pc_gutter_100: 100px;
}

.font-main {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.font-ttl {
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-weight: 700;
    font-style: normal;
}

.font-num {
    font-family: "Asap", sans-serif;
    font-weight: 700;
}

.wanpaku {
    font-family: "wanpaku-rera", sans-serif;
}

/* ===========================================
共通設定
============================================*/
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-size: 1.6rem;
    line-height: 1.75;
    font-family: var(--font-main);
    color: var(--text);
    background: var(--base);
}

a {
    text-decoration: none;
    transition: 0.1s ease-in-out;
}

a:hover {
    opacity: 1;
    transition: 0.1s ease-in-out;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* ===========================================
汎用クラス
============================================*/
/* --------------- btn ----------------- */
.btn {
    display: block;
    width: 70%;
    max-width: 235px;
    border-radius: 89px;
    font-size: 1.6rem;
    color: #FFF;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.98px;
    text-align: center;
    cursor: pointer;
    transition: 0.1s ease-in-out;
    padding: 15px 0;
    margin: 0 auto;
}

.btn:hover {
    background-color: var(--hover);
    opacity: 1;
    transition: 0.1s ease-in-out;
}

.bg-accent1 {
    background-color: var(--accent1);
}

.bg-accent2 {
    background-color: var(--accent2);
}

.bg-link {
    background: var(--link);
}


/* --------------- font ----------------- */
.text-white {
    color: #FFF;
}

.text-link {
    border-bottom: solid 1px;
    transition: 0.1s ease-in-out;
}

.text-link:hover {
    color: var(--link);
    transition: 0.1s ease-in-out;

}

.text-strong {
    color: var(--accent1);
}

.text-green {
    color: var(--accent1);
}

/* sp_本文_14 */
.text-main {
    font-size: 1.4rem;
    line-height: 170%;
    letter-spacing: 1.4px;
}

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

    /* pc_本文_16 */
    .text-main {
        font-size: 1.6rem;
    }

    /*====== min-width:900px ======*/
}

/* --------------- section ----------------- */
section {
    margin-bottom: var(--sp_gutter_50);
}

section:last-of-type {
    margin-bottom: 100px;
}

@media screen and (min-width:900px) {
    section {
        margin-bottom: 120px;
    }

    section:last-of-type {
        margin-bottom: 150px;
    }

    /*====== min-width:900px ======*/
}

/* --------------- title ----------------- */
/* item-title */
.title-s {
    font-family: var(--font-ttl);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    margin-bottom: 6px;
}

/* section-title */
.title-m {
    font-family: var(--font-ttl);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 170%;
    text-align: center;
    margin-bottom: var(--pc_gutter_24);
    position: relative;
}

/* .title-m::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent2);
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
} */

.title-l {
    font-family: var(--font-ttl);
    font-size: rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.section-desc {
    font-size: var(--size_sp_main14);
    text-align: left;
    margin-bottom: var(--sp_gutter_50);
}

/*====== min-width:900px ======*/
@media screen and (min-width:900px) {

    /* item-title */
    .title-s {
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        margin-bottom: 12px;
    }

    /* section-title */
    .title-m {
        font-size: 3.2rem;
        font-weight: 700;
        letter-spacing: 3.2px;
        text-align: center;
        margin-bottom: 60px
    }

    /* 
    .title-m::after {
        width: 12px;
        height: 12px;
        top: 70px;
    } */

    .title-l {
        font-size: rem;
        font-weight: 700;
        text-align: center;
        letter-spacing: 3.2px;
    }

    .section-desc {
        width: 600px;
        font-size: 1.8rem;
        letter-spacing: 1.8px;
        text-align: center;
        margin: 0 auto;
        margin-bottom: 180px;
    }
}

/*====== min-width:900px ======*/

/* --------------- レイアウト ----------------- */
.width-100 {
    width: 100%;
}

.align-left {
    text-align: left;
}

.align-center {
    text-align: center;
}

.m0 {
    margin: 0 auto;
}

.low-flex {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.column-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* icon */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: #fff;
    background: var(--accent1);
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    font-size: 2.2rem;
    transition: 0.5s cubic-bezier(0.68, -0.6, 0.32, 2.0);
    border: solid 5px;
    font-family: "wanpaku-rera", sans-serif;
}

@media screen and (min-width:900px) {
    .icon-circle {
        position: absolute;
        width: 90px;
        height: 90px;
        right: -20px;
        top: -20px;
        font-size: 2.6rem;
        transition: 0.5s cubic-bezier(0.68, -0.6, 0.32, 2.0);
    }

    /*====== min-width:px ======*/
}


/* ===========================================
header
============================================*/
.header.header.panelactive {
    position: fixed;
    width: 100%;
    z-index: 2;
}

.header__wrapper {
    display: flex;
    padding: 10px 15px;
    justify-content: space-between;
    align-items: center;
}

.header__logo img {
    width: 150px;
}

/* ハンバーガーメニュー　ボタンの設定==============*/
/* ボタン枠 */
.header__humberger-btn {
    width: 24px;
    height: 19px;
    cursor: pointer;
}

/* 線 */
.header__humberger-btn span {
    display: block;
    height: 3px;
    border-radius: 6px;
    background: var(--accent1);
    transition: 0.4s;
}

.header__humberger-btn span:nth-child(2) {
    transform: translateY(5px);
    transition: 0.4s ease-in-out;
}

.header__humberger-btn span:nth-child(3) {
    transform: translateY(10px);
    transition: 0.4s ease-in-out;
}

/* 線　--　panelactive付加-- */
.header.panelactive .header__humberger-btn span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    transition: 0.4s ease-in-out;
}

.header.panelactive .header__humberger-btn span:nth-child(2) {
    display: none;
}

.header.panelactive .header__humberger-btn span:nth-child(3) {
    transform: translateY(3px) rotate(-45deg);
    transition: 0.4s ease-in-out;
}

/* 　ドロワーメニュー　===============　*/
.g-navi {
    display: none;
    visibility: hidden;
}

/* panelactive付加 */
.header.panelactive .g-navi {
    display: block;
    visibility: visible;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--base_yellow);
    align-items: center;
    margin: 0 auto;
    padding: 24px;
    position: absolute;
    z-index: -1;
    position: fixed;
}

/* spナビゲーション　　*/
.g-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    text-align: center;
    align-items: center;
    margin-top: 100px;
    position: relative;
}

.g-menu li {
    display: block;
    width: 30%;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 0px 35px 0px rgba(157, 146, 95, 0.078);
    font-size: 1.1rem;
    font-family: var(--font-ttl);
    font-weight: bold;
    line-height: 1;
    padding: 18px 0;
    cursor: pointer;
}

.g-menu li:hover {
    transform: scale(1.04, 1.04);
    transition: 0.1s cubic-bezier(0.68, -0.6, 0.32, 2.0);
    color: var(--accent1);
    opacity: 1;
}

.g-menu li .g-menu_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.g-menu_icon-container img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.g-navi_bottom {
    display: none;
}

.header.panelactive .g-navi_bottom {
    display: block;
    position: absolute;
    top: 430px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 101;
    width: 100%;
}

.g-navi_bottom .tel-info {
    font-family: Asap;
    text-align: center;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.96px;
    margin-top: 15px;
}

.g-navi_bottom .tel-info span {
    font-size: 1.6rem;
}

/* ======= min-width:900px ======== */
@media screen and (min-width:900px) {
    .header {
        position: static;
        width: 100%;
        z-index: 2;
        background-color: var(--base);
    }

    .header__wrapper {
        padding: 20px 20px;
    }


    .header__logo img {
        width: 200px;
    }

    .header__humberger-btn {
        display: none;
    }

    .g-navi {
        display: flex;
        visibility: visible;
        max-width: 1000px;
        width: 56%;
        max-width: 660px;
        justify-content: center;
    }

    .g-menu {
        flex-wrap: nowrap;
        justify-content: space-between;
        margin: 0;
        width: 100%;
        gap: 10px;
    }

    .g-menu li {
        width: auto;
        min-width: 70px;
        background-color: var(--base);
        border-radius: 0;
        box-shadow: none;
        font-size: 1.2rem;
        padding: 0px;
    }

    .g-navi_bottom {
        display: block;
        position: static;
        width: auto;
    }

    .g-navi_bottom .tel-info {
        display: none;
    }

    .g-navi_btn {
        font-size: 1.6rem;
        width: 160px;
        padding: 24px;
    }
}

/*====== min-width:900px ======*/

/*====== min-width:1060px ======*/
@media screen and (min-width:1060px) {
    .header__logo img {
        width: 260px;
    }

    .g-menu li {
        font-size: 1.4rem;
    }

    .g-navi_btn {
        width: 170px;
    }
}

/*====== min-width:1360px ======*/
@media screen and (min-width:1360px) {

    .header__logo img {
        width: 300px;
    }

    .g-navi {
        width: 70%;
        max-width: 700px;
    }

    .g-menu {
        width: 100%;
    }

    .g-menu li {
        font-size: 1.6rem;
    }

    .g-navi_btn {
        width: 190px;
    }
}

/*====== min-width:1260px ======*/

/* ===========================================
topEnter
============================================*/
/* .enter__bg {
    height: 300px;
    background: url(./img/top/enter_pc_filtered.png) no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.filter {
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.enter__desc {
    margin-bottom: 16px;
}

.enter__title {
    margin-bottom: 16px;
    text-shadow: 0px 0px 20px #644F43;
}

.enter__text {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0px 0px 20px #644F43;
}

@media screen and (min-width:900px) {
    .enter__bg {
        height: 400px;
        background: url(./img/top/enter_pc_filtered.png) no-repeat;
        background-size: cover;
        background-position: center;
    }

    .enter__text {
        font-size: 1.6rem;
    }
} */

/* ===========================================
footer
============================================*/
footer {
    position: relative;
    overflow: hidden;
}

.footer__wrapper {
    background-color: var(--base_yellow);
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 30px;
}

.footer__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
    margin: 0 auto;
}

.footer__logo {
    width: 220px;
}

.footer__btn {
    display: block;
    width: 100%;
    padding: 16px 60px;
    margin: 24px auto 10px;
}

.tel-wrap {
    font-family: var(--font-num);
    font-weight: 700;
    margin-bottom: 10px;
}

.tel-label {
    font-size: 1.6rem;
    line-height: 1;
}

.telnum {
    font-size: 2.8rem;
    line-height: 1;
    letter-spacing: 1px;
}

.address p {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.mapbtn {
    border: 2px solid #7c7c7c;
    color: #7c7c7c;
    font-size: 1.2rem;
    padding: 8px 20px;
    font-family: var(--font-num);
    letter-spacing: normal;
    line-height: normal;
    width: 109px;
    transition: color 0.1s ease-in-out, background 0.4s ease;
}

.mapbtn:hover {
    opacity: 1;
    border: none;
    background-color: #a5a5a5;
    color: #fff;
    padding: 10px 20px;
    /* ホバー時のborder設定はがたつくのでpadding値で調整 */
    transition: color 0.1s ease-in-out, background 0.4s ease;
}

.footer__copyright {
    width: 100%;
    background-color: var(--accent1);
    padding: 24px 0px 24px;
    color: #FFF;
    position: relative;
}

.footer__copyright small {
    display: block;
    text-align: center;
    font-size: 1.2rem;
    font-weight: normal;
}

.footer__tree {
    position: absolute;
    /* top: -80%; */
    top: -126%;
    background-image: url(./img/footer/wood.png);
    width: 100%;
    /* height: 80px; */
    height: 87px;
    /*縦幅を指定して横幅は自動 */
    /* background-size: auto 90%; */
    background-size: auto 120%;
    background-repeat: repeat-x;
}


/*====== min-width:900px ======*/
@media screen and (min-width:900px) {

    .footer__content {
        padding-bottom: 100px;
        margin: 0 auto;
        width: 100%;
    }

    .footer__logo {
        width: 280px;
    }

    .footer__btn {
        max-width: 300px;
        width: 100%;
        padding: 24px 88px;
        margin: 34px auto 20px;
    }

    .tel-label {
        font-size: 1.8rem;
    }

    .telnum {
        font-size: 3.8rem;
        letter-spacing: 2.4px;
    }

    .address p {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    /*====== min-width:900px ======*/
}

/* ===========================================
トップスクロールボタン
============================================*/
.topScroll-button {
    box-sizing: border-box;
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    background-color: #FFF;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(96, 127, 24, 0.16);
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 1;
}


.topScroll-button:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    background-color: var(--accent2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0, 0);
    transition: transform .2s ease-in;
}

.topScroll-button:hover:after {
    transform: translate(-50%, -50%) scale(1, 1);
}

/* arrow */
.topScroll-button:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 55%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-style: solid;
    border-color: var(--accent1);
    border-width: 2px 0 0 2px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.topScroll-button:hover:before {
    border-color: #fff;
}

/* ===========================================
スクロールアニメ　　
============================================*/

.sa {
    opacity: 0;
    transition: all .4s ease-in-out;
}

.sa.show {
    opacity: 1;
    transform: none;
    transition: 1s ease-in;
}

.sa--lr {
    transform: translate(-100px, 0);
    transition: all 1s cubic-bezier(0.68, -0.6, 0.32, 2.0);
}

.sa--rl {
    transform: translate(100px, 0);
    transition: all 1s cubic-bezier(0.68, -0.6, 0.32, 2.0);
}

.sa--up {
    transform: translate(0, 100px);
    transition: all 1s ease-in;
}

.sa--down {
    transform: translate(0, -100px);
}