/**** hero ****/
.hero {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background-color: #e4e8f0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    z-index: 1;
    background-size: cover;
    background-position: center;
    filter: brightness(0.9) contrast(1.1);
}

.popular-menu {
    position: relative;
    margin: 0 auto;
    transform: translateY(-50%, -50%);
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 40px;
    border-radius: .5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    max-width: 380px;
    width: 20%;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
}

.popular-menu-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 500;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.popular-menu-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #2c3e50 0%, rgba(44, 62, 80, 0.2) 100%);
}

.popular-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-menu-list li {
    margin-bottom: 15px;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: #666;
}

.popular-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(44, 62, 80, 0.08);
    transition: transform 0.3s ease;
}

.popular-menu-item:hover {
    transform: translateX(5px);
}

.menu-item-name {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.menu-item-price {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 300;
    position: relative;
}

.menu-item-price::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    width: 4px;
    height: 4px;
    background-color: #2c3e50;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
}

.hero-content {
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 80%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem .5rem;
    border-radius: .5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}


.hero-btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-primary {
    font-weight: 400;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.6s forwards;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(44, 62, 80, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(44, 62, 80, 0.2);
}

.popular-menu {
    display: block;
    position: relative;
    right: auto;
    top: auto;
    transform: scale(0.75);
    margin: 0 auto;
    max-width: 85%;
    width: 85%;
    padding: 20px 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.popular-menu-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.popular-menu-list li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.popular-menu-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* タブレット縦向き（576px以上） */
@media (min-width: 576px) {

    .hero {
        padding: 100px 20px 40px;
    }

    .hero-content {
        transform: scale(0.85);
        padding: 1rem;
    }

    .popular-menu {
        transform: scale(0.85);
        max-width: 80%;
        width: 80%;
        padding: 25px 30px;
    }

    .popular-menu-list li {
        margin-bottom: 15px;
        padding: 8px 0;
    }
}

/* タブレット横向き（768px以上） */
@media (min-width: 768px) {
    .hero {
        justify-content: center;
    }

    .hero-content {
        padding: 2rem 1rem;
        transform-origin: top center;
    }

    .popular-menu {
        transform-origin: top center;
    }
}

/* 中型デスクトップ（1200px以上） */
@media (min-width: 1200px) {

    .hero-content,
    .popular-menu {
        padding: 2rem
    }

    .popular-menu-title {
        font-size: clamp(1rem, 2vw, 1.3rem);
        margin-bottom: 12px;
    }

    .popular-menu-list li {
        font-size: clamp(0.8rem, 1.4vw, 0.9rem);
    }
}

/* 大型デスクトップ（1440px以上） */
@media (min-width: 1440px) {
    .hero-content {
        width: 40%;
        padding: 3.5rem 2.5rem;
    }

    .popular-menu {
        position: absolute;
        width: 20%;
        left: 10%;
        padding: 2rem;
    }

    .hero-btn {
        justify-content: end;
    }

    .popular-menu-title {
        font-size: clamp(1.1rem, 2.2vw, 1.4rem);
        margin-bottom: 15px;
    }

    .popular-menu-list li {
        font-size: clamp(0.85rem, 1.6vw, 1rem);
    }
}

/** アバウトContent **/
.about-content {
    width: 100%;
    margin: 0 auto;
}

.about-description {
    font-size: 1rem;
    color: #374151;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.about-description br {
    display: none;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.25rem;
    background-color: white;
    border-radius: .5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    margin-bottom: 1.25rem;
}

.icon-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
}


@media (min-width: 768px) {
    .about-description {
        font-size: 1.125rem;
        margin-bottom: 4rem;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 3rem;
        margin-top: 4rem;
    }

    .about-description br {
        display: inline;
    }
}


/** メニューセクション **/
.menu-category {
    margin-bottom: 3rem !important;
    width: 100%;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem !important;
    color: #2c3e50;
    text-align: center;
    position: relative;
    letter-spacing: 1px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: #2c3e50;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.menu-item {
    background-color: white;
    padding: 1.25rem 1.125rem;
    border-radius: .5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #c7d2fe;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.menu-name {
    font-size: 1.125rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.menu-description {
    color: #7f8c8d;
    margin-bottom: 1.25rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.menu-price {
    font-size: 1.25rem;
    font-weight: 300;
    color: #2c3e50;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .menu-category {
        margin-bottom: 5rem !important;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
    }

    .category-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem !important;
    }

    .menu-item {
        padding: 40px 32px;
    }

    .menu-name {
        font-size: 1.25rem;
    }

    .menu-price {
        font-size: 1.5rem;
    }
}

/** お知らせセクション **/
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem 0 0 0;
    width: 100%;
    align-items: center;
}

.news-item {
    width: 100%;
    background-color: white;
    padding: 1.25rem;
    border-radius: .5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.news-date {
    color: #666;
    font-size: .9rem;
    margin-bottom: .6rem;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-description {
    color: #666;
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.news-link {
    color: #e67e22;
    text-decoration: none;
    font-size: .9rem;
    display: inline-block;
    position: relative;
    padding-right: 1.25rem;
}

.news-link::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.news-link:hover::after {
    transform: translate(5px, -50%);
}

@media (min-width: 768px) {

    .news-item {
        padding: 2rem;
    }
}


/** スタッフセクション **/
.staff {
    padding: 5rem 0;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    width: 100%;
    margin: 0 auto;
    max-width: 1500px;
    padding-bottom: 3rem;
}

.staff-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: #fff;
    border-radius: .5rem;
    transition: all 0.3s ease;
    border: 1px solid #c7d2fe;
}

.staff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.staff-avatar {
    width: 160px;
    height: 160px;
    background-color: #eaeaea;
    border-radius: 50%;
    margin: 0 auto 24px;
    overflow: hidden;
}

.staff-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-name {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: #2c3e50;
    letter-spacing: 1px;
}

.staff-position {
    color: #7f8c8d;
    font-weight: 300;
    margin-bottom: 16px;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.staff-description {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.8;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (min-width: 768px) {
    .staff {
        padding: 8rem 0;
    }
}

/*** 問い合わせセクション ***/
.contact {
    width: 100%;
    margin: 0 auto;
    padding: 3rem 0;
    background-color: #e5e7eb;
    color: #2c3e50;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 .5rem;
    box-sizing: border-box;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.contact-card {
    width: 100%;
    text-align: left;
    padding: 1rem;
    background-color: #fff;
    border-radius: .5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-card h3 {
    font-weight: 700;
}


.contact-icon {
    width: 100px;
    height: 100px;
    background-color: #bfa5fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 2rem;
}


@media (min-width: 768px) {
    .contact {
        padding: 5rem 0;
        background: linear-gradient(135deg, #e5e7eb 0%, #9ca3af 100%);
        color: #2c3e50;
    }

    .contact-methods {
        flex-direction: row;
        justify-content: center;
        gap: 4rem;
        width: 100%;
        margin: 0 auto;
        padding: 0 1.25rem;
        box-sizing: border-box;
        max-width: 1200px;
    }
}