@charset "utf-8";
/* PCファーストで記述してます */

/* 全体の指定 */

html {
    font-size: 100%;
}

body {
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro",
        "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
        "メイリオ", sans-serif;
    line-height: 2.5;
    background-color: #f1ebde;
    font-size: 14px;
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

.font-bold {
    font-weight: bold;
}

.align-center {
    text-align: center;
}

:root {
    --color-main: #91816f;
}

/* ヘッダーフッター以外の指定 */
.section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
    box-sizing: border-box;
}

.section:last-child {
    margin-bottom: 5rem;
}

/* 見出しの指定 */
.midashi {
    text-align: center;
    margin: 2rem 0;
}

.midashi.mt0 {
    margin-top: 0;
}

.midashi-img {
    max-width: 80%;
}

.midashi-img.is-max {
    max-width: 100%;
}

/* ボタンの指定 */
.btn {
    max-width: 100%;
    width: 270px;
    height: 36px;
    line-height: 36px;
    margin: 2rem auto;
}

.btn a,
.btn button {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    background: #fffdf7;
    text-align: center;
    border: 2px solid var(--color-main);
    color: var(--color-main);
    font-size: 14px;
    font-weight: bold;
    border-radius: 12px;
    box-shadow: var(--color-main) 4px 5px 0 0;
    transition: all 0.3s ease 0s;
}

.btn a:hover,
.btn button:hover {
    background: #f1ebde;
    color: var(--color-main);
    margin-left: 4px;
    margin-top: 5px;
    border: 2px solid var(--color-main);
    box-shadow: none;
}

/* ハンバーガーボタン */
.menu-button {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    padding: 0;
    margin: 0;
    height: 60px;
    width: 60px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2;
    cursor: pointer;
}

.menu-button span {
    position: absolute;
    left: 15px;
    width: 30px;
    height: 4px;
    background-color: white;
    border-radius: 8px;
    transition: all 0.75s ease 0s;
}

.menu-button span:nth-of-type(1) {
    top: 16px;
}

.menu-button span:nth-of-type(2) {
    top: 28px;
}

.menu-button span:nth-of-type(3) {
    bottom: 16px;
}

.menu-button.close span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 28px;
}

.menu-button.close span:nth-of-type(2) {
    opacity: 0;
}

.menu-button.close span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 28px;
}

/* メニュー */
.nav {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 1.3rem 0;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    z-index: 1;
}

.nav-list {
    display: flex;
    justify-content: center;
    text-align: center;
}

.nav-list-item {
    margin: 0 1rem;
    min-width: 110px;
    width: max-content;
}

.nav-list-item-head {
    display: block;
    font-weight: bold;
}

.nav-sub-list-item {
    font-size: 12px;
}

.sns-list {
    display: none;
}

/* アイキャッチ */
#home {
    min-height: 70vh;
    position: relative;
}

