/*
Theme Name: Syunjyusya Theme
Author: Antigravity
Version: 1.8
*/

/* =========================================
   1. GLOBAL SETTINGS & VARIABLES
   ========================================= */
:root {
    --header-height: 80px;
    --black: #000000;
    --white: #ffffff;
    --menu-bg: #FCE8B3;
    --dummy-gray: #CCCCCC;
    --accent-red: #A6192E;
    --btn-green: #66CCAA;
    /* Turquoise Green */
    --text-brown: #7A090B;
    /* Accents/Footer */
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
    background-color: #f7f7f7;
    /* Lighter warm grey */
}

/* =========================================
   2. LAYOUT STRUCTURE
   ========================================= */
/* SP Container - Main Wrapper */
.sp-container {
    max-width: 100%;
    margin: 0 auto;
    background-color: #f7f7f7;
    min-height: 100vh;
    position: relative;
    /* overflow-x removed to allow top-level sticky positioning on PC */
    padding-top: 50px;
}

/* =========================================
   3. HEADER & MENU
   ========================================= */
/* =========================================
   3. HEADER & MENU
   ========================================= */
.site-header {
    height: var(--header-height);
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.7);
    /* Ensure background for stickiness */
    backdrop-filter: blur(5px);
    /* Premium feel */
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    /* Universal stickiness */
    top: 0;
    left: 0;
    z-index: 2000;
    /* Highest z-index to stay above content */
    width: 100%;
    margin: 0 auto;
}

/* Page Container Defaults */
.page-company,
.page-recruit,
.page-flower,
.page-funeral,
.page-store,
.page-contact,
.page-legal,
.page-privacy,
.front-page-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background-color: #fff;
}

/* Beige Background Overlay for Footer alignment */
.page-contact,
.page-legal,
.page-privacy {
    background-color: #FFF9EB;
    padding-bottom: 40px;
}

/* =========================================
   Site Footer
   ========================================= */
/* Consolidated Footer Styles below */

/* Page Legal handled separately due to background PC requirements,
   but inner content is 375px. */


.header-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    /* PC Width Cap */
    margin: 0 auto;
}

.logo-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-logo-link {
    display: block;
    text-decoration: none;
}

.header-logo-img {
    height: 40px;
    /* Adjust based on logo aspect ratio */
    width: auto;
    display: block;
}

/*
.logo-icon {
    width: 24px;
    height: 24px;
    background-color: #A6192E;
    border-radius: 50%;
    margin-bottom: 5px;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 10px;
    width: 24px;
    height: 24px;
    background-color: #004D40;
    border-radius: 50%;
    z-index: -1;
}
*/

.site-title {
    font-size: 10px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.1em;
    line-height: 1;
}

/* Hamburger Menu Button */
.menu-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--menu-bg);
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.menu-button .menu-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
}

.menu-label {
    display: none;
    font-size: 0.7rem;
    font-weight: bold;
    color: #333;
    margin-top: 2px;
    line-height: 1;
}

/* Hamburger Menu Overlay (General/Mobile) */
.sp-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    background-color: #fff;
    z-index: 200;
    padding: 80px 20px 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 0 60px;
    /* Rounded bottom-left as per mockup */
}

@media screen and (min-width: 768px) {
    .sp-menu-overlay {
        width: 20%;
        /* ← PC width */
    }
}

.sp-menu-overlay.active {
    transform: translateX(0);
}

.menu-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 60px;
    height: 60px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.close-bar {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #7A090B;
    position: absolute;
}

.close-bar:nth-child(1) {
    transform: rotate(15deg);
    /* Slightly curved look from mockup */
    width: 35px;
    left: 12px;
}

.close-bar:nth-child(2) {
    transform: rotate(-15deg);
    width: 35px;
    left: 12px;
}

.menu-close-btn .menu-label {
    display: block;
    margin-top: 25px;
    font-size: 0.65rem;
    color: #7A090B;
    letter-spacing: 0.2em;
    font-weight: bold;
}

.sp-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.sp-menu-nav li {
    margin-bottom: 18px;
}

.sp-menu-nav a {
    text-decoration: none;
    color: #7A090B;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.sp-menu-sns {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-bottom: 20px;
}

.menu-sns-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.instagram-box {
    background-color: transparent;
    border: none;
    padding: 0;
}

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

.sns-note .sns-name {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
    color: #7A090B;
}

.sns-note .sns-desc {
    font-size: 1rem;
    margin: 0;
    color: #7A090B;
}

/* =========================================
   4. FRONT PAGE (TOP)
   ========================================= */
