/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: initial;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    position: relative;
    left: 0;
    right: 0;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.3rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.hero-logo {
    order: 0;
    margin-right: 2.5rem;
    margin-left: 0;
    flex-shrink: 0;
}

.logo {
    flex: 0 0 auto;
    margin-right: 2rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

.nav-links a {
    text-decoration: none;
    color: #9E8B8E;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    font-size: 0.85rem;
    white-space: nowrap;
    padding: 0.2rem 0;
}

.nav-links a:hover {
    color: #9f7a6a;
}

@media (max-width: 1024px) {
    nav {
        justify-content: flex-start;
        padding: 0.3rem 2%;
    }
    .hero-logo {
        margin-right: 1.2rem;
    }
    .nav-links {
        justify-content: flex-start;
        width: auto;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: row;
        align-items: center;
    }
    .hero-logo {
        font-size: 1.1rem;
        margin-right: 1rem;
        padding: 0.2em 0.3em 0.2em 0;
    }
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80vw;
        max-width: 320px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 2px 0 16px rgba(0,0,0,0.08);
        display: flex;
    }
    .nav-links.active {
        left: 0;
    }
    .hamburger {
        top: 32px;
    }
    body.admin-bar .nav-links {
        top: 46px;
    }
    body.admin-bar .hamburger {
        top: 46px;
    }
    .logo img {
        height: 40px;
    }

    .vertical-text {
        writing-mode: vertical-rl !important;
        text-orientation: mixed;
        position: static;
        text-align: center;
        padding: 1rem 0;
        transform: none;
        font-size: 1.2rem;
        margin: 0 auto;
        display: block;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.2rem 2%;
    }

    .logo img {
        height: 35px;
    }

    .nav-links {
        gap: 0.8rem;
    }

    .nav-links a {
        font-size: 0.8rem;
        padding: 0.15rem 0;
    }

    .vertical-text {
        writing-mode: vertical-rl !important;
        text-orientation: mixed;
        position: static;
        text-align: center;
        padding: 1rem 0;
        transform: none;
        font-size: 1rem;
        margin: 0 auto;
        display: block;
        white-space: nowrap;
    }
}

