:root {
    --color-primary: #8b7355;
    --color-secondary: #d4c4b0;
    --color-accent: #a67c52;
    --color-text: #4a4a4a;
    --color-text-light: #7a7a7a;
    --color-bg-light: #faf8f5;
    --color-bg-cream: #f5f1eb;
    --color-white: #ffffff;
    --color-border: #e8e3dc;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--color-text);
    line-height: 1.8;
    background: var(--color-white);
    overflow-x: hidden;
    padding-top: 80px;
}

/* ========================================
   Fixed Header
   ======================================== */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    height: 80px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.header-logo {
    height: 40px;
    width: auto;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('images/mv_bg.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
    margin-bottom: 40px;
}

.hero-message {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 2;
    color: var(--color-text);
    opacity: 0;
    animation: fadeIn 1s ease-out 0.6s forwards;
    text-align: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: var(--color-primary);
    letter-spacing: 0.2em;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.2s forwards, bounce 2s ease-in-out 2s infinite;
    cursor: pointer;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-arrow {
    margin-top: 15px;
    width: 24px;
    height: 24px;
    border-left: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    transform: rotate(-45deg);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes petalFadeIn {
    0% { opacity: 0; }
    100% { opacity: 0.85; }
}

@keyframes floatBubble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ========================================
   Intro Message
   ======================================== */
.intro-message {
    background: var(--color-bg-light);
    padding: 60px 0;
    text-align: center;
}

.intro-message-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 2.2;
    color: var(--color-text);
}

/* ========================================
   Container & Section
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 0.08em;
}

.section-title.consultant-title {
    font-size: 2.8rem;
    line-height: 1.3;
}

.section-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-light);
    letter-spacing: 0.15em;
    margin-bottom: 40px;
}

/* ========================================
   Specials / Campaign
   ======================================== */
.specials {
    background: var(--color-white);
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.campaign-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid var(--color-border);
}

.campaign-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 115, 85, 0.15);
}

.campaign-image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.campaign-content {
    padding: 30px;
    text-align: center;
}

.campaign-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.campaign-period {
    font-size: 0.85rem;
    color: var(--color-accent);
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.campaign-description {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.campaign-button {
    display: inline-block;
    padding: 12px 32px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 2px solid var(--color-primary);
}

.campaign-button:hover {
    background: transparent;
    color: var(--color-primary);
    transform: translateX(5px);
}

/* ========================================
   More Button
   ======================================== */
.more-button-container {
    text-align: center;
    margin-top: 40px;
}

.more-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease;
    border-radius: 8px;
}

.more-button:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.more-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.more-button.active .more-icon {
    transform: rotate(45deg);
}

/* ========================================
   Past Campaigns
   ======================================== */
.past-campaigns {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    margin-top: 0;
}

.past-campaigns.show {
    max-height: 800px;
    opacity: 1;
    margin-top: 40px;
}

.past-campaign-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
}

.past-campaign-item:last-child {
    border-bottom: none;
}

.past-campaign-bullet {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.past-campaign-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    flex: 1;
}

.past-campaign-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* ========================================
   Benefits / Coming Soon
   ======================================== */
.benefits-section {
    background: var(--color-bg-light);
    padding: 80px 0;
}

.benefits-title {
    font-size: 1.8rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 25px 0;
    border-bottom: 1px solid var(--color-border);
    transition: background 0.3s ease, padding 0.3s ease;
}

.benefit-item:hover {
    background: var(--color-bg-light);
    padding-left: 20px;
    padding-right: 20px;
}

.benefit-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 20px;
}

.benefit-content h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ========================================
   News Section
   ======================================== */
.news-section {
    background: var(--color-bg-cream);
}

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

.news-item {
    display: flex;
    gap: 20px;
    background: var(--color-white);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--color-border);
    text-decoration: none;
    color: inherit;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--color-accent);
}