/* Hero Section */
.hero-section {
    background-color: var(--black);
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.hero-visual-wrapper {
    width: 500px;
    height: 550px;
    /* Drastically reduced to match tight margins in mockup */
    margin: 0 auto;
    line-height: 0;
    overflow: hidden;
    background-color: #000;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-wrapper iframe,
.hero-visual-wrapper video,
.hero-video-link {
    position: absolute;
    top: 48%;
    /* Preserving user's manual vertical shift */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: block;
}

.scroll-indicator {
    position: absolute;
    bottom: 6%;
    /* Narrowed position as requested */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    color: var(--white);
}

.scroll-text {
    font-family: serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
    text-transform: lowercase;
    opacity: 0.9;
}

.scroll-line-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.scroll-line {
    width: 1px;
    height: 70px;
    background-color: var(--white);
    position: relative;
}

.scroll-arrow {
    width: 1px;
    height: 1px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid var(--white);
    border-right: 1px solid var(--white);
    transform: translateX(-50%) rotate(45deg);
}

/* Omoi Section */
.omoi-section {
    position: relative;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    /* Centered in mockup */
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.omoi-bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.85);
    /* Slightly lighter for readability */
}

.omoi-title,
.omoi-content {
    position: relative;
    z-index: 1;
}

.omoi-title {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: normal;
    letter-spacing: 0.1em;
    text-shadow: 0 0px 10px rgba(0, 0, 0, 1);
}

.omoi-lead {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 0 0px 10px rgba(0, 0, 0, 1);
}

.omoi-text {
    line-height: 1.8;
    margin-bottom: 20px;
    text-shadow: 0 0px 10px rgba(0, 0, 0, 1);
    text-align: left;
    width: 320px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Service Section */
.service-section {
    background-color: var(--white);
    padding: 60px 20px;
    color: var(--text-brown);
}

.section-header {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.section-subtitle-en {
    font-family: serif;
    font-style: italic;
    color: #7A090B;
    font-size: 1.4rem;
    margin: 0 0 5px 0;
}

.section-title-ja {
    font-size: 1.8rem;
    color: var(--text-brown);
    margin: 0;
    letter-spacing: 0.1em;
}

.service-block {
    margin-bottom: 60px;
}

.service-block-title {
    font-size: 1.3rem;
    color: #7A090B;
    border-bottom: 2px solid #7A090B;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 25px;
    font-weight: bold;
}

.service-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #7A090B;
    margin-bottom: 25px;
}

.service-img {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    display: block;
    border-radius: 0 40px 0 40px;
    /* Large rounded corners from mockup */
    object-fit: cover;
}

.service-btn-wrapper.left {
    text-align: left;
    padding-left: 20px;
}

.service-btn {
    display: inline-block;
    background-color: #fff;
    color: #7A090B;
    padding: 10px 30px;
    border: 1px solid #7A090B;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s;
    letter-spacing: 0.05em;
}

.service-btn::after {
    content: '→';
    margin-left: 8px;
    display: inline-block;
}

.service-btn:hover {
    background-color: #7A090B;
    color: #fff;
}

/* Delivery Section */
.delivery-section {
    background-color: #fff;
    padding: 110px 20px 195px;
    position: relative;
}

.delivery-header {
    text-align: center;
    margin: 30px auto;
}

.delivery-content {
    position: relative;
    z-index: 1;
    margin-top: 40px;
    text-align: left;
    padding: 0 20px;
}

.deco-img.top-left {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 150px;
    height: auto;
    z-index: 0;
    opacity: 0.8;
}

/* PC adjustment for .deco-img.top-left */
@media screen and (min-width: 768px) {
    .delivery-section {
        overflow: hidden;
        /* Ensure it doesn't spill out of 375px body onto background */
    }

    .deco-img.top-left {
        width: 150px;
        /* Bigger as requested */
        top: 0px;
        left: 0px;
    }
}

.deco-img.bottom-right {
    width: 100%;
    position: absolute;
    bottom: 95px;
    right: 0px;
    width: 150px;
    height: auto;
    z-index: 0;
    opacity: 0.8;
}

.deco-img.bottom-right img {
    min-width: 153px;
}

.payment-info {
    margin-top: 40px;
}

/* =========================================
   5. COMPANY PAGE
   ========================================= */
.company-page-main {
    padding-bottom: 60px;
    background-color: #fff;
}

/* Page Header (Common if used elsewhere) */
.page-header {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 20px;
}

.page-subtitle-en {
    font-family: serif;
    /* Use serif italic as generic cursive if needed */
    font-size: 1.5rem;
    color: #7A090B;
    margin: 0;
    line-height: 1;
}

.page-title-ja {
    font-size: 1.8rem;
    color: #7A090B;
    font-weight: bold;
    margin: 10px 0 0;
    letter-spacing: 0.1em;
}

/* Company FV */
.company-fv {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 20px;
}

.company-logo-area {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-name-main {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: #333;
    margin: 0 0 15px;
    text-transform: uppercase;
}

.company-name {
    margin: 0;
}

.company-tel {
    margin: 0;
}

.company-address {
    margin: 5px 0;
}

.company-catch {
    font-size: 1.0rem;
    color: #7A090B;
    font-weight: bold;
    margin: 0;
    letter-spacing: 0.1em;
}

.company-main-img-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    aspect-ratio: 500 / 650;
    overflow: hidden;
}

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

.company-intro-text {
    padding: 0 20px;
    margin-bottom: 80px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.company-intro-text p {
    font-size: 0.95rem;
    line-height: 2.2;
    color: #7A090B;
    /* Reddish brown */
    margin: 0;
}

/* Movie Section */
.company-movie-section {
    position: relative;
    width: 100%;
    background-color: #000;
    padding: 60px 0;
    margin-bottom: 80px;
}

.movie-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
}

.movie-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #fff;
}

/* Greeting Section */
.greeting-section {
    padding: 0 20px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.company-section-title {
    font-size: 1.3rem;
    color: #7A090B;
    border-bottom: 2px solid #7A090B;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 30px;
    font-weight: bold;
}

.greeting-section .company-section-title {
    border-bottom-style: solid;
}

.greeting-text {
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 40px;
    text-align: justify;
    color: #7A090B;
}

.greeting-image-wrapper {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.greeting-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.greeting-name {
    text-align: right;
    font-weight: bold;
    font-size: 1.0rem;
    color: #A6192E;
    margin-top: 10px;
}

/* Company Profile Section */
.company-profile-section {
    padding: 0 20px 80px;
    max-width: 500px;
    margin: 0 auto;
}

.profile-list {
    border-top: 1px solid #E6Ceb0;
    margin-top: 10px;
}

.profile-row {
    display: block;
    /* Vertical stacking */
    border-bottom: 1px solid #E6Ceb0;
    padding: 15px 0;
}

.profile-row dt {
    font-weight: bold;
    color: #A6192E;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.profile-row dd {
    margin: 0;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Company Stores Section (Inside Company Page) */
.company-stores-section {
    padding: 0 20px 40px;
    color: #8B1A1A;
}

.store-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    font-size: 0.95rem;
    line-height: 2.2;
    color: #8B1A1A;
}

.store-list li {
    position: relative;
    padding-left: 1rem;
    text-indent: -0.5rem;
    margin-bottom: 5px;
}

.store-list li::before {
    content: "・";
    margin-right: 5px;
}

.store-btn-wrapper {
    text-align: right;
}

.store-info-btn {
    display: inline-block;
    background-color: #66CCAA;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Company History Section */
.company-history-section {
    padding: 0 20px 80px;
    max-width: 500px;
    margin: 40px auto 0;
}

.history-timeline {
    position: relative;
    padding-left: 0;
    margin-top: 20px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 0;
    left: 55px;
    width: 2px;
    background-color: #E6Ceb0;
    z-index: 0;
}

.history-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.history-year {
    width: 55px;
    font-weight: bold;
    color: #A6192E;
    font-size: 0.9rem;
    padding-right: 10px;
    flex-shrink: 0;
    text-align: left;
    line-height: 1.2;
}

.history-year P {
    margin-top: 0;
}

.history-content {
    flex: 1;
    padding-left: 15px;
    position: relative;
    font-size: 0.85rem;
    line-height: 1.8;
    color: #8B1A1A;
    border-left: none;
}

.history-dot {
    position: absolute;
    top: 5px;
    left: -16px;
    width: 10px;
    height: 10px;
    background-color: #A6192E;
    border-radius: 50%;
    z-index: 2;
}

.history-content br {
    display: block;
    content: "";
    margin-bottom: 0;
}



.store-intro {
    padding: 0 20px;
    margin-bottom: 60px;
}

.store-intro-text {
    font-size: 0.95rem;
    line-height: 2.0;
    color: #8B1A1A;
    text-align: left;
}

.store-map-section {
    padding: 0 20px 80px;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background-color: #EFEFEF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.map-label {
    font-size: 1.5rem;
    color: #8B1A1A;
    font-weight: bold;
    letter-spacing: 0.1em;
}

/* Store List Grid */
.store-list-section {
    padding: 0 20px 80px;
}

.store-list-title {
    position: relative;
    padding-right: 30px;
}

.chevron-down {
    position: absolute;
    right: 0;
    top: 40%;
    width: 12px;
    height: 12px;
    border-right: 3px solid #7A090B;
    border-bottom: 3px solid #7A090B;
    transform: rotate(45deg) translateY(-50%);
}

.store-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.store-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 15px;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.store-card-name {
    font-size: 0.9rem;
    font-weight: bold;
    color: #A6192E;
    margin-bottom: 10px;
}

.store-card-img-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 5px;
    overflow: hidden;
}

.store-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   7. FLOWER PAGE
   ========================================= */
.flower-hero {
    position: relative;
    margin-bottom: 40px;
}

.flower-hero-img-wrapper {
    position: relative;
    width: 100%;
}

.flower-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.flower-hero-overlay-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.flower-intro {
    padding: 20px;
    margin-bottom: 40px;
}

.intro-container {
    padding: 0 10px;
    background-color: #fff;
}

.intro-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #A6192E;
    margin-bottom: 20px;
}

.intro-btn-wrapper {
    text-align: right;
}

.intro-btn {
    display: inline-block;
    width: 110px;
    white-space: nowrap;
    height: 30px;
    border: 1px solid #A6192E;
    border-radius: 15px;
    color: #A6192E;
    text-align: right;
    padding-right: 15px;
    line-height: 28px;
    text-decoration: none;
    font-size: 1.2rem;
}

/* Flower Grids */
.flower-categories,
.flower-usages {
    padding: 0 20px 40px;
    max-width: 500px;
    margin: 0 auto;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #A6192E;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.flower-section-title {
    font-size: 1.1rem;
    color: #A6192E;
    font-weight: bold;
    margin: 0;
}

.accordian-icon {
    font-weight: bold;
    color: #A6192E;
}

.flower-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.grid-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: block;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.grid-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    width: 100%;
    text-align: center;
    padding: 0 5px;
}

/* =========================================
   8. FUNERAL PAGE
   ========================================= */
.funeral-problems {
    padding: 0 20px 60px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.problems-title {
    font-size: 1.3rem;
    color: #7A090B;
    font-weight: bold;
    border-bottom: 2px solid #7A090B;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 40px;
}

.problems-bubbles {
    position: relative;
    height: 320px;
    margin-bottom: 20px;
    width: 100%;
}

.bubble-item {
    background-color: #FCE8B3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 160px;
    height: 160px;
}

.bubble-item:nth-child(1) {
    top: 0;
    left: 0;
    background-color: #F8E3B6;
}

.bubble-item:nth-child(2) {
    top: 0;
    right: 0;
    background-color: #F8E3B6;
}

.bubble-item:nth-child(3) {
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background-color: #F8E3B6;
    z-index: 2;
}

.bubble-text {
    font-size: 1rem;
    color: #7A090B;
    font-weight: bold;
    line-height: 1.5;
}

.problems-arrow {
    font-size: 3rem;
    color: #7A090B;
    font-weight: bold;
    margin-bottom: 20px;
    transform: scaleX(1.5);
    line-height: 1;
}

.problems-answer {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #7A090B;
    margin-bottom: 30px;
    font-weight: bold;
}

.funeral-cta-wrapper {
    text-align: center;
}

.funeral-cta-btn {
    display: inline-block;
    background-color: #7B0A0A;
    color: #fff;
    padding: 15px 60px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.funeral-cta-btn:hover {
    background-color: #fff;
    color: #8B1A1A;
    border: #8B1A1A solid 1px;
    transition: all 0.3s ease;
    transform: translateY(-2px);
}

/* Funeral Flow */
.funeral-flow {
    padding: 0 20px 60px;
    max-width: 500px;
    margin: 0 auto;
}

.funeral-flow .company-section-title {
    font-size: 1.3rem;
    color: #7B0A0A;
    font-weight: bold;
    border-bottom: 2px solid #7B0A0A;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 40px;
}

.flow-step {
    background-color: #FFF5E6;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: left;
    position: relative;
    margin-bottom: 0;
}

.flow-step-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #7B0A0A;
    margin: 0 0 15px;
}

.flow-step-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #7B0A0A;
    margin: 0;
}

.flow-arrow {
    text-align: center;
    color: #F8E3B6;
    font-size: 2.5rem;
    line-height: 1;
    margin: 10px 0;
    transform: scaleY(0.8);
}

.flow-note {
    padding: 20px 0;
    margin: 20px 0 40px;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #7A090B;
}

/* Funeral Examples */
.funeral-examples {
    padding: 0 0 60px;
}

.funeral-examples .company-section-title {
    margin-left: 20px;
    font-size: 1.3rem;
    color: #7A090B;
    font-weight: bold;
    border-bottom: 2px solid #7A090B;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

/* Funeral Examples Swiper */
.funeral-examples-swiper {
    width: 100%;
    padding: 20px 0 60px;
    /* Space for pagination */
}

.funeral-examples-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.funeral-examples-swiper .swiper-slide-active {
    transform: scale(1.05);
}

.funeral-examples-swiper .example-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.example-note {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: -15px;
    display: block;
}

/* Hide swipe note on PC since it autoplays */
@media screen and (min-width: 768px) {
    .example-note {
        display: none;
    }
}

.funeral-clients {
    padding: 0 20px 80px;
    max-width: 500px;
    margin: 0 auto;
}

.funeral-clients .company-section-title {
    font-size: 1.3rem;
    color: #7A090B;
    font-weight: bold;
    border-bottom: 2px solid #7A090B;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 30px;
}

.client-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.1rem;
    color: #7A090B;
    line-height: 2.2;
    font-weight: bold;
}

.client-list li {
    padding-left: 1em;
    text-indent: -1em;
}

.client-list li::before {
    content: "・";
    margin-right: 5px;
}

.client-list li.list-note {
    padding-left: 0;
    text-indent: 0;
    margin-bottom: 10px;
    font-weight: normal;
}

.client-list li.list-note::before {
    content: none;
}

/* =========================================
   9. RECRUIT PAGE
   ========================================= */
.recruit-message {
    padding: 60px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.message-content {
    font-size: 0.95rem;
    line-height: 2.2;
    color: #8B1A1A;
    text-align: left;
    font-feature-settings: "palt";
}

.recruit-movie {
    position: relative;
    padding: 40px 0px 0;
    text-align: center;
    background-color: #fff;
}

.recruit-movie .movie-container {
    height: 400px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.recruit-video {
    width: 100%;
    height: auto;
    display: block;
}

.brand-logo-large {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
    display: block;
}

.brand-name-sub {
    font-size: 1.0rem;
    letter-spacing: 0.2em;
    line-height: 1.4;
    color: #333;
    font-weight: bold;
}

.recruit-interviews {
    padding: 0 20px 40px;
    max-width: 500px;
    margin: 0 auto;
}

.recruit-section-title-underlined {
    font-size: 1.1rem;
    color: #A6192E;
    font-weight: bold;
    border-bottom: 2px solid #A6192E;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 30px;
}

.interview-card {
    display: block;
    margin-bottom: 40px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.interview-card:hover {
    transform: translateY(-5px);
}

.interview-img-wrapper {
    position: relative;
    border-radius: 0 30px 0 30px;
    background-color: #eee;
    overflow: hidden;
    margin-bottom: 10px;
    aspect-ratio: 16 / 10;
}

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

.interview-number {
    position: static;
    display: block;
    color: #8B1A1A;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
    text-shadow: none;
    padding: 0;
}

.interview-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #7A090B;
    margin-bottom: 15px;
    line-height: 1.6;
}

.interview-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: #7A090B;
    font-weight: bold;
}

.arrow-link {
    color: #8B1A1A;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bold;
}

.recruit-guidelines {
    padding: 0 20px 60px;
    max-width: 500px;
    margin: 0 auto;
}

.department-guidelines {
    margin-bottom: 30px;
}

.department-title {
    font-size: 1.3rem;
    color: #7A090B;
    font-weight: bold;
    margin-bottom: 15px;
    border-left: none;
    padding-left: 0;
}

.guideline-buttons {
    display: flex;
    gap: 20px;
}

.guideline-btn {
    flex: 1;
    display: block;
    border: 1px solid #7A090B;
    color: #7A090B;
    text-align: center;
    padding: 12px 0;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    background-color: #fff;
    transition: all 0.3s ease;
}

.guideline-btn:hover {
    background-color: #7A090B;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(166, 25, 46, 0.2);
}

.recruit-flow {
    padding: 0 20px;
    max-width: 500px;
    margin: 0 auto;
}

.flow-toggle {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 2px solid #e0c8c8;
    color: #7A090B;
    font-weight: bold;
    text-align: left;
    padding: 10px 0;
    font-size: 1.0rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 30px;
}

.flow-toggle h3 {
    font-size: 1.3rem;
}

.recruit-flow-box {
    background-color: #FFF9EB;
    padding: 25px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.recruit-flow-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #7A090B;
    margin-bottom: 15px;
}

.recruit-flow-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #7A090B;
    margin-bottom: 20px;
}

.recruit-flow-btn {
    display: block;
    background-color: #7A090B;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 20px;
}

.recruit-flow-arrow {
    text-align: center;
    color: #F8E3B6;
    font-size: 2.5rem;
    line-height: 1;
    margin: 10px 0;
    transform: scaleY(0.8);
}

/* =========================================
   10. FOOTER
   ========================================= */
.site-footer {
    background-color: #FFF9EB;
    padding: 60px 20px 40px;
    font-size: 0.9rem;
    color: #333;
    width: 100%;
    text-align: center;
}

.footer-inner {
    width: 100%;
    margin: 0 auto;
}


.footer-brand {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 50px;
}

.footer-logo-wrapper {
    text-align: center;
}

.footer-logo-img {
    width: 134px;
    height: auto;
    margin-bottom: 5px;
}

.footer-logo-text {
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #333;
    margin: 0;
}

.footer-company-info {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #7A090B;
    text-align: left;
}

.footer-sitemap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
    margin-bottom: 50px;
    text-align: left;
}

