@charset "UTF-8";

/* ==================================
   Visitor Page Styles
   For International Guests
   Matching Top Page Design
   ================================== */

/* Base Page Styles - Match Top Page */
.visitor-page {
    background-color: #fff;
    color: #000;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Segoe UI", "メイリオ", Meiryo, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.025em;
}

@media all and (min-width: 640px) {
    .visitor-page {
        font-size: 16px;
    }
}

.visitor-page a {
    color: #000;
    transition: opacity 0.3s;
}

.visitor-page a:hover {
    opacity: 0.7;
}

/* Inner Container - Match l-inner */
.v-inner {
    position: relative;
    width: calc(100% - 40px);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media all and (min-width: 640px) {
    .v-inner {
        width: calc(100% - 80px);
    }
}

@media all and (min-width: 960px) {
    .v-inner {
        width: calc(100% - 100px);
    }
}

/* ==================================
   Section Headers (Match o-heading style)
   ================================== */
.v-section-header {
    text-align: center;
    margin-bottom: 25px;
}

@media all and (min-width: 640px) {
    .v-section-header {
        margin-bottom: 50px;
    }
}

.v-section-header__en {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #3fa2ee;
    text-transform: uppercase;
    margin-bottom: 8px;
}

@media all and (min-width: 640px) {
    .v-section-header__en {
        font-size: 14px;
    }
}

.v-section-header__title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.05em;
}

@media all and (min-width: 640px) {
    .v-section-header__title {
        font-size: 28px;
    }
}

/* ==================================
   Section 1: Hero Section
   ================================== */
.v-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.v-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.v-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.v-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.v-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 20px 60px;
    max-width: 900px;
}

@media all and (min-width: 640px) {
    .v-hero__content {
        padding: 120px 40px 80px;
    }
}

.v-hero__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

@media all and (min-width: 640px) {
    .v-hero__title {
        font-size: 42px;
        letter-spacing: 0.08em;
    }
}

@media all and (min-width: 960px) {
    .v-hero__title {
        font-size: 52px;
    }
}

