@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Noto+Serif+JP:wght@300;400;500;600&display=swap');

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

body {
    font-family: 'Noto Serif JP', 'Cormorant Garamond', serif;
    background-color: #000000;
    color: #e8e8e8;
    line-height: 1.7;
    letter-spacing: 0.03em;
    font-weight: 300;
    font-feature-settings: "palt";
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 300;
    color: #FFD700;
    text-decoration: none;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

nav {
    display: flex;
    gap: 50px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #FFD700, transparent);
    transition: width 0.4s ease;
}

nav a:hover {
    color: #FFD700;
}

nav a:hover::after {
    width: 100%;
}

.cta-button {
    color: #FFD700;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
    padding: 0;
    border: none;
    background: none;
}

.cta-button.large {
    padding: 20px 60px;
    font-size: 14px;
    border: 1px solid #FFD700;
}

.cta-button.large::after {
    display: none;
}

.cta-button.large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transition: left 0.5s ease;
    z-index: -1;
}

.cta-button.large:hover::before {
    left: 0;
}

.cta-button.large:hover {
    color: #000000;
    border-color: #FFA500;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}
main {
    margin-top: 80px;
}

.hero {
    height: 100vh;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%),
        url('images/hero-section.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 215, 0, 0.02) 2px, rgba(255, 215, 0, 0.02) 4px);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    margin-top: -5vh;
}

.hero-logo {
    max-width: 2000px;
    width: 95%;
    height: auto;
    opacity: 0.95;
    animation: fadeInUp 1.8s ease;
}

.catchphrase {
    font-size: 48px;
    color: #FFD700;
    font-weight: 300;
    letter-spacing: 0.2em;
    line-height: 1.8;
    animation: fadeInUp 1.8s ease;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

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

.news {
    padding: 120px 0;
    background-color: #000000;
}

.news h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 70px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.news-list {
    list-style: none;
    max-width: 1000px;
    margin: 0 auto;
}

.news-list li {
    padding: 35px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 50px;
    align-items: center;
    transition: all 0.4s ease;
}

.news-list li:hover {
    padding-left: 25px;
    border-bottom-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.02), transparent);
}

.news-list .date {
    color: #FFD700;
    font-size: 12px;
    min-width: 130px;
    letter-spacing: 0.12em;
    font-weight: 400;
}

.news-list .title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
}

