@charset "UTF-8";
body,
html {
    margin: 0;
    padding: 0;
    font-family: "Zen Kaku Gothic New", sans-serif;
    overflow-x: hidden;
    font-weight: 400;
}

body.loading {
    overflow: hidden;
    height: 100%;
}

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

figure {
    margin: 0
}

picture img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

li {
    display: inline;
    margin: 0 auto;
}

a:focus {
    outline: none;
    /* マウスクリック時には枠を出さない */
}

#header {
    position: fixed;
    top: -160px;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    transition: top 0.8s ease-in-out, opacity 0.8s ease, transform 0.8s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px 0;
}

#header.show {
    top: 0;
    opacity: 1;
    transform: translateY(0);
}


/* ヘッダー内ナビゲーション配置 */

.header-navi {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: left;
    /* ←縦方向中央揃え */
    box-sizing: border-box;
    height: 20px;
    /* ヘッダー高さ */
    background-color: #fff;
    /* 必要なら背景色 */
}

.header-logo img {
    display: block;
    max-height: 55px;
    width: auto;
    margin: 0;
    /* 微調整：少し上にずらす */
    transform: translateY(-27px);
}


/* ハンバーガー本体 */

#hamburger {
    position: fixed;
    top: 13px;
    right: calc((100vw - 750px)/2 + 15px);
    /* 750px幅基準で右端から15px */
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    z-index: 1002;
}

#hamburger.show {
    opacity: 1;
    transform: translateY(0);
}


/* 3本線 */

#hamburger span {
    display: block;
    width: 35px;
    height: 2px;
    background-color: #406175;
    transition: all 0.3s ease;
    transform-origin: center center;
    /* ← これで中央回転 */
}

#hamburger span:nth-child(2) {
    margin: 0;
    /* gapは親flexで管理 */
}


/* ホバー時 */

#hamburger:hover {
    background-color: #FFF;
}

#hamburger:hover span {
    background-color: #406175;
}


/* クリックで × に変形 */

#hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
}

#hamburger.active span:nth-child(2) {
    opacity: 0;
    /* 中央線非表示 */
}

#hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(45deg);
}

.sp-nav {
    z-index: 30;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #FFF;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    overflow-y: auto;
    overflow-x: hidden;
    transition: transform .9s ease-in-out, opacity .9s ease-in-out;
    box-sizing: border-box;
    padding-top: 2em;
    padding-bottom: 2em;
}

.sp-nav.toggle {
    transform: translateY(0);
}


/* SPナビ内ヘッダー（ロゴ中央配置） */

.sp-nav-header {
    padding: 2em;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    /* 上下中央揃え */
}


/* ロゴ画像 */

.header-svg {
    display: block;
    width: 100%;
    max-width: 100px;
    height: auto;
    margin: 0 auto;
    /* 上下中央は親flexで調整済み */
    margin-bottom: 2em;
}


/* =========================================
   SPナビゲーション（文字リンクと罫線調整版）
========================================= */

.sp-nav ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.sp-nav li {
    width: 350px;
    text-align: center;
    box-sizing: border-box;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: .1em;
    background-color: transparent;
    position: relative;
    padding: 1.2em 0;
    /* 天地の余白を少し増やす */
}


/* リンク文字 */

.sp-nav li a {
    display: block;
    padding: 0;
    color: #406175;
    /* 元の色に戻す */
    text-decoration: none;
}


/* ホバー時の文字色は変更可 */

.sp-nav li a:hover {
    color: #406175;
}


/* ▼ 友だち追加ボタン ▼ */

.sp-nav li a.btn {
    display: inline-block;
    width: 300px;
    padding: 1.3rem 0;
    text-align: center;
    border-radius: 30px;
    background-color: #e9473f;
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: .1em;
    text-decoration: none;
    margin: 1.5em 0;
    /* 上下の余白を広めに */
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}


/* ボタンホバー */

.sp-nav li a.btn:hover {
    background-color: #fff;
    color: #e9473f;
}


/* ボタンには罫線を出さない */

.sp-nav li a.btn::after {
    display: none;
}


/* ▼ 閉じるボタン ▼ */

.sp-nav .close {
    font-size: 1em;
    color: #406175;
    padding: 20px 0;
    cursor: pointer;
    text-align: center;
    margin-top: 1.5em;
    /* 上下の余白を少し増やす */
    width: 300px;
    border-radius: 30px;
    background: transparent;
    border: 1px solid #999;
}


/* 閉じるボタンホバー */

.sp-nav .close:hover {
    background: #406175;
    color: #fff;
}

.sp-nav li:not(:last-child):not(.no-line)::after {
    content: "";
    display: block;
    width: 300px;
    /* 線の長さ */
    height: 1px;
    background-color: #999;
    margin: 2em auto 0 auto;
    /* 上下の余白で中央に配置 */
}


/* ボタン・閉じるは罫線なし */

.sp-nav li.no-line::after {
    display: none;
}


/* first-view を全画面かつ上寄せに */

.first-view {
    width: 100%;
    height: auto;
    /* 画像の縦横比を維持 */
}