.sitemap-title {
    font-size: 1.3rem;
    color: #7A090B;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(166, 25, 46, 0.2);
    padding-bottom: 5px;
}

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

.sitemap-list li {
    margin-bottom: 12px;
}

.sitemap-list li a {
    text-decoration: none;
    color: #7A090B;
    font-size: 1.1rem;
}

.footer-contact-area {
    margin-top: 40px;
    padding-top: 40px;
    /* Match reddish brown */
    text-align: center;
}

.contact-title {
    color: #8B1A1A !important;
    margin-bottom: 25px !important;
}

.footer-sns-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-facebook-icon {
    align-items: center;
    margin-top: 15px;
}

.footer-insta-box {
    background-color: #fff;
    border-radius: 25px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 265px;
    /* Softer, deeper shadow */
    text-align: left;
}

.insta-icon-circle {
    width: 65px;
    height: 65px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.insta-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-insta-box a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.insta-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.insta-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #8B1A1A;
    margin: 0;
    font-family: serif;
    /* Closer to mockup's elegant feel */
}

.insta-note {
    font-size: 0.85rem;
    color: #8B1A1A;
    margin: 0;
}

.footer-facebook-link {
    width: 65px;
    height: 65px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    margin-bottom: 10px;
}

.footer-facebook-link:hover {
    transform: scale(1.05);
}

