@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans JP", 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

/* Header */
header {
    background: #fff;
    padding: 15px 0 10px;
    position: relative;
    z-index: 100;
}

.logo-container {
    text-align: center;
    margin-bottom: 12px;
}

.logo-img {
    max-width: 300px;
    width: 100%;
    /* height: 200PX; */
    display: block;
    margin: 0 auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

nav {
    max-width: 1400px;
    /* MAX-WIDTH: container width - increase for wider spread */
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 80px;
    /* GAP: space between nav items - increase for wider spread */
    flex-wrap: wrap;
    padding: 0 20px;
    width: 100%;
}

nav a {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 15px;
    /* PADDING: click area size - increase for bigger buttons */
    transition: color 0.3s;
}

nav a .nav-english {
    font-size: 25px;
    /* FONT-SIZE: English text size - increase for bigger text */
    font-weight: bold;
    margin-bottom: 4px;
    /* MARGIN-BOTTOM: space between English and Japanese */
    line-height: 1.2;
}

nav a .nav-japanese {
    font-size: 17px;
    /* FONT-SIZE: Japanese text size - increase for bigger text */
    color: #666;
    line-height: 1.2;
}

nav a.active .nav-english,
nav a:hover .nav-english {
    color: #0066cc;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    height: auto;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: visible;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
}

.hero-overlay {
    position: absolute;
    left: 15%;
    top: 0%;
    height: 85%;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 30px 28px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 4px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 65px;
    font-family: "Noto Sans JP", 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
    line-height: 1.2;
}

.hero-overlay .horizontal-text {
    text-combine-upright: all;
    text-orientation: upright;
}
.hero-overlay br {
    display: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Soft Scroll Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   CUSTOM AOS OVERRIDES - DRAMATIC ANIMATIONS
   Bigger movements (200px+) as per client request
   ======================================== */

/* Override AOS fade-left with bigger movement */
[data-aos="fade-left"] {
    transform: translateX(200px) !important;
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0) !important;
}

/* Override AOS fade-right with bigger movement */
[data-aos="fade-right"] {
    transform: translateX(-200px) !important;
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0) !important;
}

/* Override AOS fade-up with bigger movement */
[data-aos="fade-up"] {
    transform: translateY(100px) !important;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0) !important;
}

/* Override AOS zoom-in with bigger scale */
[data-aos="zoom-in"] {
    transform: scale(0.5) !important;
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1) !important;
}

/* Custom dramatic slide from left (for studio description) */
[data-aos="slide-left-big"] {
    opacity: 0;
    transform: translateX(-300px);
    transition-property: opacity, transform;
}