.big-bg {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.eyecatch {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.eyecatch-logo {
    height: 50%;
    text-align: center;
}

.eyecatch-logo-img {
    max-height: 100%;
}

.eyecatch-sns {
    display: flex;
    justify-content: center;
}

.eyecatch-sns-item {
    width: 50px;
    margin: 0 1rem;
    filter: drop-shadow(0 0 8px #6a3906) drop-shadow(0 0 8px #6a3906);
}

/* ABOUT US */
.top-aboutus-text {
    text-align: center;
}

.top-aboutus-text-bold {
    font-weight: 700;
    font-size: 1rem;
}


/* 「EVENT」の指定 */
.top-event {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0;
}

.event-midashi {
    max-width: 170px;
    width: 80%;
    margin: 2rem auto;
}

.top-event-midashi-img {
    max-width: 90%;
}

.top-event-todayzhouhou {
    text-align: center;
}

.top-event-today {
    font-weight: bold;
    font-size: 1rem;
    max-width: 13rem;
    margin: auto;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    border-bottom: 2px solid #000;
    padding: 0.5rem;
    letter-spacing: 3px;
}

.event-zyouhou {
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    color: var(--color-main);
    padding: 0 2rem;
}

.event-kashikiri {
    display: flex;
    justify-content: left;
}

.event-kashikiri-date {
    white-space: nowrap;
    display: inline;
    width: 9rem;
    text-align: center;
}

.top-event-oyasumi {
    margin: 1rem auto;
    max-width: 860px;
    padding: 1rem;
}

.event-card-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.event-card {
    width: 370px;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    margin: 1.3rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-card__imgframe {
    width: 86%;
    margin: 1.3rem auto;
    padding-top: 28px;
}

.event-card__gallery-tag {
    background: var(--color-main);
    border-radius: 8px 8px 0 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin: -28px 0 -7px;
    padding-bottom: 5px;
}

.event-card__img {
    background: var(--color-main);
    border: 2px solid var(--color-main);
    border-radius: 8px;
    box-sizing: border-box;
    object-fit: cover;
    height: 222px;
    width: 100%;
    display: block;
}

@media screen and (max-width: 412px) {
    .event-card__img {
        height: 53.4vw;
    }
}

.event-card__textbox {
    width: 100%;
    padding: 0 1rem 1rem;
    box-sizing: border-box;
}

.event-card__titletext {
    font-size: 13px;
    font-weight: bold;
    overflow: hidden;
    line-height: 1.5em;
    max-height: 4.5em;
    color: black;
}

hr.bage {
    background-color: var(--color-main);
    height: 0.1rem;
    margin-top: 10px;
}

a > div > hr.bage {
    border: none;
    height: 0.2rem;
}

.event-tag {
    color: #fff;
    background-color: var(--color-main);
    font-size: 12px;
    padding: 0.3rem;
    border-radius: 5px;
    margin-top: 10px;
}

.event-card-date {
    color: var(--color-main);
    margin-left: 0.5rem;
    margin-top: 10px;
}

.event-link-btn {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

.event-link-btn > li {
    margin-bottom: -1rem;
}

/* 場所貸しイベント（レンタルイベント）リスト */
.rental-event-note {
    text-align: center;
    margin-block: 1rem;
    padding-inline: 1rem;
}

.rental-event-list {
    background: #fff;
    width: 900px;
    max-width: calc(100% - 4rem);
    margin-inline: auto;
    border-radius: 8px;
    padding: 1rem;
}

.rental-event-item {
    display: flex;
    column-gap: 1rem;
}

.rental-event-date {
    color: var(--color-main);
}

.rental-event-title {
    flex: 1;
}

/* 「NEWS」の指定 */
.top-news {
    max-width: none;
    background-color: #fff;
    padding: 3rem 1rem;
}

.top-news-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.news-midashi {
    max-width: 140px;
    width: 80%;
    padding: 4rem;
}

.top-news-content {
    width: 50%;
}

.top-news-list > li {
    padding: 1rem 0;
}

.top-news-list > li:not(:last-child) {
    border-bottom: 2px solid var(--color-main);
}

.top-news-text {
    display: flex;
}

.top-news-time {
    color: #000;
    vertical-align: middle;
    display: inline-block;
    margin: 0 2rem;
    font-weight: bold;
    letter-spacing: 3px;
}

.top-news-title {
    color: #131313;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 2rem;
    border-left: 1px solid #c5c5c5;
}

/* 「Instagram」の指定 */
.top-insta-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
}

.top-insta-list-item {
    padding-bottom: 100%;
    position: relative;
}

.top-insta-list-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: 0.5s;
}

.top-insta-list-img:hover {
    opacity: 0.7;
}

/* 「cafe&bar」の指定 */
.cafebar-content {
    display: flex;
    justify-content: space-between;
}

.cafebar-content-item {
    width: 49%;
    transition: 0.5s;
}

.cafebar-content-item:hover {
    transform: translateY(-10px);
}

/* 「MOVIE」の指定 */
.movie-wrap {
    position: relative;
    padding-bottom: 56.25%;
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
}

.movie-wrap iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

.movie-buttons {
    display: flex;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

/* 「ACCESS」の指定 */
.access-zhouhou {
    padding-left: 1rem;
    border-left: 4px solid #000;
}

.access-table {
    margin-bottom: 2rem;
}

.access-table th {
    text-align: left;
    padding-right: 1em;
}

.access-map {
    display: flex;
    margin-top: 2rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.access-map > li {
    margin: 1rem;
    width: 50%;
}

.top-map-image {
    max-width: 560px;
    width: 100%;
    border: 1px solid var(--color-main);
    border-radius: 10px;
}

.top-map-wrapper {
    position: relative;
    padding-bottom: 21.4%;
    height: 0;
}

.top-map-wrapper iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

element.style {
    overflow: scroll;
}

/* 「SPONSORS」の指定 */
.sponsors-midashi-img {
    width: 560px;
}

/* 「CONCEPT」の指定 */
.concept-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4.75rem 1rem 8rem;
    box-sizing: border-box;
}

/* アイキャッチ画像のスライダー concept, gallery, cafemenu*/
.slider-img-wrap {
    padding-bottom: 56.5%;
    position: relative;
}

.slider-img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: absolute;
}

.slider-modaal {
    cursor: pointer;
}

.slider-caption {
    text-align: center;
    line-height: 1.8;
}

.slider-caption-small {
    font-size: .857em;
}

.slider-nav {
    padding: 0 3.5rem;
    margin-block: 1rem;
}

.slider-nav .slick-list {
    padding-right: 15%;
}

.slider-nav .slick-slide {
    margin: 0 .2rem;
    border: 2px solid transparent;
    opacity: .7;
}

.slider-nav .slick-current {
    border-color: var(--color-main);
    opacity: 1;
}

.slider-nav-img {
    height: 114px;
}

.slider-nav .slick-prev,
.slider-nav .slick-next {
    right: 0;
    width: 40px;
    height: 40px;
    background: url(/images/slider-arrow.png) no-repeat center / cover;
}

.slider-nav .slick-prev {
    left: 0;
    transform: translate(0, -50%) rotate(180deg);
}

.slider-nav .slick-prev::before,
.slider-nav .slick-next::before {
    display: none;
}

@media only screen and (max-width: 1140px) {
    .modaal-gallery-control {
        bottom: -60px;
    }
}

@media screen and (max-width: 768px) {
    .slider-nav {
        padding: 0;
    }

    .slider-nav-img {
        height: 13.5vw;
    }
}

.concept-slider,
.concept-slider-nav {
    max-width: 860px;
    margin-inline: auto;
}

.concept-text-wrapper {
    margin: 2rem 0;
    letter-spacing: 2px;
    text-align: center;
    background-color: #e4fffe;
    border-radius: 20px;
    padding: 1rem;
}

.concept-text + .concept-text {
    margin-top: 1em;
}

.concept-introduction .slick-track,
.concept-introduction .slick-list {
    display: flex;
}

.concept-introduction .slick-slide {
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
}

.concept-introduction .slick-slide .concept-image {
    margin-left: auto;
    margin-right: auto;
}

.concept-introduction-wrapper {
    padding: 1rem;
    background: #fff;
    height: 100%;
}

.concept-introduction-head {
    text-align: center;
    font-weight: bold;
    border-bottom: solid 2px;
}

.concept-introduction-txt {
    line-height: 2;
    margin-top: 0.5rem;
}

/* ページネーション */
.pager {
    margin: 4rem;
}

.pager .pagination {
    text-align: center;
}

.pager .pagination li {
    margin: 0 2px;
    padding: 0;
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    position: relative;
}

.pager .pagination li a {
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: table;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 10px;
    color: #938272;
}

.pager .pagination li a span {
    display: table-cell;
    vertical-align: middle;
}

.pager .pagination li a:hover,
.pager .pagination li a.active {
    color: #fff;
    background: #938272;
}

@media screen and (max-width: 1130px) {
    .pager {
        margin: 3rem auto 6rem;
    }
}

@media only screen and (min-width: 768px) {
    .pager .pagination li.hidden-over-md {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .pager .pagination li.hidden-upto-md {
        display: none;
    }

    .pager .pagination li.separator {
        width: 4px;
    }
}

/* フッターの指定 */

.footer-background {
    background-color: #938272;
}

.footer-menu {
    padding: 3rem 0;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin: auto;
}

.footer-wood {
    position: relative;
    bottom: 120px;
}

.footer-logo {
    position: absolute;
    max-width: 370px;
    width: 90%;
}

.footer-logosns {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40%;
    box-sizing: border-box;
}

.footer-sns {
    display: flex;
    justify-content: space-evenly;
    margin: 1rem;
}

.footer-sns > li {
    max-width: 33px;
    list-style: none;
    padding: 0 2rem;
}

.footer-menu a {
    color: #fff;
}

.copyright {
    color: #fff;
    font-size: 11px;
    text-align: center;
    padding-bottom: 2rem;
}

.footer-menu-list {
    display: flex;
    justify-content: flex-start;
    padding-left: 1rem;
    position: relative;
    flex-wrap: wrap;
    width: 60%;
    box-sizing: border-box;
}

.footer-menu-list li {
    position: relative;
    padding-left: 21px;
    margin-top: 3px;
    width: 23%;
    box-sizing: border-box;
}

.footer-menu-list li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #fff;
}

.footer-menu-list li::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 4px;
    transform: rotate(45deg);
    width: 4px;
    height: 4px;
    border-top: 1px solid #938272;
    border-right: 1px solid #938272;
}

/* ページトップへの指定 */

#page-top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 30px;
    bottom: 20px;
    background: #928270;
    opacity: 0.6;
    border-radius: 50%;
}

#page-top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
}