.v-hero__subtitle {
    font-size: 14px;
    color: #fff;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

@media all and (min-width: 640px) {
    .v-hero__subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

/* USP Badges */
.v-hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

@media all and (min-width: 640px) {
    .v-hero__badges {
        gap: 15px;
        margin-bottom: 40px;
    }
}

.v-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #3fa2ee;
    border-radius: 50px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #3fa2ee;
    transition: all 0.3s ease;
}

.v-badge:hover {
    background: #3fa2ee;
    color: #fff;
}

@media all and (min-width: 640px) {
    .v-badge {
        padding: 12px 20px;
        font-size: 13px;
    }
}

.v-badge__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* CTA Button */
.v-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.v-btn--primary {
    background: #3fa2ee;
    color: #fff;
    box-shadow: 0 4px 15px rgba(63, 162, 238, 0.4);
}

.v-btn--primary:hover {
    background: #2a8dd9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(63, 162, 238, 0.5);
    color: #fff;
    opacity: 1;
}

.v-btn--secondary {
    background: #00B900;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 185, 0, 0.3);
}

.v-btn--secondary:hover {
    background: #00a000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 185, 0, 0.4);
    color: #fff;
    opacity: 1;
}

@media all and (min-width: 640px) {
    .v-btn {
        padding: 18px 40px;
        font-size: 16px;
    }
}

/* ==================================
   Concept Image Section
   ================================== */
.v-concept-image {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}

@media all and (min-width: 640px) {
    .v-concept-image {
        margin-top: 100px;
        margin-bottom: 100px;
    }
}

.v-concept-image picture {
    display: block;
    width: 100%;
}

.v-concept-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==================================
   Section 2: Why Choose Us (Concept Style)
   ================================== */
.v-features {
    position: relative;
    padding: 50px 0 40px;
    background: #fff;
}

@media all and (min-width: 640px) {
    .v-features {
        padding: 100px 0 80px;
    }
}

/* Features Subheading */
.v-features__subheading {
    width: 180px;
    margin: 0 auto 25px;
    text-align: center;
}

@media all and (min-width: 640px) {
    .v-features__subheading {
        width: 290px;
        margin-bottom: 50px;
    }
}

.v-features__subheading img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Carousel */
.v-features__carousel {
    margin-top: 25px;
}

@media all and (min-width: 640px) {
    .v-features__carousel {
        margin-top: 50px;
    }
}

/* Visitor Why Carousel Swiper */
.c-visitor-why {
    padding: 10px 0 30px;
}

.c-visitor-why__inner {
    display: flex;
}

.c-visitor-why__item {
    height: auto;
}

.c-visitor-why__pagination {
    margin-top: 20px;
    padding: 0 40px;
}

.c-visitor-why__pagination .swiper-pagination {
    position: relative;
    height: 3px;
    background: #e0e0e0;
    border-radius: 2px;
}

.c-visitor-why__pagination .swiper-pagination-progressbar-fill {
    background: #3fa2ee;
    border-radius: 2px;
}

/* Why Card (Inside Carousel) */
.v-why-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    height: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.v-why-card:hover {
    border-color: #3fa2ee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.swiper-slide-active .v-why-card {
    border-color: #3fa2ee;
    box-shadow: 0 8px 30px rgba(63, 162, 238, 0.15);
}

.v-why-card__number {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #3fa2ee;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.v-why-card__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: #3fa2ee;
    border-radius: 50%;
    font-size: 24px;
}

.v-why-card__icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.v-why-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.v-why-card__text {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    flex: 1;
}

@media all and (min-width: 640px) {
    .v-why-card {
        padding: 30px 24px;
        min-height: 260px;
    }
    
    .v-why-card__icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .v-why-card__icon svg {
        width: 28px;
        height: 28px;
    }
    
    .v-why-card__title {
        font-size: 17px;
    }
    
    .v-why-card__text {
        font-size: 13px;
    }
}

/* Hide grid on all devices (carousel only display) */
.v-features__grid {
    display: none;
}

.v-feature-card__icon {
    font-size: 24px;
}

.v-feature-card__icon svg {
    width: 24px;
    height: 24px;
    color: #3fa2ee;
}

/* ==================================
   Section 3: Floor Guide (Match t-floor)
   ================================== */
.v-floor {
    position: relative;
    padding: 50px 0;
    background-image: url("../images/floor_bg.png");
    background-repeat: repeat;
    background-size: 15px;
}

@media all and (min-width: 640px) {
    .v-floor {
        padding: 100px 0;
        background-size: 30px;
    }
}

.v-floor__body {
    margin-bottom: 25px;
    padding-top: 25px;
}

@media all and (min-width: 640px) {
    .v-floor__body {
        margin-bottom: 50px;
        padding-top: 50px;
    }
}

/* Floor Accordion - Match top page c-floor-machine */
.visitor-page .c-floor-machine {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

@media all and (min-width: 640px) {
    .visitor-page .c-floor-machine {
        margin-bottom: 15px;
    }
}

.visitor-page .c-floor-machine__head {
    position: relative;
    background: transparent;
    padding: 12px 15px;
    cursor: pointer;
    list-style: none;
    transition: background 0.3s ease;
}

.visitor-page .c-floor-machine__head:hover {
    background: #f5f5f5;
}

.visitor-page .c-floor-machine__head::-webkit-details-marker {
    display: none;
}

.visitor-page .c-floor-machine__head h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

@media all and (min-width: 640px) {
    .visitor-page .c-floor-machine__head {
        padding: 15px 20px;
    }
    
    .visitor-page .c-floor-machine__head h3 {
        font-size: 16px;
        gap: 15px;
    }
}

/* Floor Number Badge */
.v-floor-number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #3fa2ee;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

@media all and (min-width: 640px) {
    .v-floor-number {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

.v-floor-name {
    flex: 1;
}

/* Accordion Open Icon - Match top page exactly */
.visitor-page .o-openIcon {
    position: absolute;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #ff7ba6;
}

@media all and (min-width: 640px) {
    .visitor-page .o-openIcon {
        width: 24px;
        height: 24px;
    }
}

.visitor-page .o-openIcon.--is__machine {
    top: 50%;
    right: 12px;
    translate: 0 -50%;
}

@media all and (min-width: 640px) {
    .visitor-page .o-openIcon.--is__machine {
        right: 24px;
    }
}

.visitor-page .o-openIcon::before,
.visitor-page .o-openIcon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    display: block;
    width: 53%;
    height: 1px;
    content: "";
    background-color: white;
}

@media all and (min-width: 960px) {
    .visitor-page .o-openIcon::before,
    .visitor-page .o-openIcon::after {
        height: 2px;
    }
}

.visitor-page .o-openIcon::after {
    rotate: 90deg;
}

.visitor-page details[open] .o-openIcon::after {
    rotate: 0deg;
}

/* Machine Slider Inner - Match top page exactly */
.visitor-page .c-floor-machine__inner {
    background: #fff;
    padding: 0;
    position: relative;
}

@media all and (min-width: 640px) {
    .visitor-page .c-floor-machine__inner {
        padding: 0 72px;
    }
}

/* Machine Slider Item - Match top page */
.visitor-page .c-floor-machine__slider-item {
    padding: 35px 35px 24px;
}

@media all and (min-width: 640px) {
    .visitor-page .c-floor-machine__slider-item {
        padding: 50px 0 24px;
    }
    .visitor-page .c-floor-machine__slider-item .__visual {
        padding: 0 50px;
    }
}

.visitor-page .c-floor-machine.--swiper__deny .c-floor-machine__slider-item {
    width: 100%;
}

@media all and (min-width: 640px) {
    .visitor-page .c-floor-machine.--swiper__deny .c-floor-machine__slider-item {
        width: 33.3333%;
        margin: 0 auto;
    }
}

.visitor-page .c-floor-machine__slider-item .__visual {
    width: 100%;
    border-radius: 8px;
}

.visitor-page .c-floor-machine__slider-item .__text {
    text-align: center;
    font-weight: 500;
    padding-top: 16px;
    font-size: 13px;
    color: #333;
}

@media all and (min-width: 640px) {
    .visitor-page .c-floor-machine__slider-item .__text {
        padding: 0 16px;
        padding-top: 24px;
        font-size: 14px;
    }
}

/* Slider Navigation Arrows - Match top page */
.visitor-page .c-floor-machine__slider-pager {
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.visitor-page .c-floor-machine__slider-pager.--prev {
    left: 20px;
}

.visitor-page .c-floor-machine__slider-pager.--next {
    right: 20px;
}

/* Facility Info Image - Match t-floor__facility */
.v-floor__facility {
    margin-bottom: 50px;
}

@media all and (min-width: 640px) {
    .v-floor__facility {
        margin-bottom: 100px;
    }
}

/* Gym Interior Image - Match t-floor__foot */
.v-floor__foot {
    margin-bottom: 30px;
}

@media not all and (min-width: 640px) {
    .v-floor__foot > * {
        position: relative;
        left: calc(50% - 50vw);
        display: block;
        width: 100vw;
    }
}

/* Floor Note Box */
.v-floor__note {
    margin-top: 25px;
    background: #fff;
    border: 2px solid #3fa2ee;
    border-radius: 10px;
    padding: 20px;
}

@media all and (min-width: 640px) {
    .v-floor__note {
        margin-top: 40px;
        padding: 25px 30px;
    }
}

.v-floor__note-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #3fa2ee;
    margin-bottom: 12px;
}

.v-floor__note-list {
    list-style: none;
    padding: 0;
}

.v-floor__note-list li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.v-floor__note-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3fa2ee;
}

/* ==================================
   Section 4: Pricing (Match t-price)
   ================================== */
.v-pricing {
    position: relative;
    padding: 50px 0;
    background: #eaf3f9;
}

@media all and (min-width: 640px) {
    .v-pricing {
        padding: 100px 0;
    }
}

/* Pricing Table - Complete Rebuild for Perfect Alignment */
.v-pricing__table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    background: #fff;
    table-layout: fixed;
}

.v-pricing__table tbody {
    background: #fff;
}

.v-pricing__table thead {
    background: #3fa2ee;
}

.v-pricing__table th {
    padding: 14px 10px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    border: 1px solid #2a8dd9;
    vertical-align: middle;
}

.v-pricing__table th:first-child {
    border-left: none;
}

.v-pricing__table th:last-child {
    border-right: none;
}

@media all and (min-width: 640px) {
    .v-pricing__table th {
        padding: 18px 15px;
        font-size: 18px;
    }
}

/* すべての行とセルに同じ高さを強制 */
.v-pricing__table tbody tr {
    height: auto;
}

.v-pricing__table td {
    padding: 16px 10px;
    font-size: 16px;
    color: #333;
    text-align: center;
    background: #fff !important;
    border: 1px solid #eee;
    border-top: none;
    vertical-align: middle;
    position: relative;
    line-height: 1.5;
}

.v-pricing__table td:first-child {
    border-left: none;
}

.v-pricing__table td:last-child {
    border-right: none;
}

.v-pricing__table tbody tr:first-child td {
    border-top: 1px solid #eee;
}

.v-pricing__table tbody tr:last-child td {
    border-bottom: none;
}

@media all and (min-width: 640px) {
    .v-pricing__table td {
        padding: 20px 15px;
        font-size: 18px;
    }
}

/* Pass Name Column - Left Aligned */
.v-pricing__pass-name {
    font-weight: 700;
    color: #000;
    text-align: left;
    vertical-align: middle;
    font-size: 16px;
}

@media all and (min-width: 640px) {
    .v-pricing__pass-name {
        font-size: 18px;
    }
}

/* Price Column - Center Aligned, No Flex */
.v-pricing__price {
    font-size: 20px;
    font-weight: 700;
    color: #3fa2ee;
    text-align: center;
    background: #fff !important;
    vertical-align: middle;
    line-height: 1.4;
}

.v-pricing__price > span:first-child {
    display: block;
    margin-bottom: 2px;
}

@media all and (min-width: 640px) {
    .v-pricing__price {
        font-size: 24px;
    }
    
    .v-pricing__price > span:first-child {
        margin-bottom: 4px;
    }
}

/* USD Column - Center Aligned */
.v-pricing__usd {
    font-size: 14px;
    color: #666;
    vertical-align: middle;
    text-align: center;
    line-height: 1.4;
}

.v-pricing__usd > span:first-child {
    display: block;
    margin-bottom: 2px;
}

@media all and (min-width: 640px) {
    .v-pricing__usd {
        font-size: 16px;
    }
    
    .v-pricing__usd > span:first-child {
        margin-bottom: 4px;
    }
}

/* Currency Selector in Table Header */
.v-pricing__currency-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.v-pricing__currency-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    line-height: 1.2;
}