[data-aos="slide-left-big"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* Custom dramatic slide from right (for icons) */
[data-aos="slide-right-big"] {
    opacity: 0;
    transform: translateX(300px);
    transition-property: opacity, transform;
}

[data-aos="slide-right-big"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* EDGE-TO-CENTER ANIMATIONS - Very dramatic movements from screen edges */
[data-aos="from-left-edge"] {
    opacity: 0;
    transform: translateX(-100vw);
    transition-property: opacity, transform;
}

[data-aos="from-left-edge"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="from-right-edge"] {
    opacity: 0;
    transform: translateX(100vw);
    transition-property: opacity, transform;
}

[data-aos="from-right-edge"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}


/* Section Styles */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}

.section-title {
    font-size: 48px;
    color: #0066cc;
    margin-bottom: 10px;
    font-weight: bold;
    /* animation: fadeInUp 0.6s ease-out; removed simple animation in favor of scroll observer */
    transition: transform 0.3s ease;
}

/*
.section-title:hover {
    animation: float 3s ease-in-out infinite;
}
*/

.section-subtitle {
    font-size: 18px;
    color: #333;
    margin-bottom: 40px;
    /* animation: fadeInUp 0.6s ease-out 0.2s both; removed simple animation */
}

/* News Section */
.news {
    background: #fff;
    text-align: center;
}

.news .section-title {
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
}

.news .section-subtitle {
    font-size: 20px;
    color: #333;
    margin-bottom: 40px;
}

.news-items {
    margin-bottom: 30px;
    display: inline-block;
    text-align: left;
}

.btn-view-more {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    clear: both;
    padding: 18px 60px;
}

.news-section-actions {
    text-align: center;
    margin-top: 30px;
}

.news-item {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    display: flex;
    align-items: center;
    animation: fadeInUp 0.6s ease-out;
}

.news-item:nth-child(1) {
    animation-delay: 0.1s;
}

.news-item:nth-child(2) {
    animation-delay: 0.2s;
}

.news-item:nth-child(3) {
    animation-delay: 0.3s;
}

.news-item:last-child {
    border-bottom: 1px solid #ddd;
}

.news-date {
    color: #333;
    margin-right: 50px;
    white-space: nowrap;
    letter-spacing: 2px;
}

.news-item span:last-child {
    color: #333;
    letter-spacing: 2px;
}

.btn-view-more {
    padding: 12px 40px;
    background: #fff;
    color: #000000;
    text-decoration: none;
    border: 2px solid #000000;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
}

.btn-view-more:hover {
    border-color: #0066cc;
    color: #0066cc;
}

/* Studio Section */
.studio {
    background: #f2f2f2;
    position: relative;
    overflow: visible;
    overflow-y: visible;
    padding: 80px 40px;
    max-width: 100%;
    width: 63%;
}

.studio-header {
    position: relative;
    overflow: visible;
    padding: 10px 0 30px;
    text-align: center;
}

.studio-banner {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 0px;
    padding-left: 20px;
    --watermark-y: -100px;
    /* moved higher */
    transform: translateY(var(--watermark-y));
    overflow: hidden;
}

.studio-banner-text {
    font-size: 70px;
    font-weight: 900;
    font-style: normal;
    color: rgba(255, 255, 255, 0.78);
    white-space: nowrap;
    letter-spacing: 14px;
    user-select: none;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.14);
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.55);
}

.studio-content {
    position: relative;
    z-index: 1;
    background: transparent;
    overflow: visible;
    text-align: center;
}

.studio-title {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
    background: transparent;
}

.studio-s {
    color: #0066cc;
    font-weight: bold;
    background: transparent;
    font-size: 60px;
}

.studio-tudio {
    color: #333;
    font-weight: bold;
    background: transparent;
}

.studio-tudio2 {
    color: #fff;
    font-weight: bold;
    background: transparent;
}

.section-subtitle {
    background: transparent;
}

.studio-description {
    font-size: 17px;
    line-height: 2;
    margin-bottom: 50px;
    color: #000000;
    background: transparent;
    overflow: visible;
    text-align: left;
}

.studio-description p {
    margin: 0;
    padding: 5px 0;
}

.studio-features {
    display: flex;
    justify-content: center;
    gap: 180px;
    margin-bottom: 50px;
}

.feature-item {
    text-align: center;
    transition: transform 0.3s ease;
    opacity: 1;
    /* OPACITY: 1 = visible, was 0 for animation */
}

.feature-item:hover {
    transform: translateY(-5px);
}

/* Removed slide-in animations - items now display statically */

