@charset "UTF-8";

/* ===================================
reset
=================================== */

body,
h1,
h2,
h3,
ul,
p {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
}

img {
    vertical-align: bottom;
}

a {
    text-decoration: none;
}


/* ===================================
    common.css
  =================================== */


/* Noto Sans Regular font-family: noto-sans,
sans-serif;
font-weight: 400;
font-style: normal;
Noto Sans Italic font-family: noto-sans,
sans-serif;
font-weight: 400;
font-style: italic;
Noto Sans Bold font-family: noto-sans,
sans-serif;
font-weight: 700;
font-style: normal; */

body {
    font-family: noto-sans, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #504A42;
    font-size: 20px;
    background-color: #D6CFC9;
    line-height: 2.3rem;
}

.inner {
    width: 1000px;
    margin: 0 auto;
}

.d_f {
    display: flex;
}


/* justify-content */

.j_sb {
    justify-content: space-between;
}

.j_sc {
    justify-content: center;
}


/* --  -- */

.sp {
    display: none;
}

.main_visual img {
    width: 100%;
    text-align: center;
}


/* === fadein === */

.element {
    /* 最初は非表示 */
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 1s, visibility 1s, transform 1s;
}


/* フェードイン時に入るクラス */

.is-fadein {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


/* === サイドに固定 === */

.totop {
    text-align: right;
    box-shadow: 1px unset;
    padding-right: 1rem;
    position: fixed;
    top: 600px;
    right: 1px;
    z-index: 10;
}

.yoyaku {
    text-align: right;
    box-shadow: 1px unset;
    padding-right: 0.8rem;
    position: fixed;
    top: 530px;
    right: 1px;
    z-index: 10;
}

.totop a:hover {
    opacity: 80%;
}

.yoyaku a:hover {
    opacity: 80%;
}


/* === hamburger-menu === */

.hamburger-menu .d_f {
    display: block;
}

.hamburger-menu header {
    padding-left: 10px;
}

.hamburger-menu header .drop {
    display: none;
}

.hamburger-menu {
    display: block;
}

.menu-btn {
    position: fixed;
    top: 20px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #272B5A;
    ;
    border-radius: 7px;
    box-shadow: 0 0 8px gray;
}

.menu-btn:hover {
    opacity: 80%;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 24px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked~.menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked~.menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 40%;
    height: 80%;
    position: fixed;
    top: 0px;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #D6CFC9;
    transition: all 0.5s;
    border-radius: 0 0 0 3rem;
    /*アニメーション設定*/
    box-shadow: 0 0 8px gray;
}

.menu-content ul {
    padding-top: 90px;
}

.menu-content ul li {
    list-style: none;
}

.menu-content ul li img {
    width: 100%;
}

.menu-content ul li a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
    box-sizing: border-box;
    color: #504A42;
    text-decoration: none;
    position: relative;
    text-align: left;
    background-color: #A8A59D;
    opacity: 10;
    margin-bottom: 1rem;
    text-align: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

#menu-btn-check:checked~.menu-content {
    left: 55rem;
    /*メニューを画面内へ*/
}

.menu-content ul li a:hover {
    opacity: 0.7;
}


/* === ハンバーガーここまで === */


/* === サイドに固定 === */

.totop img {
    width: 78%;
}

.totop {
    text-align: right;
    box-shadow: 1px unset;
    padding-right: 7rem;
    position: fixed;
    top: 700px;
    right: -16px;
    z-index: 10;
}

.yoyaku img {
    width: 65%;
}

.yoyaku {
    text-align: right;
    box-shadow: 1px unset;
    padding-right: 0.8rem;
    position: fixed;
    top: 599px;
    right: 1px;
    z-index: 10;
}


/* ============  header  ============ */

.logo {
    position: relative;
    margin-top: -60%;
}

.main_visual {
    width: 100%;
}

.capsion {
    position: relative;
    justify-content: right;
    top: -5rem;
}

.capsion ul {
    writing-mode: vertical-rl;
    height: 500px;
}

.capsion li {
    display: inline-block;
    background: #ffff;
    border-radius: 0.7rem;
    padding: 20px 10px;
    text-orientation: upright;
}

.capsion li:nth-child(2) {
    margin-top: 100px;
    margin-right: -10px;
}