.first-view picture,
.first-view img {
    width: 100%;
    height: auto;
    max-height: 100vh;
    object-fit: contain;
    /* 天地切れずに表示 */
    display: block;
    margin: 0 auto;
}

.event-info {
    display: flex;
    align-items: center;
    /* ✅ 縦位置中央（天地センター） */
    justify-content: flex-start;
    /* ✅ 左寄せ */
    gap: 20px;
    /* 丸とテキストの間隔 */
    flex-wrap: nowrap;
    /* ✅ スマホでも折り返さない */
    text-align: left;
    margin: 20px auto;
    max-width: 1080px;
    /* ページ幅に合わせて中央寄せ */
}

.event-circle {
    background-color: #e5dacf;
    color: #406175;
    font-weight: 700;
    font-size: 1.3em;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    text-align: center;
    flex-shrink: 0;
    /* ✅ 小さい画面でつぶれないように固定 */
}

.event-text {
    font-size: 1.2em;
    color: #406175;
    line-height: 1.5;
    letter-spacing: 0.1em;
	font-weight: 500;
}


/* 横並びを基本にする */

.title-wrap {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.highlight-box {
    max-width: 750px;
    width: 100%;
    /* 幅を固定 */
    background-color: #54BEBB;
    /* 背景色 */
    color: #ffffff;
    /* 文字色 */
    padding: 1em 1em;
    /* 内側余白 */
    border-radius: 0.9em;
    /* 角丸 */
    font-weight: 500;
    /* 太字 */
    text-decoration: none;
    /* 下線なし */
    letter-spacing: .12em;
    /* 文字間 */
    font-size: 1.5em;
    /* 文字サイズ */
    text-align: left;
    /* 左揃え */
    margin: 0 auto;
    /* ページ中央に配置 */
}

.marker {
    position: relative;
    /* 擬似要素の基準 */
    display: inline-block;
}

.border-radius-m {
    border-radius: 1.5em;
}

.marker::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 0.25em;
    border-radius: 0.5em;
    transition: width 1.5s ease;
    z-index: -1;
}


/* 個別カラー */

.marker-gold::after {
    background-color: #e5dacf;
}

.marker-red::after {
    background-color: #e9473f;
}

.marker-beige::after {
    background-color: #FEF4DD;
}

.marker.on::after {
    width: 100%;
}


/* バッジ */

.custom-slider {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}


/* 各スライド要素 */

.custom-slider-slide {
    display: block;
    margin: 0;
    padding: 0;
}


/* 画像設定 */

.custom-slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* contain → cover に変更（隙間防止） */
    display: block;
}


/* slickが付与するスライドに隙間を作らせない */

.custom-slider .slick-slide {
    margin: 0 !important;
    padding: 0 !important;
}


/* slick-track もゼロ間隔で配置 */

.custom-slider .slick-track {
    display: flex !important;
    gap: 0 !important;
}


/* Slick固有のスタイル調整 */

.slick-slide {
    outline: none;
}

.slick-track {
    display: flex;
    gap: 0;
}

.slick-list {
    position: relative;
    overflow: visible;
}


/* ドット（ページネーション）のカスタマイズ */

.slick-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 0;
    font-size: 0;
}

.slick-dots li.slick-active button {
    background: rgba(255, 255, 255, 1);
}


/* 矢印（前後ボタン）のカスタマイズ */

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10;
    font-size: 0;
}

.slick-prev:hover,
.slick-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slick-prev {
    left: 15px;
}

.slick-next {
    right: 15px;
}

.slick-prev::before {
    content: '❮';
    color: white;
    font-size: 20px;
}

.slick-next::before {
    content: '❯';
    color: white;
    font-size: 20px;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #f0f0f0;
    margin: 0 auto
}

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

.free-badge {
    background-color: #FBCA55;
    color: #fff;
    font-weight: 700;
    border-radius: 20px;
    padding: 15px 35px;
    font-size: 1.8em;
    letter-spacing: 0.2em;
    display: inline-flex;
    /* ← inline-flexに変更 */
    align-items: center;
    /* 縦方向中央揃え */
    justify-content: center;
    /* 横方向中央揃え */
    white-space: nowrap;
    line-height: 1;
    /* 余計な上下スペースをなくす */
}

.free-badge-line {
    background-color: #fff;
    color: #06c755;
    border-radius: 10px;
    padding: 15px 35px;
    font-size: 1.3em;
    font-weight: 500;
    letter-spacing: 0.2em;
    display: block;
    /* ← inline-flexに変更 */
    margin: 0 auto;
    max-width: 350px;
    align-items: center;
    /* 縦方向中央揃え */
    justify-content: center;
    /* 横方向中央揃え */
    line-height: 1.3em;
    /* 余計な上下スペースをなくす */
}

.free-badge-cam {
    width: 100%;
    max-width: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e5dacf;
    color: #406175;
    border-radius: 10px;
    padding: 20px 40px;
    font-size: 1.4em;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.3em;
    box-sizing: border-box;
}

.feature-image {
    width: 100%;
    /* free-badge-camと同じ幅に */
    border-radius: 10px;
    /* ✅ 同じ角丸 */
    margin-top: 10px;
    /* 少し余白を空ける */
    display: block;
    object-fit: cover;
    /* 画像の比率を保ちつつ切り取り */
    height: auto;
    /* 自動で高さ調整 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* 軽い影で立体感 */
}

