.location-block {
    flex: 1 1 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui,
        sans-serif;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #4b5563; /* gray-600 */
    font-size: 14px;
}

.location-header svg {
    width: 20px;
    height: 20px;
}

.location-title {
    font-weight: 600;
}

.location-text {
    color: #374151; /* gray-700 */
    font-size: 14px; /* text-sm */
    line-height: 1.7; /* leading-relaxed */
    white-space: pre-line; /* 改行をそのまま反映 */
    margin: 0;
}

/* 公式予約ボタン */
.reservation-card {
    width: 100%;
    max-width: 400px;
    max-height: 300px;
    margin: 0 auto;
    padding: 32px 24px 24px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui,
        sans-serif;
}

.reservation-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

.btn-primary-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    background-color: #3b82f6; /* 青 */
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
}

.btn-primary-pill .icon-star {
    font-size: 14px;
}

.btn-main {
    margin-top: 24px;
    display: block;
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: none;
    background-color: #020617; /* 濃いネイビー */
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none !important;
}

.reservation-phone {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #3b82f6;
    text-decoration: none;
}

.reservation-phone .icon-phone {
    font-size: 18px;
}

/* 特典 */
.benefit-box {
    background: #eff6ff; /* blue-50 */
    border: 2px solid #bfdbfe; /* blue-200 */
    border-radius: 12px;
    padding: 24px;
    color: #1e3a8a; /* blue-900 */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui,
        sans-serif;
    width: 100%;
    margin: 0 auto;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #dcfce7; /* green-100 */
    padding: 6px 12px;
    border-radius: 6px;
}

.verified-badge svg {
    width: 20px;
    height: 20px;
    color: #16a34a; /* green-600 */
}

.verified-text {
    font-size: 13px;
    font-weight: 600;
    color: #15803d; /* green-700 */
    white-space: nowrap;
}

.benefit-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #1e3a8a;
    font-size: 16px;
}

.benefit-check {
    margin-top: 3px;
    font-size: 16px;
    font-weight: bold;
    color: #2563eb; /* blue-600 */
}

/* クーポン */
.coupon-scroll-wrapper {
    overflow-x: auto; /* 横スクロールを有効にする */
    -webkit-overflow-scrolling: touch; /* スマホでスムーズスクロール */
}

.coupon-scroll-inner {
    display: flex;
    gap: 16px; /* カード間の余白 */
    padding-bottom: 8px; /* スクロールバーぶん余裕 */
}

.coupon-card {
    background: #ffffff;
    color: #111827;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px 0 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
    min-width: 260px; /* ここがポイント：横幅を固定または最小幅にする */
    max-width: 320px; /* お好みで */
    flex-shrink: 0; /* 親の幅に合わせて潰れないようにする */
}

.coupon-card:hover {
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
}

.coupon-image-wrapper {
    position: relative;
    height: 192px; /* h-48 相当 */
}

.coupon-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coupon-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px 16px;
    background: linear-gradient(90deg, #f97316, #ea580c);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.coupon-body {
    padding: 0 16px;
}

.coupon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 8px 16px;
    height: 36px;
    border-radius: 6px;
    border: none;
    background-color: #000000;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none !important;
    transition: background-color 0.15s ease, transform 0.1s ease;
}

.coupon-button:hover {
    background-color: #1f2933;
}

.coupon-button:active {
    transform: translateY(1px);
}

.coupon-button svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* 矢印ボタン周り */
.scroll-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

/* PCでは非表示（スマホのみ表示したい場合） */
@media (min-width: 768px) {
    /* .scroll-buttons {
        display: none;
    } */
}

.scroll-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #d1d5db; /* gray-300 */
    background-color: #ffffff;
    color: #111827;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.15s ease, border-color 0.15s ease,
        transform 0.1s ease;
}

.scroll-button:hover {
    background-color: #f3f4f6; /* gray-100 */
    border-color: #9ca3af; /* gray-400 */
}

.scroll-button:active {
    transform: translateY(1px);
}

.scroll-button svg {
    width: 20px;
    height: 20px;
}

/*  */

/* スマホ専用 */
.scroll-buttons-sp {
    display: flex;
}
@media (min-width: 768px) {
    .scroll-buttons-sp {
        display: none;
    }
}

/* PC専用 */
.scroll-buttons-pc {
    display: none;
}
@media (min-width: 768px) {
    .scroll-buttons-pc {
        display: flex;
    }
}

/* リストのバナー */
.campaign-banner {
    background: linear-gradient(
        90deg,
        #f97316,
        #ef4444
    ); /* from-orange-500 to-red-500 */
    border-radius: 12px; /* rounded-lg */
    padding: 24px; /* p-6 */
    margin-bottom: 24px; /* mb-6 */
    color: #ffffff; /* text-white */
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25); /* shadow-lg */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui,
        sans-serif;
}

.campaign-banner-inner {
    display: flex; /* flex */
    align-items: center; /* items-center */
    justify-content: space-between; /* justify-between */
    gap: 16px;
}

.campaign-title {
    font-size: 24px; /* text-2xl */
    font-weight: 700; /* font-bold */
    margin: 0 0 8px; /* mb-2 */
}

.campaign-subtitle {
    margin: 0;
    color: #fffbeb; /* text-orange-50 っぽい薄い色 */
    font-size: 14px;
}

.campaign-icon {
    width: 64px; /* w-16 */
    height: 64px; /* h-16 */
    opacity: 0.2; /* opacity-20 */
    flex-shrink: 0;
}

.campaign-banner-link {
    text-decoration: none !important;
    display: block; /* バナー全体をクリック可能にする */
}

.campaign-banner-link:hover .campaign-banner {
    opacity: 0.95; /* 少し反応 */
    cursor: pointer;
}

.campaign-banner-link:active .campaign-banner {
    transform: scale(0.98); /* タップ感 */
}

/* ホテルリスト */
.benefits-stack {
    margin-bottom: 16px;
}

.benefit-card {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #e5e7eb;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui,
        sans-serif;
    font-size: 14px;
    margin-bottom: 12px; /* space-y-3 相当 */
}

/* 青い「公式特典」カード */
.benefit-card--official {
    background-color: #eff6ff; /* blue-50 */
    border-color: #bfdbfe; /* blue-200 */
    color: #1e3a8a; /* blue-900 */
}

.benefit-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.benefit-card-header svg {
    width: 16px;
    height: 16px;
}

.benefit-title {
    font-weight: 600;
    font-size: 13px;
}

.benefit-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: #dcfce7; /* green-100 */
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #15803d; /* green-700 */
    white-space: nowrap;
}

.benefit-verified-badge svg {
    width: 16px;
    height: 16px;
    color: #16a34a; /* green-600 */
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

.benefit-list li {
    margin-bottom: 4px; /* space-y-1 */
}

/* オレンジの「特別クーポン」カード */
.benefit-card--coupon {
    background-color: #fff7ed; /* orange-50 */
    border-color: #fed7aa; /* orange-200 */
    color: #9a3412; /* orange-900 */
}

.benefit-card--coupon .benefit-title {
    color: #9a3412;
}

.benefit-card--coupon .benefit-list {
    color: #9a3412; /* orange-800 相当 */
}

.benefit-card--coupon .benefit-card-header svg {
    color: #ea580c; /* orange-600 */
}