.footer-facebook-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-legal-links {
    margin-bottom: 25px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #8B1A1A;
}

.footer-legal-links a {
    color: #8B1A1A;
    text-decoration: none;
    font-weight: bold;
}

.footer-legal-links .sep {
    color: #8B1A1A;
    opacity: 0.5;
}

.copyright {
    font-size: 0.8rem;
    color: #8B1A1A;
    font-weight: bold;
}

/* =========================================
   11. CONTACT PAGE
   ========================================= */
.page-contact {
    background-color: #fff;
    padding-bottom: 80px;
}

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

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #7A090B;
    /* Reddish Brown */
    margin-bottom: 40px;
    font-weight: bold;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.form-group:last-child {
    border-bottom: none;
}

.form-label {
    display: block;
    font-size: 1.3rem;
    color: #7A090B;
    /* Red Title */
    font-weight: bold;
    margin-bottom: 15px;
}

.required {
    color: #f00;
    margin-left: 5px;
}

.label-note {
    font-size: 1.1rem;
    font-weight: normal;
    color: #7A090B;
}

.form-control {
    width: 100%;
    padding: 10px;
    font-size: 1.0rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
}

.form-control::placeholder {
    color: #e0e0e0;
}

textarea.form-control {
    resize: vertical;
}

/* Radio Buttons vertical */
.radio-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-label {
    font-size: 1.1rem;
    color: #8B1A1A;
    font-weight: bold;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    margin-right: 10px;
    transform: scale(1.2);
    accent-color: #666;
}

/* Submit Button */
.submit-wrapper {
    margin-top: 40px;
    text-align: center;
}

.submit-btn {
    background-color: #7B0A0A;
    /* Dark Red */
    color: #fff;
    border: none;
    padding: 15px 0;
    width: 100%;
    border-radius: 30px;
    font-size: 1.0rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
    background-color: #5a0505;
}

/* =========================================
   12. LEGAL PAGE
   ========================================= */
.page-legal {
    background-color: #fff;
    padding-bottom: 80px;
}

.page-title-legal {
    text-align: center;
    color: #7B0A0A;
    /* Dark Red */
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 60px;
    line-height: 1.4;
}

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

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

