@charset "UTF-8";

/*全般設定*/
html,
body {
    height: 100%;
}

body {
    margin: 0px;
    padding: 0px;
    font-size: 16px;
    font-family: 'inter';
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
dl,
dt,
dd,
form,
figure,
form {
    margin: 0px;
    padding: 0px;
    font-size: 100%;
    font-weight: normal;
}

ul {
    list-style-type: none;
}

img {
    border: none;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.sp_display {
    display: none;
}

.pc_40px {
    font-size: 40px;
}

.pc_28px {
    font-size: 28px;
}

.pc_20px {
    font-size: 20px;
}

.text_shadow {
    text-shadow: rgba(0, 0, 0, 0.5) 0px 0px 15px;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    margin: 0 auto;
    width: 100%;
}

.section_title {
    font-size: 24px;
}

/* header */
header,
footer {
    margin: 0 auto;
    background-color: #000;
    color: #ffffff;
    font-size: 18px;
    width: 100%;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 10000;
    background: #000;
    height: 105px;
}

.main_visual,
.contact {
    margin-top: 105px;
}

.header_wrapper,
.footer_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;

}

#page_top_btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #03FFC4;
    color: #fff;
    border: none;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 12000;
    line-height: 4０px;
    text-align: center;
}

#page_top_btn.show {
    opacity: 1;
    pointer-events: auto;
}

#page_top_btn:hover {
    background: #01d1a3;
}

.header_logo img,
.footer_logo img {
    max-width: 80%;
}


.nav_wrapper {}