.features {
    display: flex;
    justify-content: center;
    /* ✅ 両端をそろえつつ全体を中央寄せ */
    align-items: flex-start;
    /* 高さが違うときでも自然に上揃え */
    gap: 30px;
    /* ✅ 真ん中の間を広げる（20〜60pxお好み） */
    flex-wrap: wrap;
    /* スマホ時に折り返し対応 */
    margin: 0 auto 50px;
    /* セクション下に余白を追加 */
    max-width: 1080px;
    /* ✅ 全体幅を一定に保つ */
    box-sizing: border-box;
}

.features-2 {
    display: flex;
    justify-content: center;
    /* ✅ 両端をそろえつつ全体を中央寄せ */
    align-items: flex-start;
    /* 高さが違うときでも自然に上揃え */
    gap: 30px;
    /* ✅ 真ん中の間を広げる（20〜60pxお好み） */
    flex-wrap: wrap;
    /* スマホ時に折り返し対応 */
    margin: 0 auto 50px;
    /* セクション下に余白を追加 */
    max-width: 1080px;
    /* ✅ 全体幅を一定に保つ */
    box-sizing: border-box;
}

.feature-item {
    flex: 0 1 45%;
    /* ✅ 両方で約90%使用（左右均等） */
    min-width: 300px;
    text-align: center;
    box-sizing: border-box;
}

.feature-item-2 {
    flex: 0 1 45%;
    /* ✅ 両方で約90%使用（左右均等） */
    min-width: 300px;
    text-align: center;
    box-sizing: border-box;
}

@media screen and (max-width: 1080px) {
    .features {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        /* ✅ すべての項目の間を均等に（少し狭く） */
        margin-bottom: 40px;
        /* ✅ 全体の下余白も控えめに */
    }
    .icon-after::after {
        top: 0.15em;
        /* 文字の中央にくるように微調整 */
    }
    .feature-item {
        flex: 1 1 100%;
        width: 100%;
        margin: 0;
        /* ✅ 各アイテムの上下余白をリセット */
        padding: 0;
        /* ✅ 不要な内側余白を削除 */
    }
    .empty-item {
        display: none;
        /* ✅ スマホでは空欄非表示 */
    }
    .feature-item:last-child {
        margin-bottom: 0;
        /* 最後の要素のみ余白なし */
    }
    .free-badge-cam {
        font-size: 1.55em;
        padding: 25px 10px;
    }
    .feature-image {
        border-radius: 8px;
        margin-top: 8px;
    }
}
.h2-image {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 750px;
  height: auto;
  z-index: 10;
}

.h2-image-2 {
    position: static;
    /* ✅ 通常の文書フローに戻す */
    display: block;
    margin: 0 auto;
    /* ✅ 中央寄せ */
    padding: 0;
    /* ✅ 余白なし */
    width: 100%;
    max-width: 750px;
    height: auto;
    z-index: 10;
}
.lift-up {
  position: relative;
  top: -30px;
  z-index: 11;
}

@media screen and (max-width: 768px) {
    .features-2 {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        /* ✅ すべての項目の間を均等に（少し狭く） */
        margin-bottom: 40px;
        /* ✅ 全体の下余白も控えめに */
    }
    .feature-item-2 {
        flex: 0 0 auto;
        width: 90%;
        margin: 0;
        /* ✅ 各アイテムの上下余白をリセット */
        padding: 0;
        /* ✅ スマホでは幅広め */
    }
    .feature-item-2:last-child {
        margin-bottom: 0;
        /* 最後の要素のみ余白なし */
    }
  .h2-image {
    bottom: -30px; /* 上がりすぎ防止。数値は調整可 */
  }

  .lift-up {
    top: 80px; /* ← 上げるのではなく下げる（数値は調整可） */
  }
}

@media (max-width: 400px) {
  .lift-up {
    top: 80px; /* さらに下げたい場合 */
  }
}

.free-badge-event {
    background-color: #fff;
    color: #FBCA55;
    border-radius: 10px;
    padding: 15px 35px;
    font-size: 1.3em;
    font-weight: 500;
    letter-spacing: 0.2em;
    display: block;
    /* ← inline-flexに変更 */
    margin: 0 auto;
    max-width: 350px;
    align-items: center;
    /* 縦方向中央揃え */
    justify-content: center;
    /* 横方向中央揃え */
    line-height: 1.3em;
    /* 余計な上下スペースをなくす */
}


/* 全体のスタイル */

.icon-text-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
    /* アイコンとテキストの間隔 */
}

.icon-text-container-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    /* アイコンとテキストの間隔 */
}

.red-border-line {
    color: #e1544e;
    border-radius: 10px;
    border: 3px solid #e1544e;
    padding: 15px 35px;
    display: block;
    margin: 0 auto;
    max-width: 1080px;
}


/* アイコンのスタイル */

.icon {
    width: 80px;
    /* アイコンの幅 */
    height: 80px;
    /* アイコンの高さ */
}

.empty-item {
    visibility: hidden;
    /* ✅ 中身を見せずスペースだけ確保 */
}

