.wp-block-group {
    margin: 0 auto;
    padding: 0;
}

.enyoi-py-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

h2.wp-block-heading:not(.section-title),
h3.wp-block-heading:not(.section-title),
.wp-block-post-comments-form h3.comment-reply-title {
    margin-bottom: 1rem;
}

h3.wp-block-heading:not(.category-title) {
    margin-bottom: 1rem;
}


.header {
    width: 100%;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    z-index: 100;
    position: relative;
    padding: 0;
}

.footer {
    width: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    padding: 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0) 100%);
}

.container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 .5rem;
}

.wrap {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.footer-content {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 100%;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    background-color: #fff;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.section {
    padding: 120px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #2c3e50;
}

.section-title span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.section-title span::after {
    content: attr(data-subtitle);
    font-size: 0.4em;
    font-weight: 400;
    letter-spacing: 3px;
    color: #e67e22;
    opacity: 0.8;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg,
            rgba(230, 126, 34, 0) 0%,
            rgba(230, 126, 34, 0.8) 50%,
            rgba(230, 126, 34, 0) 100%);
}


/**** 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: 45%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    z-index: 1;
    background-size: cover;
    background-position: center;
    filter: brightness(0.9) contrast(1.1);
}

.block-editor-block-list__layout .block-editor-block-list__block.popular-menu {
    position: absolute !important;
}

.popular-menu {
    display: block;
    position: absolute;
    width: 20%;
    left: 10%;
    right: auto;
    top: auto;
    padding: 2rem;
    margin-right:1rem;
    transform: scale(0.85);
    transform-origin: top center;
    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);
    -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: 40%;
    padding: 2.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    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: end;
}

.btn-primary {
    font-weight: 400;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(44, 62, 80, 0.1);
}

.btn-primary:hover {
    box-shadow: 0 15px 30px rgba(44, 62, 80, 0.2);
}


.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);
    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;
}


/** アバウトContent **/
.about-content {
    width: 100%;
    margin: 0 auto;
}

.about-description {
    font-size: 1.125rem;
    margin-bottom: 4rem;
    color: #374151;
    text-align: center;
    line-height: 1.8;

}

.about-description br {
    display: inline;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.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;
}

/** メニューセクション **/
.menu-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-weight: 300;
    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;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
    }

    .category-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }

    .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: 2rem;
    margin-top: 2.5rem;
    width: 100%;

}

.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%);
}


/** スタッフセクション **/
.staff {
    padding: 5rem 0;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    width: 100%;
}

.staff-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: #fafafa;
    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;
}


/*** 問い合わせセクション ***/
.contact {
    width: 100%;
    margin: 0 auto;
    padding: 5rem 0;
    background: linear-gradient(135deg, #e5e7eb 0%, #9ca3af 100%);
    color: #2c3e50;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 4rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.25rem;
    box-sizing: border-box;
    max-width: 1200px;
}

.contact-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.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;
}

.single-page {
    padding: 4rem 2rem;
}