@charset "UTF-8";
html{
    background: url(../img/cmn/op_bg.webp) repeat-y center / 100% auto;
}
body.bg_change{
    background: rgba(31,27,23,0);
}
/* ==========================================================================
  FV
========================================================================== */
.sec_fv{
    position: relative;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    margin-bottom: 10vh;/*グラデーション用のスペース*/
}
.art_fv {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
}
.fv_video{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
}
.fv_logo_wrap{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fv_logo img {
    width: min(55vw, 342px);
    filter: drop-shadow(0px 0px 6px rgba(255, 220, 107, 1));
}
/*グラデーション*/
.sec_fv::after{
    content: "";
    position: absolute;
    bottom: -10vh;
    left: 0;
    width: 100vw;
    z-index: 2;
    display: block;
    height: 20vw;
    background: url(../img/top/bg_about_fade.webp) no-repeat center / 100% 100%;
}
/* ==========================================================================
  fv_copy
========================================================================== */
.fv_copy_wrap {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 85%;
    width: calc(calc(100vw - min(75vw, 342px)) / 2);
}
.fv_copy {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    font-size: min(6vw,28px);
    line-height: 1.8;
    margin: min(5vw,50px) 0 0 0;
}
.fv_wagumo {
    margin-left: -90px;
    filter: drop-shadow(0 0 6px #ffdc6b);
}
@media screen and (max-width: 768px) {
    .fv_copy_wrap {
        width: 100vw;
        height: auto;
        text-align: center;
        bottom: calc(50vh + calc(min(75vw, 342px) / 2));
        justify-content: flex-end;
    }
 .fv_copy{
        -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    }
.fv_wagumo {
    margin-left: 6%;
    margin-right: auto;
}
.fv_wagumo img {
        width: min(20vw, 180px);
}
}

/* ==========================================================================
  FVお知らせ
========================================================================== */
article.art_fvnews {
    position: absolute;
    z-index: 3;
    bottom: min(5vw, 40px);
    right: min(5vw, 40px);
    color: #fff;
}
.f_news_head_wrap {
    margin-bottom: min(2vw, 15px);
}
.f_news_flextime {
    margin-bottom: 10px;
}
.f_news_list {
    line-height: 1;
    max-width: 280px;
}
.f_news_txt {
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.f_news_detail_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.f_news_detail_wrapper.is-active {
    display: flex !important;
}
.f_news_detail_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
.f_news_detail_content {
    position: relative;
    background: #fff;
    width: min(90%,1080px);
    padding: min(5vw,30px);
    border-radius: 8px;
    box-sizing: border-box;
    height: 80vh;
    color: #1f1b17;
    overflow-y: auto;
}
.f_news_listtime {
    margin-bottom: 1em;
    display: block;
    font-size: 85%;
}
.f_news_detail_content .news_ttl {
    margin-bottom: 1em;
}
/* 閉じるボタン */
.f_news_detail_close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
h3.f_news_ttl {
    margin-bottom: 11px;
}
@media screen and (max-width: 768px) {
.f_news_list {
    max-width: none;
    width: 90vw;
}
.f_news_listlink {
    display: flex;
    gap: 1em;
}
}
/* ==========================================================================
   項目タイトル ＆ スクロールライト演出
   ========================================================================== */
.sec_ttl_wrap {
    text-align: center;
    margin-bottom: 60px;
}
.sec_ttl_wrap .eng {
    color: #a8442e;
    font-size: min(8vw, 30px);
    margin-top: 15px;
}
.scroll_light {
    position: relative;
    width: 1px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
}
.scroll_light::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 15px 6px rgba(255, 255, 255, 0.8);
    animation: dropLight 3000ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes dropLight {
    0% {
        top: 0;
        opacity: 0;
        width: 0;
        height: 0;
    }
    15% {
        width: 8px;
        height: 8px;
        opacity: 1;
    }
    85% {
        width: 8px;
        height: 8px;
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
        width: 0;
        height: 0;
    }
}
/* ==========================================================================
  ABOUT
========================================================================== */
.sec_about {
    position: relative;
}
.about_inr {
    width: 100%;
    position: relative;
    z-index: 2;
    padding:150dvh 0 190px;
    transition: all ease 300ms;
}
.art_about {
    position: relative;
    width: min(90%, 1200px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about_bg {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: url(../img/top/bg_about.webp) no-repeat top center;
}
:where(.about_bg).widewindow {
    aspect-ratio:200/107;
    background-size: 100% auto;
}
:where(.about_bg).tallwindow {
    height: 100vh;
    height: 100dvh;
    background-size: auto 100%;
}
:where(.reach_about).about_bg {
    background-attachment: fixed;
    background-position: bottom;
    height: 100%;
    aspect-ratio: auto;
}
@media (max-width:640px){
.about_bg {
    background-position: bottom left;
    background-size: cover;
    background-attachment: inherit;
        height: 100vh;
        height: 100dvh;
}
.reach_about.about_bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all ease 500ms;
}
.about_inr{
    padding-top: 100dvh;
}
.about_bg.vanish {
    opacity: 0;
}
}

.about_text_block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    max-height: 480px;
    margin: 0 auto;
    color: #fff;
}
.about_main_ttl {
    font-size: min(6.5vw, 32px);
    font-weight: normal;
    line-height: 1.4;
    margin-left: min(6vw, 100px);
}

.about_sub_ttl {
    font-size: min(5vw, 24px);
    font-weight: normal;
    line-height: 1.5;
    margin-left: min(5vw, 40px);
}

.about_txt {
    line-height: 260%;
}

/* ==========================================================================
   背景装飾の和雲パーツ（絶対配置）
   ========================================================================== */
.cloud_deco {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}
.cloud_deco img {
    width: min(15vw, 120px);
    -webkit-filter: drop-shadow(0 0 8px #ffdc6b);
    filter: drop-shadow(0 0 8px #ffdc6b);
}
.cloud_deco.cloud_left {
    top: 120px;
    left: 5%;
}
.cloud_deco.cloud_right {
    bottom: 80px;
    right: 5%;
}
@media (min-width: 641px) {
.about_text_block {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    }
}
@media (max-width: 640px) {
    .about_text_block {
        max-height: none;
        padding: 0;
        text-align: center;
    }
    .about_main_ttl,
    .about_sub_ttl {
        margin-left: 0;
    }
    .about_main_ttl{
        margin-bottom: 40px;
    }
    .about_sub_ttl {
        margin-bottom: 20px;
    }
    .cloud_deco.cloud_left {
        top: 40px;
        left: 2%;
    }
    .cloud_deco.cloud_right {
        bottom: -40px;
        right: 2%;
    }
}

/* ==========================================================================
   sec_event
   ========================================================================== */
.sec_event {
    width: 100%;
    padding: 100px 0 min(20vw, 100px);
    color: #fff;
}
.art_event {
    z-index: 2;
}
.event_list {
    position: relative;
    z-index: 3;
}
.event_item {
    position: relative;
    margin-bottom: 150px;
}
.event_item:last-child {
    margin-bottom: 0;
}
.event_iteminr{
    width: min(90vw, 1260px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: min(10vw, 60px);
    position: relative;
    z-index: 3;
}
@media (min-width: 961px) {
.event_item:nth-of-type(2n) .event_iteminr {
    flex-direction: row-reverse;
}
.event_item:nth-of-type(2n) .event_img_deco{
    left: -5vw;
    right: auto;
    transform: rotate(180deg);
}
}
.event_txt_block {
    width: 40.5%;
    padding-left: 3.5%;
}
.event_img_block {
    width: 56%;
    position: relative;
}
.event_imgcaption{
    position: absolute;
    line-height: 1;
    font-size: min(3vw,12px);
    bottom: min(2vw,10px);;
    right: 5px;
}
.cloud_deco.event_cloud {
    position: relative;
    margin: 0 0 90px;
    margin-left: -5%;
}
.event_ttl {
    font-size: min(7vw, 40px);
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: 55px;
    min-height: 124px;
}
.event_sub {
    border-left: 2px solid #857f6f;
    font-size: min(5vw,22px);
    padding-left: min(4vw,20px);
    margin-bottom: 25px;
}
.event_detail:not(:last-child){
    margin-bottom: 60px;
}
span.eventday {
    font-size: min(2.4em,42px);
}
.event_date {
    margin-bottom: 10px;
    line-height: 1.3;
}
.event_detail dl {
    display: flex;
    flex-wrap: wrap;
    font-size: min(3.5vw,16px);
    line-height: 1.8;
    margin-bottom: 12px;
}
.event_detail dt {
    color: #9fa1aa;
    width: 55px;
}
.event_detail dd {
    width: calc(100% - 55px);
}
.event_detail dd a {
    text-decoration: underline;
}
.event_detail dd a:hover {
    color: #857f6f;
}
.event_txt {
    font-size: 14px;
    line-height: 1.7;
}
.event_category {
    display: flex;
    flex-wrap: wrap;
    color: #857f6f;
    gap:4px;
    margin: 12px 0 0;
}
.event_category li {
    font-size: 14px;
    line-height: 1;
    border: 1px solid;
    border-radius: 3px;
    padding: 6px;
}
.event_pagelink {
    margin-top: 30px;
}
.event_pagelink a {
    line-height: 1;
    display: flex;
    align-items: center;
    gap:8px;
    font-size: 18px;
}
.event_pagelink a::after{
    content: "";
    display: block;
    width: 105px;
    height: 1px;
    background: #9fa1aa;
    transition: all ease 300ms;
}
.event_pagelink a:hover::after {
    flex: 1;
}
.event_img_deco {
    color: #857f6f;
    position: absolute;
    right: -5%;
    width: 5%;
    height: 100%;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-size: min(4vw,22px);
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 960px) {
.event_iteminr {
    flex-direction: column-reverse;
}
.event_txt_block, .event_img_block {
    width: 100%;
}
.event_ttl {
    min-height: auto;
    margin-bottom: 25px;
}
.event_date {
    font-size: 13px;
}
.event_img {
    max-width: 700px;
    margin: 0 auto;
}
.cloud_deco.event_cloud {
    position: absolute;
    right: 0;
}
}
/* ==========================================================================
   GALLERY セクション全体 ＆ 指定グラデーション擬似要素
   ========================================================================== */
.sec_gallery {
    width: 100%;
    padding: min(30vw, 280px) 0 min(30vw, 220px);
    position: relative;
    overflow: hidden;
}
.gallery_inr {
    width: 100%; /* スライダーを画面いっぱいに流すためinrは100%に */
}

.gallery_ttl_area {
    width: min(90%, 1200px);
    margin: 0 auto min(8vw, 60px);
    text-align: center;
}
.gallery_ttl {
    color: #b15236;
    font-size: min(4vw, 26px);
    letter-spacing: 0.15em;
}

/* ===   背面の和雲画像（上下に絶対配置）========= */
.gallery_bg_cloud {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}
.glcloud_left {
    width: min(45vw, 400px);
    height: min(35vw, 300px);
    bottom: 0;
    left: 0;
    background-image: url('../img/top/gl_cloudR.webp');
    background-position: left bottom;
}
.glcloud_right {
    width: min(50vw, 450px);
    height: min(40vw, 350px);
    top: 10vw;
    right: 0;
    background-image: url('../img/top/gl_cloudL.webp');
    background-position: right top;
}

/* ==========================================================================
   Slick スライダー構造調整
   ========================================================================== */
.gallery_slider_wrap {
    position: relative;
    z-index: 2;
    width: 100%;
}
/* 画像間の余白設定 */
.gallery_slider .slide_item {
    padding: 0 min(1vw, 10px);
}
.gallery_slider .slide_item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3 / 4; /* デザインの縦長比率に統一 */
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.gallery_slider .slide_item img:hover {
    opacity: 0.8;
}

/* ==========================================================================
   モーダルウインドウ ＆ 全画面ブラー背景
   ========================================================================== */
.modal_slider {
    width: 100%;
    margin: 0 auto;
}

.modal_slide_item {
    outline: none;
}

.modal_img_box img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto;
}

.modal_caption {
    color: #ffffff;
    font-size: min(4vw, 18px);
    margin-top: 20px;
    text-align: center;
    line-height: 1.4;
}

.gallery_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex !important;
    opacity: 0;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    transition: opacity 300ms ease, visibility 200ms ease;
}
.gallery_modal.ModalOn {
    opacity: 1;
    visibility: visible;
}
/* 展開時用の背景画像ブラーレイヤー */
.modal_blur_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(25px) brightness(0.5);
    transform: scale(1.1);
    z-index: 1;
}

/* 中央コンテンツコンテナ */
.modal_container {
    position: relative;
    z-index: 10;
    width: min(90%, 520px); /* ポップアップ画像の適正最大幅 */
    text-align: center;
}
.modal_container .slick-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    list-style: none;
    padding: 0;
}
.modal_container .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 6px;
    height: 6px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}
.modal_container .slick-dots li.slick-active button {
    background: #ffffff;
}
.modal_content img {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* 右上：閉じるボタン（朱赤の正方形） */
.modal_close_btn {
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: #b15236;
    color: #ffffff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transform: rotate(90deg);
    transition: background-color 0.2s;
}
.modal_close_btn .bar {
    display: block;
    width: 25px;
    height: 1px;
    background-color: #ffffff;
}
.modal_close_btn .bar_1 {
    transform: translateY(9px) rotate(35deg);
}
.modal_close_btn .bar_2 {
    opacity: 0;
}
.modal_close_btn .bar_3 {
    transform: translateY(-9px) rotate(-35deg);
}
.modal_close_btn:hover {
    background-color: #964128;
}

/* デザイン再現用：左右矢印 ＆ インジケーター */
.modal_nav_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav_prev { left: max(-70px,-4vw); }
.nav_next { right: max(-70px,-4vw); }
.modal_nav_btn.nav_prev img {
    transform: rotate(-135deg);
}
.modal_nav_btn.nav_next img {
    transform: rotate(45deg);
}
.modal_dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}
.modal_dots span {
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}
.modal_dots span.active {
    background-color: #ffffff;
}


/* ==========================================================================
   SCHEDULE セクション全体
   ========================================================================== */
.sec_schedule{
    width: 100%;
    padding: 0 0 min(20vw, 120px);
    position: relative;
    overflow: hidden;
}
.schedule_wrap{    
    width: min(100vw, 1300px);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.schedule_scroll {
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
    padding: min(8vw, 60px) min(10vw, 150px);
    overflow: scroll;
}
.schedule_img {
    width: min(180vw, 1046px);
    margin: 0 auto;
}
.schedule_img img {
    width: 100%;
    height: auto;
}
.sc_cloudR {
    position: absolute;
    top: -2%;
    right: 6%;
}
.sc_cloudL {
    position: absolute;
    bottom: -3%;
    left: 8%;
}
.sc_cloud img {
    width: min(20vw, 120px);
}
/* ==========================================================================
   ACCESS セクション全体
   ========================================================================== */
.sec_access {
    width: 100%;
    padding: 0 0 80px;
    color: #ffffff;
}

/* ==========================================================================
   MAP
   ========================================================================== */
.art_map {
    width: 100vw;
    overflow-x: scroll;
    overflow-y: hidden;
    margin-bottom: 90px;
    
}

.map_point {
    position: absolute;
    width:min(6.43vw,36px);
    aspect-ratio: 36 / 51;
    cursor: pointer;
    z-index: 5;
    filter: drop-shadow(0 0 0 rgba(248,182,45,1));
    transition: all ease 300ms;
}
.map_point:hover{
    filter: drop-shadow(0 0 5px rgba(248,182,45,1));
}
.map_point img {
    width: 100%;
}
#point01 {
    top: min(71.428vw,400px);
    left: min(85.71vw,480px);
}
#point02 {
    top: min(69.65vw,390px);
    left: min(82.143vw,460px);
    z-index: 4;
}
#point03 {
    top: min(84.822vw,475px);
    left: min(78.58vw,440px);
}
#point04 {
    top: min(61.6vw,345px);
    left: min(139.28vw,780px);
}
#point05 {
    top: min(19.65vw,110px);
    left: min(201.8vw,1130px);
}
#point06 {
    top: min(105.36vw,590px);
    left: min(59.65vw,334px);
}
#point07 {
    top: min(69.65vw,390px);
    left:min(26.756vw,150px);
}
.map_detail {
    width: min(39.3vw, 220px);
    background: #fff;
    border-radius: 5px;
    color: #1f1b17;
    font-size: min(3.5vw, 16px);
    line-height: 1.4;
    padding: min(2.86vw, 16px);
    transition: all ease 300ms;
    opacity: 0;
    transform: translateY(min(9vw, 50px));
    visibility: hidden;
    position: absolute;
    z-index: 6;
}
.map_detail.open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
#detail01 {
    top: min(19.82vw, 111px);
    left: min(69.29vw, 388px);
}
#detail02 {
    top: min(17.86vw, 100px);
    left: min(65.54vw, 367px);
}
#detail03 {
    top: min(33vw, 185px);
    left: min(62.32vw, 349px);
}
#detail04 {
    left: min(122.86vw, 688px);
    top: 0;
}
#detail05 {
    left: min(185.36vw, 1038px);
    top: min(32.14vw, 180px);
}
#detail05::after {
    transform: rotate(180deg);
    top: max(-19px, -3.4vw);
    bottom: auto;
}
#detail06 {
    top: min(53.04vw, 297px);
    left: min(43.21vw, 242px);
}
#detail07 {
    top: min(10.18vw, 57px);
    left: min(10.36vw, 58px);
}
.map_inr {
    width: min(250vw, 1400px);
    position: relative;
    margin: 0 auto;
}
.map_pointlist_wrap {
    position: absolute;
    width: 100%;
    height: 100%;
}
.map_pointlist {
    position: relative;
    width: 100%;
    height: 100%;
}
.map_detail::after {
    content: "";
    display: block;
    width: min(3.572vw,20px);
    height: min(3.572vw,20px);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
    bottom: max(-19px,-3.4vw);
}
.m_d_name {
    font-weight: normal;
    font-size: min(3.1vw, 16px);
    margin-bottom: min(0.9vw,5px);
}
.m_d_close {
    position: absolute;
    width: min(4.46vw,25px);
    height: min(4.46vw,25px);
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
    z-index: 4;
}
.m_d_close::before,
.m_d_close::after {
    content: "";
    width: 72%;
    height: 1px;
    background: #857f6f;
    display: block;
    transform-origin: center;
    position: absolute;
}
.m_d_close::before{
    transform: rotate(45deg);
}
.m_d_close::after{
    transform: rotate(-45deg);    
}

