@charset "utf-8";

html {
    scroll-padding-top: 20vh;
}

body {
    font-family: 'montserrat', 'fot-tsukuaoldmin-pr6n', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
}

h2 {
    text-align: center;
}

img {
    max-width: 100%;
}

.innerwrap {
    width: 85%;
    margin: 0 auto;
    padding: 200px 0;
}

.description {
    color: #fff;
    font-family: dnp-shuei-nshogomincho-std, sans-serif;
    font-weight: 700;
    font-style: normal;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    /* Safari, iOS */
    -ms-writing-mode: tb-rl;
    /* IE */
    text-orientation: upright;
    margin: 0 auto;
    padding-top: 200px;
}

.description p {
    margin: 0vw 10vw;
}



/* headerここから */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #6f7684;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 15vh;
    box-shadow: 2px 2px 5px black;
}

header nav {
    display: flex;
    justify-content: flex-end;
}

header nav ul {
    display: flex;
    gap: 20px;
    color: white;
    align-items: center;
}

header nav ul li :hover {
    color: rgba(255, 255, 255, 0.5);
}

/* カネヨシ */
header nav ul li .contact-button {
    background-image: url(../images/btn_background.png);
    background-color: #142d50;
    border-radius: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    padding: 16px;
    cursor: pointer;
    box-shadow: 2px 2px 1px rgba(33, 33, 33, 0.3);
}

.logo img {
    width: 200px;
}

/* ここまで */

/* 予約ボタン部分画像ここから */
/* header nav ul li a.contact-button img {
    height: 1.2em;
    width: auto;
    vertical-align: middle;
    object-fit: contain;
} */


/* headerここまで */

/* footerここから */
footer {
    background-color: #6f7684;
    color: white;
    padding: 50px 0px 50px 0px;
}

/* カネヨシ */
footer img {
    width: 120px;
    margin-left: 40px;
}

/* ここまで */

footer p {
    margin-top: 10px;
    margin-left: 40px;
}

/* カネヨシ */
footer .send-footer {
    display: inline-block;
    background-image: url(../images/btn_background.png);
    background-color: #142d50;
    border-radius: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    padding: 16px;
    cursor: pointer;
    box-shadow: 2px 2px 1px rgba(33, 33, 33, 0.3);
}

/* ここまで */

footer .send-footer:hover {
    color: rgba(255, 255, 255, 0.5);
}

footer .copyright {
    text-align: center;
    font-size: 12px;
}

/* footerここまで */

/* ハンバーガーメニューのスタイル */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    height: 3px;
    background-color: white;
    border-radius: 3px;
}

/* ハンバーガーメニューのスタイル */

/* レスポンシブ対応 */
@media (max-width: 960px) {
    body {
        font-size: 16px;
    }

    /* 変更あり！7.26nakasendo */
    .innerwrap {
        /* width: 100%; */
        margin: 0 auto;
        padding: 100px 0;
    }


    .description {
        writing-mode: horizontal-tb;
        font-family: 'montserrat', 'fot-tsukuaoldmin-pr6n', sans-serif;
        font-weight: 300;
        font-style: normal;
        padding-top: 100px;
    }

    .description p {
        margin: 10vw 10vw;
    }
}

@media (max-width: 960px) {

    /* ハンバーガー */
    .hamburger {
        display: flex;
    }

    nav#nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #6f7684;
        width: 100%;
        padding: 20px;
    }

    nav#nav-menu.active {
        display: flex;
    }

    nav#nav-menu ul {
        flex-direction: column;
        gap: 10px;
    }

    nav#nav-menu.active ul li .contact-button {
        background-image: none;
        background-color: transparent;
        border-radius: 0;
        box-shadow: none;
        padding: 10px;
    }



    header {
        height: 10vh;
    }

    header nav ul li .contact-button {
        margin: 0 auto;
    }

    .logo img {
        width: 120px;
    }

    footer img {
        width: 80px;
        margin-left: 40px;
    }

    footer .copyright {
        text-align: center;
        margin: 30px 0 0;
    }


}