.nav_lists {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* .nav_list {
    padding: 14px;
} */

.nav_list:first-child {
    padding: 0;
}

.contact_wrapper {
    color: #000;
    background-color: #03FFC4;
    margin-left: 20px;
}

.nav_list a {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
    padding: 14px;
}

.nav_list:first-child a {
    padding: 0;
}

/* PC時：テキスト非表示、アイコン表示 */
.calendar_text {
    display: none;
}

.calendar_icon {
    display: inline-block;
}


/* メインビジュアル */
.main_visual {
    position: relative;
}

.main_visual img {
    width: 100%;
    height: 80vh;
}

.main_visual_text {
    width: 80%;
    color: #ffffff;
    font-size: 28px;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main_visual_text p {
    padding-top: 30px;
}

.section_visual img {
    /* opacity: 0.8; */
}

.main_visual_font {
    font-size: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-weight: bold;
    text-shadow:
        -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
}

/* メイン */
main {}

h2 {
    position: relative;
    padding-left: 15px;
}

h2::before {
    content: "";
    width: 7px;
    height: 50px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #000000;
}

/* セクション共通 */
section {
    padding: 100px 30px 90px 30px;
}

.section_wrapper {
    margin: 0 auto;
    max-width: 1080px;
}

.section_inner {
    margin-top: 40px;
}

.more_button {
    margin: 30px auto 0;
    padding: 10px 0;
    background-color: #000;
    color: #ffffff;
    width: 200px;
    text-align: center;
    border-radius: 100px;
    font-size: 16px;
    display: block;
}

/* お知らせ */
.breadcrumb {
    margin: 10px 30px;
    font-size: 20px;
}

.articles {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
}

/* .articles :not(:nth-child(3)) {
    margin-right: 30px;
} */


.article {
    width: calc(100% / 3 - 20px);
    margin-bottom: 30px;
}

.article img {
    width: 100%;
    padding-bottom: 10px;
}

.article_heading {
    /* display: flex; */
}

.article_container {
    width: 80%;
    margin: 0 auto;
}

.article_title {
    font-size: 20px;
}

.article_date {
    font-size: 18px;
    padding-top: 16px;
    color: #666;
}

.single_article_date {
    padding-left: 30px;
}

.article_thumbnail img {
    aspect-ratio: 1 / 1;
    width: 100%;
    /* 横幅に合わせて表示 */
    object-fit: cover;
    /* トリミングして枠にフィットさせる */
    display: block;
}

.article_thumbnail_full {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.article_thumbnail_full img {
    object-fit: scale-down;
}

.article_content {
    margin-top: 20px;
    font-size: 20px;
    line-height: 24px;
}

/* 特徴・見どころ */
.background_color {
    background-color: #E1D8CE;
}

.terms_lists {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terms_list {
    padding: 0 16px 16px 16px;
    background-color: #ffffff;
    width: calc(100% / 3 - 10px);
    height: 550px;
    position: relative;
}

.terms_list img {
    padding-top: 15px;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.terms_title {
    font-size: 18px;
    padding-top: 15px;
    width: 100%;
}

.terms_sub_title {
    padding-top: 10px;
    font-size: 18px;
}

.terms_sub_text {
    padding-top: 6px;
    font-size: 16px;
    height: 70px;
}
.more_button_sub {
    background-color: #5AB3E7;
    color: #ffffff;
    border-radius: 100px;
    padding: 10px 0;
    text-align: center;
    margin-top: 16px;
    font-size: 16px;
    display: block;
  
    /* 以下：スマホでは無効化される */
    position: static;
    left: auto;
    bottom: auto;
    width: auto;
    transform: none;
  }
  
  @media (min-width: 769px) {
    .more_button_sub {
      position: absolute;
      left: 50%;
      bottom: 0%;
      width: 80%;
      transform: translate(-50%, -50%);
    }
  }

/* アクセス */
.map_inner {
    margin-top: 20px;
}

.google_map {
    width: 100%;
}

.copyright_wrapper {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    padding: 10px 0;
}

.map_inner span {
    color: #023e8a;
}

.events_button {
    color: #009e83;
    /* リンク色を目立たせる */
    text-decoration: underline;
    /* 常時下線 */
    text-underline-offset: 3px;
    /* 文字から線の距離 */
    transition: color 0.2s;
    position: relative;
    font-weight: bold;
}

.events_button:hover {
    color: #00695c;
    /* ホバー時に色変化 */
    text-decoration-thickness: 3px;
    /* ホバー時に線を太くしても良い */
    text-decoration-color: #00695c;
    /* 線の色もチェンジ */
}

/* ギャラリー */
#sb_instagram .sb_instagram_header,
.sb_instagram_header {
    padding: 30px 16px 0 26px !important;
}

#sb_instagram #sbi_images {
    padding: 16px !important;
}


/* 施設案内 */
.facility_inner {
    margin-top: 20px;
}

.facility_container {
    padding: 20px 20px 0 20px;
}

.inner_group {
    margin-top: 30px;
    padding: 0 30px;
}

.group_title {
    font-size: 24px;
}

.group_text {
    padding: 10px;
}

.inner_block {
    padding: 20px;
}

.block_title {
    font-size: 22px;
}

.block_content {
    padding: 20px;
    line-height: 30px;
}

.block_img {
    display: flex;
    justify-content: center;
}

.block_img img {
    padding: 10px;
}

.photo-carousel img {
    width: 100%;
    height: 300px;
    /* 高さはお好みで */
    object-fit: cover;
    /* border-radius: 8px; */
    /* 角丸にしたい場合 */
}


/* スライダー */
.photo-carousel .slick-slide {
    aspect-ratio: 1 / 1;
    /* 正方形 */
    display: flex !important;
    /* 中央寄せにも役立つ */
    align-items: center;
    /* 画像を上下中央に */
    justify-content: center;
}

.photo-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 8px;
    お好みで */
}

/* 矢印ボタンのデザイン */
.custom-arrow {
    background: #fff;
    color: #000;
    border: 2px solid #000;
    border-radius: 50%;
    font-size: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.custom-arrow:hover {
    background: #03FFC4;
    color: #fff;
}

/* スライダー本体の横幅調整（必要なら） */
.photo-carousel {
    margin: 0 auto;
    position: relative;
}

/* 左右に余白を作って“画像と矢印が重ならない”ようにする */
.photo-carousel .slick-list {
    margin: 0 60px;
    /* ←矢印ボタンのwidthに合わせて調整 */
}

.slick-prev.custom-arrow {
    left: 0;
}

.slick-next.custom-arrow {
    right: 0;
}


.lending_items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.lending_item {
    width: calc(100% / 3 - 20px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

.lending_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* 利用規約・同意書 */
.conditions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.condition {
    margin-top: 30px;
}

.condition_content {
    font-size: 20px;
    width: 500px;
    color: #000;
    background-color: #D9D9D9;
    padding: 0;
    margin-top: 5px;
}

.condition_content a {
    display: block;
    width: 100%;
    padding: 40px 150px;
    /* padding を a に移す */
    background-color: #D9D9D9;
    color: #000;
    text-decoration: none;
    box-sizing: border-box;
}

.faq_item {
    padding-top: 25px;
    line-height: 24px;
}

/* カレンダー */

/* ↓クラス名付与できたら有効化 */
/* .weekday_sunday {
    background-color: #ffeaea !important;
}

.weekday_saturday {
    background-color: #eaf4ff !important;
} */

.tribe-events-calendar-month__header-column-title-desktop {
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
}

/* 問い合わせ */
.contact-form {
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px;
}

.contact_title {
    font-size: 35px;
    font-weight: bold;
    text-align: center;
}

.contact_form_header {
    text-align: center;
}

.contact-form .form-row {
    display: flex;
    margin-bottom: 20px;
    min-height: 50px;
    font-size: 20px;
}

.contact-form label {
    width: 30%;
    background: #eee;
    padding: 10px;
    font-weight: bold;
    border: 1px solid #ccc;
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.contact-form .required {
    color: red;
    margin-left: 5px;
    margin-top: 1px;
    font-size: 16px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    flex: 1;
    width: 100%;
    height: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    background: #ffffe0;
    /* 薄い黄色 */
}

.contact-form textarea {
    min-height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form [type="submit"] {
    background: #000;
    color: #fff;
    padding: 30px 300px;
    border: none;
    cursor: pointer;
    font-size: 24px;
    text-align: center;
}

.contact-form [type="submit"]:hover {
    opacity: 0.8;
}

.wpcf7-form-control-wrap {
    width: 70%;
}

.contact_text_content {
    min-height: 120px;
}

.submit_button {
    justify-content: center;
    margin-top: 50px;
}

.wpcf7-spinner {
    display: none !important;
}

.wpcf7-response-output {
    background-color: #e0f7fa;
    border: 1px solid #00bcd4;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
    color: #00796b;
    border-radius: 5px;
}

/* お問い合わせページフォーム使用しない場合 */
.contact_page {
    margin-top: 100px;
}

/* 追従ボタン */
.fixed-reserve {
    position: fixed;
    top: 45%;
    right: 0;
    z-index: 9999;
}

.fixed-reserve a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #03FFC4;
    color: #000;
    /* アイコン＆テキスト色 */
    font-weight: bold;
    width: 60px;
    height: 250px;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
}

.fixed-reserve a:hover {
    opacity: 0.8;
}

.fixed-reserve .icon {
    font-size: 1.5rem;
}

.fixed-reserve .text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 20px;
    line-height: 2;
    /* ←ここを大きく */
}

/* カレンダー設定 */
.tribe-common--breakpoint-medium.tribe-events .tribe-events-header--has-event-search {
    width: 100%;
}

.tribe-events .tribe-events-header {
    background-color: #ffffff;
}

.tribe-events .tribe-events-header {
    z-index: auto;
}

/* =============== PC用（768px以上）はナビ常時表示、ハンバーガー非表示 =============== */
.hamburger {
    display: none;
}

.sp_display {
    display: none;
}

@media (min-width: 769px) {
    .nav_wrapper {
        position: static;
        transform: none !important;
        background: none;
        height: auto;
        box-shadow: none;
    }

    .nav_lists {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0;
    }
}



/* レスポンシブ */
@media (max-width: 1200px) {
    .main_visual img {
        height: 70vh;
    }
}


@media (max-width: 1100px) {
    header {
        height: 100px;
    }

    .main_visual,
    .contact {
        margin-top: 100px;
    }

    .main_visual img {
        height: 60vh;
    }

    .header_logo,
    .footer_logo {
        width: 30%;
    }


    .nav_list:first-child a {
        padding: 0;
    }

    .terms_list {
        height: 500px;
    }
}

@media (max-width: 1000px) {
    header {
        height: 96px;
    }

    .main_visual,
    .contact {
        margin-top: 96px;
    }


    .main_visual_font {
        font-size: 180px;
    }

    .nav_list a {
        padding: 14px 12px;
    }

    .fixed-reserve a {
        width: 50px;
        height: 180px;
        border-radius: 20px 0 0 20px;
    }

    .fixed-reserve .text {
        font-size: 18px;
    }

    .contact-form [type="submit"] {
        padding: 20px 200px;
    }


}


@media (max-width: 900px) {
    header {
        height: 83px;
    }

    .main_visual,
    .conatct {
        margin-top: 83px;
    }

    .main_visual_font {
        font-size: 150px;
    }

    .header_wrapper,
    .footer_wrapper {
        padding: 16px;
    }

    .header_logo,
    .footer_logo {
        width: 25%;
    }

    .main_visual img {
        height: 50vh;
    }

    .nav_list a {
        padding: 14px 6px;
    }

    .nav_list img {
        width: 80%;
    }

    .main_visual_text p {
        padding-top: 20px;
    }

    section {
        padding: 60px 30px 30px 30px;
    }

    .section_title {
        font-size: 22px;
    }

    .articles {
        padding-top: 20px;
    }

    .terms_list {
        height: 450px;
    }

    .terms_sub_text {
        height: 80px;
    }

    .more_button {
        margin: 16px auto 0;
    }
}

@media (max-width: 768px) {

    header,
    footer {
        font-size: 16px;
    }

    header {
        height: 71px;
    }

    .header_logo,
    .footer_logo {
        width: 184px;
    }

    .header_logo img,
    .footer_logo img {
        width: 100%;
    }

    .calendar_text {
        display: block;
        padding: 14px;
    }

    .calendar_icon {
        display: none;
    }

    .nav_list a {
        padding: 6px;
    }

    .nav_list:first-child a {
        padding: 6px;
    }

    .main_visual {
        margin-top: 71px;
    }

    .main_visual img {
        height: 100%;
    }

    .main_visual_text {
        font-size: 22px;
    }

    .main_visual_font {
        font-size: 120px;
    }

    section {
        padding: 60px 16px 30px 16px;
    }

    .section_title {
        font-size: 20px;
    }

    .articles {
        padding-top: 0px;
        flex-direction: column;
    }

    .article {
        width: 100%;
    }

    .article_title {
        font-size: 20px;
    }

    .article_date {
        font-size: 16px;
    }

    .article_content {
        margin-top: 16px;
        font-size: 16px;
        line-height: 16px;
    }

    .more_button {
        margin: 12px auto 0;
    }

    .terms_lists {
        flex-direction: column;
    }

    .terms_list {
        width: 100%;
        height: 100%;
        margin-top: 16px;
    }

    .terms_title {
        font-size: 18px;
    }

    .terms_sub_title {
        font-size: 16px;
    }

    .terms_sub_text {
        height: 100%;
        font-size: 14px;
    }

    .facility_container {
        padding: 20px 0 0 0;
    }

    .inner_block {
        padding: 12px;
    }

    .inner_group {
        margin-top: 30px;
        padding: 0;
    }

    .block_title {
        font-size: 18px;
    }

    .block_content {
        padding: 10px;
        line-height: 24px;
        font-size: 14px;
    }

    .group_title {
        font-size: 18px;
    }

    .group_text {
        padding: 6px;
        font-size: 14px;
    }

    .photo-carousel {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }
      .photo-carousel > div {
        width: 100%;
        min-width: 0;
      }
      .photo-carousel img {
        width: 100%;
        height: auto;
        display: block;
        padding: 0;
      }

    .lending_items {
        gap: 10px;
        margin-top: 16px;
    }

    .lending_item {
        width: calc(100% / 2 - 10px);
    }

    .condition_content {
        font-size: 18px;
        width: 250px;
        margin: 0 auto;
    }

    .faq_item {
        font-size: 14px;
    }

    .condition_content a {
        padding: 20px;
    }

    .contact-form {
        padding: 20px 0;
    }

    .contact-form .form-row {
        margin-bottom: 10px;
        min-height: 40px;
        font-size: 16px;
    }

    .contact-form .required {
        margin-left: 3px;
        font-size: 12px;
    }

    .contact-form [type="submit"] {
        padding: 15px 100px;
        font-size: 20px;
    }


}

@media (max-width: 768px) {

    /* =============== スマホ用（768px以下） =============== */
    /* ハンバーガーボタン */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 11001;
        margin-left: auto;
        /* ロゴの隣で右寄せ */
    }

    .hamburger span {
        display: block;
        width: 28px;
        height: 3px;
        margin: 4px 0;
        background: #ffffff;
        border-radius: 2px;
        transition: 0.3s;
    }

    /* メニュー全体 */
    .nav_wrapper {
        position: fixed;
        top: 0;
        right: 0;
        width: 80vw;
        max-width: 150px;
        height: 100vh;
        color: #ffffff;
        background: rgba(0, 0, 0, 0.8);
        transform: translateX(100%);
        transition: .3s;
        z-index: 11000;
        padding-top: 71px;
        display: flex;
        align-items: flex-start;
    }

    .nav_wrapper.active {
        transform: translateX(0);
        z-index: 12000;
        /* 必ずoverlayより上になるように */
    }

    .nav_lists {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin: 0;
        display: flex;
    }

    .nav_list {
        padding: 16px;
        width: 100%;
        text-align: left;
        font-size: 14px;
        border-bottom: 1px solid #eee;
    }

    .nav_list:last-child {
        border-bottom: none;
    }

    .contact_wrapper {
        margin-left: 0px;
    }

    /* スマホナビを隠す時はpointer-events: none */
    .nav_wrapper {
        pointer-events: none;
        /* ...既存のtransform等... */
    }

    .nav_wrapper.active {
        pointer-events: auto;
    }


    /* =============== オーバーレイ（メニューオープン時の背景） =============== */
    .menu_overlay {
        display: none;
    }

    .menu_overlay.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.35);
        z-index: 9999;
        transition: .3s;
    }

}



@media (max-width: 600px) {
    .main_visual_text {
        font-size: 20px;
    }

    .main_visual_font {
        font-size: 100px;
    }

    .sp_display {
        display: block;
    }

    .pc_display {
        display: none;
    }
    

}

@media (max-width: 480px) {
    .main_visual_text {
        font-size: 16px;
        top: 40%;
    }

    .main_visual_font {
        font-size: 60px;
    }

    section {
        padding: 60px 16px 30px 16px;
    }

    .section_title,
    .terms_title,
    .terms_sub_title,
    .article_title {
        font-size: 16px;
    }

    .article_date {
        font-size: 14px;
        padding-top: 8px;
    }

    .terms_sub_text {
        font-size: 14px;
    }

    .fixed-reserve a {
        width: 40px;
        height: 150px;
        border-radius: 15px 0 0 15px;
    }

    .fixed-reserve .text {
        font-size: 16px;
    }

    .contact-form .form-row {
        margin-bottom: 10px;
        font-size: 14px;
        display: block;
    }

    .contact-form label {
        width: 100%;
        margin-bottom: 6px;
        margin-right: 0;
    }

    .submit_button {
        margin-top: 30px;
        text-align: center;
    }

}