.m_d_name {
    font-weight: normal;
}
.m_d_subname {
    color: #857f6f;
    font-size: min(3.0vw, 14px);
    text-decoration: underline;
}
.m_d_img {
    margin-top: min(1.8vw,10px);
}
.map {
    margin: 0 auto;
    width: 100%;
}
.map img {
    width: 100%;
}
/* ==========================================================================
   ACCESS
   ========================================================================== */
.access_inr {
    width: min(90%, 1000px); /* 横幅上限を制限 */
    margin: 0 auto;
}

.access_list {
    display: flex;
    flex-direction: column;
}

/* 各アクセスの行（PC時は横並び、境界線で区切る） */
.access_item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px 0;
}
.access_name_block {
    width: 30%;
    padding-right: 20px;
}

.access_title {
    font-size: min(5vw, 24px);
    line-height: 1.5;
    font-weight: normal;
    margin-bottom: 0;
}
.access_official_link a {
    font-size: 12px;
    letter-spacing: 0.05em;
    opacity: 0.5;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.access_official_link a:hover {
    opacity: 0.9;
}
.access_detail_block {
    width: 70%;
}
.access_address {
    font-size: 16px;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}
.access_info_sub {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.access_info_sub li {
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    padding-left: 16px;
    text-align: justify;
}

.access_info_sub li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
}
@media (max-width: 640px) {
    .sec_access {
        padding: 50px 0;
    }
    .access_item {
        flex-direction: column;
        gap: 15px;
        padding: 30px 0;
    }
    .access_name_block,
    .access_detail_block {
        width: 100%;
        padding-right: 0;
    }

    .access_title {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .access_official_link {
        margin-bottom: 5px;
    }

    .access_address {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .access_info_sub li {
        font-size: 13px;
    }
}

/* ==========================================================================
   NEWS セクション全体
   ========================================================================== */
.sec_news {
    width: 100%;
    padding: 100px 0 min(30vw, 200px);
    color: #ffffff;
}

.news_inr {
    width: min(100%, 1400px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: min(5vw, 60px);
}
.news_movie_block {
    width: 45%;
}

.movie_wrapper {
    position: relative;
    width: 100%;
    /* 正方形の動画アスペクト比を維持するための指定 */
    aspect-ratio: 1 / 1; 
    overflow: hidden;
    background-color: #262220; /* 読み込み前のマスク用背景 */
}

.movie_wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 領域いっぱいに動画をフィット */
    vertical-align: bottom;
}
.news_content_block {
    width: 50%;
    position: relative;
    padding-right: 5%;
}

/* タイトル ＆ 和雲エリア */
.news_ttl_area {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.news_ttl {
    color: #a8442e;
    font-size: min(7vw, 30px);
    line-height: 1.2;
}
.news_cloud {
    right: 0;
}
.news_list {
    display: flex;
    flex-direction: column;
}

.news_item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15); /* 区切り線 */
    padding: min(7vw,25px) 0;
}

.news_item a {
    display: block;
    overflow: unset;
}
.news_item a:hover {
}
.news_meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: min(1.5vw,12px);
}
.news_dot {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 12px 0px rgba(255, 220, 107, 0.8);
    transition: all ease 300ms;
}

.news_item a:hover .news_dot {
    box-shadow: 0 0 12px 5px rgba(255, 220, 107, 0.8);
}

.news_date {
    font-size: 18px;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

/* カテゴリタグ */
.news_cat {
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #857f6f;
    border-bottom: 1px solid;
    padding-bottom: 1px;
    line-height: 1.2;
}

/* 記事タイトル */
.news_item_ttl {
    font-size: 16px;
    line-height: 1.6;
    padding-left: 21px;
    text-align: justify;
}

.news_archive_link {
    text-align: right;
    margin-top: 40px;
}

.news_archive_link a {
    font-size: 15px;
    letter-spacing: 0.15em;
    position: relative;
    display: inline-block;
    padding-right: min(12vw, 100px);
}

.news_archive_link a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: min(10vw, 80px);
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 640px) {
    .sec_news {
        padding: 60px 0;
    }
    .news_inr {
        flex-direction: column;
        gap: 40px;
    }
    .news_movie_block,
    .news_content_block {
        width: 100%;
    }
    .news_content_block{
        padding-left: 5%;
    }
}
/* ==========================================================================
   CONTACT 
   ========================================================================== */
.sec_contact {
    width: 100%;
    padding: 100px 0;
    color: #ffffff;
    interpolate-size: allow-keywords;
}
.contact_inr {
    width: min(90%, 1000px);
    margin: 0 auto;
}
.contact_ttl_wrap {
    background-color: #a8442e;
    width: min(100%, 650px);
    margin: 0 auto 50px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all ease 300ms;
    border: 1px solid #a8442e;
}
.contact_ttl_wrap:hover {
    background: rgba(31, 27, 23, 1);
    border-color: #fff;
}
.contact_ttl_wrap .eng {
    font-size: 30px;
    margin-bottom: 5px;
}

.contact_ttl_wrap p {
    font-size: 16px;
}
.contact_form_box {
    background-color: #35322e;
    padding: 0 min(6vw, 50px);
    transition: all ease 500ms;
    height: 0;
    overflow: hidden;
}
:where(.contact_open) .contact_form_box {
    height: auto;
    padding-top: min(8vw, 60px);
    padding-bottom: min(8vw, 60px);
}
.form_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.form_row.row_privacy,
.form_row:has(textarea) {
    align-items: flex-start;
}
.form_label_area,
.form_label_area_top {
    width: 28%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
    font-size: min(4vw,18px);
    letter-spacing: 0.05em;
}
.form_label_area_top {
    padding-top: 12px;
}
.badge_required {
    font-size: 14px;
    background-color: transparent;
    border: 1px solid;
    color: #857f6f;
    padding: 6px 10px;
    border-radius: 2px;
    letter-spacing: 0px;
    font-weight: normal;
    line-height: 1;
}
.form_input_area {
    width: 72%;
}

.contact_form input[type="text"],
.contact_form input[type="email"],
.contact_form input[type="tel"],
.contact_form select,
.contact_form textarea {
    color: #333333;
    border-radius: 6px;
    border: none;
    font-size: 15px;
    padding: 14px 18px;
}
.select_wrap {
    position: relative;
}
.select_wrap select {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}
.select_wrap::after {
    content: "▼";
    font-size: 11px;
    color: #b15236;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.privacy_policy_text {
    border: 1px solid;
    border-radius: 6px;
    padding: 20px;
    height: 150px;
    overflow: scroll;
    font-size: 14px;
    line-height: 1.8;
    background-color: transparent;
}
.form_submit_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-left: 28%; /* ラベルエリアの幅と揃える */
}

