/* ========================================
   リセット & ベース設定
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

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

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic UI", Meiryo, sans-serif;
    line-height: 1.8;
    color: #2c2c2c;
    background-color: #fffef9;
    overflow-x: hidden;
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   SNSバー
======================================== */
.sns-bar {
    background-color: #c62828;
    padding: 8px 0;
    height: 44px;
    box-sizing: border-box;
}

.sns-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    height: 28px;
}

.sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: opacity 0.3s ease;
}

.sns-link:hover {
    opacity: 0.8;
}

.sns-icon {
    width: 20px;
    height: 20px;
}

.sns-bar #google_translate_element {
    margin-left: 10px;
    height: 28px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sns-bar .goog-te-gadget-simple {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    padding: 4px 10px !important;
    border-radius: 4px;
}

.sns-bar .goog-te-gadget-simple .goog-te-menu-value {
    color: #fff !important;
    font-size: 12px !important;
}

.sns-bar .goog-te-gadget-simple .goog-te-menu-value span {
    color: #fff !important;
}

.sns-bar .goog-te-gadget-simple:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

/* ========================================
   ヘッダー
======================================== */
.header {
    background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
    box-shadow: 0 4px 20px rgba(198, 40, 40, 0.15);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #c62828;
    display: block;
    visibility: visible;
}

.header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        #c62828 0%,
        #ff5722 25%,
        #c62828 50%,
        #ff5722 75%,
        #c62828 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

.header .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 12px 20px;
    max-width: none;
    margin: 0;
}

.logo {
    margin: 0;
    margin-right: 40px;
    position: relative;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    height: 75px;
    width: auto;
    min-width: -webkit-fit-content;
    min-width: fit-content;
    max-width: none;
    display: block;
    transition: transform 0.3s ease;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav {
    display: block;
    visibility: visible;
}

.nav-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 2px;
    position: relative;
}