.color-white {
    color: #FFF;
}

.color-black {
    color: #406175;
}

.color-red {
    color: #e9473f;
}

.color-gold {
    color: #d3c1af;
}

.font-weight-xs {
    font-weight: 300;
}

.font-weight-s {
    font-weight: 400;
}

.font-weight-m {
    font-weight: 500;
}

.font-weight-l {
    font-weight: 600;
}

.font-weight-xl {
    font-weight: 700;
}

.size-xl {
    font-size: 3.5rem;
}

.size-lg {
    font-size: 2.5rem;
}

.size-l {
    font-size: 2rem;
}

.size-ml {
    font-size: 1.65rem;
    position: relative;
    /* 擬似要素を相対配置するため必要 */
}

.size-m {
    font-size: 1.5rem;
}

.size-s {
    font-size: 1.4rem;
}

.size-ss {
    font-size: 1.23rem;
}

.size-xs {
    font-size: 1.15rem;
}

.size-xxs {
    font-size: 1rem;
}

.font-bold {
    font-weight: 700;
    font-size: 110%;
}

.align-left {
    text-align: justify;
}

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

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

.line-height-xl {
    line-height: 3em;
}

.line-height-l {
    line-height: 2.5em;
}

.line-height-m {
    line-height: 2em;
}

.line-height-ml {
    line-height: 1.8em;
}

.line-height-s {
    line-height: 1.5em;
}

.line-height-xs {
    line-height: 1.35em;
}

.line-height-xxs {
    line-height: 1em;
}

.letter-spacing-xxs {
    letter-spacing: 0.005em;
}

.letter-spacing-xs {
    letter-spacing: 0.02em;
}

.letter-spacing-s {
    letter-spacing: 0.05em;
}

.letter-spacing-m {
    letter-spacing: 0.18em;
}

.letter-spacing-ml {
    letter-spacing: 0.25em;
}

.letter-spacing-l {
    letter-spacing: 0.35em;
}

.letter-spacing-xl {
    letter-spacing: 0.5em;
}

p {
    margin: 0
}

a {
    text-decoration: none;
    cursor: pointer;
}

nav {
    margin: 0 0 0 auto
}

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

#footer {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
    color: #FFF;
    line-height: 2em;
    font-size: 1em;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.footer-logo {
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    /* 下に余白 */
    display: block;
}

.navi-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* PC時は3列 */
    gap: 20px 40px;
    /* 行・列の間隔 */
    justify-content: center;
    text-align: center;
    color: #FFF;
    margin: 30px auto;
    max-width: 600px;
    /* ナビ全体の幅制御 */
}

.nav-item a {
    color: #406175;
    font-size: 1.2em;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

.copyright {
    color: #406175;
    font-size: 1em;
    margin: 0;
    padding: 15px 0;
    text-align: center;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

a {
    display: inline-block;
    /* transform が効くように */
    transition: transform 0.25s ease, color 0.25s ease;
    text-decoration: none;
    /* 下線が必要な場合は外してOK */
}

a:hover {
    transform: scale(1.05);
    /* 少し拡大 */
    /* ブランドカラーなどに変更 */
}

.close:hover {
    opacity: 0.5;
}


/* マウス操作では非表示 */

a:focus:not(:focus-visible) {
    outline: none !important;
}


/* キーボード操作(Tab移動)では表示 */

a:focus-visible {
    outline: 2px dashed var(--green);
    outline-offset: 4px;
}


/* =========================================
   ボタン汎用（共通）
========================================= */

.btn {
    display: block;
    margin: 0 auto;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 300px;
    /* ナビと統一 */
    padding: 1.2rem 0;
    /* 高さを抑える */
    font-weight: 500;
    border: 1px solid #e9473f;
    color: #FFF;
    background: #e9473f;
    border-radius: 30px;
    transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
    font-size: 1.2em;
    /* ナビ文字と統一 */
    letter-spacing: 0.1em;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    color: #e9473f;
    border: 2px solid #e9473f;
    background: #FFF;
}


/* PC用右端縦バナー */

.floating-banners-fixed {
    position: fixed;
    top: 50%;
    right: 0px;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%);
    z-index: 900;
    gap: 10px;
}

.floating-banner-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    width: 50px;
    padding: 30px 10px;
    text-align: center;
    font-weight: 500;
    /* 必要に応じて bold に変更 */
    transition: opacity 0.6s ease, transform 0.6s ease;
    opacity: 0;
    transform: translateX(30px);
}

.floating-banner-btn.show {
    opacity: 1;
    transform: translateX(0);
}

.fade-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.image-grid {
    display: flex;
    justify-content: space-between;
    /* ✅ 均等に3分割 */
    align-items: flex-start;
    flex-wrap: wrap;
    /* ✅ 行が崩れないように */
    gap: 20px;
}

.grid-image {
    width: calc((100% - 40px) / 3);
    /* ✅ gap(20px)×2分を引いて3分割 */
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
}

.grid-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.top-btn {
    background-color: #d3c1af;
    color: #406175;
    font-weight: 500;
    font-size: 1.1em;
    letter-spacing: 0.1em;
    border: 3px solid #d3c1af;
}

