@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: 50px 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;
    }

    /*--ホバー時、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 img {
    height: 30vh;
    object-fit: cover;
}


.main .wrapper {
    position: relative;
    margin-top: 50px;
}

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

.main .main_text {
    text-shadow: 0px 0px 6px #fff;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 200px;
    top: 50%;
}

.main .main_text h1 {
    text-align: center;
}

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

    .main img {
        height: 70vh;
    }
}

/*==================
condition
==================*/
.condition h1 {
    background-color: #c2bbb2;
    color: #fff;
    height: 80px;
    line-height: 80px;
    padding-left: 10px;
    border-radius: 10px;
}


.condition .content {
    margin-bottom: 20px;
    border: dashed 5px #c2bbb2;
    border-radius: 30px;
    padding: 30px;
}

.condition .content p {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.condition .content img {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}


.condition .content ul {
    margin: 0;
    padding: 0;
}

.condition .content ul li {
    margin-left: 10px;
    margin-top: -24px;
}

.condition .content ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: #333;
    border-radius: 50%;
    position: relative;
    top: 24px;
    left: -15px;
}

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

    .condition .content {
        width: 20vw;
    }

}


/*==================
information
==================*/
.information .content {
    margin-bottom: 50px;
}

.information .content h1 {
    background-color: #b9d08b;
    color: #fff;
    height: 80px;
    line-height: 80px;
    padding-left: 10px;
    border-radius: 10px;
}

.information .content img {
    border-radius: 30px;
}

.information .content .list ul {
    margin: 0;
    padding: 0;
}

.information .content .list ul li {
    margin-left: 10px;
}

.information .content .list ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: #b9d08b;
    border-radius: 50%;
    position: relative;
    top: 24px;
    left: -15px;
}

.information .btn {
    background-color: var(--sub_color);
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    padding: 12px;
    color: #fff;
    cursor: pointer;
    border-radius: 30px;
    text-align: center;
    transition: 0.3s;
}

.btn:hover {
    opacity: 0.7;
}

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

    .information .content .content_inner img {
        width: 30%;
    }

    .information .content .content_inner p {
        margin: 50px;
    }

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



/*==================
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%;
    }
}