.legal-term-title {
    font-size: 1.1rem;
    color: #8B1A1A;
    /* Reddish Brown */
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.legal-term-title.underline-red {
    border-bottom: 3px solid #8B1A1A;
    /* Solid thick line */
    padding-bottom: 2px;
}

.legal-desc {
    font-size: 0.9rem;
    line-height: 2.0;
    color: #8B1A1A;
    /* Updated to Reddish Brown match */
    margin: 0;
}

/* Decoration & Side Logo (Hidden on SP) */
/* Decoration & Side Wrapper (Hidden on SP) */
.global-pc-left,
.global-pc-right {
    display: none;
}

/* =========================================
   PC RESPONSIVE (min-width: 768px) 
   ========================================= */
@media screen and (min-width: 768px) {

    .global-pc-wrapper {
        display: flex;
        justify-content: center;
        align-items: stretch;
        gap: 0;
        margin: 0 auto;
        padding: 0;
        position: relative;
        /* Unified Background for PC using generated asset */
        background-color: #fff;
        background-image: url('assets/images/PCBackgroundimg.jpg');
        background-repeat: repeat;
        background-position: top center;
        background-size: cover;
        /* Adjust scale of background */
        background-attachment: fixed;
    }

    /* Left Column (Logo & Decoration Container) */
    .global-pc-left {
        display: block;
        width: calc((100vw - 500px) / 2);
        /* Dynamic width filling half the remaining space */
        min-width: 200px;
        flex-shrink: 1;
        position: relative;
        background: transparent;
    }

    /* Center Column */
    .global-pc-center {
        width: 500px;
        flex-shrink: 0;
        background-color: #000;
        /* Match mockup central column color */
        z-index: 10;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    }

    /* Right Column (Decoration) */
    .global-pc-right {
        display: block;
        width: calc((100vw - 500px) / 2);
        min-width: 200px;
        flex-shrink: 1;
        position: relative;
        background: transparent;
        overflow: hidden;
        /* Prevent vine from spilling out if necessary */
    }

    /* Vine Decoration Area */
    .vine-decoration-area {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }



    /* The Wavy Vine Segment */
    .vine-segment {
        position: relative;
        width: 150px;
        /* Wider curve */
        height: 600px;
        /* Taller segment for elegance */
    }

    /* The Curve itself */
    .vine-curve {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-right: 10px solid #154734;
        border-radius: 0 50% 50% 0;
    }

    .vine-item-left .vine-curve {
        border-right: none;
        border-left: 10px solid #154734;
        border-radius: 50% 0 0 50%;
    }

    /* Adjust the segments to connect */
    .vine-segment+.vine-segment {
        margin-top: -2px;
    }

    /* Flower Item Container */
    .vine-flower-item {
        position: absolute;
        top: 15%;
        /* Center vertically on the segment */
        transform: translateY(-50%);
        width: 150px;
        z-index: 2;
    }

    /* Right side flower (on left-curving segment) */
    .vine-item-right .vine-flower-item {
        right: 110px;
    }

    /* Left side flower (on right-curving segment) */
    .vine-item-left .vine-flower-item {
        left: 110px;
    }

    /* Image Wrapper (Attached Effect) */
    .vine-flower-img-wrapper {
        width: 150px;
        height: 200px;
        overflow: hidden;
        border: none;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        background: #fff;
    }

    /* Left Side: Sharp Top-Right */
    .vine-item-left .vine-flower-img-wrapper {
        border-radius: 20px 0 20px 20px;
    }

    /* Right Side: Sharp Top-Left */
    .vine-item-right .vine-flower-img-wrapper {
        border-radius: 0 20px 20px 20px;
    }

    .vine-flower-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Organic Sharp Leaves (SVG) */
    .vine-leaf {
        position: absolute;
        width: 80px;
        height: auto;
        z-index: -1;
    }

    /* Left side leaves */
    .vine-item-left .leaf-1 {
        top: 60px;
        left: -160px;
        transform: rotate(70deg);
    }

    .vine-item-left .leaf-2 {
        bottom: -80px;
        left: -110px;
        width: 80px;
        transform: rotate(180deg);
    }

    /* Right side leaves */
    .vine-item-right .leaf-1 {
        top: 60px;
        right: -87px;
        transform: rotate(165deg) scaleX(-1);
        /* Mirror */
    }

    .vine-item-right .leaf-2 {
        bottom: 80px;
        right: 80px;
        width: 60px;
        transform: rotate(-20deg) scaleX(-1);
    }

    /* Bottom Decoration (HanaLast) */
    .vine-bottom-deco {
        position: relative;
        margin-top: -10px;
        /* Slight overlap with the last segment */
        margin-bottom: 20px;
        /* Ensure space before footer ends */
        width: 150px;
        /* Adjust size as needed */
        height: auto;
        z-index: 3;
    }

    .vine-bottom-deco img {
        width: 65%;
        height: auto;
        display: block;
    }

    /* Sticky Behavior */
    /* Sticky Behavior */
    .global-sticky-item {
        position: sticky;
        top: 50%;
        /* Sticks to the vertical center of the viewport */
        transform: translateY(-50%);
        /* Center based on its own height */
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        z-index: 50;
    }

    /* Logo Styles */
    .global-side-logo {
        width: 150px;
        /* Adjusted to 150px as requested */
        height: auto;
        margin-bottom: 20px;
        display: block;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
        pointer-events: none;
    }



}

/* Flower Styles */
.global-flower {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    background-color: #EECFCC;
    /* Pinkish Fallback */
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
    display: block;
    /* Ensure visibility */
}

.global-flower.flower-1 {
    width: 200px;
    height: 200px;
}

.global-flower.flower-2 {
    width: 150px;
    height: 150px;
    margin-left: -20px;
}

/* Backgrounds for specific pages if needed */
/* PC Hamburger Menu Button Positioning */
.menu-button {
    width: auto;
    height: auto;
    background-color: transparent;
    border-radius: 0;
    gap: 4px;
    padding: 5px 10px;
}

.menu-button .menu-line {
    background-color: #7A090B;
    width: 26px;
    /* Slightly shorter */
    height: 1.5px;
    /* Thinner lines */
}

.menu-label {
    display: block;
    color: #7A090B;
    letter-spacing: 0.15em;
    font-weight: 400;
    /* Regular weight for elegance */
    font-size: 0.75rem;
}



/* =========================================
   Company Page Revamp (Mockup Alignment)
   ========================================= */

.company-page-container {
    padding: 60px 0 1px;
    background-color: #fff;
    overflow-x: hidden;
}

/* =========================================
   14. RECRUIT DETAIL PAGE
   ========================================= */
.recruit-detail-page {
    background-color: #fff;
    padding: 60px 20px 80px;
    color: #8B1A1A;
}

.recruit-detail-container {
    max-width: 500px;
    margin: 0 auto;
}

.recruit-detail-header {
    text-align: center;
    margin-bottom: 50px;
}

.recruit-detail-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8B1A1A;
    margin-bottom: 10px;
}

.recruit-detail-subtitle {
    font-size: 1.8rem;
    font-weight: bold;
    color: #8B1A1A;
    margin: 0;
}

.recruit-requirements {
    margin-bottom: 60px;
}

.requirement-item {
    margin-bottom: 40px;
}

.requirement-label {
    font-size: 1.2rem;
    font-weight: bold;
    color: #8B1A1A;
    margin-bottom: 15px;
}

.requirement-value {
    font-size: 0.95rem;
    line-height: 1.8;
}

.requirement-value p {
    margin-bottom: 15px;
}

.requirement-value p:last-child {
    margin-bottom: 0;
}

.requirement-value .sub-label {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.contact-info-label {
    font-weight: bold;
    margin-top: 25px !important;
    margin-bottom: 5px !important;
}

.recruit-detail-footer {
    text-align: center;
}

.recruit-site-btn {
    display: block;
    border: 1px solid #A6192E;
    color: #A6192E;
    text-align: center;
    padding: 15px 0;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.0rem;
    font-weight: bold;
    background-color: #fff;
    width: 100%;
    transition: all 0.3s ease;
}

.recruit-site-btn:hover {
    background-color: #A6192E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(166, 25, 46, 0.2);
}

@media screen and (min-width: 768px) {
    .recruit-detail-container {
        width: 100%;
        max-width: 500px;
        box-sizing: border-box;
        padding: 0 20px;
        /* 中の余白はコンテナ側に持たせる */
    }

    .recruit-detail-page {
        padding-left: 0;
        /* 親の左右paddingを消す */
        padding-right: 0;
    }
}


.company-content-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    /* Added some breathing room since border is gone */
    position: relative;
    border: none;
    /* Removed red border per request */
}

/* Header Refinement */
.page-header-simple {
    text-align: center;
    margin-bottom: 60px;
}

.page-header-simple .page-subtitle-en {
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #7A090B;
    margin-bottom: 5px;
}

.page-header-simple .page-title-ja {
    font-size: 2rem;
    color: #7A090B;
    font-weight: middle;
    letter-spacing: 0.1em;
}

/* Leading Section */
.company-leading {
    text-align: center;
    margin-bottom: 80px;
}

.company-big-logo {
    width: 140px;
    margin: 0 auto 30px;
}

.company-big-logo img {
    width: 100%;
    height: auto;
}

.company-tagline {
    margin-bottom: 40px;
    padding-left: 10px;
}

.tagline-text {
    font-size: 1.4rem;
    color: #7A090B;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.company-intro-para {
    text-align: left;
    line-height: 1.8;
    color: #7A090B;
    font-size: 1.1rem;
}

.company-intro-para p {
    padding-left: 20px;
}

/* Section Titles with Underline */
.company-section-title {
    font-size: 1.3rem;
    color: #7A090B;
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 2px solid #7A090B;
    /* Textured look from mockup */
}

/* Profile List Vertical */
.profile-list-v {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.profile-v-item {
    border-bottom: 1px solid #eeeeee;
    padding: 25px 0;
}

.profile-v-item:first-child {
    border-top: none;
}

.profile-v-label {
    color: #7A090B;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.profile-v-value {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #7A090B;
}

.profile-v-value p {
    margin-bottom: 5px;
}

.contact-block {
    margin-bottom: 20px;
}

.contact-block:last-child {
    margin-bottom: 0;
}

.contact-place {
    font-weight: bold;
    margin-bottom: 10px;
}

/* Greeting Section */
.greeting-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.greeting-text {
    line-height: 2;
    font-size: 1.1rem;
    color: #7A090B;
    text-align: justify;
}

.greeting-image-area {
    width: 100%;
}

.greeting-img {
    width: 100%;
    border-radius: 0 30px 0 30px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.greeting-signature {
    text-align: right;
    font-weight: bold;
    font-size: 1.1rem;
    color: #7A090B;
}

/* Video Section */
.video-container {
    width: 100%;
    margin-bottom: 80px;
}

.video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000;
    overflow: hidden;
    border-radius: 5px;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid #fff;
    margin-left: 5px;
}

/* Store List */
.store-v-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.store-v-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #7A090B;
    line-height: 1.6;
}

