/* ========================================
   Kinoko Transportation - Custom Styles
   Using Bootstrap 5.3 Grid System
======================================== */

/* CSS Variables */
:root {
    --kinoko-brown: #534741;
    --kinoko-gold: #B78965;
    --kinoko-red: #A23C2A;
    --kinoko-beige: #F1F1E9;
    --kinoko-light-beige: #F7F7F5;
    --kinoko-gray: #817975;
    --kinoko-light-gray: #E8E3D8;
    --kinoko-bg-light: #f0f2f5;
}

/* Reset & Global Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    font-family: 'SourceHanSerif', serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Sans', sans-serif;
    font-weight: 500;
    line-height: 1.7;
    color: #333;
    font-size: 15px;
    letter-spacing: 0.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Container Max Width - 确保所有屏幕显示一致 */
.container,
.container-fluid {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

p {
    font-family: 'Gen Jyuu Gothic Monospace', monospace;
    font-weight: 400;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
.header {
    background: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
}

.header .navbar {
    padding: 15px 0;
}

.logo-img {
    height: 30px;
}

.navbar-nav {
    gap: 0;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    font-size: 16px;
    padding: 0.5rem 0.5rem;
    white-space: nowrap;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ccc !important;
}

.nav-link:focus {
    outline: none !important;
}

.nav-link-gold {
    color: #D39036 !important;
}

.nav-separator {
    color: #fff;
    margin: 0 4px;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    margin-top: 330px;
}

.hero-logo {
    width: 85px;
    height: 85px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.hero-title {
    color: white;
    font-size: 28px;
    font-weight: 700;
    font-family: 'SourceHanSerif', serif;
    margin: 0;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

/* ========================================
   ABOUT SECTION
======================================== */
.page-section {
    padding: 80px 0;
    position: relative;
}

.about-section {
    background-image: url('../images/img-bg-home-01.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-section .container {
    position: relative;
    z-index: 2;
}

/* About container */
.page-container {
    max-width: 1120px;
    margin: 0 auto;
}

/* About content container - shift right */
.content-container {
    margin-left: calc(50% - 560px + 100px);
    margin-right: 100px;
    margin-top: 50px;
}

/* About section specific spacing */
.about-section .content-container {
    margin-top: 0;
}



/* Custom gap for about section */
.page-section .row.g-custom {
    --bs-gutter-x: 0px;
    --bs-gutter-y: 0px;
    margin-left: 0px;
    margin-right: 0px;
}

/* Ensure equal spacing around each card */
.page-section .row.g-custom > [class*='col-'] {
    padding-left: 6px !important;
    padding-right: 6px !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}

/* About section header - align left */
.page-section .section-header {
    text-align: left;
    margin-bottom: 100px;
    padding-top: 100px;
}

.page-section .section-header h2 {
    font-size: 43px;
    color: #534741;
    margin-bottom: 10px;
    letter-spacing: 13px;
    font-family: 'SourceHanSerif', serif;
    font-weight: 700;
}

.page-section .section-header .section-subtitle {
    font-size: 24px;
    color: #B78965;
    letter-spacing: 2px;
    font-family: 'Spectral-Bold', serif;
    font-weight: bold;
    margin: 0;
}

/* Horizontal decorators */
.about-decorators-horizontal {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 100px;
    margin-bottom: 96px;
    margin-left: 0;
}

.about-decorators-horizontal .decorator-icon {
    width: 16.67px;
    height: 3.33px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--kinoko-brown);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--kinoko-gold);
    letter-spacing: 3px;
    opacity: 0.9;
    font-family: 'Spectral-Bold', serif;
    font-weight: bold;
}

.decorator-icon {
    width: 40px;
    height: auto;
}

.about-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 35px 25px;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
    transition: transform 0.3s ease;
    width: 256.67px;
    height: 360px;
}

.about-item:hover {
    transform: translateY(-5px);
}

.about-number {
    font-size: 48px;
    font-weight: bold;
    color: #B78965;
    margin-bottom: 25px;
    font-family: 'SourceHanSerif-Bold', serif;
    line-height: 1;
    letter-spacing: 2px;
}

/* Different spacing for items 1-5 vs item 6 */
.about-item-1to5 .about-number {
    margin-bottom: 60px;
}

.about-item-6 .about-number {
    margin-bottom: 15px;
}

.about-item h3 {
    font-size: 21.33px;
    color: #534741;
    margin-bottom: 30px;
    line-height: 26.67px;
    letter-spacing: 1.33px;
    font-family: 'Source Han Serif JP', serif;
    font-weight: 700;
}

.about-item p {
    font-size: 14px;
    line-height: 17.33px;
    color: #817975;
    font-weight: 400;
    letter-spacing: 1.33px;
    font-family: 'Gen Jyuu Gothic Monospace', monospace;
}

.sdgs-text {
    color: var(--kinoko-gold);
    text-decoration: underline;
    font-size: 16px;
    letter-spacing: 0.667px;
    line-height: 16.67px;
}

/* ========================================
   SERVICE FLOW SECTION
======================================== */
.flow-header {
    background: #ffffff;
    color: var(--kinoko-brown);
    text-align: center;
    padding: 150px 0 60px;
    position: relative;
}

.flow-header h2 {
    font-size: 43px;
    margin: 30px 0 20px;
    color: #534741;
    letter-spacing: 13px;
    font-family: 'SourceHanSerif', serif;
    font-weight: 700;
}

.flow-subtitle {
    font-size: 24px;
    color: #B78965;
    letter-spacing: 2px;
    font-family: 'Spectral-Bold', serif;
    font-weight: bold;
}

.flow-header::after {
    content: '';
    position: absolute;
    top: 340px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-image: url('../images/icon-home-04-mushroom.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.flow-description {
    font-size: 21.33px;
    color: #534741;
    margin-top: 80px;
    font-style: italic;
    font-family: 'SourceHanSerif-ExtraLight', serif;
    font-weight: 200; /* ExtraLight */
    letter-spacing: 2px;
    line-height: 21.33px;
}

/* ========================================
   STEPS SECTION
======================================== */
.steps-section {
    padding: 80px 0;
    background: #ffffff;
}

.step-item {
    text-align: left;
    padding: 50px 45px 50px 70px;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.step-item:hover {
    transform: translateY(-3px);
}

.steps-section .col-md-6:nth-child(1) .step-item {
    background-color: var(--kinoko-beige);
}

.steps-section .col-md-6:nth-child(2) .step-item {
    background-color: var(--kinoko-light-beige);
}

.steps-section .col-md-6:nth-child(3) .step-item {
    background-color: var(--kinoko-light-beige);
}

.steps-section .col-md-6:nth-child(4) .step-item {
    background-color: var(--kinoko-beige);
}

/* Content wrapper for centering */
.steps-section .col-md-6:nth-child(1) .step-item > *,
.steps-section .col-md-6:nth-child(3) .step-item > * {
    margin-left: 180px;
    max-width: calc(100% - 180px);
}



.steps-section .col-md-6:nth-child(2) .step-item > *,
.steps-section .col-md-6:nth-child(4) .step-item > * {
    margin-left: 115px;
    max-width: calc(100% - 115px);
}



@media (min-width: 768px) and (max-width: 991.98px) {
    .steps-section .col-md-6:nth-child(1) .step-item > *,
    .steps-section .col-md-6:nth-child(3) .step-item > * {
        margin-left: 15px;
        max-width: calc(100% - 15px);
    }
    .steps-section .col-md-6:nth-child(2) .step-item > *,
    .steps-section .col-md-6:nth-child(4) .step-item > * {
        margin-left: 15px;
        max-width: calc(100% - 15px);
    }
}


.steps-section .row {
    counter-reset: step-counter;
}

.steps-section .col-md-6 {
    counter-increment: step-counter;
}

.step-number {
    font-size: 24px;
    color: #B78965;
    font-weight: bold;
    letter-spacing: 3.33px;
    line-height: 24px;
    margin-bottom: 56px;
    position: relative;
    padding-right: 55px;
    font-family: 'Spectral-Bold', serif;
    display: inline-block;
}

.step-number::before {
    content: "STEP";
    color: #B78965;
}

.step-number::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.steps-section .col-md-6:nth-child(1) .step-number::after {
    background-image: url('../images/icon-home-step-01.png');
}

.steps-section .col-md-6:nth-child(2) .step-number::after {
    background-image: url('../images/icon-home-step-02.png');
}

.steps-section .col-md-6:nth-child(3) .step-number::after {
    background-image: url('../images/icon-home-step-03.png');
}

.steps-section .col-md-6:nth-child(4) .step-number::after {
    background-image: url('../images/icon-home-step-04.png');
}

.step-title {
    font-size: 21.33px;
    color: #534741;
    margin-bottom: 2px;
    line-height: 21.33px;
    letter-spacing: 4.67px;
    font-family: 'Source Han Serif JP', serif;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-top: 0;
    padding-top: 13px;
}

.step-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 2.67px;
    background: var(--kinoko-red);
}

.step-description {
    font-size: 14px;
    color: #817975;
    line-height: 20px;
    letter-spacing: 0.67px;
    font-family: 'Gen Jyuu Gothic Monospace', monospace;
    font-weight: 400;
    margin-top: 0;
}

/* ========================================
   CTA BUTTON
======================================== */
.cta-section {
    padding: 120px 0 50px;
    text-align: center;
    background: transparent;
}

.reservation-button {
    display: inline-block;
    width: 320px;
    height: 50px;
    padding: 0;
    background: #333;
    border: none;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400; /* Regular */
    letter-spacing: 2.67px;
    line-height: 50px;
    transition: all 0.3s ease;
    font-family: 'Gen Jyuu Gothic Monospace', monospace;
    text-align: center;
    outline: none;
}

.reservation-button:hover {
    background: #555;
    color: #fff;
    transform: translateY(-2px);
}

.reservation-button:focus {
    outline: none;
}

/* ========================================
   REVIEWS SECTION
======================================== */
.reviews-section {
    padding: 80px 0;
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/img-bg-home-02.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Reviews container */
.reviews-container {
    max-width: 1120px;
    position: relative;
}

/* Reviews content container - shift right */
.reviews-content-container {
    margin-left: calc(50% - 560px + 100px);
    margin-top: 50px;
}

.reviews-section .section-header {
    text-align: left;
    margin-bottom: 40px;
    padding-top: 200px;
}

.reviews-section .section-header h2 {
    font-size: 43px;
    color: #534741;
    margin-bottom: 10px;
    letter-spacing: 13px;
    font-family: 'SourceHanSerif', serif;
    font-weight: 700;
}

.reviews-section .section-header .section-subtitle {
    font-size: 24px;
    color: #B78965;
    letter-spacing: 2px;
    font-family: 'Spectral-Bold', serif;
    font-weight: bold;
    margin: 0;
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.review-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.review-image {
    flex-shrink: 0;
    width: 280px;
    height: 224px;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.review-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    position: relative;
    height: 224px;
    max-width: 540px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 13.33px;
    padding-top: 10px;
    padding-bottom: 8px;
    border-top: 2px solid #E5DFD4;
}

.driver-experience {
    color: #A23C2A;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 1.33px;
    font-family: 'Source Han Serif JP', serif;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 6.67px;
}

.review-rating span {
    font-size: 16px;
    font-weight: 700;
    color: #A23C2A;
    line-height: 16px;
    letter-spacing: 1.33px;
    font-family: 'Source Han Serif JP', serif;
}

.review-rating .stars {
    color: #A23C2A;
    font-size: 10.67px;
    letter-spacing: 0;
}

.review-rating .stars img {
    width: 80px;
    height: 16px;
    display: block;
}

.review-rating .stars .star {
    margin: 0;
    padding: 0;
    letter-spacing: 0;
}

.customer-feedbacks {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    justify-content: space-evenly;
}

.customer-feedback {
    display: flex;
    align-items: flex-start;
    gap: 53.33px;
    font-size: 14px;
    line-height: 1.13;
}

.customer-name {
    color: #534741;
    font-weight: 900;
    min-width: 33.33px;
    flex-shrink: 0;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 1.33px;
    font-family: 'SourceHanSerif-Heavy', serif;
}

.customer-comment {
    color: #817975;
    font-weight: 400;
    font-family: 'Gen Jyuu Gothic Monospace', monospace !important;
    font-size: 14px;
    line-height: 17.33px;
    letter-spacing: 0.67px;
}

/* ========================================
   PAYMENT SECTION
======================================== */
.payment-section {
    background-image: url('../images/img-bg-home-03.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
}

/* Payment container */
.payment-container {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Payment section header - align left with top padding */
.payment-section .section-header {
    text-align: left;
    margin-bottom: 40px;
    padding-top: 60px;
}

.payment-section .section-header h2 {
    font-size: 43px;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 13px;
    font-family: 'SourceHanSerif', serif;
    font-weight: 700;
}

.payment-section .section-header .section-subtitle {
    font-size: 24px;
    color: #B78965;
    letter-spacing: 2px;
    font-family: 'Spectral-Bold', serif;
    font-weight: bold;
    margin: 0;
}

.underline-text {
    text-decoration: underline;
}

/* Payment content layout */
.payment-section .row.align-items-center {
    gap: 100px;
}

.payment-section .col-md-6:first-child {
    flex: 0 0 auto;
    width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.payment-section .col-md-6:last-child {
    flex: 1;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-text {
    max-width: 390px;
}

.payment-text p {
    font-size: 14px;
    color: #CFCCCA;
    line-height: 20px;
    margin-bottom: 25px;
    font-family: 'Gen Jyuu Gothic Monospace', monospace;
    font-weight: 400;
    letter-spacing: 1.33px;
}

.payment-text p:first-of-type {
    font-size: 18.67px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #E5E5E5;
    line-height: 28px;
    letter-spacing: 2px;
    font-family: 'Source Han Serif JP', serif;
}

.payment-image {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: none;
    max-width: 450px;
    width: 100%;
    display: block;
    height: auto;
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-section {
    background-color: var(--kinoko-light-beige);
    padding: 300px 80px 80px;
    text-align: center;
    width: 100%;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .faq-section {
        padding: 300px 0px 80px;
    }
}

.faq-section h2 {
    font-size: 43px;
    margin-bottom: 20px;
    color: #534741;
    letter-spacing: 13px;
    font-family: 'SourceHanSerif', serif;
    font-weight: 700;
}

.faq-section .section-subtitle {
    font-size: 24px;
    color: #B78965;
    letter-spacing: 2px;
    font-family: 'Spectral-Bold', serif;
    font-weight: bold;
}

.faq-list {
    margin-top: 60px;
    text-align: left;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

/* Checkbox Accordion Styles */
.cp_qa {
    width: 100%;
}

.cp_actab {
    position: relative;
    background: #FEFDFB;
    margin-bottom: 8px;
    overflow: hidden;
}

.cp_actab input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.cp_actab label {
    position: relative;
    display: flex;
    align-items: center;
    padding: 28px 80px;
    cursor: pointer;
    font-size: 21px;
    color: #534741;
    line-height: 1.6;
    font-weight: 700;
    font-family: 'SourceHanSerif', serif;
    letter-spacing: 6px;
    margin: 0;
    transition: background 0.3s ease;
    min-height: 90px;
    box-sizing: border-box;
}

.cp_actab label:hover {
    background: #F8F6F1;
}

.cp_actab label .faq-number {
    font-size: 24px;
    color: #B78965;
    margin-right: 20px;
    min-width: 45px;
    font-weight: 900; /* Heavy */
    font-family: 'SourceHanSerif-Heavy', serif;
    letter-spacing: 3px;
    position: relative;
    padding-right: 20px;
}

.cp_actab label .faq-number::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: var(--kinoko-light-gray);
}

.cp_actab label::after {
    content: '';
    position: absolute;
    right: 80px;
    width: 26.7px;
    height: 26.7px;
    background-image: url('../images/icon-home-faq.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.cp_actab label::before {
    content: '';
    position: absolute;
    right: 82px;
    width: 19px;
    height: 3px;
    background-color: #a64433;
    transition: opacity 0.3s ease;
    opacity: 0;
    top: 50%;
    transform: translateY(-50%);
}

.cp_actab input:checked ~ label::after {
    opacity: 0;
}

.cp_actab input:checked ~ label::before {
    opacity: 1;
}

.cp_actab-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 80px;
}

.cp_actab-content p {
    margin: 0;
    padding: 0 0 25px 0;
    color: #534741;
    line-height: 1.7;
    font-size: 18px;
    font-family: 'SourceHanSerif', serif;
}

.cp_actab input:checked ~ .cp_actab-content {
    max-height: 500px;
    transition: max-height 0.4s ease;
}

/* ========================================
   NOTICE & NEWS SECTION
======================================== */
.notice-news-wrapper {
    position: relative;
    background-image: url('../images/img-bg-home-06.png');
    background-position-x: left;
    background-repeat: no-repeat;
    background-position-y: top;
    padding: 100px 0 77px 0;
    background-size: 100% 2046px;
}

/* Notice container */
.notice-container {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Notice content container - shift right */
.notice-content-container {
    margin-left: calc(50% - 560px + 100px);
    margin-top: 50px;
}

/* Notice section header - align left with top padding */
.notice-news-wrapper .section-header {
    text-align: left;
    margin-bottom: 30px;
    padding-top: 330px;
}

.notice-title {
    font-size: 43px;
    color: #534741;
    margin-bottom: 10px;
    letter-spacing: 13px;
    font-family: 'SourceHanSerif', serif;
    font-weight: 700;
}

.notice-subtitle {
    font-size: 24px;
    color: #B78965;
    letter-spacing: 2px;
    font-family: 'Spectral-Bold', serif;
    font-weight: bold;
    margin: 0;
}

/* NEWS section inside Notice */
.news-section-inner {
    margin-top: 200px;
    padding: 60px 0px 0px 0px;
}

.news-section-inner .section-header {
    padding: 0;
    position: relative;
}


.section-header .news-title,
h2.news-title {
    font-size: 24px !important;
    color: #A23C2A !important;
    letter-spacing: 3.33px !important;
    line-height: 24px !important;
    font-family: 'Spectral-Bold', serif !important;
    font-weight: 700 !important;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

.news-section-inner .section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0px;
    height: 2px;
    background-color: #E5DFD4;
    top: 35px;
}

.news-item {
    margin-bottom: 45px;
    padding-bottom: 45px;
    position: relative;
}

.news-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0px;
    right: 0px;
    height: 2px;
    background-color: #E5DFD4;
}

.news-image {
    width: 375.33px;
    height: 217.42px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 217.42px;
    max-width: 460px;
}

.news-content h3 {
    font-size: 21.33px;
    color: #534741;
    font-family: 'Spectral-Bold', serif;
    font-weight: 700;
    line-height: 21.33px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.news-subtitle {
    font-size: 18.67px;
    color: #B78965;
    margin-bottom: 50px;
    font-weight: 700;
    font-family: 'Source Han Serif JP', serif;
    letter-spacing: 2.15px;
    line-height: 21.33px;
}

.news-description {
    font-size: 14px;
    color: #817975;
    line-height: 20px;
    font-weight: 400;
    font-family: 'Gen Jyuu Gothic Monospace', monospace;
    letter-spacing: 0.67px;
}

.view-all-news {
    text-align: right;
    margin-top: 50px;
    padding: 0 80px;
}

.view-all-link {
    font-size: 16px;
    color: #A23C2A;
    text-decoration: underline;
    font-weight: 700;
    font-style: italic;
    font-family: 'Spectral-Bold', serif;
    letter-spacing: 2px;
    line-height: 16px;
    transition: color 0.3s ease;
    outline: none;
}

.view-all-link:hover {
    color: var(--kinoko-gold);
}

.view-all-link:focus {
    outline: none;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: linear-gradient(180deg, #2C3137 0%, #333333 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    width: 100%;
}

.footer .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-583px);
    width: 5px;
    height: 5px;
    background: #B78965;
    border-radius: 50%;
}

.footer-subtitle {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    line-height: 14px;
    color: #9A9A9A;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 2px;
}

.footer-title {
    font-family: 'SourceHanSerif', serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: #FAFAFA;
    margin-bottom: 80px;
    letter-spacing: 5px;
}

/* Footer Titles Row */
.footer-titles {
    margin-bottom: 5px;
}

.footer-section-title {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 0;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

/* Email Address Row */
.footer-email-row {
    margin-bottom: 20px;
}

.email-text {
    color: #B8B8B8;
    font-size: 13px;
    line-height: 1.4;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
    display: block;
}

/* Icons and Logo Row - All aligned horizontally */
.footer-icons-row {
    margin-top: 0;
}

.footer-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.footer-icon:hover {
    opacity: 0.7;
}

.footer-logo-img {
    width: auto;
    height: 34px;
    opacity: 0.85;
    cursor: pointer;
}

.footer-logo-img:hover {
    opacity: 0.7;
}

/* ========================================
   LOADING ANIMATION
======================================== */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   SCROLL ANIMATIONS
======================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.about-item:nth-child(1) { transition-delay: 0.1s; }
.about-item:nth-child(2) { transition-delay: 0.2s; }
.about-item:nth-child(3) { transition-delay: 0.3s; }
.about-item:nth-child(4) { transition-delay: 0.4s; }
.about-item:nth-child(5) { transition-delay: 0.5s; }
.about-item:nth-child(6) { transition-delay: 0.6s; }

.step-item:nth-child(1) { transition-delay: 0.1s; }
.step-item:nth-child(2) { transition-delay: 0.2s; }
.step-item:nth-child(3) { transition-delay: 0.3s; }
.step-item:nth-child(4) { transition-delay: 0.4s; }

.review-item:nth-child(1) { transition-delay: 0.1s; }
.review-item:nth-child(2) { transition-delay: 0.2s; }
.review-item:nth-child(3) { transition-delay: 0.3s; }

/* ========================================
   UTILITY CLASSES
======================================== */
::selection {
    background: #333;
    color: white;
}

::-moz-selection {
    background: #333;
    color: white;
}

a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid #333;
    outline-offset: 2px;
}



.row.g-custom .col-md-3{
    display: block;
    margin-right: 5px;
    margin-bottom: 30px;
}

/* ========================================
   NOTICE PAGE
======================================== */
.notice-page-section {
    background-color: #F7F7F5;
    background-image: url('../images/img-bg-home-01.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 0 0 0;
    min-height: 100vh;
    position: relative;
}

.notice-page-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Page Header */
.notice-page-header {
    text-align: center;
    margin-bottom: 70px;
    padding-top: 224px;
}

.notice-page-title {
    font-family: 'SourceHanSerif', serif;
    font-size: 53.33px;
    font-weight: 700;
    color: #534741;
    letter-spacing: 10px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.notice-page-subtitle {
    font-family: 'Spectral-Bold', serif;
    font-size: 24px;
    font-weight: bold;
    color: #B78965;
    letter-spacing: 2px;
    margin: 0;
}

/* News List */
.notice-news-list {
    background: #FFFFFF;
    max-width: 1120px;
    margin: 0 auto;
    padding: 60px 80px 100px;
}

.notice-all-news-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #E5DFD4;
    max-width: 870px;
    margin-left: auto;
    margin-right: auto;
}

.notice-all-news-header h2 {
    font-family: 'Spectral-Bold', serif;
    font-size: 21.33px;
    font-weight: bold;
    color: #A23C2A;
    letter-spacing: 2px;
    margin: 0;
}

/* News Item */
.notice-news-item {
    background: transparent;
    margin-bottom: 40px;
    padding: 0 0 40px 0;
    border-radius: 0;
    max-width: 870px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.notice-news-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 870px;
    height: 2px;
    background-color: #E5DFD4;
}

.notice-news-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.notice-news-item:last-child::after {
    display: none;
}

.notice-news-image {
    width: 375.33px;
    height: 217.42px;
    overflow: hidden;
}

.notice-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notice-news-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 217.42px;
    max-width: 460px;
}

.notice-news-title {
    font-family: 'Spectral-Bold', serif;
    font-size: 21.33px;
    font-weight: 700;
    color: #534741;
    letter-spacing: 2px;
    line-height: 21.33px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.notice-news-category {
    font-family: 'Source Han Serif JP', serif;
    font-size: 18.67px;
    font-weight: 700;
    color: #B78965;
    letter-spacing: 2.15px;
    line-height: 21.33px;
    margin-bottom: 50px;
}
.notice-news-detail{
    margin-top: 30px;
}

.notice-news-description {
    font-family: 'Gen Jyuu Gothic Monospace', monospace;
    font-size: 14px;
    color: #817975;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 0.67px;
}

.notice-news-description p {
    margin: 0 0 10px 0;
}

.notice-news-description p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 767px) {
    .notice-news-item .col-md-5,
    .notice-news-item .col-md-7 {
        width: 100%;
    }

    .notice-news-image {
        height: 300px;
    }

    .notice-news-content {
        padding: 40px 30px;
    }

    .notice-page-title {
        font-size: 40px;
    }
}

/* ========================================
   CONTACT PAGE
======================================== */
.contact-page-section {
    background-color: #F7F7F5;
    background-image: url('../images/img-bg-form-02.png');
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 224px 0 100px 0;
    min-height: 100vh;
    position: relative;
}

.contact-page-container {
    max-width: 1120px;
    min-height: 1600px;
    margin: 0 auto;
    padding: 0;
    background: #FFFFFF;
}

/* Page Header */
.contact-page-header {
    text-align: center;
    padding: 100px 15px 0;
    margin-bottom: 79px;
}

.contact-page-title {
    font-family: 'Source Han Serif JP', serif;
    font-size: 44px;
    font-weight: 700;
    color: #82522C;
    letter-spacing: 10px;
    margin: 0;
    line-height: 44px;
}

/* Tab Navigation */
.contact-tabs {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0;
    position: relative;
}

.contact-tabs::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #F0ECE1;
}

.contact-tab {
    font-family: 'SourceHanSerif-Heavy', serif;
    font-size: 22px;
    font-weight: 900;
    color: #9C9B9B;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    line-height: 22px;
    position: relative;
}

.contact-tab::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.contact-tab.active {
    color: #FE7058;
}

.contact-tab.active::after {
    background-color: #FE7058;
}

.contact-tab:hover {
    color: #FE7058;
}

/* Tab Content */
.contact-tab-content {
    position: relative;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Form Wrapper */
.contact-form-wrapper {
    background: #FFFFFF;
    max-width: 800px;
    margin: 0 auto;
    padding: 58px 0 80px 0;
    box-shadow: none;
}

.form-subtitle {
    font-family: 'Source Han Serif JP', serif;
    font-size: 22px;
    font-weight: 700;
    color: #B78965;
    text-align: left;
    margin-bottom: 20px;
    line-height: 29px;
    letter-spacing: 4px;
}

.form-description {
    font-family: 'Source Han Serif JP', serif;
    font-size: 14px;
    font-weight: 300;
    color: #534741;
    text-align: left;
    margin-bottom: 50px;
    line-height: 20px;
    letter-spacing: 2px;
}

.field-description {
    font-family: 'Source Han Serif JP', serif;
    font-size: 12px;
    font-weight: 300;
    color: #8F8E8E;
    margin: 6px 0 11px 0;
    line-height: 13px;
    letter-spacing: 0px;
}

.coupon-note {
    font-family: 'Source Han Serif JP', serif;
    font-size: 12px;
    font-weight: 300;
    color: #8F8E8E;
    margin-left: 10px;
    letter-spacing: 0px;
    line-height: 13px;
}

/* Form Styles */
.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.form-row .form-group {
    flex: 1;
}

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

.form-group label {
    font-family: 'Source Han Serif JP', serif;
    font-size: 18px;
    font-weight: 700;
    color: #534741;
    display: block;
    margin-top: 0;
    margin-bottom: 10px;
    letter-spacing: 2px;
    line-height: 18px;
}

.required {
    display: inline-block;
    width: 13px;
    height: 13px;
    background-image: url('../images/icon-contact us-＊.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 5px;
    font-size: 0;
    vertical-align: middle;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="datetime-local"],
.form-group input[type="number"] {
    width: 390px;
    height: 47px;
    padding: 0 15px;
    border: 1px solid #E5DFD4;
    background: #FFFFFF;
    font-family: 'Source Han Serif JP', serif;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    letter-spacing: 0px;
    line-height: 18px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group input[type="date"]::placeholder,
.form-group input[type="datetime-local"]::placeholder,
.form-group input[type="number"]::placeholder,
.form-group textarea::placeholder {
    color: #CCCCCC;
}

.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E5DFD4;
    background: #FFFFFF;
    font-family: 'Source Han Serif JP', serif;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    letter-spacing: 0px;
    line-height: 18px;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="date"]:focus,
.form-group input[type="datetime-local"]:focus,
.form-group input[type="number"]:focus,
.form-group textarea:focus {
    outline: none;
    border: 2px solid #C64831;
    color: #534741;
    font-family: 'Source Han Serif JP', serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 18px;
    caret-color: #C64831;
    padding-left: 13px;
}

/* Custom calendar icon for datetime-local */
.form-group input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    background-image: url('../images/icon-contact-1.png');
    background-size: 15px 15px;
    background-repeat: no-repeat;
    background-position: center;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

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

.other-input {
    margin-top: 15px;
}

/* Radio with inline input */
.radio-with-input {
    display: flex;
    align-items: center;
    gap: 30px;
}

.other-input-inline {
    width: 390px;
    height: 47px;
    padding: 0 15px;
    border: 1px solid #E5DFD4;
    background: #FFFFFF;
    font-family: 'Source Han Serif JP', serif;
    font-size: 18px;
    font-weight: 400;
    color: #534741;
    letter-spacing: 0px;
    line-height: 18px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.other-input-inline::placeholder {
    color: #8F8E8E;
}

.other-input-inline:focus {
    outline: none;
    border-color: #B78965;
}

/* Radio Group */
.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Source Han Serif JP', serif;
    font-size: 18px;
    font-weight: 400;
    color: #534741;
    position: relative;
    letter-spacing: 1px;
    line-height: 18px;
}

.radio-label input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    margin: 0;
    margin-right: 10px;
    cursor: pointer;
    background-image: url('../images/btn-price-normal.png?v=3');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    flex-shrink: 0;
    outline: none;
    border: none;
    display: inline-block;
    vertical-align: middle;
}

.radio-label input[type="radio"]:focus {
    outline: none;
    box-shadow: none;
}

.radio-label input[type="radio"]:checked {
    background-image: url('../images/btn-price-select.png?v=3');
}

.radio-label span {
    font-family: 'Source Han Serif JP', serif;
    font-size: 18px;
    font-weight: 400;
    color: #534741;
    letter-spacing: 1px;
    line-height: 18px;
}

/* Checkbox */
.form-checkbox {
    margin: 31px 0 13px 0;
    text-align: center;
}

.form-checkbox label {
    display: inline-flex;
    align-items: flex-start;
    cursor: pointer;
    font-family: 'Source Han Serif JP', serif;
    font-size: 18px;
    font-weight: 400;
    color: #534741;
    letter-spacing: 1px;
    line-height: 18px;
}

.form-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    margin: 0;
    margin-right: 10px;
    cursor: pointer;
    background-image: url('../images/btn-price-normal.png?v=3');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    flex-shrink: 0;
    outline: none;
    border: none;
    display: inline-block;
    vertical-align: middle;
}

.form-checkbox input[type="checkbox"]:focus {
    outline: none;
    box-shadow: none;
}

.form-checkbox input[type="checkbox"]:checked {
    background-image: url('../images/btn-price-select.png?v=3');
}

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

.submit-btn {
    width: 320px;
    height: 50px;
    background: #2E2E2E;
    color: #FFFFFF;
    border: none;
    font-family: 'Spectral-Bold', serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #555555;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 767px) {
    .contact-form-wrapper {
        padding: 60px 40px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .radio-group {
        flex-direction: column;
    }

    .submit-btn {
        width: 100%;
    }

    .contact-page-title {
        font-size: 40px;
    }
}


@media (min-width: 768px) and (max-width: 991.98px) {
    .content-container {
        margin-left: 0;
    }
    .news-image {
        width: 234.33px;
        height: 173.42px;
        overflow: hidden;
    }

    .footer-icons-row .col-md-3 {
        flex: 0 0 auto;
        width: 19%;
    }
    .footer-icons{
        gap: 4px;
    }
    .contact-page-container{
        max-width: 760px;
        padding: 25px;
    }
    .contact-form-wrapper .form-group input[type="tel"]
    ,.contact-form-wrapper .form-group input[type="text"]
    ,.contact-form-wrapper .form-group input[type="email"]
    ,.contact-form-wrapper .form-group input[type="date"]
    ,.contact-form-wrapper .form-group input[type="datetime-local"]
    ,.contact-form-wrapper .form-group input[type="number"]
    {
        width: 320px;
    }
    .logo-img {
        height: 20px;
    }
    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: 2px;
        padding-left: 2px;
        font-size: 13px;
        padding-top: 7px;
    }
    .navbar-brand{
        padding-top: 3px;
    }
}
