/* ===== 基本設定 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #4A3B2A;
    background-color: #FFF8F0;
}

.page-wrapper {
    position: relative;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background: #FFF8F0;
    overflow-x: hidden;
}

.layout-container {
    display: flex;
    height: 100%;
    flex: 1;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== グラデーションテキスト ===== */
.gradient-text {
    background: linear-gradient(to right, #EC4899, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ===== ヘッダー ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 248, 240, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    padding: 16px 24px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #D45F00;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-icon {
    color: #F39D24;
    width: 32px;
    height: 32px;
}

.logo-text {
    color: #D45F00;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.main-nav {
    display: none;
    align-items: center;
    gap: 24px;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
    }
}

.nav-link {
    color: #4A3B2A;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #F39D24;
}

.nav-link--active {
    color: #F39D24;
    font-weight: 600;
}

.nav-link--active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #EC4899, #F59E0B);
    border-radius: 1px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.order-btn {
    display: flex;
    min-width: 120px;
    max-width: 480px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 9999px;
    height: 40px;
    padding: 0 24px;
    background: linear-gradient(to right, #F39D24, #FFAF45);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.order-btn:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: block;
    color: #D45F00;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* ===== 共通ページヘッダー ===== */
.page-header {
    padding: 60px 0 40px;
    background: #FFFBEF;
    text-align: center;
}

@media (min-width: 768px) {
    .page-header {
        padding: 80px 0 60px;
    }
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    color: #D45F00;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .page-title {
        font-size: 36px;
    }
}

@media (min-width: 768px) {
    .page-title {
        font-size: 42px;
    }
}

.page-description {
    font-size: 16px;
    color: #4A3B2A;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .page-description {
        font-size: 18px;
    }
}

/* ===== メニューページ ===== */
.menu-categories {
    padding: 40px 0;
    background: #FDF0E0;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
    max-width: 800px;
}

.category-tab {
    padding: 12px 24px;
    border: 2px solid #F39D24;
    background: white;
    color: #F39D24;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab--active {
    background: linear-gradient(to right, #F39D24, #FFAF45);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.menu-content {
    padding: 40px 0;
    background: #FFFBEF;
}

.menu-section-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #D45F00;
}

@media (min-width: 768px) {
    .menu-section-title {
        font-size: 28px;
    }
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .menu-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-items-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-item-detail {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.menu-item-detail:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.menu-detail-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-detail-content {
    padding: 24px;
}

.menu-detail-title {
    font-size: 20px;
    font-weight: 600;
    color: #D45F00;
    margin-bottom: 8px;
}

.menu-detail-price {
    font-size: 18px;
    font-weight: 700;
    color: #F39D24;
    margin-bottom: 12px;
}

.menu-detail-description {
    font-size: 14px;
    color: #4A3B2A;
    line-height: 1.6;
    margin-bottom: 16px;
}

.menu-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.menu-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #FDF0E0;
    color: #D45F00;
    font-size: 12px;
    font-weight: 500;
    border-radius: 9999px;
    border: 1px solid #F39D24;
}

.order-info {
    padding: 60px 0;
    background: #FDF0E0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
}

.info-icon {
    color: #F39D24;
    font-size: 48px;
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #D45F00;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 14px;
    color: #4A3B2A;
    line-height: 1.5;
}

/* ===== 店舗案内ページ ===== */
.shops-section {
    padding: 60px 0;
    background: #FFFBEF;
}

.shop-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .shop-card {
        grid-template-columns: 1fr 1fr;
        margin-bottom: 80px;
    }
}

.shop-card:hover {
    transform: translateY(-4px);
}

.shop-image {
    height: 300px;
}

@media (min-width: 768px) {
    .shop-image {
        height: auto;
    }
}

.shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-content {
    padding: 32px;
}

.shop-name {
    font-size: 28px;
    font-weight: 700;
    color: #D45F00;
    margin-bottom: 8px;
}

.shop-concept {
    font-size: 16px;
    color: #F39D24;
    font-weight: 600;
    margin-bottom: 16px;
}

.shop-description {
    font-size: 14px;
    color: #4A3B2A;
    line-height: 1.7;
    margin-bottom: 24px;
}

.shop-details {
    margin-bottom: 24px;
}

.shop-info-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}