.v-pricing__currency-select {
    padding: 5px 30px 5px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #3fa2ee;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 160px;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%233fa2ee' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 10px;
}

.v-pricing__currency-select:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background-color: #f8f9fa;
}

.v-pricing__currency-select:focus {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.v-pricing__currency-select option {
    padding: 8px;
    background: #fff;
    color: #333;
    font-size: 14px;
}

/* モバイル表示でのテーブルヘッダー調整 */
.v-pricing__table th:last-child {
    padding: 10px 8px;
}

@media all and (min-width: 640px) {
    .v-pricing__currency-selector {
        flex-direction: row;
        gap: 12px;
        align-items: center;
        width: auto;
    }
    
    .v-pricing__currency-label {
        font-size: 14px;
    }
    
    .v-pricing__currency-select {
        font-size: 15px;
        padding: 8px 40px 8px 14px;
        min-width: 200px;
        max-width: none;
        width: auto;
    }
    
    .v-pricing__table th:last-child {
        padding: 18px 15px;
    }
}

@media all and (min-width: 960px) {
    .v-pricing__currency-select {
        font-size: 16px;
        min-width: 220px;
    }
}

/* USD Per Day */
.v-pricing__perday-usd {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #666;
    white-space: nowrap;
    margin-top: 2px;
    line-height: 1.2;
}

.v-pricing__perday-usd--highlight {
    color: #33b1a7;
    font-weight: 500;
}

@media all and (min-width: 640px) {
    .v-pricing__perday-usd {
        font-size: 13px;
        margin-top: 4px;
    }
}

.v-pricing__desc {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    margin-top: 4px;
}

@media all and (min-width: 640px) {
    .v-pricing__desc {
        font-size: 14px;
    }
}

.v-pricing__perday {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    white-space: nowrap;
    margin-top: 2px;
    line-height: 1.2;
}

@media all and (min-width: 640px) {
    .v-pricing__perday {
        font-size: 14px;
        margin-top: 4px;
    }
}

.v-pricing__perday--highlight {
    color: #33b1a7;
    font-weight: 500;
}

/* Important Notes Box */
.v-pricing__important {
    background: #fff;
    border: 2px solid #ff9800;
    border-radius: 16px;
    padding: 20px;
    margin-top: 30px;
}

@media all and (min-width: 640px) {
    .v-pricing__important {
        padding: 30px;
        margin-top: 40px;
    }
}

.v-pricing__important-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 16px;
}

