@charset "UTF-8";

/* CSS Document */
body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    line-height: 2.5em;
    background-size: auto;
    background-position: center center;
    color: #5F5E5E;
    text-align: justify;
}

.wrap {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 1em;
}

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

h2,
h3,
h4,
h5 {
    font-weight: bold;
}

h2 {
    font-size: 200%;
}

h3 {
    font-size: 110%;
    margin-top: 1em;
}

a {
    color: #5F5E5E;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.navbar-brand img {
    vertical-align: middle;
}

.andmore {
    font-size: 1.2em;
    font-weight: bold;
}

.bnr-img {
    border-radius: 10px;
}

/*========= ナビゲーションのためのCSS ===============*/
.bg-dark {
    background-color: #5F5E5E !important;
}

#g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: -120%;
    right: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #5F5E5E;
    /*動き*/
    transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

#g-nav li a {
    color: #fff;
    text-decoration: none;
    padding: 15px 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 100%;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 9px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}

/*×に変化*/
.openbtn1 span {
    display: inline-block;
    transition: all .2s;
    position: absolute;
    left: 20%;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 60%;
}

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

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

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

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

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

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

#header {
    width: 100%;
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}



section {
    padding: 100px 30px;
}

section:nth-child(2n) {
    background: #f3f3f3;
}

footer {
    background-image: url(../images/bg_footer.jpg);
    padding: 100px 0;
    color: #fff;
    background-position: bottom center;
    background-size: cover;
}

footer a {
    color: #fff;
}

.btn-primary {
    color: #fff;
    background-color: #5F5E5E;
    border-color: #5F5E5E;
    padding: 1em 2em;
    font-size: 1em;
    font-weight: bold;
    border-radius: 40px;
}

.btn-primary:hover {
    color: #fff;
    background-color: #5F5E5E;
    border-color: #5F5E5E;
}

footer h4 {
    margin-bottom: 0.5em;
}

.maingrafic {
    margin-bottom: 100px;
    margin-top: 66px;
}

.maingrafic span {
    position: absolute;
    bottom: 10%;
    text-align: center;
    left: 50%;
    margin-left: -10em;
    font-weight: bold;
    font-size: 130%;
}

.maingrafic .button {
    position: absolute;
    bottom: -7%;
    right: 5%;
    width: 25%;
}

.button {
    padding: 0;
    border: none;
    background: transparent;
    outline: none;
}

.button:focus {
    outline: none;
}

.button img {
    display: block;
}

.underline {
    position: relative;
    margin-bottom: 2.5em;
}

.underline img {
    height: 54px;
}

.underline:before {
    content: '';
    position: absolute;
    bottom: 26px;
    display: inline-block;
    width: 95px;
    height: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #5F5E5E;
}

.underline span {
    display: block;
    font-size: 0.8rem;
    margin-top: 2em;
    color: #5F5E5E;
}

.sub-block {
    padding: 4em 3em 3em 3em;
    background-image: url(../images/bg_sub-block.jpg);
    border-radius: 5px;
    background-size: cover;
    background-position: bottom center;
}

.table-detail {
    margin-bottom: 0rem;
    background-color: #fff;
}

.table-detail-outer {
    padding: 5px;
    background-color: #fff;
    border-radius: 5px;
}



.sub-block .after {
    content: "";
    position: absolute;
    top: 10%;
    right: -70%;
    background: #2F2724;
    width: 100.5%;
    height: 104%;
    z-index: -12;
}

#Stage .sub-block .after,
#Access .sub-block .after {
    background: #2F2724;
    right: 70%;
}

.button {
    margin: 0 auto;
    display: inherit;
    width: 30%;
}

.sub-block-title {
    position: absolute;
    top: -26px;
    display: inline-block;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 28em;
    padding: 0.3em 1em 0.2em;
    background-color: #5F5E5E;
    color: #fff;
    border: 5px solid #5F5E5E;
    font-size: 130%;
    border-radius: 20px;
}

#Stage .sub-block-title,
#Oic .sub-block-title {
    width: 7em;
}

#control .sub-block-title {
    width: 9em;
}

.sub-block-title02 {
    padding: 0.5em 1em 0.4em;
    background-color: #5F5E5E;
    color: #fff;
    border: 5px solid #5F5E5E;
    font-size: 130%;
    margin-bottom: 2em;
    border-radius: 30px;
}

#Stage .sub-block-title,
#Access .sub-block-title {
    background-color: #2F2724;
}