.news-thumbnail {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: var(--color-bg-light);
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-date {
    font-size: 0.8rem;
    color: var(--color-accent);
    margin-bottom: 8px;
    font-weight: 500;
}

.news-title {
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 600;
    line-height: 1.6;
}

/* ========================================
   Past News
   ======================================== */
.past-news {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    margin-top: 0;
}

.past-news.show {
    max-height: 2000px;
    opacity: 1;
    margin-top: 30px;
}

.past-news .news-list {
    margin-top: 0;
}

/* ========================================
   Parallax Section
   ======================================== */
.parallax-section {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.parallax-section img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    object-fit: cover;
    will-change: transform;
}

.parallax-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* ========================================
   Back to Top Button
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

.back-to-top::before {
    content: '\2191';
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: bold;
}

/* ========================================
   Flower Petals
   ======================================== */
.petal {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--color-secondary);
    border-radius: 50% 0;
    opacity: 0;
    z-index: 3;
    will-change: transform, opacity;
    pointer-events: none;
}

.petal--round {
    border-radius: 50%;
}

.petal--slim {
    border-radius: 80% 0 55% 10% / 80% 0 55% 10%;
}

.petal.animate {
    animation: petalFadeIn 0.3s ease-out forwards;
}

/* ========================================
   History / Timeline
   ======================================== */
.history-section {
    background: var(--color-white);
    padding: 80px 0 60px;
}

.timeline {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 20px 60px;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

.timeline-container::-webkit-scrollbar {
    height: 6px;
}

.timeline-container::-webkit-scrollbar-track {
    background: var(--color-bg-light);
    border-radius: 3px;
}

.timeline-container::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 3px;
}

.timeline-item {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--color-bg-light);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    opacity: 0.6;
    transform: scale(0.95);
}

.timeline-item.active {
    opacity: 1;
    transform: scale(1);
    border-color: var(--color-accent);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.1);
}

.timeline-container:hover .timeline-item {
    opacity: 0.6;
    transform: scale(0.95);
    border-color: var(--color-border);
    box-shadow: none;
}

.timeline-container:hover .timeline-item:hover {
    opacity: 1;
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.1);
}

.timeline-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.timeline-year {
    font-family: 'Josefin Slab', 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-align: center;
}

.timeline-content h3 {
    font-size: 1.05rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ========================================
   Message Section
   ======================================== */
.message-section {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-cream) 100%);
    padding: 100px 0;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Klee One', 'Noto Serif JP', serif;
}

.message-text {
    font-size: 1.2rem;
    line-height: 2.2;
    color: var(--color-text);
    margin-bottom: 40px;
    text-align: left;
    background-image: repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent calc(2.2em - 1px),
        rgba(200, 185, 165, 0.3) calc(2.2em - 1px),
        rgba(200, 185, 165, 0.3) 2.2em
    );
    background-size: 100% 2.2em;
}

.message-signature {
    font-family: 'Klee One', 'Noto Serif JP', serif;
    font-size: 1.2rem;
    color: var(--color-text);
    font-weight: 400;
    margin-top: 40px;
    text-align: right;
}

/* ========================================
   Staff Section
   ======================================== */
.staff-section {
    background: var(--color-bg-light);
    padding: 80px 0 0;
}

.staff-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1rem;
    line-height: 2;
    color: var(--color-text);
}

.button-container {
    text-align: center;
}

.consultation-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 2px solid var(--color-primary);
    margin-bottom: 50px;
}

.consultation-button:hover {
    background: transparent;
    color: var(--color-primary);
    transform: translateX(5px);
}

