@charset "UTF-8";

/*
ブレイクポイント
768px
*/
/*==================
変数宣言
==================*/
:root {
    --text_color_bk: #333;
    --text_color_wh: #ffffff;
    --main_color: #b9d08b;
    --main_color_80: rgba(185, 208, 139, 0.8);
    --sub_color: #d6c6af;
    --sub_color_80: rgba(214, 198, 175, 0.8);
    --condition_color: #c2bbb2;
    --condition_color_60: rgba(128, 118, 105, 0.6);

    /*--サイズ（マージンボトム？）の決まり事*/

}

/*==================
共通
==================*/

body {
    font-family: 'Kiwi Maru', serif;
    line-height: 1.5;
    font-weight: 400;
    color: var(--text_color_bk);
    background-color: #f1f1f1;
}

section {
    padding: 100px 0;
}

.wrapper {
    max-width: 90vw;
    margin: 0 auto;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    line-height: 1.2;
    /*行の高さ*/
    letter-spacing: 0.2em;
    /*文字間*/
    /*text-align: center;*/
    /*真ん中寄せ*/
}

h1 {
    font-size: clamp(1.5rem, 0.167rem + 2.78vw, 2.25rem);
    /*min24px max36px*/
}

h2 {
    font-size: clamp(1.25rem, -0.083rem + 2.78vw, 2rem);
    /*min20px max32px*/
}

h3 {
    font-size: clamp(1rem, -0.333rem + 2.78vw, 1.75rem);
    /*min16 max28*/
}

h4 {
    font-size: clamp(0.75rem, -0.583rem + 2.78vw, 1.5rem);
    /*fmin12px max24px*/
}

/*.title_img {
    width: 60%;
}*/

p {
    margin-top: 0;
    margin-bottom: 24px;
    letter-spacing: 0.1em;
    text-align: justify;
}

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

a {
    display: block;
    letter-spacing: 0.1em;
    color: #333;
    cursor: pointer;
    text-decoration: none;
}

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

.title_img {
    width: 150px;
}

.fade {
    transform: translateY(50px);
    opacity: 0;
    transition: transform 2s, opacity 2s;
}

.fade.show {
    transform: translateY(0);
    opacity: 1;
}


@media screen and (min-width: 768px) {
    .title_img {
        width: 200px;
    }
}


/*==================
header
==================*/
/* header start*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100vw;
    padding: 10px;
    background-color: rgba(194, 187, 178, 0.2);
}

.header-logomenu {
    max-width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    /*width: 100%;*/
}

.logo {
    width: 40%;
}

header .header-logomenu nav {
    position: fixed;
    top: 0;
    right: 0;
    background-color: var(--main_color);
    width: 50%;
    height: 100vh;
    /*padding: calc(var(--gutter_base)*5);*/
    text-align: center;
    z-index: 10;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
}

header.on .header-logomenu nav {
    visibility: visible;
    opacity: 1;
}

header.on .header-logomenu nav a {
    color: #fff;
    border-bottom: 5px dotted #fff;
    display: block;
    line-height: 5;
}

/*humボタン外側*/
.hum_menu {
    z-index: 100;
    position: relative;
    /*ボタン内側の基点となるためrelativeを指定*/
    background: var(--main_color);
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
}

/*humボタン内側*/

.hum_menu .Toggle {
    transition: all .4s;
}

.hum_menu span {
    display: inline;
    transition: all .4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 45%;
}

.hum_menu span:nth-of-type(1) {
    top: 15px;
}

.hum_menu span:nth-of-type(2) {
    top: 23px;
}

.hum_menu span:nth-of-type(3) {
    top: 31px;
}

/*activeクラスが付与されると
線と周りのエリアが回転して×になる*/

.hum_menu.active .Toggle {
    transform: rotateY(-360deg);
}

.hum_menu.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
}

.hum_menu.active span:nth-of-type(2) {
    opacity: 0;
}

.hum_menu.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
}


@media screen and (min-width: 768px) {
    .logo {
        width: 20%;
    }

    .header .header-logomenu .hum_menu {
        display: none;
    }

    .header .header-logomenu nav {
        opacity: 1;
        visibility: visible;
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        margin-right: 260px;
        background-color: transparent;
        display: flex;
    }

    .header .header-logomenu nav ul {
        display: flex;
        justify-content: space-between;
        align-items: center;

    }

    .header .header-logomenu nav ul li {
        margin-left: 24px;
        font-weight: bold;
        font-size: 25px;
    }

    /*--ホバー時、aタグに下線が現れる動き--*/
    .header .header-logomenu nav ul a {
        position: relative;
        /*疑似要素使用のため*/
    }

    /*** 疑似要素（下線）***/
    .header .header-logomenu nav ul a:after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 100%;
        /*下線の幅*/
        height: 4px;
        /*下線の太さ*/
        background: var(--main_color);
        visibility: hidden;
        /*非表示*/
        opacity: 0;
        /*透明*/
        transition: .3s;
    }

    /*ホバー時*/
    .header .header-logomenu nav ul a:hover::after {
        visibility: visible;
        /*表示*/
        opacity: 1;
        /*不透明に*/
    }
}