/* .capsion span {
       letter-spacing: -0.5rem;
   } */

h2 img {
    width: 100%;
}

h2 {
    text-align: center;
}


/* == fotter == */

footer {
    background-image: url(../images/common/fotter.png);
    background-repeat: no-repeat;
    background-size: 100%;
    padding-top: 30rem;
    /* padding-bottom: 1; */
    color: #ffff;
}

.ftt li:last-child {
    padding-left: 1.5rem;
}

.ftt li a {
    color: #ffff;
    text-decoration: underline;
}

.nav a {
    color: #ffff;
}

.nav a:hover {
    opacity: 70%;
}

.nav li {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2rem;
}

.copy {
    text-align: center;
    background-color: #272B5A;
    margin-top: 4rem;
}

.sp {
    display: none;
}


/* == common　ここまで == */


/* ================= */


/* ===================================
responsive
=================================== */

@media screen and (max-width: 640px) {
    body {
        font-size: 95%;
        line-height: 1.7rem;
    }
    img {
        vertical-align: 0%;
    }
    .pc {
        display: none;
    }
    .pc li {
        display: none;
    }
    .sp {
        display: block;
    }
    /* br {
display: none;
      } */
    .img {
        padding: 0;
        margin: 0;
    }
    /* .d_f {
        display: block;
    } */
    .inner {
        width: auto;
        padding: 0 15px;
    }
    /* -- ハンバーガー -- */
    #menu-btn-check:checked~.menu-content {
        left: 0;
        /*メニューを画面内へ*/
    }
    .menu-content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0px;
        left: 100%;
        /*leftの値を変更してメニューを画面外へ*/
        z-index: 80;
        background-color: #DBDAC6;
        transition: all 0.5s;
        border-radius: 0;
        /*アニメーション設定*/
        box-shadow: 0 0 8px gray;
    }
    .menu-btn {
        width: 60px;
        height: 60px;
    }
    .totop img {
        width: 35%;
    }
    .yoyaku img {
        width: 35%;
    }
    .totop {
        top: 90%;
        right: -3.1rem;
    }
    .top p {
        font-size: 12px;
    }
    .access p {
        font-size: 14px;
    }
    .reserve p {
        font-size: 14px;
    }
    .yoyaku {
        top: 83%
    }
    .menu-content ul li a {
        font-size: 1.3rem;
    }
    .logo {
        position: relative;
        margin-top: -60%;
    }
    .logo img {
        width: 20%;
    }
    .capsion {
        position: relative;
        /* justify-content: right; */
        top: -5rem;
    }
    .capsion ul {
        writing-mode: vertical-rl;
        font-size: 0.5rem;
        height: 250px;
        margin-left: auto;
        margin-right: 16%;
    }
    .capsion li {
        display: inline-block;
        background: #ffff;
        border-radius: 0.7rem;
        padding: 8px 2px;
        text-orientation: upright;
    }
    .capsion li:nth-child(2) {
        margin-top: 30px;
    }
    h2 img {
        width: 100%;
    }
    footer {
        background-image: url(../images/common/fotter.png);
        background-repeat: no-repeat;
        background-position: bottom;
        padding-top: 0rem;
        /* padding-bottom: 1; */
        color: #ffff;
    }
    .ftt li:last-child {
        padding-left: 1.5rem;
    }
    .ftt li a {
        color: #ffff;
        text-decoration: underline;
    }
    /* .nav ul {
        padding-top: 3rem;
    } */
    .nav li {
        padding-left: 1rem;
        padding-right: 1rem;
        /* padding-top: 2rem; */
    }
    .copy {
        text-align: center;
        background-color: #272B5A;
        margin-top: 2rem;
    }
    footer img {
        width: 50%;
    }
    .d_ff {
        display: flex;
        justify-content: center;
    }
    .ftt br {
        display: block;
    }
    footer {
        padding-top: 5rem;
    }
    .ftt li:last-child {
        padding-left: 0rem;
        /* padding-top: 3rem; */
    }
    .ftt li:first-child {
        padding-left: 2rem;
    }
    .spp {
        justify-content: left;
        font-size: 0.8rem;
        padding-right: 2rem;
    }
    h1 span {
        font-size: 17px;
    }
}


/* ========== */