/* --- 共通変数 (Colors & Fonts) --- */
:root {
    --primary: #F97316;
    --primary-hover: #ea580c;
    --bg-base: #FFFBF7;
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-200: #fed7aa;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --white: #ffffff;
}

/* --- ベースリセット & 全体設定 --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--bg-base);
    color: var(--gray-800);
    scroll-behavior: smooth;
    line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; font-family: inherit; color: inherit;}
.text-center { text-align: center; }
.text-primary { color: var(--primary); }

/* --- コンテナレイアウト --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}
.container-sm {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* --- ボタン共通スタイル --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s;
}
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 9999px;
}
.btn-primary:hover {
    background-color: var(--primary-hover);
}
.btn-reverse {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 9999px;
}
.btn-reverse:hover {
    background-color: var(--primary);
    color: var(--white);
}
.btn-full {
    width: 100%;
    padding: 0.5rem 0;
    border-radius: 0.5rem;
}

/* --- SP・PC表示非表示 --- */
.sp_only{ display: block;}
@media (min-width: 768px) { .sp_only { display: none; } }

.pc_only{ display: none !important;}
@media (min-width: 768px) { .pc_only { display: block !important; } }

.sp_hidden{ display: none;}
@media (min-width: 768px) { .sp_hidden { display: block; } }


/* --- ヘッダー --- */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: var(--white);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
    border-bottom: 1px solid var(--orange-100);
}
@media (min-width: 768px) { .header { background-color: var(--white); border-bottom: 1px solid var(--orange-100); box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);} }
.header-inner {
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    position: relative;
}
@media (min-width: 768px) { .header-inner { height: 4.3rem; padding: 0 1rem; } }
.logo-group { display: flex; align-items: center; gap: 0.5rem; }
.logo-header{
    background-color: var(--white);
    display: block;
    width: 130px;
    height: 100%;
    padding: 0 0.8rem;
    align-items: center;
    align-content: space-around;
    border-radius: 0 0 0.6rem 0;
    /* box-shadow: #F97316 1px 7px 39px -10px; */
}
@media (min-width: 768px) { .logo-header { width: 175px; box-shadow: none; } }
.logo-mark {
    width: 2rem; height: 2rem;
    background-color: var(--primary);
    border-radius: 0.5rem;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700; font-style: italic;
}
.logo-text { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.025em; color: var(--primary); }

.header-nav { display: flex; gap:0; margin-right: 10px; }
@media (min-width: 768px) { .header-nav { align-items: center; gap: 2rem; } }
.nav-link { color: var(--gray-600); font-weight: 500; transition: color 0.3s; }
.nav-link:hover { color: var(--primary); }
.nav-btn { padding: 0.3rem 1rem; font-size: 0.8rem; margin-right: 0px; }
@media (min-width: 768px) { .nav-btn { padding: 0.5rem 1.25rem; font-size: 0.875rem; } }
.mobile-menu-btn { color: var(--primary); font-weight: 700; font-size: 0.875rem; display: block; }

@media (min-width: 768px) {
    .header-nav { display: flex; }
    .mobile-menu-btn { display: none; }
}