/*===============
box_お問い合わせ
===============*/
.box {
    z-index: 9;
    padding: 20px;
    background-color: var(--main_color);
    border-radius: 50px;
    font-size: 70%;

    width: 250px;
    height: 80px;
    position: fixed;
    right: calc(50% - 250px/2);
    bottom: 5%;
}

.box span {
    display: block;
    text-align: center;
    line-height: 1;
}

.box .lower {
    font-size: 24px;
}



@media screen and (min-width:768px) {
    .box {
        position: fixed;
        top: 10px;
        right: 5%;
    }

}

/*==================
main
==================*/
.main {
    margin-bottom: 100px;
}

.main .mv {
    position: relative;
}

.slider {
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    overflow: hidden;
    /* 画像がはみ出ないようにする */
    width: 90vw;
    height: 90vh;
    border-radius: 32px;
    z-index: -1;
}

.slider img {
    width: 100%;
    height: 90vh;
    object-fit: cover;

}

@keyframes zoomUp {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
        /* 拡大率 */
    }
}

.add-animation {
    animation: zoomUp 10s linear 0s normal both;
}

.main .main_text {
    position: absolute;
    top: 40%;
    right: calc(50% - 350px/2);
    text-shadow: 0px 0px 6px #fff;
}

.main .reception_time {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -120px;
}

.main .reception_time img {
    border-radius: 30px;
}

@media screen and (min-width:768px) {
    .main {
        margin-bottom: 200px;
    }

    .main .mv {
        position: relative;
    }

    .slider {
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
        overflow: hidden;
        /* 画像がはみ出ないようにする */
        width: 90vw;
        height: 90vh;
        border-radius: 32px;
    }

    .slider img {
        width: 100%;
        height: auto;
        /*object-fit: cover;*/

    }

    @keyframes zoomUp {
        0% {
            transform: scale(1);
        }

        100% {
            transform: scale(1.15);
            /* 拡大率 */
        }
    }

    .add-animation {
        animation: zoomUp 10s linear 0s normal both;
    }


    .main .main_text {
        position: absolute;
        top: 45%;
        right: 30%;
    }

    .main .reception_time {
        position: absolute;
        top: 600px;
        right: 0;
        z-index: 1;
        width: 50%;
        height: 50%;
        border-radius: 200px;
    }

    .main .reception_time img {
        border-radius: 80px;
    }


}


/*==================
condition
==================*/
.condition {
    background-color: var(--condition_color);
    color: #fff;
    padding-top: 0;
    padding-bottom: 10px;
}

.condition_title {
    text-align: center;
    margin-bottom: 100px;
}

.condition_title span {
    background-color: var(--condition_color_60);
    padding: 20px;
    border-radius: 10px;
    font-size: 130%;
}

.condition_menu {
    display: flex;
}

.condition_menu .item {
    width: calc(100% / 2);
    margin: 0 30px 50px 30px;
    margin-bottom: 50px;
}

.condition_menu .item p {
    text-align: center;
}

.condition_menu .item img {
    display: block;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.condition_menu a img:hover {
    opacity: 0.3;
    transition: 0.3s;
}

@media screen and (min-width:768px) {
    .condition {
        margin-top: -120px;
    }

    .condition_pc {
        display: flex;

    }

    .condition_menu {
        display: flex;
    }

}

/*==================
information
==================*/
.information .title .title_img {
    margin-left: auto;
    margin-right: auto;
}

.information .title p {
    position: relative;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 0;
}

.information .title p::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 3px;
    background-color: #b9d08b;
    position: absolute;
    top: 0px;
    right: calc(50% - 40px/2);

}

.information_list {
    position: relative;
    margin: 20px 0;
}

.information_list .information_text {
    position: absolute;
    top: 20%;
    left: 10%;
    z-index: 1;
    color: #fff;
}

.information_list .information_text h3 {
    margin-bottom: 10px;
}

.information_list .information_text p {
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 5px;
}

.information_list a {
    background-color: #333;
    border-radius: 40px;
}

.information_list a img:hover {
    opacity: 0.3;
    transition: 0.3s;
}