.nav-list a {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    padding: 12px 18px;
    display: block;
    white-space: nowrap;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-list a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(198, 40, 40, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.nav-list a:hover::before {
    width: 150px;
    height: 150px;
}

.nav-list a:hover {
    color: #c62828;
    background-color: rgba(198, 40, 40, 0.08);
    transform: translateY(-2px);
    opacity: 1;
}

.nav-list a::after {
    content: '🦐';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-list a:hover::after {
    right: 5px;
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

/* アクティブ（現在のページ）状態 */
.nav-list a.active {
    background: linear-gradient(135deg, #c62828 0%, #e53935 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.4);
    transform: translateY(-2px);
}

.nav-list a.active::before {
    display: none;
}

.nav-list a.active::after {
    content: '🦐';
    right: 8px;
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

.nav-list a.active:hover {
    background: linear-gradient(135deg, #b71c1c 0%, #c62828 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(198, 40, 40, 0.5);
}

.nav-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

#google_translate_element {
    display: flex;
    align-items: center;
}

#google_translate_element select {
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

#google_translate_element select:hover {
    border-color: #d32f2f;
}

.goog-te-gadget {
    font-family: inherit !important;
}

.goog-te-gadget-simple {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.goog-te-gadget-simple .goog-te-menu-value {
    color: #333 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.goog-te-gadget-simple .goog-te-menu-value:hover {
    color: #d32f2f !important;
}

.hamburger {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.hamburger span:last-child {
    margin-bottom: 0;
}

/* ========================================
   キービジュアル
======================================== */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c62828 0%, #d84315 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide:first-child {
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 0 20px;
    max-width: 100%;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    word-break: normal;
    overflow-wrap: break-word;
}

.hero-content p {
    font-size: 20px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    word-break: normal;
    overflow-wrap: break-word;
}

/* ========================================
   コンセプト
======================================== */
.concept {
    padding: 10px 0;
    background: linear-gradient(to bottom, #fff8f0 0%, #fffef9 100%);
    text-align: center;
}

.section-title {
    font-size: 40px;
    font-weight: bold;
    color: #c62828;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.section-subtitle {
    font-size: 19px;
    color: #555;
    line-height: 1.9;
}

/* ========================================
   主要導線
======================================== */
.main-links {
    padding: 10px 0;
    background-color: #fff;
}

.main-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.main-link-card {
    display: block;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(198, 40, 40, 0.05);
}

.main-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(198, 40, 40, 0.15);
    border-color: rgba(198, 40, 40, 0.1);
    opacity: 1;
}

.main-link-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.main-link-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.main-link-card h3 {
    font-size: 22px;
    color: #c62828;
    font-weight: bold;
    margin-bottom: 12px;
}

.main-link-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .main-links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .main-link-card {
        padding: 30px 20px;
    }
}

/* ========================================
   About
======================================== */
.about {
    padding: 10px 0;
    background-color: #fff;
}

.section-heading {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #2c2c2c;
    position: relative;
    padding-bottom: 15px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, #c62828, #d84315);
    border-radius: 2px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.about-item h3 {
    font-size: 24px;
    color: #c62828;
    margin-bottom: 15px;
    font-weight: bold;
}

.about-item p {
    font-size: 16.5px;
    line-height: 2;
    color: #444;
}

/* ========================================
   こだわり
======================================== */
.quality {
    padding: 10px 0;
    background: linear-gradient(to bottom, #fff 0%, #fafafa 100%);
}

.quality-content {
    max-width: 820px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 2.1;
    color: #444;
}

.quality-content p {
    margin-bottom: 28px;
}

.quality-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 50px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.quality-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(198, 40, 40, 0.05);
}

.quality-image:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(198, 40, 40, 0.25);
    border-color: rgba(198, 40, 40, 0.15);
}

.quality-highlight {
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8d6 100%);
    padding: 36px 40px;
    border-left: 5px solid #c62828;
    font-size: 19px;
    font-weight: 600;
    color: #c62828;
    margin-top: 50px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 16px rgba(198, 40, 40, 0.1);
    line-height: 1.9;
}

/* こだわりアイテム */
.kodawari-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
}

.kodawari-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px 35px;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(198, 40, 40, 0.05);
}

.kodawari-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(198, 40, 40, 0.12);
    border-color: rgba(198, 40, 40, 0.1);
}

.kodawari-icon {
    font-size: 42px;
    flex-shrink: 0;
}

.kodawari-text h3 {
    font-size: 20px;
    color: #c62828;
    font-weight: bold;
    margin-bottom: 12px;
}

.kodawari-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin: 0;
}

@media (max-width: 768px) {
    .kodawari-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .kodawari-icon {
        font-size: 36px;
    }
}

/* ========================================
   店舗情報
======================================== */
.shops {
    padding: 10px 0;
    background-color: #f5f5f5;
}