/* --- メインビジュアル (Hero) --- */
.hero-section {
    position: relative;
    top: -48px;
    background: linear-gradient(to bottom right, var(--orange-50), var(--white));
    padding: 5rem 0 6rem;
    overflow: hidden;
    background-image: url(images/bg_mv.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 202%;
}
@media (min-width: 768px) { .hero-section { padding: 4rem 0;     background-size: 80%; top: 0px;} }
.hero-content { position: relative; z-index: 10; }
.hero-badge {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}
@media (min-width: 768px) { .hero-badge { font-size: 1.34rem;     margin-bottom: 1rem; } }
.hero-title {
    font-size: 1.7rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.25;
}
@media (min-width: 768px) { .hero-title { font-size: 1.875rem; } }
.br-md-block { display: none; }
@media (min-width: 768px) {
    .hero-section { padding: 3.3rem 0 6rem; }
    .hero-title { font-size: 3rem; }
    .br-md-block { display: block; }
}
.hero-video-wrapper { margin-top: 1.5rem; max-width: 36rem; margin-inline: auto; }
@media (min-width: 768px) { .hero-video-wrapper { margin-top: 2.5rem; } }
.imgmv_man{
    position: absolute; bottom: 0; left: 0%; width: 9rem; height: auto; z-index: 10;
}
.imgmv_woman{
    position: absolute; bottom: 0; right: 0%; width: 9rem; height: auto; z-index: 10;
}

/* desktop modifications: larger illustrations and overlap video slightly */
@media (min-width: 768px) {
    /* enlarge the illustrations */
    .imgmv_man,
    .imgmv_woman {
        width: 18rem;
    }

    /* position relative to center so they stay in place even if the viewport
       width changes; the calc() value is based on half of the video's max-width
       (21rem) plus an extra offset to make the images overlap the video edge */
    .imgmv_man {
        left: calc(50% - 26rem);
        bottom: 0rem; /* lift slightly so they overlap the video area */
    }
    .imgmv_woman {
        right: calc(50% - 26rem);
        bottom: 0rem;
    }
}
.video-card {
    background-image: url(images/thumbnail_movie.webp);
    background-size: cover;
    background-position: center;
        
    padding: 0.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    border: 4px solid var(--orange-50);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    position: relative;
    cursor: pointer;
}
.video-overlay {
    position: absolute; inset: 0; background-color: rgba(0,0,0,0.2);
    border-radius: 0.75rem; display: flex; align-items: center; justify-content: center;
    transition: background-color 0.3s;
    pointer-events: none; /* allow clicks to pass through */
}
.video-card:hover .video-overlay { background-color: transparent; }
.play-btn { cursor: pointer; }
.play-btn {
    width: 4rem; height: 4rem; background-color: var(--primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--white); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.video-card:hover .play-btn { transform: scale(1.1); }
.icon-play { width: 2rem; height: 2rem; fill: currentColor; margin-left: 0.25rem; }
.video-text { color: var(--gray-400); font-weight: 700; position: relative; z-index: 10; }

/* 背景装飾 */
.hero-bg-blob { position: absolute; border-radius: 50%; filter: blur(64px); opacity: 0.4; }
.blob-right {
    top: 0; right: 0; width: 24rem; height: 24rem;
    background-color: var(--orange-100); transform: translate(33%, -50%);
}
.blob-left {
    bottom: 0; left: 0; width: 20rem; height: 20rem;
    background-color: var(--orange-50); transform: translate(-33%, 50%);
}

/* --- 受け取り方法 (How-to) --- */
.howto-section { padding: 2rem 0; background-color: var(--white); margin-top: -48px; }
@media (min-width: 768px) { .howto-section { padding: 3rem 0; margin-top: 0px;} }
.howto-content { display: flex; flex-direction: column; gap: 0.5rem; }
@media (min-width: 768px) { .howto-content { gap: 1rem; } }
.accordion-card {
    border: 2px solid var(--orange-100); border-radius: 1rem;
    overflow: hidden; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}

/* --- ビデオモーダル --- */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.video-modal.open { display: flex; }
.video-modal .modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
}
.video-modal .close-btn {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: var(--white);
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.accordion-header {
    width: 100%; padding: 1rem; display: flex; align-items: center; justify-content: space-between;
    background-color: rgba(255, 247, 237, 0.5); transition: background-color 0.3s;
}
@media (min-width: 768px) { .accordion-header { padding: 1.5rem; } }
.accordion-header:hover { background-color: var(--orange-50); }

.accordion-title { font-size: 1rem; font-weight: 700; display: flex; align-items: center; gap: 0.5rem; color: var(--gray-800) !important; }
@media (min-width: 768px) { .accordion-title { font-size: 1.25rem; gap: 0.75rem; color: var(--gray-800) !important; } }

.accordion-icon { color: var(--primary); transition: transform 0.3s; }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background-color: var(--white); }
.accordion-content.open { max-height: calc(1200px + 2rem); }
.accordion-body { padding: 2rem; border-top: 1px solid var(--orange-100); }
.howto-lead { text-align: center; font-weight: 700; color: var(--primary); margin-bottom: 1.5rem; font-size: 1.125rem; }
.step-text-about{ font-weight: 500; font-size: 1rem; line-height: 1.8; }

.steps-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-icon-box {
    width: 4rem; height: 4rem; background-color: var(--orange-100); border-radius: 1rem;
    display: flex; align-items: center; justify-content: center; color: var(--primary);
    margin-bottom: 1rem; position: relative;
}
.step-number {
    position: absolute; top: -0.5rem; right: -0.5rem; background-color: var(--primary); color: var(--white);
    width: 1.75rem; height: 1.75rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.875rem; font-weight: 700;
}
.step-text { font-size: 0.875rem; font-weight: 700; }
.howto-img {
    width: 93%; display: block; height: auto; margin: 2rem auto; border-radius: 0.5rem; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}
@media (min-width: 768px) { .howto-img { width: 80%; } }
.annotation{
    font-size: 0.75rem; color: var(--gray-400); text-align: left; margin-top: -1rem; padding: 0 2rem;
}
@media (min-width: 768px) {
    .annotation { text-align: center; }
}

/* --- 店舗一覧 (Shop List) --- */
.shop-section { padding: 3rem 0; }
@media (min-width: 768px) { .shop-section { padding: 6rem 0; } }
.section-title { font-size: 1.7rem; font-weight: 700; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .section-title { font-size: 1.875rem; margin-bottom: 3rem; } }

/* タブ */
.tab-wrapper { margin-bottom: 1.5rem; }
@media (min-width: 768px) { .tab-wrapper { margin-bottom: 3rem; } }
.tab-container {
    display: inline-flex; background-color: #f3f4f6; padding: 0.375rem; border-radius: 1rem;
}
.tab-btn { padding: 0.75rem 1.5rem; border-radius: 0.75rem; font-weight: 700; transition: all 0.3s; font-size: 14px; }
@media (min-width: 768px) { .tab-btn { padding: 0.75rem 2rem; font-size: 16px; } }
.tab-btn.active {
    background-color: var(--white); color: var(--primary); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.tab-btn.inactive { color: var(--gray-500); }
.tab-btn.inactive:hover { color: var(--gray-700); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* インデックスとコンテンツの余白 */
/* .space-y-lg > * + * { margin-top: 3rem; } */

.index-card { background-color: var(--white); padding: 1rem; border-radius: 1rem; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); border: 1px solid var(--orange-50); }
@media (min-width: 768px) { .index-card { padding: 2rem; } }
.index-row { display: flex; flex-direction: column; padding: 1.2rem 0; border-bottom: 1px dashed var(--orange-200); }
.index-row:first-child { padding-top: 0; }
.index-row:last-child { border-bottom: none; padding-bottom: 0; }
.index-title-area { margin-bottom: 0.6rem; }

.index-pref { font-weight: 700; font-size: 1rem; }
@media (min-width: 768px) { .index-pref { font-size: 1.2rem; } }

@media (min-width: 768px) { .index-pref { margin-top: 3px; display: inline-block;} }
.index-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; flex: 1; }
@media (min-width: 768px) { .index-tags { gap: 0.75rem; } }
.tag-link {
    padding: 0.3rem 0.6rem; background-color: var(--orange-50); color: var(--primary); border-radius: 9999px;
    font-size: 0.84rem; font-weight: 500; border: 1px solid var(--orange-100); transition: all 0.3s;
}
@media (min-width: 768px) {.tag-link {
    padding: 0.5rem 1rem; font-size: 0.875rem;}}
.tag-link:hover { background-color: var(--primary); color: var(--white); }
@media (min-width: 768px) {
    .index-row { flex-direction: row; gap: 1rem; }
    .index-title-area { margin-bottom: 0; width: auto; }
}

.lg_wrapper{
    margin-top: 3.5rem;
}

.city-logo { width: 12rem; height: auto; margin: 0 auto; display: block;}
@media (min-width: 768px) { .city-logo { margin: 0; width: 13rem; } }

/* 店舗カード */
.shop-list-wrapper { padding-top: 1.5rem; }
.shop-card { background-color: var(--white); padding: 1.5rem; border-radius: 1.5rem; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); border: 1px solid var(--orange-100); margin-bottom: 10px; }
@media (min-width: 768px) { .shop-card { padding: 2.5rem; } }
.shop-header { margin-bottom: 1.5rem;}
@media (min-width: 768px) { .shop-header { display: flex; gap: 1rem; } }
.shop-img { width: 100%; aspect-ratio: 1.91/1; margin-bottom: 0.8rem;}
@media (min-width: 768px) { .shop-img { width: 20%; } }
.shop-img img{ width: 100%; height: auto; display: block;}
.shop-location { color: #6b7280; font-weight: 500; font-size: 0.875rem; display: block; }
.shop-link{ border: 1px solid #374151; border-radius: 0.25rem; padding: 0.25rem 0.5rem; font-size: 0.7rem; display: inline-block; margin-top: 6px;}
.shop-link:hover { background-color: var(--primary); color: var(--white); border-color: var(--primary); }
.shop-title { font-size: 1.3rem; font-weight: 500; }
@media (min-width: 768px) { .shop-title { font-size: 1.5rem; } }
.shop-detail-wrapper { border-top: 1px solid var(--orange-100); padding-top: 1rem; margin-bottom: 2rem; }
.shop-detail-btn { color: var(--primary); font-weight: 700; display: flex; align-items: center; gap: 0.5rem; }
.shop-detail-btn:hover { text-decoration: underline; }
.shop-detail-text { margin-top: 1rem; padding: 1.25rem; background-color: var(--orange-50); border-radius: 0.75rem; font-size: 0.875rem; line-height: 1.6; color: var(--gray-700); }

/* クーポンカード */
.coupon-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .coupon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .coupon-grid { grid-template-columns: repeat(4, 1fr); } }

.coupon-card {
    position: relative; background-color: var(--white); border: 2px solid var(--orange-200);
    border-radius: 0.75rem; padding: 1rem; text-align: center; transition: border-color 0.3s;
}
@media (min-width: 768px) { .coupon-card { padding: 1.5rem; } }
.coupon-card:hover { border-color: var(--primary); }
.coupon-card::before, .coupon-card::after {
    content: ''; position: absolute; top: 50%; width: 16px; height: 16px;
    background-color: var(--white); border-radius: 50%; transform: translateY(-50%);
}
.coupon-card::before { left: -10px; border-right: 2px solid var(--orange-200); }
.coupon-card::after { right: -10px; border-left: 2px solid var(--orange-200); }
.coupon-card:hover::before { border-color: var(--primary); }
.coupon-card:hover::after { border-color: var(--primary); }

.coupon-target { font-size: 0.75rem; font-weight: 700; color: var(--gray-400); margin-bottom: 0.25rem; }
.coupon-title { font-size: 1.125rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; line-height: 1.25; }
.coupon-price-area { border-top: 1px dashed #dfcdbc; padding-top: 0.5rem; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .coupon-price-area { padding-top: 1rem; } }
.coupon-label { font-size: 0.9rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.1em; }
.coupon-price { font-size: 1.3rem; font-weight: 700; }
.coupon-card .btn{ font-size: 16px;}

/* カテゴリ一覧 */
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .category-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem;} }
@media (min-width: 1024px) { .category-grid { grid-template-columns: repeat(6, 1fr); gap: 1rem;} }
.category-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 1rem; background-color: var(--white); border: 1px solid var(--orange-100);
    border-radius: 1rem; transition: all 0.3s; color: var(--gray-800);
}
@media (min-width: 768px) { .category-card { padding: 1.5rem; } }
.category-card:hover { border-color: var(--primary); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.category-icon-box {
    width: 3rem; height: 3rem; background-color: var(--orange-50); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--primary);
    margin-bottom: 0.75rem; transition: background-color 0.3s, color 0.3s;
}
.category-card:hover .category-icon-box { background-color: var(--primary); color: var(--white); }
.category-name { font-size: 0.875rem; font-weight: 700; color: var(--gray-800) !important; }
.category-empty {
    text-align: center; color: var(--gray-400); font-weight: 700; padding: 5rem 0;
    background-color: var(--white); border-radius: 1.5rem; border: 2px dashed var(--orange-100);
}
.category-title{
    font-size: 1.32rem; border-left: solid 4px var(--primary); padding-left: 0.75rem; font-weight: 700;
}