.information_list img {
    opacity: 0.7;
    border-radius: 40px;
}

@media screen and (min-width:768px) {
    .information {
        margin-top: -100px;
        margin-bottom: 100px;
    }

    .information .title {
        display: flex;
    }

    .information .title p {
        margin-left: 100px;
        padding: 20px 0;
    }

    .information .title p::before {
        width: 3px;
        height: 40px;
        top: 25px;
        left: -20px;
    }

    .information_contents {
        display: flex;
    }

    .information_list {
        width: 50%;
        margin: 30px;
    }
}

/*==================
about
==================*/
.wrap {
    overflow: hidden;
}

.round_upper {
    background: var(--main_color);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    height: 200px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
}

.round_under {
    background: var(--main_color);
    border-bottom-left-radius: 1000px 200px;
    border-bottom-right-radius: 1000px 200px;
    height: 200px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    margin-bottom: 100px;
}

.about {
    background-color: var(--main_color);
    margin-top: -150px;
    margin-bottom: -100px;
    padding: 0;
}

.about .title {
    width: 200px;
    border: solid 10px #f1f1f1;
    border-radius: 20px;
    margin: auto;
    background-color: #f1f1f1;
    margin-top: 50px;
    margin-bottom: 100px;
}

.about .title_img {
    margin: auto;
}

.about_content {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.about_content .about_text h3 {
    font-size: 25px;
}


.btn_wh {
    background-color: var(--main_color);
    border: solid 2px #fff;
    width: 168px;
    margin: 100px auto;
    padding: 12px;
    color: #fff;
    cursor: pointer;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.btn_wh:hover {
    opacity: 0.7;
}

.about_content img {
    display: none;
}

.slide_items {
    width: 100%;
    height: 100%;
}

.slide_items li {
    margin-left: auto;
    margin-right: auto;
}


.slide_items img {
    width: 100%;
    object-fit: cover;
    padding: 0 10px;
}

@media screen and (min-width:768px) {
    .about .title {
        width: 300px;
        border: solid 20px #f1f1f1;
        border-radius: 40px;
    }

    .about .title_img {
        margin: auto;
    }

    .about_content {
        display: flex;
        justify-content: space-between;
    }

    .about_text {
        width: 60%;
    }

    .about_text p {
        margin-top: 50px;
        font-size: 20px;
        line-height: 30px;
    }


    .about_content img {
        display: block;
        width: 30%;
        object-fit: cover;
    }
}

/*==================
access
==================*/
.access_text {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.access_text .title_img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}


.access .access_text .access_text_inner {
    position: relative;
    width: 55%;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 0;
}

.access .access_text .access_text_inner::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 3px;
    background-color: #b9d08b;
    position: absolute;
    top: 0px;
    right: calc(50% - 40px/2);
}

.access .access_text .access_text_inner p,
h2 {
    margin-bottom: 0;
    text-align: center;
}

.access iframe {
    width: 100%;
    height: 500px;
    margin-top: 50px;
}

.access table tr {
    height: 100px;
    border-bottom: dotted 3px #b9d08b;
}

.access table th {
    width: 18%;
}

.access table td p span {
    font-size: 12px;
}

@media screen and (min-width:768px) {
    .access .wrapper {
        display: flex;
        justify-content: space-between;
    }

    .access_text {
        width: 50%;
    }

    .access_text .title_img {
        margin-bottom: 25px;
    }

    .access .access_text .access_text_inner {
        width: 70%;
        padding: 20px 0 0 0;
        margin-bottom: 50px;
    }

    .access iframe {
        width: 40%;
    }
}

/*==================
footer
==================*/
.footer {
    background-color: var(--sub_color);
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer_left {
    width: 35%;
    margin-left: auto;
    margin-right: auto;
}

.footer_nav {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
}

.footer_nav li {
    font-size: clamp(0.75rem, -0.583rem + 2.78vw, 1.5rem);
    /*fmin12px max24px*/
}

.footer_banner {
    display: flex;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.footer_banner a {
    padding: 10px;
}

.footer .small {
    font-size: 5px;
    text-align: center;

}

@media screen and (min-width:768px) {
    .footer {
        padding-bottom: 30px;
    }

    .footer_menu {
        display: flex;
    }

    .footer_left {
        width: 30%;
    }

    .footer_right {
        width: 70%;
    }

    .footer_nav {
        display: flex;
    }

    .footer_nav li {
        margin-left: 30px;
        font-size: clamp(0.75rem, -0.583rem + 2.78vw, 1.5rem);
        /*fmin12px max24px*/
    }

    .footer_banner {
        width: 500px;
        margin-right: 10%;
    }
}