.store-btn-area {
    text-align: left;
}

.pill-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid #7A090B;
    border-radius: 30px;
    color: #7A090B;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.pill-btn:hover {
    background-color: #7A090B;
    color: #fff;
}

/* History - Consistently applying the side line */
.company-history-section {
    margin-top: 40px;
}

/* History Timeline Styling */
.history-timeline {
    position: relative;
    padding-left: 20px;
    margin-top: 40px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 173px;
    /* Adjusted to align with dots */
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #D4AF37;
    /* Gold timeline line */
    opacity: 0.6;
}

.history-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.history-year {
    width: 150px;
    font-family: serif;
    font-weight: bold;
    color: #7A090B;
    font-size: 1.1rem;
    padding-right: 40px;
    text-align: left;
}

.history-item::after {
    content: '';
    position: absolute;
    left: 174px;
    /* Centered on the gold line */
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: #7A090B;
    /* Red dot */
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.history-content {
    flex: 1;
    padding-left: 30px;
}

.history-main-text {
    font-size: 0.85rem;
    font-weight: normal;
    color: #7A090B;
    line-height: 1.6;
    margin: 0;
}

.history-sub-text {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.5;
    margin-left: 10px;
}

.history-sub-text p {
    margin: 0;
}

/* History Timeline Styling - Refined to match photo exactly */
.history-timeline {
    position: relative;
    padding-left: 0;
    margin-top: 60px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 110px;
    /* Gold line position */
    top: 5px;
    bottom: 0;
    width: 2px;
    background-color: #ECC86B;
    /* Soft gold like photo */
}

.history-item {
    display: flex;
    margin-bottom: 45px;
    position: relative;
}

.history-year {
    width: 110px;
    white-space: nowrap;
    font-family: serif;
    font-weight: 500;
    color: #7A090B;
    font-size: 1.1rem;
    text-align: left;
    flex-shrink: 0;
    line-height: 1.4;
    padding-top: 2px;
}

.history-item::after {
    content: '';
    position: absolute;
    left: 111px;
    top: 9px;
    /* Centered with first line */
    width: 9px;
    height: 9px;
    background-color: #7A090B;
    /* Dark red dot */
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.history-content {
    flex: 1;
    padding-left: 20px;
}

.history-main-text {
    font-size: 1.1rem;
    font-weight: normal;
    color: #7A090B;
    line-height: 1.6;
    margin: 0;
}

.history-sub-text {
    font-size: 0.85rem;
    color: #7A090B;
    line-height: 1.6;
    margin-top: 6px;
    padding-left: 20px;
    /* Indent sub-text like photo */
}

.history-sub-text p {
    margin: 0 0 2px;
}

/* =========================================
   Company History Metabox Styles
   ========================================= */
.history-item-input {
    border: none;
    padding: 0;
    margin-bottom: 15px;
    background: transparent;
}

.history-item-input p {
    margin-bottom: 10px;
}

.history-item-input label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.history-item-input input[type="text"],
.history-item-input textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: inherit;
    box-sizing: border-box;
    font-size: 0.85rem;
    color: #7A090B;
}

.history-item-input textarea {
    resize: vertical;
}

#add-history-item,
.remove-history-item {
    margin-top: 10px;
}

/* =========================================
   Store Information Page (Mockup Alignment)
   ========================================= */

.store-page-container {
    padding: 0px 0 1px;
    background-color: #fff;
}

.store-content-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    border: none;
}

/* Store Hero */
.store-hero {
    margin-bottom: 40px;
}

.store-hero-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 500 / 650;
    /* User requested ~500x650 */
    overflow: hidden;
}

.store-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 20px;
}

.store-hero-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: middle;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
    writing-mode: horizontal-tb;
    /* Force horizontal */
    white-space: nowrap;
}

/* Store Intro */
.store-intro {
    padding-left: 15px;
    margin-bottom: 60px;
}

.store-intro-para {
    font-size: 1.1rem;
    color: #7A090B;
    line-height: 1.8;
    margin-bottom: 15px;
}

.store-external-link {
    color: #7A090B;
    text-decoration: underline;
    font-weight: bold;
}

.external-icon {
    font-size: 0.8rem;
    margin-left: 2px;
}

/* Store Content Layout Adjustment */
.store-map-section,
.store-list-section {
    padding-left: 15px;
}

.map-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

@media screen and (max-width: 767px) {
    .store-map-section {
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
    }

    .map-placeholder {
        aspect-ratio: auto;
        height: 70vh;
        border-radius: 0;
    }

    .store-hero-img-wrapper {
        min-width: 0;
        width: 100%;
    }
}

.map-label {
    font-size: 2rem;
    font-weight: bold;
    color: #A6192E;
    letter-spacing: 0.2em;
}

.chevron-down::after {
    content: ' ∨';
    font-size: 0.8em;
}


/* Refined Store Grid Styling - Based on mockup */
.store-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    padding-bottom: 40px;
}

.store-card {
    background-color: #fff;
    border-radius: 20px;
    /* Rounded corners for the card */
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    /* Modern subtle shadow */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.store-card-name {
    font-size: 1rem;
    font-weight: bold;
    color: #7A090B;
    /* Signature dark red */
    padding: 12px 15px;
    /* Space around title */
    background-color: #fff;
    margin: 0;
}

.store-card-name p {
    margin: 0;
    font-size: 1.1rem;
}

.store-card-img-wrapper {
    width: 100%;
    aspect-ratio: 1.5 / 1;
    /* Horizontal aspect ratio for store photos */
    overflow: hidden;
}

.store-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ensure title and chevron match mockup */
.store-list-title {
    display: flex;
    align-items: center;
    gap: 5px;
}

.chevron-down::after {
    content: ' ∨';
    font-size: 0.8em;
    font-weight: normal;
}

/* =========================================
   About Flowers Page (Mockup Alignment)
   ========================================= */

.flower-page-container {
    padding: 0px 0 1px;
    background-color: #fff;
}

.flower-content-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3px;
    position: relative;
    border: none;
    margin-top: 40px;
}

/* Flower Hero */
.flower-hero {
    margin-bottom: 40px;
}

.flower-hero-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 500 / 650;
    overflow: hidden;
}

.flower-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flower-hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 20px;
}

.flower-hero-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: middle;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Flower Intro */
.flower-intro {
    padding-left: 15px;
    margin-bottom: 60px;
}

.flower-intro-para {
    font-size: 1.1rem;
    color: #7A090B;
    line-height: 1.8;
    margin-bottom: 100px;
}

.flower-external-link {
    color: #7A090B;
    text-decoration: underline;
    font-weight: bold;
}

/* Reuse Store Grid styles for consistency */
.flower-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 0 15px 40px;
}

.flower-categories .company-section-title,
.flower-usages .company-section-title {
    margin-left: 15px;
}

/* Flower Grid Item Refinement */
.flower-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 0 15px 40px;
}

.grid-item {
    text-decoration: none;
    display: block;
}

.grid-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1.2 / 1;
    /* Slightly horizontal like mockup */
    border-radius: 15px;
    /* Rounded corners for images */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

.grid-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.45);
    /* Subtle dark overlay for legibility */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.grid-label {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Adjust title for accordian style feel */
.company-section-title span.chevron-down {
    margin-left: 5px;
}

/* =========================================
   Funeral Page (Mockup Alignment)
   ========================================= */

.funeral-page-container {
    padding: 0px 0 1px;
    background-color: #fff;
}

.funeral-content-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2px;
    position: relative;
    border: none;
}