@media all and (min-width: 640px) {
    .v-pricing__important-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

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

.v-pricing__important-list li {
    position: relative;
    padding-left: 24px;
    font-size: 13px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 12px;
}

.v-pricing__important-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 12px;
}

.v-pricing__important-list li:last-child {
    margin-bottom: 0;
}

.v-pricing__important-list strong {
    color: #000;
}

@media all and (min-width: 640px) {
    .v-pricing__important-list li {
        font-size: 14px;
    }
}

/* Best Value Tag */
.v-tag {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-left: 8px;
    vertical-align: middle;
}

.v-tag--best {
    background: #33b1a7;
    color: #fff;
}

.v-tag--popular {
    background: #f2b662;
    color: #fff;
}

/* Pricing Notes */
.v-pricing__notes {
    margin-top: 20px;
    text-align: center;
}

.v-pricing__note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #666;
    margin: 0 12px 8px;
}

@media all and (min-width: 640px) {
    .v-pricing__note {
        font-size: 14px;
    }
}

/* ==================================
   Section 5: How to Use
   ================================== */
.v-howto {
    padding: 50px 0;
    background: #fff;
}

@media all and (min-width: 640px) {
    .v-howto {
        padding: 100px 0;
    }
}

/* Option Tabs */
.v-option-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
}