.top-btn:hover {
    background: #FFF;
    color: #d3c1af;
}

.top-btn-sp {
    background-color: #d3c1af;
    color: #406175;
}

.line-btn {
    background-color: #e9473f;
    color: #fff;
    border: 2px solid #e9473f;
}

.line-btn:hover {
    background: #FFF;
    color: #e9473f;
}

.line-btn-sp {
    background-color: #e9473f;
    color: #fff;
}

.floating-banner-btn.show {
    opacity: 1;
    transform: translateX(0);
}

.vertical-text {
    letter-spacing: 0.1em;
    line-height: 1.35em
}

.floating-banner-btn .vertical-text {
    writing-mode: horizontal-tb;
    /* 横書きに戻す */
    transform: none;
    /* 回転なし */
    margin-bottom: 10px;
    text-align: center;
}

.floating-banner-btn img {
    width: 20px;
    height: 20px;
}


/* SP用下部横並びバナー */

.floating-banners-sp {
    display: none;
    /* 初期は非表示 */
}

.floating-banners-sp .floating-banner-btn {
    flex-direction: row;
    width: 48%;
    justify-content: center;
    padding: 10px 0;
}

.floating-banners-sp .floating-banner-btn .vertical-text {
    writing-mode: horizontal-tb;
    transform: none;
    margin-bottom: 0;
}


/* 共通アイコンスタイル */

.floating-banner-btn i {
    font-size: 22px;
    transition: color 0.3s;
    margin-top: 6px;
    /* PC縦並び用の余白 */
}

.floating-banners-sp .floating-banner-btn i {
    font-size: 18px;
    margin: 0;
    /* SP横並びは余白リセット */
}

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

.lead-image {
    display: block;
    /* ブロック要素にして中央揃えが可能に */
    margin: 0 auto;
    /* 左右中央揃え */
    width: 100%;
    /* レスポンシブ対応 */
    max-width: 300px;
    /* 最大幅350pxに制限 */
    height: auto;
    /* 比率を維持して拡縮 */
}

.date-image {
    display: block;
    margin: -50px auto 0;
    /* 上に20px移動（マイナス値で上に） */
    width: 100%;
    max-width: 600px;
    height: auto;
    z-index: 100;
}

.comment-image {
    display: block;
    margin: 0 auto;
    /* ✅ 上下のマージンを完全に削除 */
    width: 100%;
    max-width: 600px;
    height: auto;
    z-index: 100;
    padding: 0;
    /* ✅ 内側余白も念のため削除 */
}


/* ホバー時のアイコンカラー */

.top-btn:hover i {
    color: #d3c1af;
}

.line-btn:hover i {
    color: #e9473f;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}

.event-top {
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    /* ← これを追加することで画像と下のブロックを丸くクリップ */
    background-color: #fff7f0;
    /* 画像以外の余白に色を合わせる */
}

.event-top img.block-illustration {
    display: block;
    width: 100%;
    height: auto;
}

.background {
    background-color: #406175;
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: visible;
    /* ← はみ出しを表示するため必須 */
}



/* 画像エリア（containerは他に影響を与えない） */

.image-area {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}


/* 横並びレイアウト */

.image-row {
    display: flex;
    justify-content: center;
    /* 中央寄せ */
    align-items: center;
    gap: 40px;
    /* 画像の間隔を狭く */
    flex-wrap: nowrap;
    /* ✅ 改行しない */
}


/* 3枚の画像を均等に縮小して配置 */

.three-image {
    width: 28%;
    /* ✅ 画像を少し小さく（中央に余白を残す） */
    max-width: 280px;
    /* 画像の最大幅を制限 */
    height: auto;
    display: block;
    object-fit: contain;
}

.sp-br {
    display: none
}

.br-sp {
    display: block
}

@media (max-width: 768px) {
    .image-area {
        padding: 0 10px; /* ✅ 余白を狭く */
    }

    .image-row {
        gap: 10px; /* ✅ 隙間をさらに狭く */
        flex-wrap: nowrap; /* ✅ 横並び維持 */
    }

    .three-image {
        width: 31%; /* ✅ 余白込みで収まるように調整 */
        max-width: none; /* ✅ 幅制限を解除 */
    }
}

/* iPhone SEなど極小画面専用 */
@media (max-width: 390px) {
    .image-area {
        padding: 0 5px; /* ✅ ほぼ全幅に */
    }

    .image-row {
        gap: 6px;
    }

    .three-image {
        width: 32%;
    }
}

.mbottom-15 {
    margin-bottom: 15px
}

.mbottom-30 {
    margin-bottom: 30px
}

.mbottom-50 {
    margin-bottom: 50px
}

.mbottom-70 {
    margin-bottom: 70px
}

.mbottom-100 {
    margin-bottom: 100px
}

.mbottom-150 {
    margin-bottom: 150px
}

.mbottom-200 {
    margin-bottom: 200px
}

.mtop-200 {
    margin-top: 200px
}

.mtop-150 {
    margin-top: 150px
}

.mtop-100 {
    margin-top: 100px
}

.mtop-90 {
    margin-top: 90px
}

.mtop-50 {
    margin-top: 50px
}

.mtop-70 {
    margin-top: 70px
}

.mtop-30 {
    margin-top: 30px
}

.mtop-15 {
    margin-top: 15px
}

.mtop-10 {
    margin-top: 10px
}

.mtop-5 {
    margin-top: 5px
}

.pbottom-200 {
    padding-bottom: 200px
}

.pbottom-100 {
    padding-bottom: 100px
}

.pbottom-70 {
    padding-bottom: 70px
}

.pbottom-50 {
    padding-bottom: 50px
}

.pbottom-30 {
    padding-bottom: 30px
}

.pbottom-15 {
    padding-bottom: 15px
}

.pbottom-10 {
    padding-bottom: 10px
}

.pbottom-5 {
    padding-bottom: 5px
}

.ptop-200 {
    padding-top: 200px
}

.ptop-150 {
    padding-top: 150px
}

.ptop-100 {
    padding-top: 100px
}

.ptop-70 {
    padding-top: 70px
}

.ptop-50 {
    padding-top: 50px
}

.ptop-30 {
    padding-top: 30px
}

.ptop-15 {
    padding-top: 15px
}

.ptop-10 {
    padding-top: 10px
}

.ptop-5 {
    padding-top: 5px
}

/* ========================================
   ノートPC・デスクトップ（1024px～1439px）
   ======================================== */

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .illust-img {
        width: 70%;
        max-width: 500px;
    }
}