.staff-messages {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 50px 30px;
    margin-bottom: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.staff-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.staff-card.animate {
    opacity: 1;
    transform: translateY(0);
    animation: floatBubble 4s ease-in-out infinite;
}

.staff-card:nth-child(1).animate { transition-delay: 0.1s; animation-delay: 0.1s; }
.staff-card:nth-child(2).animate { transition-delay: 0.2s; animation-delay: 0.8s; }
.staff-card:nth-child(3).animate { transition-delay: 0.3s; animation-delay: 1.5s; }
.staff-card:nth-child(4).animate { transition-delay: 0.4s; animation-delay: 2.2s; }
.staff-card:nth-child(5).animate { transition-delay: 0.5s; animation-delay: 2.9s; }

/* Grid layout for staff cards */
.staff-card:nth-child(1) { grid-column: 1 / 3; }
.staff-card:nth-child(2) { grid-column: 3 / 5; }
.staff-card:nth-child(3) { grid-column: 5 / 7; }
.staff-card:nth-child(4) { grid-column: 2 / 4; }
.staff-card:nth-child(5) { grid-column: 4 / 6; }

.staff-bubble {
    background: var(--color-white);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.staff-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--color-white);
}

.staff-bubble-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 15px;
}

.staff-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--color-bg-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.staff-message {
    font-size: 0.85rem;
    line-height: 1.75;
    color: var(--color-text);
    text-align: left;
    flex: 1;
}

.staff-name {
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-align: center;
    line-height: 1.5;
}

.staff-name-image {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 5px auto 10px;
}

.staff-group-photo {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

.staff-group-photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Footer
   ======================================== */
footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.footer-follow {
    font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    margin-bottom: 5px;
    opacity: 0.9;
}

.footer-follow-sub {
    font-size: 0.85rem;
    margin-bottom: 25px;
    opacity: 0.85;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.footer-social a {
    display: flex;
    align-items: center;
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========================================
   Scroll Animation
   ======================================== */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   SP Break
   ======================================== */
@media (min-width: 769px) {
    .sp-br {
        display: none;
    }
}

/* ========================================
   Responsive (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .fixed-header {
        height: 60px;
        padding: 0 20px;
    }

    .header-logo {
        height: 30px;
    }

    .hero {
        margin-top: -60px;
        padding-top: 60px;
        min-height: 100vh;
    }

    .hero-logo {
        max-width: 280px;
        margin-bottom: 30px;
    }

    .hero-message {
        font-size: 1rem;
        padding: 0 20px;
    }

    .scroll-arrow {
        width: 20px;
        height: 20px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-title.consultant-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .campaign-grid {
        grid-template-columns: 1fr;
    }

    .news-list {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex: 0 0 280px;
    }

    .timeline-year {
        font-size: 2rem;
        white-space: nowrap;
    }

    section {
        padding: 60px 0;
    }

    .character-row {
        gap: 15px;
    }

    .character {
        width: 60px;
        height: 100px;
        font-size: 2rem;
    }

    .staff-messages {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .staff-card:nth-child(1),
    .staff-card:nth-child(2),
    .staff-card:nth-child(3),
    .staff-card:nth-child(4),
    .staff-card:nth-child(5) {
        grid-column: 1;
    }

    .parallax-section {
        height: 300px;
    }

    .parallax-section img {
        min-width: 120%;
        min-height: 120%;
    }

    .sp-br {
        display: inline;
    }

    .staff-group-photo {
        max-width: 900px;
    }

}

/* ========================================
   Botanical Decorations
   ======================================== */
.specials,
.news-section,
.history-section,
.message-section,
.staff-section {
    position: relative;
    overflow: hidden;
}

.botanical {
    position: absolute;
    pointer-events: none;
    color: var(--color-secondary);
    z-index: 0;
    opacity: 0.12;
}

.specials .container,
.news-section .container,
.history-section .container,
.message-section .container,
.staff-section .container {
    position: relative;
    z-index: 1;
}

/* Specials - 左上 */
.botanical--1 {
    width: 280px;
    top: -20px;
    left: -40px;
}

/* News - 右上 */
.botanical--2 {
    width: 240px;
    top: -20px;
    right: -30px;
}

/* History - 左上 */
.botanical--3 {
    width: 260px;
    top: -20px;
    left: -35px;
}

/* Message - 右上 */
.botanical--4 {
    width: 270px;
    top: -20px;
    right: -35px;
}

/* Staff - 左上 */
.botanical--5 {
    width: 250px;
    top: -20px;
    left: -30px;
}