@media all and (min-width: 640px) {
    .v-option-tabs {
        flex-direction: row;
        gap: 15px;
    }
}

.v-option-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.v-option-tab:hover {
    border-color: #3fa2ee;
    background: rgba(63, 162, 238, 0.05);
}

.v-option-tab.is-active {
    border-color: #3fa2ee;
    background: rgba(63, 162, 238, 0.1);
}

.v-option-tab__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #3fa2ee;
    margin-bottom: 4px;
}

.v-option-tab__title {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 2px;
}

@media all and (min-width: 640px) {
    .v-option-tab__title {
        font-size: 16px;
    }
}

.v-option-tab__desc {
    font-size: 11px;
    color: #666;
}

@media all and (min-width: 640px) {
    .v-option-tab__desc {
        font-size: 12px;
    }
}

/* Option Content */
.v-option-content {
    display: none;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #e0e0e0;
    animation: fadeIn 0.4s ease;
}

.v-option-content.is-active {
    display: block;
}

@media all and (min-width: 640px) {
    .v-option-content {
        padding: 40px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Steps */
.v-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v-step {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.v-step:last-child {
    margin-bottom: 0;
}

.v-step__number {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3fa2ee, #65b0ed);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50%;
}

@media all and (min-width: 640px) {
    .v-step__number {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

.v-step__content {
    flex: 1;
    padding-top: 6px;
}

.v-step__title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

@media all and (min-width: 640px) {
    .v-step__title {
        font-size: 18px;
    }
}

.v-step__text {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
}

.v-step__text strong {
    color: #3fa2ee;
}

/* Step Link Button */
.v-step__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #3fa2ee, #65b0ed);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.v-step__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(63, 162, 238, 0.3);
    opacity: 1;
}

.v-step__link--line {
    background: #00B900;
}

.v-step__link--line:hover {
    box-shadow: 0 5px 15px rgba(0, 185, 0, 0.3);
}

.v-step__link--secondary {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
}

.v-step__link--secondary:hover {
    background: #e9ecef;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Step Buttons Container */
.v-step__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

/* Info Box */
.v-info-box {
    margin-top: 14px;
    background: rgba(51, 177, 167, 0.1);
    border: 1px solid #33b1a7;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 13px;
    color: #333;
    line-height: 1.6;
}

.v-info-box strong {
    color: #33b1a7;
}

.v-info-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.v-info-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 4px;
    font-size: 12px;
}

.v-info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #33b1a7;
}

/* Warning Box */
.v-warning-box {
    margin-top: 14px;
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 13px;
    color: #333;
    line-height: 1.6;
}

.v-warning-box strong {
    color: #ff9800;
}

/* Utility */
.v-mt-16 {
    margin-top: 16px;
}

/* Legacy Tip Box (kept for compatibility) */
.v-tip {
    margin-top: 20px;
    background: rgba(51, 177, 167, 0.1);
    border: 1px solid rgba(51, 177, 167, 0.3);
    border-radius: 8px;
    padding: 14px;
}

.v-tip__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #33b1a7;
    margin-bottom: 6px;
}

.v-tip__text {
    font-size: 12px;
    color: #333;
}

/* ==================================
   Section 6: Rules
   ================================== */
.v-rules {
    padding: 50px 0;
    background: #f8f9fa;
}

@media all and (min-width: 640px) {
    .v-rules {
        padding: 100px 0;
    }
}

.v-rules__grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

@media all and (min-width: 768px) {
    .v-rules__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

.v-rule-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e0e0e0;
}

@media all and (min-width: 640px) {
    .v-rule-box {
        padding: 25px;
    }
}

.v-rule-box__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.v-rule-box__icon {
    width: 22px;
    height: 22px;
    color: #3fa2ee;
}

.v-rule-box__list {
    list-style: none;
    padding: 0;
}

.v-rule-box__list li {
    position: relative;
    padding-left: 22px;
    font-size: 13px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
}

.v-rule-box__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #33b1a7;
    font-weight: 700;
}

.v-rule-box__list li.is-warning::before {
    content: '✗';
    color: #ec777c;
}

.v-rule-box__list li.is-allowed::before {
    content: '✓';
    color: #33b1a7;
}

/* Penalty Box */
.v-penalty {
    margin-top: 30px;
    background: rgba(236, 119, 124, 0.05);
    border: 2px solid #ec777c;
    border-radius: 12px;
    padding: 20px 25px;
    text-align: left;
}

@media all and (min-width: 640px) {
    .v-penalty {
        padding: 25px 30px;
    }
}

.v-penalty__title {
    font-size: 16px;
    font-weight: 700;
    color: #ec777c;
    margin-bottom: 14px;
}

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

.v-penalty__list li {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
}

.v-penalty__list li:last-child {
    margin-bottom: 0;
}

.v-penalty__list strong {
    color: #ec777c;
}

.v-penalty__text {
    font-size: 13px;
    color: #333;
}

.v-penalty__amount {
    font-size: 22px;
    font-weight: 700;
    color: #ec777c;
}

/* ==================================
   Section 7: FAQ
   ================================== */
.v-faq {
    padding: 50px 0;
    background: #fff;
}

@media all and (min-width: 640px) {
    .v-faq {
        padding: 100px 0;
    }
}

.v-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.v-faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.v-faq-item:hover {
    border-color: #3fa2ee;
}

.v-faq-item[open] {
    border-color: #3fa2ee;
}

.v-faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    list-style: none;
    transition: background 0.3s ease;
}