/* ========================================
   タブレット・小型PC（768px～1023px）
   ======================================== */

@media screen and (min-width: 768px) and (max-width: 1080px) {
    .illust-img {
        width: 70%;
        max-width: 400px;
    }
}


/* ========================================
   スマートフォン（481px～767px）
   ======================================== */

@media screen and (max-width: 768px) {
    /* コンテナ */
    .container {
        padding: 18px;
    }
	    .sp-br {
        display: block;
    }
    .first-view img {
        object-fit: contain;
        background-color: #FEF4DD;
    }
    .lead-image {
        max-width: 200px;
        /* スマホでは少し小さく表示 */
    }
    .date-image {
        max-width: 400px;
        /* スマホでは少し小さく表示 */
    }
    .h2-image {
        max-width: 38em;
        /* スマホでは少し小さく表示 */
    }
    .h2-image-2 {
        max-width: 38em;
        /* スマホでは少し小さく表示 */
    }
    .header-navi {
        padding: 0 0;
        height: 10px;
        /* ヘッダー高さ */
    }
    .header-logo img {
        transform: translateY(-23px);
        max-height: 50px;
    }
    /* テキスト */
    .highlight-box {
        font-size: 1.1em;
        letter-spacing: 0.1em;
    }
    .main-text {
        line-height: 1.9em;
    }
    .text {
        line-height: 1.8em;
    }
    .line-height-m {
        line-height: 1.8em;
    }
    .line-height-ml {
        line-height: 1.7em;
    }
    /* 画像 */
    .event-img {
        max-width: 350px;
    }
    .block-image {
        width: 10%;
        height: 10%;
    }
    .event-img-2 {
        width: 90%;
        height: 90%;
    }
    .svg-title {
        max-width: 200px;
    }
    /* バッジ */
    .free-badge {
        padding: 10px 25px;
        font-size: 1.5em;
    }
    .free-badge-line,
    .free-badge-event {
        font-size: 1.3em;
        letter-spacing: 0.05em;
        padding: 25px 10px;
    }
    .free-badge-cam {
        font-size: 1.2em;
        padding: 20px 8px;
    }
    /* レイアウト */
    .title-wrap {
        flex-direction: column;
        gap: 25px;
    }
    .navi-box {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
    }
    .icon-text-container,
    .icon-text-container-2 {
        flex-direction: column;
    }
    .icon {
        margin-bottom: 10px;
    }
    /* ボタン */
    .btn {
        padding: 1.5rem 2.4rem;
        font-size: 1em;
        width: 270px;
    }
    /* 動画 */
    .youtube {
        max-width: 100%;
        padding: 0;
    }
    /* ナビゲーション */
    .sp-nav li {
        font-size: 1em;
        line-height: 1.2em;
    }
    /* フローティングバナー */
    .floating-banners-fixed {
        display: none !important;
    }
    .floating-banners-sp {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 800;
        overflow: hidden;
    }
    .floating-banners-sp .floating-banner-btn {
        flex: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 18px 0;
        font-size: 1em;
        letter-spacing: 0.2em;
        border-radius: 12px 12px 0 0;
    }
    .floating-banners-sp .floating-banner-btn img {
        width: 15px;
        height: auto;
        display: inline-block;
    }
    .illust-img {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    .h2-image {
        max-width: 33em;
        /* スマホでは少し小さく表示 */
    }
    .h2-image-2 {
        max-width: 33em;
        /* スマホでは少し小さく表示 */
    }
    .image-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .grid-image {
        width: 85%;
        /* ✅ 画面中央で少し余白あり */
    }
    .header-navi {
        padding: 0 0;
        height: 10px;
        /* ヘッダー高さ */
    }
    #hamburger {
        top: 17px;
        right: 25px;
        width: 50px;
        height: 50px;
        gap: 4px;
        /* 線の間隔をさらに調整 */
    }
    #hamburger span {
        width: 30px;
        height: 2px;
    }
    #hamburger span:nth-child(2) {
        margin: 3px 0;
    }
    /* クリックで × に変形 */
    #hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(-45deg);
    }
    #hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(45deg);
    }
    .sp-nav {
        padding-top: 1em;
        /* 上余白を狭く */
        padding-bottom: 1em;
        /* 下余白を狭く */
    }
    .sp-nav-header {
        padding: 1em;
        /* ロゴ周りの余白を狭く */
    }
    .sp-nav li {
        padding: 0.8em 0;
        /* リスト項目の天地余白を縮小 */
    }
    .sp-nav li:not(:last-child):not(.no-line)::after {
        margin: 1em auto 0 auto;
        /* 線の上下余白も狭く */
    }
    .sp-nav li a.btn {
        margin: 1em 0;
        /* ボタンの上下余白を縮小 */
        width: 280px;
        /* 横幅も少し縮めると見た目が締まる */
    }
    .sp-nav .close {
        margin-top: 1em;
        /* 閉じるボタンの上余白を縮小 */
        width: 280px;
        padding: 0.8em 0;
    }
    thead th,
    tbody td {
        font-size: 13px;
        /* 少し大きくして読みやすく */
        padding: 10px 12px;
        letter-spacing: 0.1em;
        vertical-align: middle;
        /* 改行が入っても中央揃え */
        word-break: break-word;
        /* 改行も自然に */
    }
    tbody td {
        line-height: 1.5em;
        /* 行間調整 */
        letter-spacing: 0.1em;
    }
    table {
        border-spacing: 0 5px;
        /* 行間の余白調整 */
    }
    /* ヘッダーの区切り線もスマホ用に少し長め */
    thead th:first-child::after {
        height: 40%;
    }
    .event-circle {
        width: 75px;
        /* ✅ 丸を小さく */
        height: 75px;
        font-size: 1em;
    }
    .event-text {
        font-size: 1em;
        /* ✅ テキストも少し小さく */
    }
    .event-info {
        gap: 15px;
        /* ✅ 丸とテキストの距離を少し狭く */
    }
    .custom-slider img {
        width: 100vw;
        /* ✅ スマホ画面幅に合わせる */
    }
    .custom-slider .slick-track {
        margin: 0 !important;
        gap: 0 !important;
    }
    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
    }
    .slick-prev::before,
    .slick-next::before {
        font-size: 16px;
    }
    .slick-dots {
        bottom: 10px;
        gap: 8px;
    }
    .slick-dots li button {
        width: 10px;
        height: 10px;
    }
    .lift-up {
        top: -30px;
        /* スマホでは控えめに上げる */
    }
}