/* チェックボックス全体のカスタム */
.wpcf7-list-item label {
    display: flex !important;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
}
/* 標準のチェックボックスを隠す */
input[type="checkbox"].custom_checkbox {
  padding: 0;
  outline: none;
  background: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%; /* 正円にする */
    position: relative;
    transition: background-color 0.2s, border-color 0.2s;
}

/* チェックが入った時の擬似要素（内側の白い点） */
.wpcf7-list-item label .custom_checkbox:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
}
.wpcf7-not-valid-tip {
    background: #f00 !important;
    color: #fff !important;
}
/* 送信ボタンのラッパー */
.submit_btn_wrap {
    width: min(100%, 200px);
}
/* 送信ボタン（共通CSSのappearance: buttonを上書き・調整） */
.form_submit_btn {
    width: 100%;
    background-color: #b15236;
    color: #ffffff;
    border: none;
    padding: 16px min(4vw, 40px);
    font-size: 16px;
    letter-spacing: 0.1em;
    cursor: pointer;
    text-align: center;
    transition: opacity 0.3s ease;
}
.form_submit_btn:hover {
    opacity: 0.8;
}
@media (max-width: 640px) {
    /* 各行をすべて縦並びにする */
    .form_row {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 25px;
    }
    
    .form_row.row_privacy,
    .form_row:has(textarea) {
        align-items: flex-start;
    }

    /* ラベルと入力欄をそれぞれ100%幅に */
    .form_label_area,
    .form_label_area_top,
    .form_input_area {
        width: 100%;
        padding-right: 0;
    }

    .form_label_area {
        margin-bottom: 10px;
        padding-right: 0;
    }
    .form_label_area_top {
        margin-bottom: 10px;
        padding-top: 0;
    }

    /* 下部エリアも縦並びにして中央揃えにする */
    .form_submit_area {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding-left: 0;
        margin-top: 30px;
    }

    .submit_btn_wrap {
        width: 100%; /* スマホ時はボタンを横いっぱいに広げる */
    }
}