/* Hero section */
.hero {
    padding: 80px 5% 0;
    background-color: #f5f0ee;
    position: relative;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-main {
    flex: 1;
    padding-right: 2rem;
    position: relative;
}

.hero h1 {
    font-family: 'Marcellus', serif;
    font-size: 4rem;
    color: #9E8B8E;
    margin: 2rem 0;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    background-color: rgba(245, 240, 238, 0.9);
    padding: 1rem 0;
}

.hero-image {
    width: 100%;
    max-width: 800px;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 2rem;
    color: #9E8B8E;
    padding: 1.2rem 0;
    letter-spacing: 0.3em;
    position: absolute;
    right: 0.5rem;
    top: 18%;
    transform: none;
    display: flex;
    align-items: flex-start;
    font-weight: 300;
    white-space: nowrap;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 2rem 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.about-text {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-text h2 {
    font-size: 2rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.about-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 2;
}

.about-read-more {
    display: inline-block;
    align-self: flex-end;
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
    position: static;
}

@media (max-width: 768px) {
    .about-text {
        position: static;
        text-align: center;
        display: block;
        height: auto;
    }
    .about-read-more {
        position: static;
        display: block;
        margin: 1rem auto 0 auto;
        align-self: auto;
    }
}

/* Menu section */
.menu {
    padding: 2rem 5% 0;
    background-color: #f5f0ef;
}

.menu h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

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

.menu-item {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-item:hover img {
    transform: scale(1.05);
}

.menu-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #4a4a4a;
    font-size: 1.2rem;
    font-weight: 500;
}

.menu-item p {
    padding: 0 1.5rem;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
    margin: 0;
}

.menu-item .read-more {
    margin: 1.5rem;
    align-self: center;
}

.menu-item button.read-more {
    background: none;
    cursor: pointer;
}

.read-more {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #E7A8B8;
    color: #E7A8B8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: #E7A8B8;
    color: white;
}

a.read-more {
    margin-right: 10px;
}

button.read-more {
    background: none;
    cursor: pointer;
}

/* Lineup section */
.lineup {
    padding: 5rem 5%;
    background-color: #fff;
}

.lineup h2 {
    text-align: center;
    font-size: 2rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

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

.lineup-item {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 5px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.lineup-item img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 1rem;
}

.lineup-item h3 {
    color: #4a4a4a;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.lineup-item p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.lineup-item .read-more {
    align-self: center;
    margin-top: auto;
}

.lineup-concept {
    text-align: right;
    margin-top: 2rem;
    padding-right: calc(16.66% + 2rem);
}

.lineup-concept .read-more {
    font-size: 1.1rem;
    padding: 10px 30px;
}

/* Voice section */
.voice {
    padding: 2rem 5%;
    background-color: #faf7f3;
}

.voice h2 {
    text-align: center;
    font-size: 2rem;
    color: #4a4a4a;
    margin-bottom: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

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

.voice-item {
    text-align: center;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    background-color: #f5f5f5;
    border-radius: 16px;
    border: 1.5px solid #e0e0e0;
    box-shadow: 0 4px 18px rgba(158,139,142,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 1.5rem;
}

.voice-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 32px rgba(158,139,142,0.13);
}

.voice-item span,
.voice-item .voice-text1 {
    color: #9E8B8E;
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 0.5em;
    display: block;
}

.voice-item .voice-text2 {
    color: #4a4a4a;
    text-align: left;
    margin: 1em 0 0.5em 0;
    font-size: 0.9rem !important;
}

.voice-item .voice-day {
    color: #4a4a4a;
    text-align: right;
    font-size: 0.95em;
    margin-top: 0.5em;
}

.voice-item p {
    color: #4a4a4a;
    font-size: 1.08em;
    margin-bottom: 1em;
    line-height: 1.8;
}

.read-more-container {
    grid-column: 3;
    text-align: right;
    margin-top: 1rem;
}

.read-more {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: none;
    border: 1px solid #9f7a6a;
    color: #9f7a6a;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
}

.read-more:hover {
    background-color: #9f7a6a;
    color: white;
}

/* News section */
.news {
    padding: 5rem 5%;
    background-color: #fff;
}

.news h2 {
    text-align: center;
    font-size: 2rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.news-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 3rem;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.news-item .date {
    width: 120px;
    color: #666;
    font-size: 0.9rem;
}

.news-item p {
    flex: 1;
    color: #4a4a4a;
}

.news-read-more {
    text-align: right;
    margin-top: 2rem;
}

.news-read-more .read-more {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: none;
    border: 1px solid #9f7a6a;
    color: #9f7a6a;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
}

.news-read-more .read-more:hover {
    background-color: #9f7a6a;
    color: white;
}

/* Footer styles */
footer {
    background-color: #9E8B8E;
    padding: 3rem 5%;
    color: #fff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.footer-left {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: auto;
    width: 200px;
    filter: brightness(0) invert(1);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background-color: #fff;
    color: #9E8B8E;
}

.footer-right {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: right;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info p {
    color: #fff;
    font-size: 0.9rem;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #333;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
    .footer-left {
        align-items: center;
    }
    .footer-right {
        text-align: center;
    }
    .footer-nav ul {
        align-items: center;
    }
}

/* Slider styles */
.slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    height: 800px;
}

.slide {
    min-width: 100%;
    position: relative;
}

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

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .slider {
        height: calc(100vw * 2 / 3);
    }
    .slide img {
        height: calc(100vw * 2 / 3);
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .slider {
        height: calc(100vw * 2 / 3);
    }
    .slide img {
        height: calc(100vw * 2 / 3);
        object-fit: cover;
    }
    .hero {
        padding-top: 50px;
    }
    .hero h1 {
        margin: 0.5rem 0;
        font-size: 2rem;
        padding: 0.3rem 0;
        line-height: 1.2;
    }
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        position: fixed;
        top: 15px;
        right: 15px;
    }

    nav {
        padding: 0.3rem 5%;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80vw;
        max-width: 320px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 2px 0 16px rgba(0,0,0,0.08);
        display: flex;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    /* スマホ版のその他のスタイル調整 */
    .hero h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .vertical-text {
        writing-mode: horizontal-tb;
        position: static;
        text-align: center;
        padding: 1rem 0;
        transform: none;
        font-size: 1.2rem;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lineup-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .voice-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .news-list {
        padding: 0 1rem;
    }

    .news-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .news-item .date {
        width: auto;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-left {
        align-items: center;
    }

    .footer-right {
        text-align: center;
    }

    .footer-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .vertical-text {
        font-size: 1rem;
    }

    .menu-item h3 {
        font-size: 1.1rem;
    }

    .menu-item p {
        font-size: 0.9rem;
    }

    .voice-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.2rem;
    }
    .voice-item {
        padding: 1.2rem 0.3rem 1.2rem 0.3rem;
    }
}

.lineup-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto 3rem auto;
}

.lineup-header h2 {
    margin-bottom: 0;
    line-height: 1;
}

.lineup-concept-btn {
    font-size: 1.1rem;
    padding: 10px 30px;
    height: 40px;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .lineup-header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .lineup-concept-btn {
        width: auto;
        min-width: 120px;
        max-width: 90vw;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-main {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .hero-main {
        padding-right: 0;
        margin-bottom: 0;
    }

    .slider-container {
        margin-bottom: 0;
    }

    .hero-content {
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

.hero {
    min-height: 0 !important;
}

.hero-content {
    min-height: 0 !important;
}

.floating-sns {
    position: fixed;
    top: 40%;
    right: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    pointer-events: auto;
}
.sns-btn {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.95);
    border-radius: 24px 0 0 24px;
    box-shadow: 0 2px 8px rgba(158,139,142,0.13);
    padding: 6px 0 6px 6px;
    min-width: 44px;
    max-width: 180px;
    transition: box-shadow 0.2s, background 0.2s, width 0.25s;
    text-decoration: none !important;
    overflow: hidden;
    position: relative;
    width: 44px;
}
.sns-btn img {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
    box-shadow: 0 1px 4px rgba(158,139,142,0.10);
    flex-shrink: 0;
    display: block;
}
.sns-label {
    display: inline-block;
    white-space: nowrap;
    font-size: 1rem;
    color: #7a6a5e;
    font-weight: 500;
    margin-left: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: none;
}
.sns-btn:hover .sns-label,
.sns-btn:focus .sns-label {
    opacity: 1;
    transform: translateX(0);
}
.sns-btn:hover,
.sns-btn:focus {
    width: 160px;
    background: #faf7f6;
    box-shadow: 0 4px 16px rgba(158,139,142,0.18);
}
.sns-btn:link, .sns-btn:visited, .sns-btn:active {
    color: inherit;
    text-decoration: none !important;
}
@media (max-width: 700px) {
    /* .floating-sns, .sns-btn などの横並び・下部表示用スタイルを削除 */
}

.hero-lead-text {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    z-index: auto;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 1.5rem auto;
    color: #9E8B8E;
    padding: 1.2rem 1.5rem 1rem 1.5rem;
    text-align: left;
    font-size: 1.25rem;
    margin-top: 2.5rem;
}
.hero-lead-text h2 {
    text-align: left;
}
.hero-lead-text p {
    text-align: left;
}
@media (max-width: 768px) {
    .hero-lead-text {
        font-size: 1.08rem;
        padding: 0.7rem 0.5rem 0.7rem 0.5rem;
        max-width: 98vw;
        margin-bottom: 1rem;
    }
}

.hero-lead-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2em;
    font-size: 2.5rem;
    font-weight: 700;
    color: #9E8B8E;
    margin: 0 0 0.5em 0;
    padding-left: 0;
    letter-spacing: 0.08em;
    background: none;
    z-index: 10;
    font-family: 'Marcellus', serif;
}
.hero-lead-title span {
    opacity: 0;
    transform: translateY(30px);
    display: inline-block;
    animation: leadTitleFadeIn 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
}
.hero-lead-title span:nth-child(1) { animation-delay: 0.05s; }
.hero-lead-title span:nth-child(2) { animation-delay: 0.18s; }
.hero-lead-title span:nth-child(3) { animation-delay: 0.31s; }
.hero-lead-title span:nth-child(4) { animation-delay: 0.44s; }
.hero-lead-title span:nth-child(5) { animation-delay: 0.57s; }
.hero-lead-title span:nth-child(6) { animation-delay: 0.70s; }
@keyframes leadTitleFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .hero-lead-title {
        font-size: 1.4rem;
        padding-left: 0;
    }
}

.salon-about-btn {
    display: inline-block;
    padding: 0.6em 2.2em;
    background: transparent;
    color: #9E8B8E;
    border: 2px solid #9E8B8E;
    border-radius: 28px;
    font-size: 1.08rem;
    font-family: 'Noto Sans JP', 'Marcellus', serif;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
    box-shadow: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin-left: 1.5rem;
}
.salon-about-btn:hover {
    background: #9E8B8E;
    color: #fff;
    box-shadow: 0 4px 18px rgba(158,139,142,0.18);
    border-color: #9E8B8E;
}
@media (max-width: 600px) {
    .hero-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
    }
    .salon-about-btn {
        width: 100%;
        text-align: center;
        margin-left: 0;
    }
}

.hero-logo {
    font-family: 'Marcellus', 'Noto Sans JP', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #9E8B8E;
    letter-spacing: 0.12em;
    margin-right: 2.5rem;
    padding: 0.2em 0.7em 0.2em 0;
    background: none;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .hero-logo {
        font-size: 1.1rem;
        margin-right: 1.2rem;
        padding: 0.2em 0.3em 0.2em 0;
    }
}

.hero-title-animated span {
    opacity: 0;
    display: inline-block;
    transform: translateY(30px);
    animation: heroTitleFadeIn 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
}
.hero-title-animated span:nth-child(1) { animation-delay: 0.05s; }
.hero-title-animated span:nth-child(2) { animation-delay: 0.13s; }
.hero-title-animated span:nth-child(3) { animation-delay: 0.21s; }
.hero-title-animated span:nth-child(4) { animation-delay: 0.29s; }
.hero-title-animated span:nth-child(5) { animation-delay: 0.37s; }
.hero-title-animated span:nth-child(6) { animation-delay: 0.45s; }
.hero-title-animated span:nth-child(7) { animation-delay: 0.53s; }
.hero-title-animated span:nth-child(8) { animation-delay: 0.61s; }
.hero-title-animated span:nth-child(9) { animation-delay: 0.69s; }
.hero-title-animated span:nth-child(10) { animation-delay: 0.77s; }
.hero-title-animated span:nth-child(11) { animation-delay: 0.85s; }
.hero-title-animated span:nth-child(12) { animation-delay: 0.93s; }
.hero-title-animated span:nth-child(13) { animation-delay: 1.01s; }
.hero-title-animated span:nth-child(14) { animation-delay: 1.09s; }
.hero-title-animated span:nth-child(15) { animation-delay: 1.17s; }
.hero-title-animated span:nth-child(16) { animation-delay: 1.25s; }
.hero-title-animated span:nth-child(17) { animation-delay: 1.33s; }
.hero-title-animated span:nth-child(18) { animation-delay: 1.41s; }
.hero-title-animated span:nth-child(19) { animation-delay: 1.49s; }
@keyframes heroTitleFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title-step {
    opacity: 0;
    display: inline-block;
    transform: translateY(30px);
    animation: heroTitleStepFadeIn 0.7s cubic-bezier(0.4,0,0.2,1) forwards;
}
.hero-title-step[data-step="1"] { animation-delay: 0.1s; }
.hero-title-step[data-step="2"] { animation-delay: 0.7s; }
.hero-title-step[data-step="3"] { animation-delay: 1.3s; }
@keyframes heroTitleStepFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title-overlay {
    position: absolute;
    top: 2.5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    z-index: 20;
    pointer-events: none;
}
.hero-title-overlay h1,
.hero-title-overlay .salon-about-btn {
    pointer-events: auto;
}
.hero-title-overlay,
.hero-title-overlay h1,
.hero-title-overlay .salon-about-btn {
    background: transparent !important;
}
@media (max-width: 768px) {
    .hero-title-overlay {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
        top: 1.2%;
        max-width: 98vw;
    }
}

.voice-item img {
    margin-left: auto;
    margin-right: auto;
    display: block;
} 