.funeral-hero {
    margin-bottom: 40px;
}

.funeral-hero-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 500 / 650;
    overflow: hidden;
}

.funeral-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.funeral-hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 20px;
}

.funeral-hero-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: middle;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.funeral-intro {
    padding-left: 15px;
    margin-bottom: 60px;
}

.funeral-intro-text {
    font-size: 1.1rem;
    color: #7A090B;
    line-height: 1.8;
}

.funeral-problems {
    padding: 0 15px;
    margin-bottom: 80px;
}

.funeral-flow,
.funeral-examples,
.funeral-clients {
    margin-bottom: 80px;
}

/* =========================================
   Recruit Page (Mockup Alignment)
   ========================================= */

.recruit-page-container {
    padding: 0px 0 120px;
    background-color: #fff;
}

.recruit-content-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    border: none;
}

.recruit-hero {
    margin-bottom: 40px;
    margin-left: -10px;
    margin-right: -10px;
}

.recruit-hero-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 500 / 650;
    /* Taller hero like mockup */
    overflow: hidden;
}

.recruit-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruit-hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 20px;
}

.recruit-hero-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: middle;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.recruit-message {
    padding-left: 15px;
    margin-bottom: 80px;
}

.recruit-message .message-content p {
    font-size: 1.1rem;
    color: #7A090B;
    line-height: 1.8;
}

/* Movie Video Section Mockup Alignment */
.recruit-movie {
    margin-bottom: 0;
}

.movie-placeholder {
    width: 100%;
    background-color: #fff;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.movie-black-bar {
    height: 50px;
    background-color: #000;
    width: 100%;
}

.movie-content-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: #fff;
}

.brand-logo-video {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.play-trigger {
    width: 80px;
    height: 80px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
}

.play-circle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #164240;
    /* Dark green theme color */
    margin-left: 5px;
}

.brand-name-video {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #333;
    line-height: 1.4;
}

/* Interview and other sections */
.recruit-interviews,
.recruit-guidelines {
    padding-top: 40px;
    padding-left: 15px;
    margin-bottom: 80px;
}

.interview-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Selection Flow Refinement */
.recruit-flow {
    padding: 0 10px;
}

.flow-dropdown {
    margin-bottom: 30px;
}

.flow-toggle {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    font-size: 1.15rem;
    font-weight: bold;
    color: #8B1A1A;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px double #A6192E;
    /* Textured/Double line like mockup */
    margin-bottom: 25px;
    cursor: pointer;
}

.flow-content {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0;
    /* Gap handled by arrows */
}

.flow-dropdown.active .flow-content {
    display: flex;
}

.recruit-flow-box {
    width: 100%;
    background-color: #FFF9E6;
    /* Match the peachy-cream in mockup */
    border-radius: 15px;
    padding: 30px 25px;
}

.recruit-flow-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #8B1A1A;
    margin-bottom: 15px;
}

.recruit-flow-text {
    font-size: 1.1rem;
    color: #7A090B;
    line-height: 1.6;
    margin: 0;
}

.recruit-flow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 25px auto 0;
    background-color: #fff;
    border: 1px solid #8B1A1A;
    border-radius: 30px;
    padding: 12px 30px;
    /* Reduced padding to fit */
    max-width: 100%;
    /* Prevent overflow */
    color: #8B1A1A;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.recruit-flow-btn:hover {
    transform: translateY(-2px);
    background-color: #8B1A1A;
    color: #fff;
}

.recruit-flow-btn:hover .link_img {
    filter: brightness(0) invert(1);
}

.link_img_white {
    filter: brightness(0) invert(1);
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url('assets/images/link.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 4px;
    vertical-align: middle;
}

.external-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1.5px solid currentColor;
    position: relative;
    margin-left: 5px;
}

.external-icon::after {
    content: "";
    position: absolute;
    top: -4px;
    right: -4px;
    width: 8px;
    height: 8px;
    background-color: #fff;
    /* Mask background */
    border-left: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(135deg);
    /* Arrow tip */
}

.recruit-flow-arrow {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 30px solid #F9E5C0;
    /* Wide shallow arrow */
    margin: 15px 0;
}

/* =========================================
   15. INTERVIEW DETAIL PAGE
   ========================================= */
.interview-detail-page {
    background-color: #fff;
    padding: 0 0 100px;
    color: #8B1A1A;
}

.interview-detail-inner {
    max-width: 500px;
    margin: 0 auto;
}

/* Hero */
.interview-detail-hero {
    background-color: #F8E8D0;
    /* Light beige from mockup */
    padding: 60px 25px;
    margin-bottom: 50px;
}

.hero-main-title {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #8B1A1A;
}

.hero-author {
    font-size: 1.1rem;
    color: #8B1A1A;
    margin: 0;
}

.hero-img-placeholder {
    width: 100%;
    aspect-ratio: 1/1.2;
    background-color: #E6E6E6;
}

/* Sections */
.interview-section {
    padding: 0 25px;
    margin-bottom: 60px;
}

.section-q-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #8B1A1A;
    margin-bottom: 25px;
    position: relative;
}

.section-a-text {
    font-size: 0.95rem;
    color: #8B1A1A;
    line-height: 1.8;
}

/* Schedule / Timeline */
.schedule-timeline {
    position: relative;
    padding-left: 0;
}

.schedule-item {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 30px;
}

/* Timeline line */
.schedule-item::before {
    content: "";
    position: absolute;
    left: 45px;
    top: 40px;
    bottom: 0;
    width: 1px;
    background-color: #8B1A1A;
}

.schedule-item:last-child::before {
    display: none;
}

.schedule-time {
    width: 90px;
    height: 40px;
    background-color: #FFF2D8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    color: #8B1A1A;
    flex-shrink: 0;
    z-index: 1;
    border-radius: 10px;
}

.schedule-content {
    font-size: 0.9rem;
    color: #8B1A1A;
    line-height: 1.6;
}

.schedule-note {
    font-size: 0.8rem;
    color: #8B1A1A;
    margin-top: 10px;
    padding: 0 25px;
}

/* Mid Photo */
.interview-mid-photo {
    padding: 0 25px;
    margin-bottom: 60px;
}

.photo-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #EEEEEE;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

/* Footer Nav */
.interview-footer-nav {
    padding: 40px 20px;
    border-top: 1px solid #EEEEEE;
    margin-top: 80px;
}

.footer-nav-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #8B1A1A;
}

.other-interview-card {
    background-color: #fff;
    border: 1px solid #EEEEEE;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
}

.nav-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #E6E6E6;
    border-radius: 30px 30px 0 0;
}

.nav-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 30px 30px 0 0;
}

.nav-content {
    padding: 20px;
    position: relative;
}

.nav-number {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    color: #A6192E;
    margin-bottom: 10px;
}

.nav-title {
    font-size: 1.0rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 10px;
}

.nav-author {
    font-size: 0.9rem;
    color: #8B1A1A;
}

.nav-arrow-link {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 1.2rem;
    color: #A6192E;
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    .interview-detail-inner {
        max-width: 800px;
    }
}

.link_img {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url('assets/images/link.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 4px;
    vertical-align: middle;
}

h1,
h2,
h3,
h4,
.menu-label,
.required,
.flow-toggle {
    font-family: "Kiwi Maru", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1.3rem;
}

.menu-label {
    font-size: 0.6rem;
}


p,
li,
a,
.radio-label,
.company-section-title {
    font-family: "Kiwi Maru", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-weight: 400;
    font-style: normal;
}

.section-subtitle-en,
.page-subtitle-en {
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.interview-detail-hero {
    position: relative;
    padding: 0;
    margin-bottom: 50px;
    height: 550px;
    /* 固定 */
    background-color: #000;
    overflow: hidden;
}

.interview-detail-hero .hero-img-placeholder {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.interview-detail-hero .hero-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.interview-detail-hero .hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    padding: 40px 20px;
    background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.8) 80%);
    text-align: center;
}