.v-faq-item__question:hover {
    background: #f8f9fa;
}

@media all and (min-width: 640px) {
    .v-faq-item__question {
        padding: 20px;
        font-size: 15px;
    }
}

.v-faq-item__question::-webkit-details-marker {
    display: none;
}

.v-faq-item__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid #3fa2ee;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.v-faq-item__icon::before,
.v-faq-item__icon::after {
    content: '';
    position: absolute;
    background: #3fa2ee;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.v-faq-item__icon::before {
    width: 8px;
    height: 2px;
}

.v-faq-item__icon::after {
    width: 2px;
    height: 8px;
}

.v-faq-item[open] .v-faq-item__icon::after {
    height: 0;
}

.v-faq-item[open] .v-faq-item__icon {
    background: #3fa2ee;
}

.v-faq-item[open] .v-faq-item__icon::before {
    background: #fff;
}

.v-faq-item__answer {
    padding: 0 16px 16px;
    font-size: 13px;
    color: #333;
    line-height: 1.7;
}

@media all and (min-width: 640px) {
    .v-faq-item__answer {
        padding: 0 20px 20px;
        font-size: 14px;
    }
}

/* ==================================
   Section 8: Access (Using Top Page Styles)
   ================================== */
/* LINE link in access table */
.v-line-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00B900;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.v-line-link:hover {
    opacity: 0.7;
}