@media (min-width: 640px) {
    .shop-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.shop-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.shop-info-item .material-icons {
    color: #F39D24;
    font-size: 20px;
    margin-top: 2px;
}

.shop-info-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: #D45F00;
    margin-bottom: 4px;
}

.shop-info-item p {
    font-size: 13px;
    color: #4A3B2A;
    line-height: 1.5;
}

.shop-features h4 {
    font-size: 16px;
    font-weight: 600;
    color: #D45F00;
    margin-bottom: 12px;
}

.features-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.features-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #4A3B2A;
}

.features-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #F39D24;
    font-weight: bold;
}

.common-services {
    padding: 60px 0;
    background: #FDF0E0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    margin-top: 40px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-icon {
    color: #F39D24;
    font-size: 48px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #D45F00;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: #4A3B2A;
    line-height: 1.5;
}

.announcements {
    padding: 60px 0;
    background: #FFFBEF;
}

.announcements-list {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.announcement-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.announcement-item:hover {
    transform: translateY(-2px);
}

.announcement-date {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
    white-space: nowrap;
}

.announcement-category {
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.announcement-category.new {
    background: #FEE2E2;
    color: #DC2626;
}

.announcement-category.info {
    background: #DBEAFE;
    color: #2563EB;
}

.announcement-category.campaign {
    background: #FEF3C7;
    color: #D97706;
}

.announcement-item p {
    font-size: 14px;
    color: #4A3B2A;
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

/* ===== ブランドストーリーページ ===== */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.about-hero-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .about-hero-title {
        font-size: 48px;
    }
}

.about-hero-description {
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    color: #E5E7EB;
}

@media (min-width: 768px) {
    .about-hero-description {
        font-size: 18px;
    }
}

.founding-story {
    padding: 80px 0;
    background: #FFFBEF;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .story-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.story-title {
    font-size: 28px;
    font-weight: 700;
    color: #D45F00;
    margin-bottom: 24px;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .story-title {
        font-size: 32px;
    }
}

.story-description {
    font-size: 16px;
    color: #4A3B2A;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .story-image img {
        height: 400px;
    }
}

.mission-section {
    padding: 80px 0;
    background: #FDF0E0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .mission-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mission-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(to right, #F39D24, #FFAF45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.mission-icon .material-icons {
    color: white;
    font-size: 40px;
}

.mission-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #D45F00;
    margin-bottom: 16px;
}

.mission-card p {
    font-size: 14px;
    color: #4A3B2A;
    line-height: 1.7;
}

.history-section {
    padding: 80px 0;
    background: #FFFBEF;
}

.timeline {
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 32px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50px;
    top: 100px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(to bottom, #F39D24, #FFAF45);
}

.timeline-year {
    font-size: 18px;
    font-weight: 700;
    color: white;
    background: linear-gradient(to right, #F39D24, #FFAF45);
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    height: fit-content;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #D45F00;
    margin-bottom: 16px;
}

.timeline-content p {
    font-size: 14px;
    color: #4A3B2A;
    line-height: 1.7;
}

.commitment-section {
    padding: 80px 0;
    background: #FDF0E0;
}

.commitment-grid {
    margin-top: 60px;
}

.commitment-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 60px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .commitment-item {
        grid-template-columns: 1fr 1fr;
    }
    
    .commitment-item:nth-child(even) {
        direction: rtl;
    }
    
    .commitment-item:nth-child(even) .commitment-content {
        direction: ltr;
    }
}

.commitment-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .commitment-image img {
        height: 100%;
        min-height: 300px;
    }
}

.commitment-content {
    padding: 32px;
}

.commitment-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #D45F00;
    margin-bottom: 16px;
}

.commitment-content p {
    font-size: 16px;
    color: #4A3B2A;
    line-height: 1.7;
}

.future-vision {
    padding: 80px 0;
    background: #FFFBEF;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .vision-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.vision-title {
    font-size: 28px;
    font-weight: 700;
    color: #D45F00;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .vision-title {
        font-size: 32px;
    }
}

.vision-text {
    font-size: 16px;
    color: #4A3B2A;
    line-height: 1.8;
    margin-bottom: 20px;
}

.vision-signature {
    margin-top: 40px;
    font-size: 14px;
    color: #6B7280;
    text-align: right;
}

.vision-signature strong {
    color: #D45F00;
    font-size: 18px;
}

.vision-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .vision-image img {
        height: 400px;
    }
}