.feature-icon {
    width: 120px;
    /* WIDTH: icon size - increase for bigger icons */
    height: 120px;
    /* HEIGHT: icon size - increase for bigger icons */
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-icon-24h {
    width: 120px;
    /* WIDTH: icon size - increase for bigger icons */
    height: 120px;
    /* HEIGHT: icon size - increase for bigger icons */
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-24h img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-text {
    font-size: 18px;
    /* FONT-SIZE: text below icons */
    color: #333;
    font-weight: 700;
    /* FONT-WEIGHT: boldness level (100-900, 400=normal, 700=bold) */
}

.studio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 350px);
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.gallery-item {
    width: 350px;
    height: 240px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, filter 0.3s;
    filter: grayscale(100%);
}

.gallery-item:hover {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1.1);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Price & Access Container */
.price-access-container {
    background-image: url('../images/bg_price.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 120px 100px 180px;
    /* TOP: 120px | LEFT/RIGHT: 100px | BOTTOM: 180px - increase these for more height */
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 80px;
    /* GAP: space between the two cards */
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Price Section */
.price {
    position: relative;
    z-index: 1;
    padding: 60px 70px;
    /* PADDING: 60px top/bottom, 70px left/right - increase for bigger card */
    width: 550px;
    /* WIDTH: card width - increase for wider card */
    max-width: 600px;
    /* MAX-WIDTH: maximum card width */
    min-height: 380px;
    /* MIN-HEIGHT: minimum card height - increase for taller card */
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price .section-title {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 36px;
    margin-bottom: 0;
    font-weight: normal;
    transform: translateX(-15px);
}

.price .section-title .title-icon {
    width: 55px;
    height: 55px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.price .section-title .title-first {
    font-size: 46px;
    color: #0066cc;
    font-weight: 600;
}

.price .section-subtitle {
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
    margin-top: 4px;
    text-align: center;
}

.price-details {
    color: #fff;
    font-size: 18px;
    margin: 20px 0 30px;
    line-height: 1.9;
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px 25px;
    justify-content: center;
}

.price-details .price-label {
    text-align: left;
}

.price-details .price-value {
    text-align: left;
}

.price .btn-view-more {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 50px;
    font-size: 15px;
    display: block;
    text-align: center;
    width: fit-content;
    margin: auto auto 0 auto;
}

.price .btn-view-more:hover {
    background: #87CEEB;
    /* HOVER BG: Light blue */
    border-color: #87CEEB;
    /* HOVER BORDER: Light blue */
    color: #fff;
    /* HOVER TEXT: White */
}

.price::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg_noise.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.85;
    z-index: -1;
}

/* Access Section */
.access {
    position: relative;
    z-index: 1;
    padding: 60px 70px;
    /* PADDING: 60px top/bottom, 70px left/right - increase for bigger card */
    width: 550px;
    /* WIDTH: card width - increase for wider card */
    max-width: 600px;
    /* MAX-WIDTH: maximum card width */
    min-height: 380px;
    /* MIN-HEIGHT: minimum card height - increase for taller card */
    flex: 1;
    display: flex;
    flex-direction: column;
}

.access .section-title {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 36px;
    margin-bottom: 0;
    font-weight: normal;
    transform: translateX(-15px);
}

.access .section-title .title-icon {
    width: 55px;
    height: 55px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.access .section-title .title-first {
    font-size: 46px;
    color: #0066cc;
    font-weight: 600;
}

.access .section-subtitle {
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
    margin-top: 4px;
    text-align: center;
}

.access-details {
    color: #fff;
    font-size: 18px;
    margin: 20px 0 30px;
    min-height: 56px;
    text-align: center;
}

.access .btn-view-more {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 50px;
    font-size: 15px;
    display: block;
    text-align: center;
    width: fit-content;
    margin: auto auto 0 auto;
}

.access .btn-view-more:hover {
    background: #87CEEB;
    /* HOVER BG: Light blue */
    border-color: #87CEEB;
    /* HOVER BORDER: Light blue */
    color: #fff;
    /* HOVER TEXT: White */
}

.access::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg_noise.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.85;
    z-index: -1;
}

/* Promotional Section */
.promotional {
    position: relative;
    width: 100%;
    background-image: url('../images/bg_greeting.jpg');
    background-size: cover;
    background-position: center;
    padding: 0;
    padding-bottom: 150px;
    /* PADDING-BOTTOM: space at bottom showing background image without overlay */
}

.promotional-header {
    padding: 100px 0 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.on-air-badge {
    display: block;
    margin: 0 auto;
    border: none;
    padding: 0;
    background: transparent;
    width: fit-content;
}

.on-air-badge .on-air-img {
    width: 200px;
    max-width: 90vw;
    height: auto;
    filter: brightness(0) invert(1);
    display: block;
    margin: 0 auto;
}

.promotional-body {
    position: relative;
    padding: 40px 0 80px;
    display: flex;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    width: 100%;
}

.promotional-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    width: 100%;
    text-align: left;
    color: #fff;
    background: transparent;
    padding: 50px 60px;
    margin: 0 auto;
}

.promotional-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: normal;
}

.promotional-title .highlight {
    color: #4da6ff;
    font-weight: bold;
}

.promotional-text {
    font-size: 18px;
    /* FONT-SIZE: text size - increase for bigger text */
    line-height: 2;
    margin-bottom: 10px;
    font-weight: 500;
    /* FONT-WEIGHT: 400=normal, 500=medium, 600=semi-bold, 700=bold */
}

.no-break {
    white-space: nowrap;
}

.promotional-text .blue-dot {
    color: #4da6ff;
    /* BLUE DOT COLOR */
}

.promotional-stars {
    font-size: 18px;
    /* FONT-SIZE: same as promotional-text */
    margin: 25px 0;
    font-weight: 500;
    /* FONT-WEIGHT: same as promotional-text */
}

.promotional-stars .blue-dot {
    color: #4da6ff;
    /* BLUE DOT COLOR */
}

.promotional-cta {
    font-size: 18px;
    /* FONT-SIZE: text size */
    margin-top: 20px;
    line-height: 2;
    font-weight: 500;
    /* FONT-WEIGHT: boldness */
}

.promotional-footer {
    font-size: 18px;
    margin-top: 25px;
    color: #fff;
}

.promotional-footer .livs-link {
    color: #4da6ff;
    display: block;
    margin-top: 5px;
}

/* Studio Information Section */
.studio-info {
    position: relative;
    background-image: url('../images/bg_studio.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    /* centers both cards horizontally */
    align-items: stretch;
    min-height: 700px;
    padding: 60px 0;
    gap: 0;
    /* gap between the two cards - adjust as needed */
}

.studio-info-content {
    position: relative;
    z-index: 10;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.65);
    /* TRANSLUCENT: white with 85% opacity - lower = more see-through */
    padding: 50px 60px 55px 60px;
    /* top right bottom left */
    color: #000;
    /* TEXT COLOR: pure black */
    width: min(620px, 55vw);
    /* card width - increased */
    max-width: 90%;
    height: 620px;
    /* HEIGHT: increased */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* centers all children horizontally */
}

.studio-info-content .info-inner {
    text-align: left;
    width: 100%;
    max-width: 480px;
}

.studio-info .section-title {
    color: #000000;
    /* TEXT COLOR: pure black */
    font-size: 32px;
    margin-bottom: 0;
    font-weight: 700;
    /* FONT-WEIGHT: 700 = bold, 400 = normal, 900 = extra bold */
    border-bottom: none;
    padding-bottom: 0;
    display: block;
    text-align: center;
}

.studio-info .section-title .title-s {
    font-size: 40px;
    color: #0066cc;
    font-weight: 900;
    vertical-align: baseline;
    /* VERTICAL-ALIGN: baseline aligns with other text */
}

.studio-info .section-title .title-i {
    font-size: 40px;
    color: #0066cc;
    font-weight: 900;
    vertical-align: baseline;
    /* VERTICAL-ALIGN: baseline aligns with other text */
}

.studio-info .section-subtitle {
    color: #000000;
    /* TEXT COLOR: pure black */
    font-size: 16px;
    margin-bottom: 25px;
    margin-top: 6px;
    text-align: center;
}

.studio-info .studio-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0px;
    border-bottom: none;
    padding-bottom: 2px;
    display: inline-block;
}

.studio-info .studio-name .name-s {
    color: #0066cc;
    font-size: 22px;
}

.studio-info .studio-name .name-l {
    color: #0066cc;
    font-size: 22px;
}

.info-details {
    font-size: 16px;
    line-height: 2.0;
    margin: 12px 0;
    color: #000000;
    font-weight: 400;
    /* FONT-WEIGHT: 400 = normal, 600 = semi-bold, 700 = bold */
}

.info-details p {
    margin-bottom: 3px;
}

.info-banner {
    position: relative;
    z-index: 20;
    width: 600px;
    /* banner width - increased */
    flex-shrink: 0;
}

.info-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

/* Footer */
footer {
    background: #fff;
    padding: 0;
    width: 100%;
    margin: 0;
}

.footer-map {
    width: 100%;
    max-width: none;
    margin: 0;
    height: 400px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
    border: none;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Monochrome Google Map look */
.footer-map {
    overflow: hidden;
}

.footer-map iframe {
    filter: grayscale(100%) contrast(1.1) brightness(1.05);
}

.footer-buttons {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.footer-button {
    background: #fff;
    border: 2px solid #333;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    border-radius: 5px;
}

.footer-button:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.footer-button-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.footer-button-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-button-subtitle {
    font-size: 14px;
    color: #666;
}

/* Sticky Bottom Bar */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 63%;
    background: rgba(255, 255, 255, 0.2);
    /* OPACITY: 0.7 = 70% visible, lower = more see-through (0.0 to 1.0) */
    backdrop-filter: blur(0px);
    /* BLUR: blur effect on background content (higher = more blur) */
    -webkit-backdrop-filter: blur(2px);
    /* BLUR: Safari support */
    padding: 20px 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    gap: 60px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s, visibility 0.3s;
}

.sticky-bottom-bar.hidden {
    opacity: 0;
    visibility: hidden;
}

.sticky-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.2);
    /* OPACITY: 0.7 = 70% visible, lower = more see-through (0.0 to 1.0) */
    backdrop-filter: blur(0px);
    /* BLUR: blur effect on background (higher = more blur) */
    -webkit-backdrop-filter: blur(5px);
    /* BLUR: Safari support */
    border: 1px solid #0066b7;
    padding: 15px 40px;
    /* PADDING: reduced for smaller height */
    min-width: 650px;
    /* MIN-WIDTH: adjusted */
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    text-align: center;
}

.sticky-btn:hover {
    background: rgba(240, 240, 240, 0.8);
    /* HOVER: slightly more opaque on hover */
}

.sticky-btn-icon {
    width: 40px;
    /* WIDTH: icon size - same as footer */
    height: 40px;
    /* HEIGHT: icon size - same as footer */
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-btn-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sticky-btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sticky-btn-title {
    font-size: 24px;
    /* FONT-SIZE: same as footer */
    color: #0066cc;
    font-weight: 800;
    padding-bottom: 8px;
    /* PADDING-BOTTOM: space before underline */
    border-bottom: 2px solid #130000;
    /* BORDER-BOTTOM: underline - same as footer */
    margin-bottom: 8px;
    /* MARGIN-BOTTOM: space after underline */
}

.sticky-btn-subtitle {
    font-size: 13px;
    /* FONT-SIZE: same as footer */
    color: #110101;
}

/* Footer CTA container */
.footer-cta-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    gap: 60px;
}

.footer-cta-container .sticky-btn {
    background: #fff;
    border: 1px solid #0066b7;
    padding: 20px 50px;
    /* PADDING: adjusted for row layout */
    min-width: 650px;
    /* MIN-WIDTH: minimum box width */
    /* width: 320px;                     WIDTH: fixed width for both boxes to be equal */
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.footer-cta-container .sticky-btn-icon {
    width: 40px;
    /* WIDTH: icon size in footer - INCREASED */
    height: 40px;
    /* HEIGHT: icon size in footer - INCREASED */
    margin: 0;
    /* No margin */
    flex-shrink: 0;
}

.footer-cta-container .sticky-btn-content {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-cta-container .sticky-btn-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-cta-container .sticky-btn-title {
    font-size: 24px;
    /* FONT-SIZE: larger title */
    color: #0066cc;
    font-weight: 800;
    padding-bottom: 8px;
    /* PADDING-BOTTOM: space before underline */
    border-bottom: 2px solid #130000;
    /* BORDER-BOTTOM: underline between title and subtitle */
    margin-bottom: 8px;
    /* MARGIN-BOTTOM: space after underline */
}

.footer-cta-container .sticky-btn-subtitle {
    font-size: 13px;
    color: #110101;
    margin-top: 0;
}

/* Add padding to body for sticky bar */
body {
    padding-bottom: 0;
}

/* Desktop full-width layout (do not affect mobile/tablet) */
@media (min-width: 1024px) {
    section {
        max-width: none;
        width: 100%;
        margin: 0;
    }

    nav {
        max-width: none;
    }

    .studio {
        width: 100%;
        max-width: none;
    }

    .price-access-container {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    footer {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    .footer-map,
    .footer-buttons {
        max-width: none;
        margin: 0;
        width: 100%;
    }

    .footer-cta-container {
        padding: 40px 20px;
        width: 100%;
    }

    .sticky-bottom-bar {
        width: 100%;
        left: 0;
        transform: none;
    }

    /* Studio: full-bleed background + watermark, keep content padded */
    .studio {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .studio-header {
        padding-top: 80px;
    }

    .studio-banner {
        padding-left: 0;
        --watermark-y: 20px;
    }

    .studio-header .studio-content,
    .studio>.studio-content {
        padding-left: 40px;
        padding-right: 40px;
    }

    .studio-description {
        text-align: left;
        max-width: 670px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Responsive - iPad Air (820px) */
@media (max-width: 820px) {
    .logo-img {
        max-width: 350px;
        width: 90%;
    }

    nav {
        gap: 35px;
    }

    .hero-overlay {
        font-size: 28px;
        padding: 45px 50px;
        min-width: 130px;
    }
  .hero-image {
    height: 100%;
    object-fit: cover;
  }
}

/* Responsive - iPad & iPad Mini (768px) */
@media (max-width: 768px) {
    header {
        padding: 12px 0 8px;
    }

    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }

    nav.active {
        right: 0;
    }

    nav a {
        width: 100%;
        padding: 20px 20px;
        border-bottom: 1px solid #eee;
        align-items: center;
        text-align: center;
    }

    nav a:last-child {
        border-bottom: none;
    }

    .logo-container {
        margin-bottom: 10px;
    }

    .logo-img {
        max-width: 240px;
        width: 85%;
    }

    nav a .nav-english {
        font-size: 24px;
    }

    nav a .nav-japanese {
        font-size: 24px;
    }

    .section-title {
        font-size: 46px;
    }

    section {
        padding: 60px 20px;
    }

    .hero {
        height: 55vh;
        min-height: 450px;
    }

    .hero-overlay {
        font-size: 24px;
        padding: 35px 40px;
        min-width: 110px;
        letter-spacing: 8px;
    }

    .promotional-header {
        padding: 20px 0 20px;
    }

    .studio-banner-text {
        font-size: 55px;
        letter-spacing: 10px;
    }


    .studio-features {
        flex-wrap: wrap;
        gap: 30px;
    }

    .feature-icon,
    .feature-icon-24h {
        width: 60px;
        height: 60px;
    }

    .studio-gallery {
        grid-template-columns: repeat(2, 200px);
    }

    .gallery-item {
        width: 200px;
        height: 140px;
    }

    .footer-buttons {
        grid-template-columns: 1fr;
    }

    .info-banner {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 30px auto 0;
        max-width: 100%;
    }

    .price-access-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 50px 40px;
        max-width: 100%;
    }

    .price,
    .access {
        width: 100%;
        max-width: 450px;
        padding: 30px 35px;
        min-height: auto;
    }

    .studio-info {
        flex-direction: column;
        max-width: 100%;
        padding: 0;
        margin: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        background: none !important;
    }
    .studio-info::before {
        content: "";
        display: block;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: -10;
        background-image: url('../images/bg_studio.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 70% 50%;
    }

    .studio-info-content {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
    }

    .info-banner {
        width: 100%;
    }

    .info-banner img {
        object-fit: cover;
        object-position: left top;
    }

    .price-details, .access-details {
        font-size: 15px;
    }
}

/* Responsive - iPhone 14 Pro Max & similar (430px) */
@media (max-width: 430px) {
    header {
        padding: 10px 0 6px;
    }

    .logo-container {
        margin-bottom: 8px;
    }

    .logo-img {
        max-width: 200px;
        width: 80%;
    }



    .section-title {
        font-size: 30px;
        margin-bottom: 0;
    }

    .section-subtitle {
        font-size: 17px !important;
    }
  

    .studio-s {
        font-size: 42px;
    }

    section {
        max-width: none;
        width: 100%;
        margin: 0;
        padding: 40px 12px;
    }

    /* Make Studio section full-bleed on mobile */
    .studio {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 40px 12px;
    }

    .studio-info {
        max-width: 100%;
        padding: 18px 12px;
        margin: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .studio-info-content {
        padding: 24px 16px;
        width: 100%;
        max-width: 92%;
        margin: 0 auto;
    }

    .info-banner {
        width: 100%;
        max-width: 92%;
        margin: 20px auto 0;
        height: 480px;
    }

    .info-banner img {
        object-fit: fill;
    }

    .studio-info .studio-name {
        font-size: 17px;
    }

    .info-details {
        font-size: 14px;
        line-height: 1.8;
    }

    .hero {
        height: auto;
        min-height: unset;
        overflow: visible;
        position: relative;
        display: block;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        display: block;
    }

    .hero-overlay {
        display: block;
        position: absolute;
        font-size: 15px;
        padding: 10px 15px 10px 25px;
        letter-spacing: 4px;
        left: 0;
        top: 20px;
        transform: none;
        height: auto;
        writing-mode:horizontal-tb;
    }
    .hero-overlay br {
        display: block;
    }

    .studio-banner-text {
        font-size: 35px;
        letter-spacing: 5px;
        margin-top: 66px;
    }


    .studio-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        justify-items: center;
        width: 100%;
    }

    .feature-icon,
    .feature-icon-24h {
        width: 50px;
        height: 50px;
    }

    .studio-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        width: 100%;
        height: 120px;
    }

    .price-details,.access-details {
        font-size: 14px;
    }

    /* Full-bleed PRICE/ACCESS background + wider cards on mobile */
    .price-access-container {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 40px 12px;
        gap: 20px;
        background-attachment: scroll;
    }

    .price,
    .access {
        width: 100%;
        max-width: none;
        padding: 32px 22px;
    }

    /* Wider map on mobile */
    footer {
        width: 100%;
        padding: 40px 8px 0;
        /* Removed bottom padding */
    }

    .footer-map {
        width: 100%;
        max-width: none;
        margin: 0 0 30px 0;
        height: 350px;
    }

    /* Responsive sticky bar on mobile */
    .sticky-bottom-bar {
        width: 100%;
        padding: 10px 8px;
        gap: 10px;
        left: 0;
        transform: none;
    }

    .sticky-btn {
        padding: 8px 12px;
        gap: 6px;
        font-size: 14px;
        flex: 1;
        min-width: 0;
        /* Fix for overflow */
    }

    .sticky-btn-icon {
        font-size: 18px;
    }

    .sticky-btn-title {
        font-size: 12px;
        white-space: nowrap;
    }

    .sticky-btn-subtitle {
        font-size: 9px;
        white-space: nowrap;
    }

    /* Specific overrides for Footer Buttons to beat desktop specificity */
    .footer-cta-container .sticky-btn-title {
        font-size: 13px !important;
        white-space: nowrap;
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .footer-cta-container .sticky-btn-subtitle {
        font-size: 11px !important;
        white-space: nowrap;
        margin-top: 0;
    }

    .footer-cta-container {
        padding: 15px 8px;
        gap: 10px;
    }

    .footer-cta-container .sticky-btn {
        min-width: 0;
        /* Fix for overflow in main footer */
    }

    body {
        padding-bottom: 0;
        /* Remove extra space */
    }

    .promotional {
        padding: 0 0 100px;
    }

    .promotional-header {
        padding: 30px 0 30px;
    }

    .promotional-body {
        padding: 0;
    }

    .promotional-title {
        font-size: 18px;
    }

    .promotional-text,
    .promotional-stars,
    .promotional-cta,
    .promotional-footer {
        font-size: 14px;
    }

    .no-break {
        white-space: normal;
    }

    .promotional-content {
        padding: 10px 25px 15px;
        max-width: 600px;
    }

    .on-air-badge {
        font-size: 18px;
        padding: 5px 25px;
    }

    .on-air-badge .mic-icon {
        width: 40px;
        height: 40px;
        margin: -12px 0;
    }

    .on-air-badge .on-air-img {
        width: 70%;
        margin: 0 auto;
    }
}

/* Responsive - iPhone XR (414px) */
@media (max-width: 414px) {
    .logo-img {
        max-width: 190px;
        width: 80%;
    }



    /* Removed hero-overlay override to inherit from 430px breakpoint */
}

/* Responsive - iPhone SE (375px) */
@media (max-width: 375px) {
    header {
        padding: 8px 0 5px;
    }

    .logo-img {
        max-width: 180px;
        width: 85%;
    }


    section {
        max-width: none;
        width: 100%;
        margin: 0;
        padding: 35px 10px;
    }

    .studio {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 35px 10px;
    }

    .studio-info {
        max-width: 100%;
        padding: 16px 10px;
        margin: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .studio-info-content {
        padding: 20px 12px;
        width: 100%;
        max-width: 94%;
        margin: 0 auto;
    }

    .studio-info .studio-name {
        font-size: 16px;
    }

    .info-details {
        font-size: 13px;
        line-height: 1.7;
    }

    .hero {
        height: auto;
        min-height: unset;
        overflow: visible;
        position: relative;
        display: block;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        display: block;
    }

    .price-details,.access-details {
        font-size: 13px;
    }

    .price-access-container {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 35px 10px;
        gap: 18px;
    }

    .price,
    .access {
        width: 100%;
        max-width: none;
        padding: 28px 20px;
    }

    /* Wider map on small mobile */
    footer {
        width: 100%;
        padding: 35px 6px 0;
        /* Removed bottom padding */
    }

    .footer-map {
        width: 100%;
        max-width: none;
        margin: 0 0 25px 0;
        height: 320px;
    }

    /* Responsive sticky bar on small mobile */
    .sticky-bottom-bar {
        width: 100%;
        padding: 8px 6px;
        gap: 8px;
        left: 0;
        transform: none;
    }

    .sticky-btn {
        padding: 7px 10px;
        gap: 5px;
        font-size: 13px;
        flex: 1;
        min-width: 0;
    }

    .sticky-btn-icon {
        font-size: 16px;
    }

    .sticky-btn-title {
        font-size: 11px;
        white-space: nowrap;
    }

    .sticky-btn-subtitle {
        font-size: 8px;
        white-space: nowrap;
    }

    /* Specific overrides for Footer Buttons to beat desktop specificity */
    .footer-cta-container .sticky-btn-title {
        font-size: 10px !important;
        white-space: nowrap;
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .footer-cta-container .sticky-btn-subtitle {
        font-size: 8px !important;
        white-space: nowrap;
        margin-top: 0;
    }

    .footer-cta-container {
        padding: 12px 6px;
        gap: 8px;
    }

    .footer-cta-container .sticky-btn {
        min-width: 0;
        /* Fix for overflow in main footer */
    }

    body {
        padding-bottom: 0;
        /* Remove extra space */
    }

    .promotional {
        padding: 0 20px 150px;
    }

    .promotional-title {
        font-size: 16px;
    }

    .promotional-text,.promotional-cta {
        font-size: 11px;
    }

    .promotional-content {
        padding: 25px 25px;
        max-width: 100%;
    }

    .on-air-badge {
        font-size: 14px;
        padding: 8px 18px;
    }

    .on-air-badge .mic-icon {
        width: 32px;
        height: 32px;
        margin: -10px 0;
    }

    .price-access-container {
        padding: 40px 20px;
    }

    .studio-info-content {
        padding: 25px 20px;
        width: 100%;
        max-width: 94%;
        margin: 0 auto;
    }

    .info-banner {
        height: 350px;
        max-width: 94%;
        margin: 20px auto 0;
    }

    .info-banner img {
        object-fit: fill;
    }

    .footer-button-title {
        font-size: 20px;
    }
}