@charset "UTF-8";
body,
html {
    margin: 0;
    padding: 0;
    font-family: "M PLUS Rounded 1c", 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-navi {	
width: 100%;	
max-width: 1080px;	
margin: 0 auto;	
display: flex;	
align-items: left;	
/* ←縦方向中央揃え */	
box-sizing: border-box;	
height: 20px;	
/* ヘッダー高さ */	
background-color: #fff;	
/* 必要なら背景色 */	
}

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

.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);
    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: #333333;
    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: #333333;
}
/* クリックで × に変形 */
#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-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;
    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: #333333;
    /* 元の色に戻す */
    text-decoration: none;
}

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

.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: #333333;
    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: #333333;
    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 {
    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;
}

.marker {
    position: relative;
    display: inline-block;
}

.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-yellow::after {
    background-color: #f7e768;
}

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

.check-note {
    font-weight: 500;
    letter-spacing: .05em;
}
.check-note::before {
    content: '✓';                 
    display: inline-block;
    width: 1.1em;                    
    height: 1.1em;
    margin-right: 0.5em; 
	margin-bottom: 0.2em; 
    border: 2px solid #333333;     
    color: #e9473f;                
    text-align: center;             /* 中央にチェックを表示 */
    line-height:1em;               /* 高さに合わせて中央揃え */
    font-size: 1.2em;               /* チェックマークのサイズ調整 */
    border-radius: 3px;             /* 少し丸めたい場合は調整 */
    vertical-align: middle;         /* 文字の高さに揃える */
    box-sizing: border-box;         /* サイズ内に枠を収める */
}

.free-badge-cam {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ef8468;
    color: #FFF;
    border-radius: 0.5em;
    padding: 20px 40px;
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.5em;
    box-sizing: border-box;
    width: auto;
    max-width: 100%;  /* ← 画像と同じく少し余白を作る */
}

.feature-image {
    width: 100%;
    /* free-badge-camと同じ幅に */
    border-radius: 10px;
    /* ✅ 同じ角丸 */
    margin-top: 10px;
    /* 少し余白を空ける */
    display: block;
    object-fit: cover;
    /* 画像の比率を保ちつつ切り取り */
    height: auto;
    /* 自動で高さ調整 */
}

.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;
}

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

.color-white {
    color: #FFF;
}

.color-black {
    color: #333333;
}
.color-orange {
    color: #ef8468;
}
.color-red {
    color: #e9473f;
}

.color-green {
    color: #36b591;
}

.color-blue {
    color: #38a1db;
}

.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-mg {
    font-size: 1.5rem;
}
.size-s {
    font-size: 1.4rem;
}

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

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

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

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

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

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

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

/* aタグ用に追加 */
a.align-center {
    display: block;
    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
}

nav {
    margin: 0 0 0 auto
}

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

#footer {
    background-color: #F7E768;
    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);
    gap: 20px 40px;
    justify-content: center;
    text-align: center;
    color: #FFF;
    margin: 30px auto;
    max-width: 600px;
}

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

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

/* aタグの基本スタイル修正 */
a {
    display: block;
    text-align: center;
    transition: transform 0.25s ease, color 0.25s ease;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

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: 500px;
    padding: 1.8rem 0;
    font-weight: 500;
    border: 5px 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.7em;
    letter-spacing: 0.1em;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.btn:hover {
    color: #e9473f;
    border: 5px 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;
}

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

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

.top-btn-sp {
    background-color: #36b591;
    color: #FFF;
}

.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;
}

.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;
}

.floating-banners-sp .floating-banner-btn i {
    font-size: 18px;
    margin: 0;
}

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

.lead-image {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    height: auto;
}
.jitu-image {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
}

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

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

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

.background {
    background-color: #F7E768;
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: visible;
}

.background-w {
    background-color: #FFF;
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: visible;
    border-radius: 1em;
}

/* もし背景が他の要素の上に来てしまう場合は、以下を追加 */
.background {
    isolation: isolate; /* 新しいスタッキングコンテキストを作成 */
}

.bg-color-orange {
	background-color: #ef8468;
}
.bg-color-green {
	background-color: #36b591;
}
.bg-color-blue {
	background-color: #38a1db;
}


.sp-br {
    display: none
}

.br-sp {
    display: block
}

.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
}
.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
}
/* ========================================
   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;
    }
}
/* ========================================
   ノートPC・デスクトップ（1024px～1439px）
   ======================================== */

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .illust-img {
        width: 70%;
        max-width: 500px;
    }
	    .event-top {
        margin: 20px;
    }
    .container-2nd {
        margin: 20px;
        padding: 15px;
        border-radius: 20px;
    }
    .text-container {
        margin: 20px;
    }
}


/* ========================================
   タブレット・小型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;
    }
	    .container-2 {
        padding: 18px;
    }
	    .sp-br {
        display: block;
    }
	.sp-center {
		text-align: center; 
	}
    .first-view img {
        object-fit: contain;
        background-color: #FEF4DD;
    }
    .lead-image {
        max-width: 400px;
        /* スマホでは少し小さく表示 */
    }
    .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;
    }
    /* レイアウト */
    .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.2rem 2rem;
        font-size: 1.3em;
        width: 300px;
    }
    /* 動画 */
    .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%;
    }
	    .features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        /* ✅ すべての項目の間を均等に（少し狭く） */
        margin-bottom: 40px;
        /* ✅ 全体の下余白も控えめに */
    }
.align-left-2 {
    text-align: center;
}
    .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.5em;
        padding: 13px 10px;
    }
    .feature-image {
        border-radius: 8px;
        margin-top: 8px;
	    width: 75%;   /* ← 好みで70〜90%に調整可能 */
	    margin: 0 auto;
    }
    .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;
        /* 最後の要素のみ余白なし */
    }
.icon {
    width: 80px;
    height: 80px;
}
}

@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.6em;
    }
    .size-l {
        font-size: 1.5em;
    }
    .size-mg {
    font-size: 1.5em;
}
    .size-ml {
        font-size: 1.25rem;
    }
    .size-m {
        font-size: 1.18rem;
    }
    .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: 1rem;
    }
    .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;
        /* スマホでは少し小さく表示 */
    }
    .size-xs {
        font-size: 0.85rem;
    }
	    .size-l {
        font-size: 1.3em;
    }
	    .size-mg {
        font-size: 1.3em;
    }
}


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

@media screen and (max-width: 400px) {
    .size-s {
        font-size: 0.92rem;
        letter-spacing: 0.01em;
    }
    .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;
        /* スマホでは少し小さく表示 */
    }
    .image-area {
        padding: 0 5px; /* ✅ ほぼ全幅に */
    }
    .image-row {
        gap: 6px;
    }
    .three-image {
        width: 32%;
    }
}

a[href^="tel:"] {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    padding: 10px 0 !important;
    margin: 0 auto !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 100 !important;
    -webkit-tap-highlight-color: rgba(233, 71, 63, 0.3);
    touch-action: manipulation;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    a[href^="tel:"] {
        padding: 15px 0 !important;
    }
}