/* --- フッター --- */
.footer {
    background-color: var(--white); border-top: 1px solid var(--orange-100);
    padding-top: 3rem; padding-bottom: 6rem;
}
@media (min-width: 768px) { .footer { padding-bottom: 4rem; padding-top: 4rem;} }
.footer-btn {
    padding: 1rem 2.5rem; font-size: 1.125rem; margin-bottom: 2rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.footer-btn:hover { transform: scale(1.05); }
.footer-logo-group { display: flex; justify-content: center; align-items: center; gap: 0.3rem; margin: 20px auto; width: 90%; max-width: 180px; flex-wrap: wrap; }
.footer-logo-group .logo-img {
    width: 100%;
    height: auto;
    max-width: 150px;
}
.footer-logo-mark {
    width: 1.2rem; height: 1.2rem; background-color: var(--primary); border-radius: 0.25rem;
    display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-style: italic; font-size: 0.65rem;
}
@media (min-width: 768px) { .footer-logo-mark { width: 1.5rem; height: 1.5rem; font-size: 0.75rem; } }
.footer-logo-text { font-weight: 700; letter-spacing: -0.025em; }
.footer-copy { color: var(--gray-400); font-size: 10px; }

.golf-banner{
    width: 100%;
    margin: 20px auto;
}
.golf-banner a:hover{
    opacity: 0.5;
    transition: 0.2s;
}
.golf-banner img{
    width: 100%;
    height: auto;
    display: block;
}
@media (min-width: 768px) {
    .golf-banner { width: 600px; }
}

/* --- スマホ用フローティングボタン --- */
.floating-btn-container {
    position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
    z-index: 50; width: 100%; max-width: 20rem; padding: 0 1.5rem;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
@media (min-width: 768px) { .floating-btn-container { display: none; } }
.floating-btn-container.visible { opacity: 1; pointer-events: auto; }
.floating-btn {
    width: 100%; background-color: var(--white); color: var(--primary);
    border: 2px solid var(--primary); padding: 0.75rem 0; border-radius: 9999px;
    font-weight: 700; font-size: 14px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: transform 0.1s;
}
.floating-btn:active { transform: scale(0.95); }

/* --- アイコンユーティリティ --- */
.icon-sm { width: 1rem; height: 1rem; }
.icon-lg { width: 2rem; height: 2rem; }

/* --- SNSリンク --- */
.sns-links {
    display: flex;
    align-items: center;
    justify-content: center;
}
.sns-link {
    color: var(--gray-600);
    font-size: 1.25rem;
    transition: color 0.3s;
    margin-right: 1rem;
    border: 1px solid #929292;
    padding: 0 1em;
    border-radius: 33px;
}
.sns-link:last-child {
    margin-right: 0;
}
.sns-link:hover {
    color: var(--primary);
}
@media (min-width: 768px) {
    .sns-link {
        font-size: 1.5rem;
        margin-right: 1rem !important;
        border: none;
        padding: 0;
        border-radius: 0;
    }
}

/* --- SNSドロップダウン (スマホ用) --- */
.sns-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    border: 1px solid var(--orange-100);
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    padding: 1rem;
    display: none;
    z-index: 10;
}
.sns-dropdown.open {
    display: block;
    text-align: center;
}
.sns-dropdown .sns-links {
    justify-content: center;
    gap: 2rem;
}
.sns-close-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-600);
    cursor: pointer;
    padding: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sns-close-btn:hover {
    color: var(--primary);
}
.sns-toggle-btn {
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}