@media screen and (max-width: 550px) {
    .h2-image {
        max-width: 30em;
        /* スマホでは少し小さく表示 */
    }
    .h2-image-2 {
        max-width: 30em;
        /* スマホでは少し小さく表示 */
    }
    .size-xl {
        font-size: 2.8em;
    }
    .size-lg {
        font-size: 1.7em;
    }
    .size-l {
        font-size: 1.3em;
    }
    .size-ml {
        font-size: 1.25rem;
    }
    .size-m {
        font-size: 1.2rem;
    }
    .size-ms {
        font-size: 1.15rem;
    }
    .size-ss {
        font-size: 1.1rem;
    }
    .size-s {
        font-size: 1.05rem;
    }
    .size-xs {
        font-size: 1rem;
    }
    .size-xxs {
        font-size: 0.7rem;
    }
    .navi {
        grid-template-columns: repeat(2, auto);
        justify-content: center;
    }
    .nav-item a {
        font-size: 1.1em;
    }
    /* フッター */
    .copyright {
        flex-basis: 100%;
        text-align: center;
    }
    .footer-logo {
        max-width: 280px;
    }
    .red-border-line {
        padding: 15px 10px;
        border: 2px solid #e1544e;
    }
    /* マージン・パディング（スマホではvw単位を使用） */
    .mbottom-15 {
        margin-bottom: 2.5vw;
    }
    .mbottom-30 {
        margin-bottom: 4vw;
    }
    .mbottom-50 {
        margin-bottom: 5vw;
    }
    .mbottom-70 {
        margin-bottom: 7vw;
    }
    .mbottom-100 {
        margin-bottom: 10vw;
    }
    .mbottom-150 {
        margin-bottom: 15vw;
    }
    .mbottom-200 {
        margin-bottom: 20vw;
    }
    .mtop-15 {
        margin-top: 1.8vw;
    }
    .mtop-30 {
        margin-top: 2vw;
    }
    .mtop-50 {
        margin-top: 5vw;
    }
    .mtop-70 {
        margin-top: 7vw;
    }
    .mtop-100 {
        margin-top: 10vw;
    }
    .mtop-150 {
        margin-top: 15vw;
    }
    .mtop-200 {
        margin-top: 20vw;
    }
    .pbottom-15 {
        padding-bottom: 1.5vw;
    }
    .pbottom-30 {
        padding-bottom: 3vw;
    }
    .pbottom-50 {
        padding-bottom: 5vw;
    }
    .pbottom-70 {
        padding-bottom: 7vw;
    }
    .pbottom-100 {
        padding-bottom: 10vw;
    }
    .pbottom-200 {
        padding-bottom: 20vw;
    }
    .ptop-15 {
        padding-top: 1.5vw;
    }
    .ptop-30 {
        padding-top: 3vw;
    }
    .ptop-50 {
        padding-top: 5vw;
    }
    .ptop-70 {
        padding-top: 7vw;
    }
    .ptop-100 {
        padding-top: 10vw;
    }
    .ptop-150 {
        padding-top: 15vw;
    }
    .ptop-200 {
        padding-top: 20vw;
    }
}