.team-section {
    padding: 80px 0;
    background: #FDF0E0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
    margin-top: 60px;
}

@media (min-width: 640px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-member {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px;
    border: 4px solid #F39D24;
}

.team-member h3 {
    font-size: 20px;
    font-weight: 600;
    color: #D45F00;
    margin-bottom: 8px;
}

.member-role {
    font-size: 14px;
    color: #F39D24;
    font-weight: 600;
    margin-bottom: 16px;
}

.member-description {
    font-size: 14px;
    color: #4A3B2A;
    line-height: 1.6;
}

/* ===== アイコンスタイル ===== */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* ===== レスポンシブ微調整 ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        padding: 12px 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .features-section,
    .menu-section {
        padding: 48px 0 64px;
    }
}

/* ===== ホバーエフェクト強化 ===== */
@media (hover: hover) {
    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 40px rgba(0, 0, 0, 0.12);
    }
    
    .menu-item:hover {
        transform: scale(1.08);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
}

/* ===== フッター ===== */
.site-footer {
    background: #3A2F1F;
    color: white;
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-content,
.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 640px) {
    .footer-content,
.footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .footer-content,
.footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #F39D24;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #E5E7EB;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #F39D24;
}

.footer-section p {
    color: #E5E7EB;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #F39D24;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FFAF45;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #4B5563;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: 14px;
    margin: 0;
}

.footer-bottom a {
    color: #F39D24;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #FFAF45;
}

/* ===== ヒーローセクション（index.htmlの分） ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    width: 100%;
}

.hero-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 48px;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 64px;
    }
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #E5E7EB;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 20px;
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(to right, #F39D24, #FFAF45);
    color: white;
    border: none;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* レスポンシブ対応 */
@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 200px;
        justify-content: center;
    }
}

/* ===== 特徴セクション（index.htmlの分） ===== */
.features-section {
    padding: 80px 0 100px;
    background: #FFFBEF;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #D45F00;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 36px;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 42px;
    }
}

.section-description {
    font-size: 16px;
    text-align: center;
    color: #4A3B2A;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .section-description {
        font-size: 18px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(to right, #F39D24, #FFAF45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon .material-icons {
    color: white;
    font-size: 40px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #D45F00;
}

.feature-card p {
    font-size: 14px;
    color: #4A3B2A;
    line-height: 1.7;
}

/* ===== メニューセクション（index.htmlの分） ===== */
.menu-section {
    padding: 80px 0 100px;
    background: #FDF0E0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
}

@media (min-width: 640px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.menu-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-content {
    padding: 24px;
}

.menu-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #D45F00;
}

.menu-price {
    font-size: 18px;
    font-weight: 700;
    color: #F39D24;
    margin-bottom: 12px;
}

.menu-content p {
    font-size: 14px;
    color: #4A3B2A;
    line-height: 1.6;
}

.view-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(to right, #F39D24, #FFAF45);
    color: white;
    border: none;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 40px auto 0;
    text-decoration: none;
}

.view-menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* ===== CTAセクション（index.htmlの分） ===== */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 36px;
    }
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 42px;
    }
}

.cta-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #E5E7EB;
}