.concept-message {
    padding: 160px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.message-content {
    max-width: 900px;
    margin: 0 auto;
}

.message-content h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 70px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.message-content p {
    font-size: 17px;
    line-height: 2.4;
    margin-bottom: 45px;
    color: #d0d0d0;
    font-weight: 300;
    text-align: center;
}

.space-gallery {
    padding: 160px 0;
    background-color: #000000;
}

.space-gallery h2 {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 90px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item .placeholder-image {
    height: 450px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 215, 0, 0.25);
    font-size: 11px;
    letter-spacing: 0.25em;
    transition: all 0.6s ease;
}

.gallery-item:hover .placeholder-image {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.gallery-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #FFD700;
    font-size: 11px;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
}

.experience {
    padding: 160px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.experience h2 {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 90px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

.experience-item {
    text-align: center;
    padding: 50px 25px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.experience-item:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 215, 0, 0.2);
    background: rgba(255, 215, 0, 0.02);
}

.experience-item .icon {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 35px;
    opacity: 0.9;
}

.experience-item h3 {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.experience-item p {
    font-size: 14px;
    line-height: 2;
    color: #b0b0b0;
    font-weight: 300;
}

.system-flow {
    padding: 160px 0;
    background-color: #000000;
}

.system-flow h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 70px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.section-subtitle {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 70px;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.12em;
}

.white-subtitle {
    color: #ffffff;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 50px 25px;
    transition: all 0.4s ease;
}

.step:hover {
    background: rgba(255, 215, 0, 0.02);
}

.step-number {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #FFD700;
    margin: 0 auto 35px;
    font-weight: 300;
    transition: all 0.4s ease;
}

.step:hover .step-number {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

.step h4 {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.step p {
    font-size: 14px;
    line-height: 2;
    color: #b0b0b0;
    font-weight: 300;
}

.pricing {
    padding: 120px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.price-table {
    max-width: 600px;
    margin: 0 auto;
}

.price-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.price-table th,
.price-table td {
    padding: 28px 35px;
    text-align: left;
    border: none;
}

.price-table th {
    background-color: rgba(255, 215, 0, 0.05);
    color: #FFD700;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
}

.price-table td {
    color: #d0d0d0;
    font-size: 20px;
    font-weight: 300;
}

.price-table tbody tr {
    transition: all 0.3s ease;
}

.price-table tbody tr:hover {
    background-color: rgba(255, 215, 0, 0.03);
}

.faq {
    padding: 160px 0;
    background-color: #000000;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.05);
}

.faq-question {
    color: #FFD700;
    font-size: 16px;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 215, 0, 0.02);
}

.faq-answer {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.8;
    padding: 0 25px 20px;
    font-weight: 300;
}

.store-info {
    padding: 160px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
}

.store-info h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 70px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-details h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 55px;
    font-weight: 300;
    letter-spacing: 0.12em;
}

.info-list dt {
    color: #FFD700;
    margin-bottom: 18px;
    margin-top: 45px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
}

.info-list dt:first-child {
    margin-top: 0;
}

.info-list dd {
    color: #d0d0d0;
    line-height: 2.2;
    font-weight: 300;
    font-size: 20px;
}

.info-details-compact {
    width: 100%;
}

.info-list-compact dt {
    color: #FFD700;
    margin-bottom: 8px;
    margin-top: 20px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
}

.info-list-compact dt:first-child {
    margin-top: 0;
}

.info-list-compact dd {
    color: #d0d0d0;
    line-height: 1.8;
    font-weight: 300;
    font-size: 16px;
}

.sns-links {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.sns-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d0d0d0;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.sns-link:hover {
    color: #FFD700;
}

.sns-link svg {
    flex-shrink: 0;
}

.placeholder-map {
    width: 100%;
    height: 550px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 215, 0, 0.25);
    font-size: 11px;
    letter-spacing: 0.25em;
}

.route-guide {
    padding: 120px 0;
    background-color: #000000;
}

.route-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.route-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    margin-bottom: 90px;
}

.route-image .placeholder-image {
    height: 320px;
}

.route-text h4 {
    color: #FFD700;
    font-size: 12px;
    margin-bottom: 25px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
}

.route-text p {
    font-size: 20px;
    line-height: 2.2;
    color: #b0b0b0;
    font-weight: 300;
}

.route-note {
    max-width: 1000px;
    margin: 70px auto 0;
    padding: 45px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(255, 215, 0, 0.02);
}

.route-note p {
    font-size: 14px;
    line-height: 2.2;
    color: #999999;
    font-weight: 300;
}

.recruit-message {
    padding: 160px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.recruit-message h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 70px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.recruit-message h3 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 45px;
    font-weight: 300;
    letter-spacing: 0.12em;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    max-width: 1200px;
    margin: 0 auto;
}

.text-content p {
    font-size: 16px;
    line-height: 2.4;
    margin-bottom: 35px;
    color: #d0d0d0;
    font-weight: 300;
}

.placeholder-image {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 215, 0, 0.25);
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 11px;
    letter-spacing: 0.25em;
}

.job-openings {
    padding: 120px 0;
    background-color: #000000;
}

.job-openings h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 70px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.35em;
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.job-card {
    background-color: rgba(255, 215, 0, 0.03);
    border: none;
    padding: 30px;
}

.job-card h3 {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-align: center;
}

.job-details p {
    color: #d0d0d0;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 10px;
    font-weight: 300;
}

.job-details strong {
    color: #FFD700;
    font-weight: 400;
}

.job-note {
    color: #999999;
    font-size: 13px;
    margin-top: 15px;
}

.job-benefits {
    max-width: 900px;
    margin: 0 auto 0 auto;
    margin-left: 25%;
    padding: 30px;
    background-color: rgba(255, 215, 0, 0.03);
    border: none;
    text-align: left;
}

.job-benefits p {
    color: #d0d0d0;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 300;
}

.job-benefits strong {
    color: #FFD700;
    font-weight: 400;
}

.job-application {
    max-width: 900px;
    margin: 30px auto 0;
    padding: 25px;
    text-align: center;
}

.job-application p {
    color: #d0d0d0;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 10px;
    font-weight: 300;
}

.job-application strong {
    color: #FFD700;
    font-weight: 400;
}

.application {
    padding: 160px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.application h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 70px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.35em;
}

.application-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.application-content p {
    font-size: 16px;
    line-height: 2.4;
    margin-bottom: 45px;
    color: #d0d0d0;
    font-weight: 300;
}

.contact-info {
    background-color: rgba(255, 215, 0, 0.03);
    padding: 55px;
    margin: 70px 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 22px;
    color: #d0d0d0;
    font-weight: 300;
}

.contact-info strong {
    color: #FFD700;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.application-content .note {
    font-size: 14px;
    color: #888888;
    line-height: 2.2;
    font-weight: 300;
}

footer {
    background-color: #000000;
    padding: 90px 0 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    margin-bottom: 70px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-info h3,
.footer-social h3 {
    color: #FFD700;
    font-size: 12px;
    margin-bottom: 35px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
}

.footer-info p {
    font-size: 14px;
    margin-bottom: 14px;
    color: #888888;
    font-weight: 300;
}

.social-icons {
    display: flex;
    gap: 35px;
}

.social-icons a {
    color: #888888;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 300;
}

.social-icons a:hover {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.copyright {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #555555;
    font-size: 11px;
    letter-spacing: 0.15em;
    font-weight: 300;
}

#concept,
#system,
#access,
#recruit,
#contact {
    scroll-margin-top: 100px;
}

@media (max-width: 1024px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flow-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 22px;
        letter-spacing: 0.3em;
    }
    
    .catchphrase {
        font-size: 36px;
        letter-spacing: 0.15em;
    }
    
    .content-grid,
    .info-grid,
    .gallery-grid,
    .experience-grid,
    .flow-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* レスポンシブ強化 */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    nav {
        gap: 30px;
    }
    
    nav a {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    header {
        padding: 15px 0;
    }
    
    header .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .logo {
        font-size: 18px;
        letter-spacing: 0.2em;
    }
    
    nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    nav a {
        font-size: 10px;
    }
    
    .cta-button {
        padding: 8px 20px;
        font-size: 10px;
    }
    
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content {
        margin-top: -5vh;
    }
    
    .hero-logo {
        max-width: 90%;
    }
    
    .catchphrase {
        font-size: 24px;
        letter-spacing: 0.1em;
        padding: 0 20px;
    }
    
    .news h2,
    .concept-message h2,
    .system-flow h2,
    .store-info h2,
    .job-openings h2 {
        font-size: 24px;
        letter-spacing: 0.15em;
        margin-bottom: 40px;
    }
    
    .section-subtitle {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .price-table,
    .entrance-table {
        max-width: 100%;
    }
    
    .price-table th,
    .price-table td {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .job-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .job-card {
        padding: 20px;
    }
    
    .job-benefits {
        margin-left: 0;
        padding: 20px;
        max-width: 100%;
    }
    
    .info-grid-compact {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sns-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .faq-list {
        max-width: 100%;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 15px;
    }
    
    .faq-answer {
        font-size: 13px;
        padding: 0 15px 15px;
    }
    
    .news,
    .concept-message,
    .space-gallery,
    .experience,
    .system-flow,
    .store-info,
    .recruit-message,
    .faq {
        padding: 80px 0;
    }
    
    .pricing,
    .route-guide,
    .job-openings,
    .application {
        padding: 60px 0;
    }
    
    .news-list li {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        padding: 25px 0;
    }
    
    .news-list .date {
        min-width: auto;
    }
    
    .message-content p,
    .text-content p {
        font-size: 20px;
        line-height: 2;
        text-align: left;
    }
    
    .gallery-item .placeholder-image {
        height: 300px;
    }
    
    .experience-grid {
        gap: 40px;
    }
    
    .experience-item {
        padding: 30px 15px;
    }
    
    .flow-steps {
        gap: 40px;
    }
    
    .step {
        padding: 30px 15px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    
    .price-table th,
    .price-table td {
        padding: 20px 15px;
        font-size: 20px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 25px 20px;
    }
    
    .faq-answer {
        font-size: 20px;
        padding: 0 20px 25px;
    }
    
    .info-list dt {
        font-size: 11px;
        margin-top: 30px;
    }
    
    .info-list dd {
        font-size: 14px;
    }
    
    .placeholder-map {
        height: 350px;
    }
    
    .route-step {
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .route-image .placeholder-image {
        height: 250px;
    }
    
    .job-table th {
        width: 90px;
        font-size: 11px;
        padding: 20px 12px;
    }
    
    .job-table td {
        font-size: 20px;
        padding: 20px 12px;
    }
    
    .contact-info {
        padding: 40px 25px;
    }
    
    footer {
        padding: 60px 0 25px;
    }
    
    .footer-content {
        gap: 50px;
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 16px;
        letter-spacing: 0.15em;
    }
    
    nav a {
        font-size: 9px;
        letter-spacing: 0.05em;
    }
    
    .hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-logo {
        max-width: 95%;
    }
    
    .catchphrase {
        font-size: 20px;
        letter-spacing: 0.08em;
    }
    
    .news h2,
    .concept-message h2,
    .system-flow h2,
    .store-info h2,
    .job-openings h2 {
        font-size: 20px;
        letter-spacing: 0.1em;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .message-content p {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .flow-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .step h4 {
        font-size: 16px;
    }
    
    .step p {
        font-size: 13px;
    }
    
    .price-table th,
    .price-table td {
        padding: 12px 8px;
        font-size: 12px;
    }
    
    .menu-button {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .job-card h3 {
        font-size: 18px;
    }
    
    .job-details p {
        font-size: 13px;
    }
    
    .job-benefits p {
        font-size: 13px;
    }
    
    .info-list-compact dt {
        font-size: 10px;
    }
    
    .info-list-compact dd {
        font-size: 14px;
    }
    
    .placeholder-map {
        height: 250px;
    }
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #FFD700;
    transition: all 0.3s ease;
}

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

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

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    header .container {
        position: relative;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    .logo {
        order: 0;
    }
    
    .cta-button {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s ease;
        z-index: 1000;
        border-left: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 16px;
        letter-spacing: 0.2em;
        padding: 10px 20px;
    }
    
    .nav-menu a::after {
        display: none;
    }
}

/* スクロールアニメーション */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ヒーローセクションは常に表示 */
.hero {
    opacity: 1;
    transform: translateY(0);
}

/* TELアイコン */

/* TELアイコン - SVG */

/* TELアイコン - SVG */
.cta-button {
    display: inline-flex;
    align-items: center;
}

.cta-button::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cpath d='M20.01 15.38c-1.23 0-2.42-.2-3.53-.56a.977.977 0 0 0-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* 料金説明 */
.pricing-note {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background-color: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.pricing-note p {
    color: #FFD700;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

/* メニューボタン */
.menu-button {
    display: inline-block;
    padding: 18px 50px;
    border: 2px solid #FFD700;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.menu-button:hover {
    background: transparent;
    color: #FFD700;
    border-color: #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

/* SNSボタン */
.sns-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sns-button svg {
    flex-shrink: 0;
    display: block;
}

.sns-button span {
    display: block;
    line-height: 1;
    white-space: nowrap;
}