#page-top a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f106";
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -40px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

@media screen and (max-width: 1130px) {
    .nav {
        left: auto;
        right: 0;
        top: 60px;
        padding: 1rem;
        overflow-y: auto;
        overscroll-behavior-y: none;
        height: calc(100vh - 60px);
    }

    .nav-list {
        display: block;
        text-align: left;
    }

    .nav-list-item:not(:last-child) {
        border-bottom: 3px solid #fff;
    }

    .nav-list-item {
        padding: 0.5rem;
        margin: 0;
        width: auto;
    }

    .nav-list-item-head {
        font-size: 1.3rem;
    }

    .nav-sub-list-item {
        font-size: 0.8rem;
    }

    .sns-list {
        display: flex;
        justify-content: flex-start;
        margin-top: 2rem;
    }

    .sns-list-item {
        max-width: 33px;
        margin-right: 2rem;
    }

    .news-midashi {
        padding: 0;
    }

    .top-news-content {
        width: 100%;
    }

    .footer-menu-list {
        width: 100%;
    }

    .footer-menu-list li {
        width: 33%;
    }
}

@media screen and (max-width: 930px) {
    .event-link-btn {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .top-news-text {
        flex-wrap: wrap;
    }

    .top-news-title {
        border-left: none;
    }

    .rental-event-note {
        text-align: left;
    }

    .rental-event-item {
        flex-direction: column;
    }

    .rental-event-item:not(:first-child) {
        margin-top: 1rem;
    }

    .access-table th,
    .access-table td {
        display: block;
    }

    .access-table td {
        padding-bottom: 0.6rem;
    }

    .access-map {
        flex-wrap: wrap;
    }

    .access-map > li {
        margin: 0;
        width: 562px;
        max-width: 100%;
    }

    .top-map-wrapper {
        padding-bottom: 36%;
    }

    .sponsors-midashi1 {
        display: none;
    }

    .sponsors-midashi-img {
        width: 300px;
    }

    .concept-introduction-wrapper {
        max-width: 382px;
        box-sizing: border-box;
        margin: 0 auto;
    }

    .footer-logosns {
        width: 100%;
    }
}

@media screen and (max-width: 530px) {
    .cafebar-content {
        flex-direction: column;
        align-items: center;
    }

    .cafebar-content-item {
        width: 100%;
    }

    .footer-menu-list li {
        width: 50%;
    }
}