.v-line-link img {
    flex-shrink: 0;
}

/* ==================================
   Utility Classes
   ================================== */
.v-text-center {
    text-align: center;
}

.v-text-accent {
    color: #3fa2ee;
}

.v-text-secondary {
    color: #33b1a7;
}

.v-mt-20 {
    margin-top: 20px;
}

.v-mt-40 {
    margin-top: 40px;
}

.v-mb-20 {
    margin-bottom: 20px;
}

.v-mb-40 {
    margin-bottom: 40px;
}

/* Responsive Utilities */
@media not all and (min-width: 640px) {
    .v-hide-sp {
        display: none !important;
    }
}

@media all and (min-width: 640px) {
    .v-show-sp-only {
        display: none !important;
    }
}

@media not all and (min-width: 768px) {
    .v-hide-tablet {
        display: none !important;
    }
}

@media not all and (min-width: 960px) {
    .v-hide-pc {
        display: none !important;
    }
}

/* Animation Support for GSAP */
.js-fadein--y {
    opacity: 0;
    transform: translateY(30px);
}

.js-fadein--y.is-animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Scroll Animation Delays */
.js-fadein--y[data-delay="1"] {
    transition-delay: 0.1s;
}

.js-fadein--y[data-delay="2"] {
    transition-delay: 0.2s;
}

.js-fadein--y[data-delay="3"] {
    transition-delay: 0.3s;
}

.js-fadein--y[data-delay="4"] {
    transition-delay: 0.4s;
}

/* ==================================
   WhatsApp Contact Integration
   ================================== */

/* WhatsApp Sticky Button Style (replaces LINE in second slot) */
.g-sticky__button--whatsapp {
    background: #25D366;
}

.g-sticky__button--whatsapp .__icon {
    display: inline-block;
    width: 7.2vw;
    margin-right: 4vw;
}

@media all and (min-width: 640px) {
    .g-sticky__button--whatsapp {
        border-bottom-left-radius: 16px;
    }
    
    .g-sticky__button--whatsapp .__icon {
        width: 30px;
        margin-right: 0;
        margin-bottom: 22px;
    }
}

/* Step Link - WhatsApp Style */
.v-step__link--whatsapp {
    background: #25D366;
}

.v-step__link--whatsapp:hover {
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Access Section - Contact Links Container */
.v-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

@media all and (min-width: 640px) {
    .v-contact-links {
        gap: 24px;
    }
}

/* WhatsApp Link Style (matching v-line-link) */
.v-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25D366;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.v-whatsapp-link:hover {
    opacity: 0.7;
}

.v-whatsapp-link img {
    flex-shrink: 0;
}