@media (min-width: 768px) {
    .cta-description {
        font-size: 18px;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(to right, #F39D24, #FFAF45);
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* ===== お問い合わせページ ===== */
.contact-main-section {
    padding: 60px 0;
    background: #FFFBEF;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

/* === フォームセクション === */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #D45F00;
    margin-bottom: 32px;
}

.form-title .material-icons {
    color: #F39D24;
    font-size: 28px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #4A3B2A;
    display: flex;
    align-items: center;
    gap: 4px;
}

.required {
    color: #DC2626;
    font-size: 12px;
}

.form-input,
.form-select,
.form-textarea {
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    color: #4A3B2A;
    background: #FFFBEF;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #F39D24;
    box-shadow: 0 0 0 3px rgba(243, 157, 36, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(to right, #F39D24, #FFAF45);
    color: white;
    border: none;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 16px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.form-submit-btn .material-icons {
    font-size: 20px;
}

/* === 店舗情報セクション === */
.store-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #D45F00;
}

.info-title .material-icons {
    color: #F39D24;
    font-size: 28px;
}

.store-info-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.store-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #D45F00;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item .material-icons {
    color: #F39D24;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-item div p {
    margin: 0;
    font-size: 14px;
    color: #4A3B2A;
    line-height: 1.5;
}

.info-item div p strong {
    color: #D45F00;
    font-weight: 600;
}

.other-stores {
    background: #FDF0E0;
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #F39D24;
}

.other-stores h4 {
    font-size: 16px;
    font-weight: 600;
    color: #D45F00;
    margin-bottom: 16px;
}

.store-item {
    margin-bottom: 12px;
    font-size: 14px;
    color: #4A3B2A;
    line-height: 1.5;
}

.store-item:last-of-type {
    margin-bottom: 20px;
}

.store-item strong {
    color: #D45F00;
    font-weight: 600;
}

.store-item small {
    color: #6B7280;
    font-size: 12px;
}

.store-details-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #F39D24;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.store-details-link:hover {
    color: #D45F00;
}

.store-details-link .material-icons {
    font-size: 16px;
}

/* === FAQセクション === */
.faq-section {
    padding: 80px 0;
    background: #FDF0E0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #D45F00;
    margin-bottom: 16px;
    line-height: 1.4;
}

.faq-question .material-icons {
    color: #F39D24;
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.faq-answer {
    font-size: 14px;
    color: #4A3B2A;
    line-height: 1.7;
    margin: 0;
    padding-left: 34px;
}

/* === 地図セクション === */
.map-section {
    padding: 80px 0;
    background: #FFFBEF;
}

.map-container {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    background: linear-gradient(135deg, #F39D24, #FFAF45);
    color: white;
    padding: 80px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.map-placeholder .material-icons {
    font-size: 48px;
    margin-bottom: 8px;
}

.map-placeholder p {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.map-placeholder small {
    font-size: 14px;
    opacity: 0.9;
}

.map-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 16px 24px;
    background: #FDF0E0;
    border-radius: 8px;
    font-size: 14px;
    color: #4A3B2A;
    border-left: 4px solid #F39D24;
}

.map-note .material-icons {
    color: #F39D24;
    font-size: 20px;
    flex-shrink: 0;
}

/* === レスポンシブ対応 === */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .store-info-card {
        padding: 24px;
    }
    
    .faq-item {
        padding: 24px;
    }
    
    .form-title,
    .info-title {
        font-size: 20px;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .map-placeholder {
        padding: 60px 24px;
    }
}

@media (max-width: 480px) {
    .contact-main-section {
        padding: 40px 0;
    }
    
    .faq-section,
    .map-section {
        padding: 60px 0;
    }
    
    .contact-grid {
        gap: 40px;
    }
    
    .faq-grid {
        gap: 16px;
        margin-top: 40px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .form-submit-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* ===== テイクアウト注文ページ ===== */
.order-steps-section {
    padding: 60px 0;
    background: #FDF0E0;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(to right, #F39D24, #FFAF45);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #D45F00;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: #4A3B2A;
    line-height: 1.6;
    margin: 0;
}

/* === メイン注文セクション === */
.order-main-section {
    padding: 80px 0;
    background: #FFFBEF;
}

.order-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .order-layout {
        grid-template-columns: 2fr 1fr;
        gap: 60px;
    }
}

/* === メニュー選択エリア === */
.menu-selection {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .menu-selection {
        padding: 24px;
    }
}

.order-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0;
    justify-content: center;
}

.order-tab {
    padding: 12px 24px;
    border: 2px solid #F39D24;
    background: white;
    color: #F39D24;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-tab:hover,
.order-tab--active {
    background: linear-gradient(to right, #F39D24, #FFAF45);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.order-menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .order-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.order-menu-item {
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.order-menu-item:hover {
    border-color: #F39D24;
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.menu-item-image {
    height: 160px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.order-menu-item:hover .menu-item-image img {
    transform: scale(1.05);
}

.menu-item-info {
    padding: 20px;
}

.menu-item-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #D45F00;
    margin-bottom: 8px;
}

.menu-item-info p {
    font-size: 14px;
    color: #4A3B2A;
    line-height: 1.5;
    margin-bottom: 12px;
}

.menu-item-price {
    font-size: 20px;
    font-weight: 700;
    color: #F39D24;
    margin-bottom: 16px;
}

.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(to right, #F39D24, #FFAF45);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* === 注文カートエリア === */
.order-cart {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 32px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

@media (max-width: 1024px) {
    .order-cart {
        position: static;
        padding: 24px;
    }
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #FDF0E0;
}

.cart-header h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    color: #D45F00;
}

.cart-header .material-icons {
    color: #F39D24;
}

.cart-count {
    background: #F39D24;
    color: white;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
}

.cart-items {
    margin-bottom: 24px;
    min-height: 120px;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: #6B7280;
}

.empty-cart .material-icons {
    font-size: 48px;
    margin-bottom: 16px;
    color: #E5E7EB;
}

.empty-cart p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.empty-cart small {
    font-size: 14px;
    color: #9CA3AF;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #FFFBEF;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #FDF0E0;
}

.cart-item-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #D45F00;
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 14px;
    color: #F39D24;
    font-weight: 600;
}

.remove-item-btn {
    background: #FEE2E2;
    color: #DC2626;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-item-btn:hover {
    background: #FECACA;
    transform: scale(1.1);
}

.remove-item-btn .material-icons {
    font-size: 18px;
}

.cart-summary {
    padding: 20px;
    background: #FDF0E0;
    border-radius: 8px;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    color: #4A3B2A;
}

.summary-row:last-child {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    color: #D45F00;
    padding-top: 8px;
    border-top: 1px solid #F39D24;
}

.order-options {
    margin-bottom: 24px;
}

.option-group {
    margin-bottom: 16px;
}

.option-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4A3B2A;
    margin-bottom: 8px;
}

.option-select,
.option-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    color: #4A3B2A;
    background: #FFFBEF;
    transition: all 0.3s ease;
}

.option-select:focus,
.option-input:focus {
    outline: none;
    border-color: #F39D24;
    box-shadow: 0 0 0 3px rgba(243, 157, 36, 0.1);
}

.checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(to right, #F39D24, #FFAF45);
    color: white;
    border: none;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.checkout-btn:disabled {
    background: #E5E7EB;
    color: #9CA3AF;
    cursor: not-allowed;
}

/* === 注文の流れセクション === */
.order-flow-section {
    padding: 80px 0;
    background: #FDF0E0;
}

.flow-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .flow-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.flow-item {
    text-align: center;
    background: white;
    padding: 40px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.flow-item:hover {
    transform: translateY(-8px);
}

.flow-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(to right, #F39D24, #FFAF45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.flow-icon .material-icons {
    color: white;
    font-size: 40px;
}

.flow-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #D45F00;
    margin-bottom: 16px;
}

.flow-item p {
    font-size: 14px;
    color: #4A3B2A;
    line-height: 1.7;
}

/* === 注意事項セクション === */
.order-notes-section {
    padding: 80px 0;
    background: #FFFBEF;
}

.notes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .notes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.note-item:hover {
    transform: translateY(-4px);
}

.note-item .material-icons {
    color: #F39D24;
    font-size: 24px;
    margin-top: 4px;
    flex-shrink: 0;
}

.note-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #D45F00;
    margin-bottom: 8px;
}

.note-item p {
    font-size: 14px;
    color: #4A3B2A;
    line-height: 1.6;
    margin: 0;
}

/* === レスポンシブ対応（注文ページ） === */
@media (max-width: 768px) {
    .order-steps-section {
        padding: 40px 0;
    }
    
    .order-main-section {
        padding: 60px 0;
    }
    
    .order-flow-section,
    .order-notes-section {
        padding: 60px 0;
    }
    
    .steps-grid {
        margin-top: 32px;
        gap: 24px;
    }
    
    .flow-grid,
    .notes-grid {
        margin-top: 40px;
    }
    
    .order-category-tabs {
        gap: 8px;
        margin: 24px 0;
    }
    
    .order-tab {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .order-menu-grid {
        gap: 16px;
    }
    
    .menu-item-image {
        height: 140px;
    }
    
    .menu-item-info {
        padding: 16px;
    }
    
    .flow-item {
        padding: 32px 20px;
    }
    
    .note-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .order-layout {
        gap: 24px;
    }
    
    .order-category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .order-tab {
        width: 200px;
        text-align: center;
    }
    
    .order-menu-grid {
        grid-template-columns: 1fr;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .step-content h3 {
        font-size: 16px;
    }
    
    .flow-icon {
        width: 60px;
        height: 60px;
    }
    
    .flow-icon .material-icons {
        font-size: 32px;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
    }
} 