/* ========================================
   小型スマートフォン（401px～480px）
   ======================================== */

@media screen and (max-width: 480px) {
    .illust-img {
        width: 80%;
        max-width: 350px;
    }
    .event-text {
        font-size: 0.9rem;
        /* ✅ テキストも少し小さく */
    }
    .size-ss {
        font-size: 0.9rem;
    }
    .h2-image {
        max-width: 24em;
        /* スマホでは少し小さく表示 */
    }
    .h2-image-2 {
        max-width: 24em;
        /* スマホでは少し小さく表示 */
    }
}


/* ========================================
   超小型スマートフォン（～400px）
   ======================================== */

@media screen and (max-width: 400px) {
    .size-s {
        font-size: 0.92rem;
        letter-spacing: 0.01em;
    }
    .size-xs {
        font-size: 1rem;
    }
    .grid-image {
        flex: 0 0 auto;
        width: 80%;
        /* ✅ スマホでは幅広め */
    }
    .header-svg {
        width: 70%;
        max-width: 150px;
        margin-top: 0.25em;
        margin-bottom: 0.25em;
    }
    .sp-nav ul {
        margin-top: 0.25em;
        padding-bottom: 1em;
    }
    .h2-image {
        max-width: 22em;
        /* スマホでは少し小さく表示 */
        bottom: -20px;
    }
    .h2-image-2 {
        max-width: 22em;
        /* スマホでは少し小さく表示 */
    }
}


/* ========================================
   タブレット以上（1080px以上）
   ======================================== */

@media screen and (min-width: 1080px) {
    .event-top {
        margin: 20px;
    }
    .container-2nd {
        margin: 20px;
        padding: 15px;
        border-radius: 20px;
    }
    .text-container {
        margin: 20px;
    }
}


/* ========================================
   PC（1220px以上）
   ======================================== */

@media screen and (min-width: 1220px) {
    .sub-heading-2 {
        font-size: 1.2rem;
    }
    .align-right {
        text-align: center;
    }
    /* マージン・パディング（PC版は固定値） */
    .mbottom-15 {
        margin-bottom: 9px;
    }
    .mbottom-30 {
        margin-bottom: 15px;
    }
    .mbottom-50 {
        margin-bottom: 25px;
    }
    .mbottom-70 {
        margin-bottom: 35px;
    }
    .mbottom-100 {
        margin-bottom: 50px;
    }
    .mbottom-150 {
        margin-bottom: 75px;
    }
    .mbottom-200 {
        margin-bottom: 100px;
    }
    .mtop-5 {
        margin-top: 3px;
    }
    .mtop-10 {
        margin-top: 5px;
    }
    .mtop-15 {
        margin-top: 7px;
    }
    .mtop-30 {
        margin-top: 15px;
    }
    .mtop-50 {
        margin-top: 25px;
    }
    .mtop-70 {
        margin-top: 35px;
    }
    .mtop-100 {
        margin-top: 50px;
    }
    .mtop-150 {
        margin-top: 75px;
    }
    .mtop-200 {
        margin-top: 100px;
    }
    .pbottom-5 {
        padding-bottom: 3px;
    }
    .pbottom-10 {
        padding-bottom: 5px;
    }
    .pbottom-15 {
        padding-bottom: 7px;
    }
    .pbottom-30 {
        padding-bottom: 15px;
    }
    .pbottom-50 {
        padding-bottom: 25px;
    }
    .pbottom-70 {
        padding-bottom: 35px;
    }
    .pbottom-100 {
        padding-bottom: 50px;
    }
    .pbottom-200 {
        padding-bottom: 100px;
    }
    .ptop-5 {
        padding-top: 3px;
    }
    .ptop-10 {
        padding-top: 5px;
    }
    .ptop-15 {
        padding-top: 7px;
    }
    .ptop-30 {
        padding-top: 15px;
    }
    .ptop-50 {
        padding-top: 25px;
    }
    .ptop-70 {
        padding-top: 35px;
    }
    .ptop-100 {
        padding-top: 50px;
    }
    .ptop-150 {
        padding-top: 75px;
    }
    .ptop-200 {
        padding-top: 100px;
    }
}
/* iPhone等で電話番号や住所が自動リンクされても装飾を消す */
a[href^="tel"],
a[href^="sms"],
a[href^="mailto"],
a[href^="maps"] {
  color: inherit;
  text-decoration: none;
  border: none;
  outline: none;
}