@charset "utf-8";


.section-title {
    font-family: 'Noto Serif JP', serif;
    position: relative;
    text-align: center;
    margin: 150px 0 100px;
}

/* 英語（背景文字） */
.title-en {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    font-weight: 500;
    color: rgba(226, 103, 106, 0.1);
    /* 薄くする */
    /* letter-spacing: 0.1em; */
    white-space: nowrap;
    pointer-events: none;
}

.title-en-bef br {
    display: none;
}

/* 日本語（前面） */
.title-ja {
    position: relative;
    font-size: 38px;
    font-weight: 500;
    color: #4e433b;
    z-index: 1;
}

body {
    color: #4e433b;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
}

.flex {
    display: flex;
}

li {
    list-style-type: none;
}

.gnav__left img {
    position: fixed;
    width: 50px;
    left: 30px;
    top: 30px;
}

.gnav__left img:hover {
    opacity: 0.6;
}

/* ハンバーガーアイコン */
/*アクティブになったエリア*/
#g-nav.panelactive {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg {
    position: fixed;
    z-index: 3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    opacity: 0.9;
    /*丸のスタート位置と形状*/
    transform: scale(0);
    /*scaleをはじめは0に*/
    right: -50px;
    top: -50px;
    transition: all .6s;
    /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
    transform: scale(50);
    /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
    display: none;
    /*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
    display: block;
    /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
    opacity: 0;
    /*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    column-count: 2;
    /* 2列に分割 */
    column-gap: 20px;
    /* 列間の隙間 */
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity: 1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .2s;
    /*0.2 秒遅らせて出現*/
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes gnaviAnime {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/*リストのレイアウト設定*/
#g-nav li {
    text-align: center;
    list-style: none;
}

#g-nav li a {
    color: #4e433b;
    text-decoration: none;
    padding: 12px 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    /* font-weight: bold; */
    font-size: 25px;
}

#g-nav li a:hover {
    color: #e4453e;
}

#g-nav li a img {
    padding-top: 30px;
    width: 80%;
}

/*========= ボタンのためのCSS ===============*/
.insta img {
    position: fixed;
    top: 20px;
    right: 60px;
    z-index: 9999;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.insta img:hover {
    opacity: 0.6;
}

.reservation img {
    position: fixed;
    width: 180px;
    right: 100px;
    top: 5px;
    z-index: 9999;
    cursor: pointer;
}

.reservation img:hover {
    opacity: 0.6;
}

.openbtn {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9999;
    /*ボタンを最前面に*/
    cursor: pointer;
    width: 50px;
    height: 50px;
}

.openbtn:hover {
    opacity: 0.6;
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 1px;
    border-radius: 2px;
    background-color: #4e433b;
    width: 50%;
}

.openbtn span:nth-of-type(1) {
    top: 14px;
}

.openbtn span:nth-of-type(2) {
    top: 24px;
}

.openbtn span:nth-of-type(3) {
    top: 34px;
}

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

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

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

.experience-button {
    padding: 50px;
    text-align: center;
}

.experience-button:hover {
    opacity: 0.6;
}

.experience-button img {
    width: 30%;
}

/* アクセス */
.access {
    text-align: center;
}

.access img {
    margin-top: 50px;
    width: 20%;
}

table {
    width: 40%;
    text-align: left;
    margin: 0 auto;
    border-collapse: collapse;
    /* セルの線を重ねる */
}

table caption {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: left;
}

table a {
    color: #4e433b;
    text-decoration: none;
}

td,
th {
    padding: 10px;
    border: 1px solid #c3ae95;
}

th {
    background-color: #faf0e6;
    /* 背景色指定 */
}


/*  */
.copy {
    text-align: center;
    padding: 40px 0;
    font-size: 14px;
}

iframe {
    padding-bottom: 80px;
}

@media screen and (max-width:1080px) {


    #g-nav ul {
        width: 70%;
    }

    .experience-button img {
        width: 50%;
    }
}


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



    .title-en {
        font-size: 90px;
    }

    .title-ja {
        font-size: 32px;
    }

    .section-title {
        margin: 100px 0;
    }

    iframe {
        padding-bottom: 50px;
        height: 400px;
    }

    table {
        width: 60%;
    }

    .access img {
        width: 40%;
    }

}



@media screen and (max-width:524px) {
    #g-nav li a{
        letter-spacing: 0;
        padding: 10px 0;
    }

    .gnav__left img {
        left: 20px;
        top: 0px;
        width: 40px;
    }

    .title-en {
        font-size: 60px;
    }

    .title-en-bef {
        font-size: 60px;
        line-height: 1;
    }

    .title-en-bef br {
        display: block;
    }

    .title-ja {
        font-size: 24px;
    }

    .section-title {
        margin: 80px 0 50px;
    }

    .gnav__left img {
        margin-top: 20px;
    }

    #g-nav li a img {
        width: 80%;
    }

    #g-nav ul {
        margin-top: 50px;
        width: 80%;
        column-count: 1;
        line-height: 1.5rem;
    }

    .experience-button {
        padding: 20px;
    }

    .experience-button img {
        width: 90%;
    }

    iframe {
        padding-bottom: 30px;
        height: 300px;
        width: 100%;
    }

    table {
        width: 90%;
    }

    td, th {
        padding: 10px 5px;
    }

    .access img {
        width: 60%;
    }
    
    .copy{
        font-size: 10px;
    }
}