.block-outer {
    margin-bottom: 100px;
}

html {
    scroll-padding-top: 80px;
}

.sp-only {
    display: none;
}

.fukidashi01 {
    position: absolute;
    top: -200px;
    right: -130px;
}

.fukidashi02 {
    position: absolute;
    top: -200px;
    right: -130px;
}

.fukidashi03 {
    position: absolute;
    top: -200px;
    right: -100px;
}

.fukidashi01 img,
.fukidashi02 img,
.fukidashi03 img {
    width: 257px;
}

.mb-5,
.my-5 {
    margin-bottom: 6rem !important;
}

#Stage .kuriemi {
    align-items: center;
}

a img:hover {
    opacity: 0.8;
}

.map {
    overflow: hidden;
}

.map iframe {
    margin-left: -2px;
    margin-top: -2px;
}

div::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

div::-webkit-scrollbar-track {
    background: rgba(232, 232, 232, 1.00);
}

div::-webkit-scrollbar-thumb {
    background: rgba(132, 132, 132, 1.00);
    border-radius: 5px;
}

.justify-content {
    justify-content: center;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
    margin-bottom: 30px;
}

.block-detail-outer {
    padding: 3em 15px 15px 1em;
    background-color: #fff;
    border-radius: 5px;
}

.bold {
    font-weight: bold;

}

.dli-chevron-round-right {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    position: relative;
    width: 0.5em;
    height: 0.5em;
    transform: translateX(-25%) rotate(45deg);
    top: -1px;
}

.dli-chevron-round-right::before,
.dli-chevron-round-right::after {
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 0.1em;
}

.dli-chevron-round-right::before {
    top: 0;
    left: 0;
    right: 0;
    height: 0.13em;
}

.dli-chevron-round-right::after {
    top: 0;
    right: 0;
    bottom: 0;
    width: 0.13em;
}

iframe[src*="lightwidget.com"] {
    pointer-events: auto !important;
}

.post {
    margin-top: 150px;

}

.post h1 {
    font-weight: bold;
}

.post h3 {
    font-size: 1.3rem;
    margin-top: 1em;
    line-height: 1.5;
}

@media screen and (max-width:480px) {
    body {
        line-height: 1.8em;
    }

    .sp-only {
        display: block;
    }

    .pc-only {
        display: none;
    }

    .maingrafic .button {
        position: inherit;
        bottom: -7%;
        right: inherit;
        left: inherit;
        width: 70%;
        margin: 0 auto;
        display: block;
        margin-top: -30px;
    }

    .maingrafic span {
        bottom: 20%;
        font-size: 100%;
    }

    .maingrafic {
        margin-bottom: 2em;
    }


    h2 {
        font-size: 150%;
    }

    h3 {
        font-size: 100%;
        margin-top: 1em;
    }

    .sub-block-title {
        font-size: 100%;
    }

    .sub-block {
        padding: 1.5em 1em 1em 1em;
    }

    #Gourmet .sub-block {
        padding: 4em 1em 1em 1em;
    }

    .block-outer {
        margin-bottom: 3em;
    }

    .button img {
        width: 100%;
    }

    .button {
        width: 80%;
    }

    footer {
        padding: 2em 1em;
    }

    .sub-block-title02 {
        padding: 0.3em 1em 0.2em;
        background-color: #2F2724;
        color: #fff;
        border: 5px solid #221815;
        font-size: 100%;
        text-align: left !important;
    }

    .fukidashi01 img,
    .fukidashi02 img,
    .fukidashi03 img {
        width: 180px;
    }

    .fukidashi01 {
        top: -25px;
    }

    .fukidashi02 {
        top: 200px;
        right: 93px;
        z-index: 1;
    }

    .fukidashi03 {
        top: 155px;
        right: -64px;
        z-index: 2;
    }

    .mb-5,
    .my-5 {
        margin-bottom: 3rem !important;
    }

    #Gourmet .sub-block-title {
        width: 90%;
    }

    footer h4 {
        font-size: 115%;
    }

    .openbtn1 {
        top: 3px;
    }

    .sub-block-title {
        width: 20em;
    }

    audio {
        margin: 0 auto 1.5em;
        display: block;
    }

    .maingrafic {
        margin-top: 55px;
    }

    .table-detail-outer {
        width: fit-content;
    }

    .underline img {
        height: 35px;
    }

    .text-left-sp {
        text-align: left !important;
    }

    .post h1 {
        font-size: 1.8em;
    }
}