.shop-link {
    text-align: center;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 16px 55px;
    background: linear-gradient(135deg, #c62828 0%, #d84315 100%);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.25);
}

.btn:hover {
    background: linear-gradient(135deg, #b71c1c 0%, #c62828 100%);
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 40, 40, 0.35);
}

/* ========================================
   フッター
======================================== */
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-nav a {
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-nav .nav-icon {
    filter: brightness(0) invert(1);
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: #999;
}

/* ========================================
   レスポンシブ (タブレット)
======================================== */
@media (max-width: 768px) {
    .header {
        overflow: visible;
    }

    .header .container {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        padding: 10px 15px;
        position: relative;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    .logo {
        display: block;
        visibility: visible;
        margin-right: auto;
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
        z-index: 1002;
    }

    .logo a {
        display: block;
    }

    .logo img {
        height: 50px;
        width: auto;
        max-width: 200px;
        display: block;
        visibility: visible;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #fff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        visibility: visible;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column;
        flex-direction: column;
        padding: 80px 30px 30px;
    }

    .nav-list li {
        border-bottom: 1px solid #eee;
        margin: 0;
    }

    .nav-list a {
        display: block;
        padding: 20px 0;
    }

    .hamburger {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column;
        flex-direction: column;
        visibility: visible;
        z-index: 1001;
        padding: 10px;
        margin-left: 0;
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
        position: relative;
        right: 0;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .hamburger span {
        display: block;
        visibility: visible;
        width: 25px;
        height: 3px;
        background-color: #333;
        margin-bottom: 5px;
    }

    .hamburger span:last-child {
        margin-bottom: 0;
    }

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

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

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

    .hero {
        height: 400px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-heading {
        font-size: 26px;
    }

    .about-item h3 {
        font-size: 20px;
    }

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

/* ========================================
   レスポンシブ (スマートフォン)
======================================== */
@media (max-width: 480px) {
    .logo img {
        height: 40px;
        width: auto;
        max-width: 150px;
        display: block;
        visibility: visible;
    }

    .hamburger {
        padding: 8px;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
        margin-bottom: 4px;
    }

    .hero {
        height: 300px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .concept,
    .about,
    .quality,
    .shops {
        padding: 10px 0;
    }

    .section-title {
        font-size: 22px;
    }

    .section-heading {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .quality-highlight {
        font-size: 16px;
        padding: 20px;
    }

    .quality-images {
        grid-template-columns: 1fr;
    }

    .quality-image {
        height: 250px;
    }
}

/* ========================================
   ページヘッダー
======================================== */
.page-header {
    background: linear-gradient(135deg, #c62828 0%, #d84315 100%);
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
}

.page-header p {
    font-size: 12px;
    letter-spacing: 3px;
    opacity: 0.9;
}

/* ========================================
   会社情報
======================================== */
.company-info {
    padding: 10px 0;
    background-color: #fff;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid #eee;
}

.info-table th,
.info-table td {
    padding: 20px;
    text-align: left;
}

.info-table th {
    background-color: #f5f5f5;
    font-weight: bold;
    width: 200px;
    color: #d32f2f;
}

.info-table td {
    color: #555;
}

.brand-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brand-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.brand-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #c62828;
    border-radius: 50%;
}

.brand-list li:first-child {
    color: #c62828;
    font-weight: bold;
}

/* ========================================
   ブランドストーリー
======================================== */
.brand-story {
    padding: 10px 0;
    background-color: #f5f5f5;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #d32f2f;
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.timeline-year {
    width: 100px;
    flex-shrink: 0;
    font-size: 20px;
    font-weight: bold;
    color: #d32f2f;
    padding-right: 20px;
    text-align: right;
}

.timeline-year::after {
    content: '';
    position: absolute;
    left: 95px;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: #d32f2f;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #d32f2f;
}

.timeline-content {
    flex: 1;
    padding-left: 30px;
    padding-top: 0;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* ========================================
   理念
======================================== */
.philosophy {
    padding: 10px 0;
    background-color: #fff;
}

.philosophy-content {
    max-width: 820px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 2.1;
    color: #444;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.philosophy-content p {
    margin-bottom: 20px;
}

.story-subtitle {
    font-size: 24px;
    color: #c62828;
    font-weight: bold;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffe8d6;
}

.story-subtitle:first-of-type {
    margin-top: 0;
}

.enishi-meaning {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0 40px;
}

.enishi-item {
    background: linear-gradient(180deg, #fff 0%, #fff8f0 100%);
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.08);
    border: 1px solid #ffe0d0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enishi-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(198, 40, 40, 0.15);
}

.enishi-text h4 {
    font-size: 18px;
    color: #c62828;
    margin-bottom: 12px;
    font-weight: 700;
}

.enishi-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

@media (max-width: 768px) {
    .enishi-meaning {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .enishi-item {
        padding: 25px 20px;
    }

    .story-subtitle {
        font-size: 20px;
    }
}

p.highlight-text,
.service-detail p.highlight-text {
    background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%);
    padding: 50px 60px;
    border: 4px solid #ffcc00;
    font-size: 26px;
    font-weight: 700;
    color: #fff !important;
    margin-top: 50px;
    border-radius: 16px;
    box-shadow:
        0 10px 40px rgba(198, 40, 40, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    line-height: 2.2;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
    word-break: keep-all;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

@keyframes pulse {
    0%, 100% {
        box-shadow:
            0 10px 40px rgba(198, 40, 40, 0.5),
            inset 0 0 30px rgba(255, 255, 255, 0.1),
            0 0 0 0 rgba(255, 204, 0, 0.4);
    }
    50% {
        box-shadow:
            0 10px 40px rgba(198, 40, 40, 0.5),
            inset 0 0 30px rgba(255, 255, 255, 0.1),
            0 0 20px 5px rgba(255, 204, 0, 0.3);
    }
}

.highlight-text::before {
    content: '🦐';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 40px;
    opacity: 0.4;
    animation: float 3s ease-in-out infinite;
}

.highlight-text::after {
    content: '🦐';
    position: absolute;
    bottom: 15px;
    right: 25px;
    font-size: 40px;
    opacity: 0.4;
    animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

/* ========================================
   レスポンシブ (タブレット) - ページ追加分
======================================== */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .info-table th {
        width: 120px;
        font-size: 14px;
    }

    .info-table th,
    .info-table td {
        padding: 15px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        margin-bottom: 40px;
        padding-left: 50px;
    }

    .timeline-year {
        width: auto;
        text-align: left;
        padding-right: 0;
        margin-bottom: 10px;
    }

    .timeline-year::after {
        left: 15px;
    }

    .timeline-content {
        padding-left: 0;
    }

    .highlight-text {
        font-size: 18px;
        padding: 35px 20px;
        border-width: 3px;
        word-break: keep-all;
        overflow-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
    }

    .highlight-text::before,
    .highlight-text::after {
        font-size: 28px;
    }
}

/* ========================================
   レスポンシブ (スマートフォン) - ページ追加分
======================================== */
@media (max-width: 480px) {
    .page-header {
        padding: 10px 0;
    }

    .page-header h1 {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .page-header p {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .company-info,
    .brand-story,
    .philosophy {
        padding: 10px 0;
    }

    .info-table {
        display: block;
    }

    .info-table tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
        border: 1px solid #eee;
    }

    .info-table th,
    .info-table td {
        width: 100%;
        padding: 12px;
    }

    .info-table th {
        border-bottom: 1px solid #eee;
    }

    .timeline-content h3 {
        font-size: 18px;
    }

    .highlight-text {
        font-size: 15px;
        padding: 20px 15px;
        line-height: 1.9;
        word-break: keep-all;
    }

    .highlight-text::before,
    .highlight-text::after {
        font-size: 24px;
        top: 10px;
        left: 10px;
        bottom: 10px;
        right: 10px;
    }
}

/* ========================================
   サービス・事業内容
======================================== */
.service-main {
    padding: 10px 0;
    background-color: #fff;
}

.service-main .container,
.business .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.service-detail h3 {
    font-size: 22px;
    color: #c62828;
    font-weight: bold;
    margin-bottom: 15px;
}

.service-detail {
    max-width: 100%;
    overflow: hidden;
}

.service-detail p {
    font-size: 16.5px;
    line-height: 2;
    color: #444;
}

/* ========================================
   メニュー
======================================== */
.menu-section {
    padding: 10px 0;
    background-color: #fff;
}

.menu-section-alt {
    background-color: #f5f5f5;
}

.menu-item-side {
    padding: 30px;
}

.menu-item-side h3 {
    margin: 0 0 12px;
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item-side p {
    margin: 0;
}

.menu-note {
    text-align: center;
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.menu-item {
    background-color: #fff;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(198, 40, 40, 0.05);
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 36px rgba(198, 40, 40, 0.18);
    border-color: rgba(198, 40, 40, 0.1);
}

.menu-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover .menu-image {
    transform: scale(1.08);
}

.menu-item h3 {
    font-size: 22px;
    color: #c62828;
    font-weight: bold;
    margin: 24px 30px 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ffe8d6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.menu-item p {
    font-size: 15px;
    line-height: 2;
    color: #444;
    margin: 0 30px 32px;
}

/* ========================================
   事業内容
======================================== */
.business {
    padding: 10px 0;
    background-color: #fff;
}

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

.business-item {
    padding: 35px;
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
    border-left: 5px solid #c62828;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.business-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(198, 40, 40, 0.12);
}

.business-item h3 {
    font-size: 21px;
    color: #c62828;
    font-weight: bold;
    margin-bottom: 16px;
}

.business-item p {
    font-size: 15.5px;
    line-height: 2;
    color: #444;
}

/* ========================================
   レスポンシブ - サービスページ
======================================== */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .service-main,
    .menu-section,
    .business {
        padding: 10px 0;
    }

    .service-content {
        max-width: 100%;
        padding: 0;
    }

    .service-detail p.highlight-text {
        padding: 35px 20px;
        font-size: 18px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .service-main,
    .menu-section,
    .business {
        padding: 10px 0;
    }

    .service-detail h3,
    .business-item h3 {
        font-size: 18px;
    }

    .menu-item,
    .business-item {
        padding: 20px;
    }

    .menu-item h3 {
        font-size: 18px;
        margin: 15px 15px 10px;
    }

    .menu-item p {
        margin: 0 15px 20px;
        font-size: 14px;
    }

    .service-detail p.highlight-text {
        padding: 20px 15px;
        font-size: 15px;
        margin-top: 30px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
    }
}

/* ========================================
   店舗一覧
======================================== */
.shops-list {
    padding: 10px 0;
    background-color: #f5f5f5;
}

.shops-intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.shop-cards {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.shop-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(198, 40, 40, 0.05);
}

.shop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(198, 40, 40, 0.15);
    border-color: rgba(198, 40, 40, 0.1);
}

.shop-card-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.shop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-card:hover .shop-card-image img {
    transform: scale(1.08);
}

.shop-map {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.shop-map iframe {
    display: block;
    width: 100%;
}

.shop-card-header {
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    color: #fff;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-card-header h3 {
    font-size: 22px;
    font-weight: bold;
}

.shop-badge {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.shop-badge-new {
    background-color: #ff6b00;
    color: #fff;
}

.shop-card-body {
    padding: 30px;
}

.shop-info-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.shop-info-row:last-child {
    border-bottom: none;
}

.shop-label {
    font-weight: bold;
    color: #d32f2f;
    min-width: 100px;
    flex-shrink: 0;
}

.shop-value {
    color: #555;
    flex: 1;
}

.shop-value a {
    color: #d32f2f;
    text-decoration: underline;
}

.shop-value a:hover {
    opacity: 0.7;
}

.shop-card-coming {
    background-color: #fafafa;
    border: 2px dashed #ddd;
}

.shop-card-coming .shop-card-header {
    background: #999;
}

.shop-card-coming .shop-card-body p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.shop-note {
    font-size: 14px;
    color: #999;
}

/* ========================================
   店舗お知らせ
======================================== */
.shop-notice {
    padding: 10px 0;
    background-color: #fff;
}

.notice-content {
    max-width: 800px;
    margin: 0 auto;
}

.notice-list {
    list-style: none;
    padding: 0;
}

.notice-list li {
    padding: 15px 0 15px 30px;
    position: relative;
    color: #555;
    line-height: 1.8;
    border-bottom: 1px solid #f0f0f0;
}

.notice-list li:last-child {
    border-bottom: none;
}

.notice-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-size: 12px;
}

/* ========================================
   レスポンシブ - 店舗ページ
======================================== */
@media (max-width: 768px) {
    .shops-list,
    .shop-notice {
        padding: 10px 0;
    }

    .shop-info-row {
        flex-direction: column;
        gap: 5px;
    }

    .shop-label {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .shops-list,
    .shop-notice {
        padding: 10px 0;
    }

    .shop-card-header {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .shop-card-header h3 {
        font-size: 18px;
    }

    .shop-card-body {
        padding: 20px;
    }

    .shop-label {
        font-size: 14px;
    }

    .shop-value {
        font-size: 14px;
    }
}

/* ========================================
   お問い合わせフォーム
======================================== */
.contact-form-section {
    padding: 10px 0;
    background-color: #f5f5f5;
}

.contact-intro {
    text-align: center;
    margin-bottom: 30px;
}

.contact-intro p {
    color: #666;
    margin-top: 15px;
}

.note {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

.note a {
    color: #d32f2f;
    text-decoration: underline;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    font-size: 15px;
}

.required {
    color: #d32f2f;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d32f2f;
}

.form-group select {
    cursor: pointer;
    background-color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: #d32f2f;
    text-decoration: underline;
    margin: 0 5px;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.form-submit .btn {
    min-width: 250px;
    padding: 15px 60px;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.form-submit .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

/* ========================================
   お問い合わせ情報
======================================== */
.contact-info {
    padding: 10px 0;
    background-color: #fff;
}

.contact-methods {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.contact-method {
    padding: 30px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.contact-method h3 {
    font-size: 20px;
    color: #d32f2f;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ddd;
}

.contact-method p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-detail {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-top: 15px;
}

/* ========================================
   レスポンシブ - お問い合わせページ
======================================== */
@media (max-width: 768px) {
    .contact-form-section,
    .contact-info {
        padding: 10px 0;
    }

    .contact-form {
        padding: 30px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-form-section,
    .contact-info {
        padding: 10px 0;
    }

    .contact-form {
        padding: 25px;
    }

    .form-submit .btn {
        min-width: 100%;
        padding: 15px 30px;
    }

    .contact-method {
        padding: 20px;
    }

    .contact-method h3 {
        font-size: 18px;
    }
}

/* ========================================
   画像スタイル（共通）
======================================== */
.full-width-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.service-hero-image,
.philosophy-image {
    max-width: 900px;
    margin: 0 auto 20px;
}

/* ========================================
   コラージュギャラリー（ごちゃごちゃ配置）
======================================== */
.collage-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 120px);
    gap: 10px;
    max-width: 900px;
    margin: 0 auto 30px;
    position: relative;
}

.collage-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

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

.collage-item:hover {
    z-index: 10;
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 8px 25px rgba(198, 40, 40, 0.3);
}

.collage-item:hover img {
    transform: scale(1.1);
}

/* 各アイテムの配置（ごちゃごちゃ感を出す） */
.collage-item-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    transform: rotate(-2deg);
}

.collage-item-2 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    transform: rotate(3deg) translateY(5px);
}

.collage-item-3 {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
    transform: rotate(-1deg) translateX(-5px);
}

.collage-item-4 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    transform: rotate(2deg) translateY(-5px);
}

.collage-item-5 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    transform: rotate(1deg);
}

.collage-item-6 {
    grid-column: 2 / 4;
    grid-row: 3 / 4;
    transform: rotate(-1deg) translateY(-3px);
}

@media (max-width: 768px) {
    .collage-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 100px);
    }

    .collage-item-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }

    .collage-item-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .collage-item-3 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .collage-item-4 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .collage-item-5 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .collage-item-6 {
        grid-column: 1 / 3;
        grid-row: 4 / 5;
    }
}

/* ========================================
   プライバシーポリシー
======================================== */
.privacy-content {
    padding: 10px 0;
    background-color: #fff;
}

.privacy-intro {
    font-size: 15px;
    line-height: 2;
    color: #555;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f5f5f5;
    border-left: 4px solid #d32f2f;
}

.privacy-section {
    max-width: 900px;
    margin: 0 auto 30px;
}

.privacy-section h2 {
    font-size: 22px;
    color: #d32f2f;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.privacy-section p {
    font-size: 15px;
    line-height: 2;
    color: #555;
    margin-bottom: 15px;
}

.privacy-section ul {
    margin-left: 20px;
    margin-top: 15px;
}

.privacy-section li {
    font-size: 15px;
    line-height: 2;
    color: #555;
    margin-bottom: 10px;
    list-style-type: disc;
}

.privacy-section a {
    color: #d32f2f;
    text-decoration: underline;
}

.privacy-footer {
    max-width: 900px;
    margin: 30px auto 0;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
    text-align: right;
}

.privacy-footer p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

/* ========================================
   レスポンシブ - プライバシーポリシーページ
======================================== */
@media (max-width: 768px) {
    .privacy-content {
        padding: 10px 0;
    }

    .privacy-section h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 10px 0;
    }

    .privacy-intro {
        padding: 20px;
        font-size: 14px;
    }

    .privacy-section {
        margin-bottom: 40px;
    }

    .privacy-section h2 {
        font-size: 18px;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 14px;
    }

    .privacy-footer {
        margin-top: 40px;
        padding-top: 30px;
        text-align: left;
    }
}