.interview-detail-hero .hero-main-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 10px;
    line-height: 1.5;
    color: #fff;
    text-align: left;
}

.interview-detail-hero .hero-author {
    font-size: 0.9rem;
    color: #ddd;
    text-align: left;
}

.schedule-content p {
    margin-top: 0;
}

/* Recruitment Detail Page Buttons */
.recruit-detail-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    padding-bottom: 40px;
}

.recruit-back-btn,
.recruit-site-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    padding: 15px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.recruit-back-btn {
    background-color: transparent;
    color: #8B1A1A;
    border: 1px solid #8B1A1A;
}

.recruit-back-btn:hover {
    background-color: #8B1A1A;
    color: #fff;
}

.recruit-site-btn {
    background-color: #A6192E;
    color: #fff;
    border: 1px solid #A6192E;
    box-shadow: 0 4px 15px rgba(166, 25, 46, 0.2);
}

.recruit-site-btn:hover {
    background-color: #8B1A1A;
    transform: translateY(-2px);
}

.interview_1 {
    text-decoration: none;
    color: #8B1A1A;
}

/* Swiperの基本設定 */
.swiper-interview {
    overflow: hidden;
}

/* swiper-wrapperとして動作させるために必要 */
.swiper-interview .swiper-wrapper {
    display: flex;
}

/* スライドごとのスタイル */
.swiper-interview .swiper-slide {
    flex-shrink: 0;
    width: auto;
}

/* カード自体のサイズ調整（必要に応じて） */
.interview-card {
    width: 280px;
    /* カード幅 */
    display: block;
}

html {
    /* ヘッダーの高さが 80px の場合 */
    scroll-padding-top: 80px;
    /* スムーススクロールを追加したい場合 */
    scroll-behavior: smooth;
}

.site-header::after {
    content: "";
    position: absolute;
    bottom: -10px;
    /* ヘッダーのすぐ下 */
    left: 0;
    width: 100%;
    height: 10px;
    /* グラデーションの厚さ */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
    pointer-events: none;
    /* クリック無効化 */
    z-index: -1;
}

.delivery-text {
    padding-left: 20px;
}

.omoi-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    /* 黒の透明度を調整 */
    z-index: 0;
}

@media screen and (min-width: 768px) {
    .site-header {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .sp-container {
        padding-top: 0;
    }

    .pc-side-menu {
        position: sticky;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-top: 30px;
    }

    .pc-side-logo {
        width: 180px;
        pointer-events: none;
    }

    .pc-side-nav {
        background-color: rgba(255, 255, 255, 0.25);
        padding: 30px;
        border-radius: 20px;
    }

    .pc-side-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .pc-side-nav li {
        margin-bottom: 18px;
        text-align: left;
    }

    .pc-side-nav a {
        text-decoration: none;
        color: #7A090B;
        font-size: 0.95rem;
        letter-spacing: 0.1em;
        transition: opacity 0.3s;
    }

    .pc-side-nav a:hover {
        opacity: 0.6;
    }
}

@media screen and (min-width: 768px) {

    .menu-button,
    .sp-menu-overlay {
        display: none;
    }
}


.store-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* ← ここで余白を作る */
}

.store-card-img-wrapper {
    margin-top: 0;
    /* 削除 */
}


.store-card-name {
    min-height: 8.6em;
}

@media screen and (min-width: 768px) {
    .store-card-name {
        min-height: 5.8em;
    }
}

.funeral-examples {
    overflow-x: hidden;
}

.funeral-examples-swiper {
    overflow: hidden;
    /* 既にswiperはhiddenが多いけど念のため */
}

.funeral-problems {
    overflow-x: hidden;
}

a,
p,
span,
li {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.flower-gallery {
    margin: 16px 0 24px;
}

.flower-gallery .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.flower-categories,
.flower-usages {
    padding-left: 0;
}

.flower-intro-para {
    padding: 0 20px;
}

.flower-categories {
    padding: 0;
}

.flower-grid {
    margin: 0 auto;
}

/* まず overlay を「画像のど真ん中」に固定 */
.grid-img-wrapper {
    position: relative;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    /* ← ここが重要：paddingを消す */
}

/* 余白は label 側へ */
.grid-label {
    display: block;
    /* ← spanのままでもいいけど、ズレ防止でblock */
    margin: 0;
    /* ← 文字の左右余白 */
    line-height: 1.3;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    padding-bottom: 12px;
}

.flower-gallery .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.flower-gallery-swiper {
    overflow: hidden;
    margin: 16px 0 24px;
}

.flower-gallery-swiper .swiper-slide img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.flower-products-head {
    display: flex;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.flower-filter-reset {
    border: 1px solid #8B1A1A;
    background: transparent;
    padding: 6px 10px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #8B1A1A;
    font-family: "Kiwi Maru", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-weight: 400;
    font-style: normal;
}

.flower-filter-state {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.flower-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .flower-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.flower-product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    background: #fff;
}

.flower-product-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.flower-product-body {
    padding: 10px 12px 12px;
}

.flower-product-title {
    margin: 0 0 6px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #8B1A1A;
}

.flower-product-price {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.85;
    color: #8B1A1A;
}

/* 商品カード画像：強制表示 */
.flower-product-card .flower-product-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.flower-product-card .flower-product-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.global-pc-center {
    background-color: #fff;
}

.flower-content-inner {
    padding: 0 20px;
}

.flower-detail-footer {
    padding-top: 15px;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
    margin: 0 auto;

}

.flower-detail-header {
    color: #8B1A1A;
}

.flower-detail-content {
    color: #8B1A1A;
}

.single-flower_product .flower-detail-content h1 {
    display: none;
}

.flower-detail-title {
    margin: 70px 0 50px 0;
    font-size: 2.2rem;
    text-align: center;
}

.flower-detail-price {
    color: #8B1A1A;
}

.flower-product-detail p {
    color: #8B1A1A;
}

@media screen and (min-width: 768px) {
    .pc-side-nav a {
        position: relative;
        padding-left: 26px;
    }

    .pc-side-nav a.is-current {
        font-weight: 600;
    }

    .pc-side-nav a.is-current::after {
        content: "";
        position: absolute;
        left: 26px;
        bottom: -4px;
        width: 100%;
        height: 1px;
        background-color: #7A090B;
    }

    .pc-side-nav a.is-current::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-35%);
        width: 16px;
        height: 16px;
        background-image: url('/wp-content/themes/syunjyusya-theme/assets/images/list_flower.png');
        background-size: contain;
        background-repeat: no-repeat;
    }
}

@media screen and (min-width: 768px) {
    .pc-side-nav a {
        position: relative;
        padding-left: 26px;
    }

    .pc-side-nav a.is-current {
        font-weight: 600;
    }

    .pc-side-nav a.is-current::after {
        content: "";
        position: absolute;
        left: 26px;
        bottom: -4px;
        width: 100%;
        height: 1px;
        background-color: #7A090B;
    }

    .pc-side-nav a.is-current::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-35%);
        width: 16px;
        height: 16px;
        background-image: url('/wp-content/themes/syunjyusya-theme/assets/images/list_flower.png');
        background-size: contain;
        background-repeat: no-repeat;
    }
}

.grecaptcha-badge {
    visibility: hidden;
}

.recaptcha-note {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #7A090B;
    margin-top: 20px;
}

.recaptcha-note a {
    text-decoration: none;
    color: #8B1A1A;
}