/* ==========================================
   リセット・ベーススタイル
========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --skin-beige: #BD897E;
    --skin-beige-light: rgba(189,137,126,0.2);
    --clinical-white: #F4F1DE;
    --clinical-white-light: rgba(244,241,222,0.3);
    --corporate-brown: #3B1700;
    --corporate-brown-light: rgba(59,23,0,0.2);
    --font-color: #333333;
    --white: #ffffff;
    --black: #000000;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: clip;
}

body {
    font-family: 'Shippori Mincho', serif;
    color: var(--font-color);
    /* line-height: 1.85; */
    background: var(--clinical-white);
    opacity: 0.1;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

/* ============================================
   Ampeal Font Style Definitions (NEW / 固定サイズ版)
   ※HTML側でクラス（.text-main等）を付与して使用します
============================================ */
/* --- PC / Default --- */
.text-display { font-family: 'Shippori Mincho', serif; font-size: 100px; font-weight: 400; line-height: 140px; letter-spacing: 0; }
.text-section-jp { font-family: 'Shippori Mincho', serif; font-size: 32px; font-weight: 400; line-height: 42px; letter-spacing: 0.03em; }
.text-hero-lead { font-family: 'Shippori Mincho', serif; font-size: 32px; font-weight: 600; line-height: 42px; letter-spacing: 0.02em; }
.text-title { font-family: 'Shippori Mincho', serif; font-size: 28px; font-weight: 600; line-height: 38px; letter-spacing: 0.02em; }
.text-card-title { font-family: 'Shippori Mincho', serif; font-size: 20px; font-weight: 600; line-height: 28px; letter-spacing: 0.02em; }
.text-main { font-family: 'Shippori Mincho', serif; font-size: 16px; font-weight: 500; line-height: 26px; letter-spacing: 0.01em; }
.text-caption { font-family: 'Shippori Mincho', serif; font-size: 14px; font-weight: 400; line-height: 22px; letter-spacing: 0.01em; }
.text-link { font-family: 'Shippori Mincho', serif; font-size: 12px; font-weight: 400; line-height: 20px; letter-spacing: 0.01em; }

/* --- タブレット --- */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .text-display { font-size: 64px; line-height: 90px; }
  .text-section-jp { font-size: 30px; line-height: 38px; }
  .text-hero-lead { font-size: 30px; line-height: 40px; }
  .text-title { font-size: 26px; line-height: 34px; }
  .text-card-title { font-size: 20px; line-height: 28px; }
  .text-main { font-size: 15px; line-height: 24px; }
  .text-caption { font-size: 14px; font-weight: 400; line-height: 21px; }
  .text-link { font-size: 12px; line-height: 18px; }
}

/* --- SP --- */
@media screen and (max-width: 768px) {
  .text-display { font-size: 48px; line-height: 68px; }
  .text-section-jp { font-size: 28px; line-height: 34px; }
  .text-hero-lead { font-size: 28px; line-height: 38px; }
  .text-title { font-size: 24px; line-height: 30px; }
  .text-card-title { font-size: 20px; line-height: 28px; }
  .text-main { font-size: 14px; line-height: 22px; }
  .text-caption { font-size: 14px; font-weight: 500; line-height: 21px; }
  .text-link { font-size: 12px; line-height: 16px; }
}
/* ============================================ */

/* @media screen and (min-width: 1025px) and (max-width: 1280px) {
    .all-wrapper {
    padding-left: 20px !important;
    padding-right: 20px !important;
    }
}

@media screen and (min-width: 481px) and (max-width: 1024px) {
    .all-wrapper {
    padding-left: 80px !important;
    padding-right: 80px !important;
    }
}

@media screen and (max-width: 480px) {
    .all-wrapper {
    padding-left: 20px !important;
    padding-right: 20px !important;
    }
} */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* スクリーンリーダー用テキスト（視覚的に非表示） */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* デフォルトの本文スタイル */
p {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0.01em;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

section.section-title-wrapper {
    /* padding: 0 !important; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

section.section-title-wrapper .section-title,
section.section-title-wrapper .section-subtitle,
section.section-title-wrapper h1.text-display,
section.section-title-wrapper h2.text-display,
section.section-title-wrapper p.text-section-jp {
    text-align: left !important;
}

/* html body section.section-container-wrapper:not(.section-title-wrapper),
html body main section.section-container-wrapper:not(.section-title-wrapper),
html body .all-main section.section-container-wrapper:not(.section-title-wrapper) {
    padding: 64px 20px !important;
    margin: 0 auto;
} */

/* ==========================================
   パンくず
========================================== */
.breadcrumb-wrapper {
    padding: 20px 0;
    width: 100%;
    text-align: left !important;
}

.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start !important;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
    color: var(--corporate-brown);
    letter-spacing: 0.08em;
    text-align: left !important;
}

.bread-dust {
    width: 100%;
    text-align: left !important;
}

body.page-contact-thanks .breadcrumb-wrapper,
body.page-recruit-thanks .breadcrumb-wrapper,
body.page-contact-thanks .bread-dust,
body.page-recruit-thanks .bread-dust {
    text-align: center !important;
}

body.page-contact-thanks .breadcrumb,
body.page-recruit-thanks .breadcrumb {
    justify-content: center !important;
    text-align: center !important;
}

body.page-tamayura .breadcrumb-wrapper,
body.page-yamazakura .breadcrumb-wrapper,
body.page-zenith .breadcrumb-wrapper,
body.page-kanazawa .breadcrumb-wrapper,
body.page-yutowa-yururito .breadcrumb-wrapper,
body.page-yururuka .breadcrumb-wrapper,
body.page-okada-yururito .breadcrumb-wrapper {
    text-align: left !important;
}

body.page-tamayura .breadcrumb,
body.page-yamazakura .breadcrumb,
body.page-zenith .breadcrumb,
body.page-kanazawa .breadcrumb,
body.page-yutowa-yururito .breadcrumb,
body.page-yururuka .breadcrumb,
body.page-okada-yururito .breadcrumb {
    justify-content: flex-start !important;
    text-align: left !important;
}

.breadcrumb-wrapper.breadcrumb-salon-back {
    text-align: left !important;
}

.breadcrumb-wrapper.breadcrumb-salon-back .breadcrumb {
    justify-content: flex-start !important;
    text-align: left !important;
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-trail li + li::before {
    content: '\203A';
    color: var(--skin-beige);
    font-size: 1rem;
}

.breadcrumb-trail a,
.breadcrumb-back .breadcrumb-link {
    color: var(--corporate-brown);
    text-decoration: none;
    position: relative;
}

.breadcrumb-trail a::after,
.breadcrumb-back .breadcrumb-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--corporate-brown);
    transition: width 0.3s ease;
}

.breadcrumb-trail a:hover::after,
.breadcrumb-back .breadcrumb-link:hover::after {
    width: 100%;
}

.breadcrumb-trail [aria-current='page'] {
    color: var(--font-color);
}

.breadcrumb-back .breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-back .breadcrumb-link::before {
    content: '\2039';
    font-size: 1.1rem;
    color: var(--skin-beige);
}

.container {
    margin: 0 auto;
    padding: 20px !important;
    position: relative;
    max-width: 1280px;
    box-sizing: border-box;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* 480px以下（SP）：左右余白20px */
@media screen and (max-width: 480px) {
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* 481px〜768px（小タブレット）：左右余白40px */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .container {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

/* 769px〜1024px（タブレット）：左右余白40px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
    
    .head-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .header {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .footer {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .footer-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .section-container-top-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
}

/* 1025px以上（PC）：左右余白80px／コンテンツ幅 最大1280px */
@media screen and (min-width: 1025px) {
    .container {
        padding-left: 80px !important;
        padding-right: 80px !important;
        max-width: 1440px; /* コンテンツ幅1280px + padding左右80px×2 = 1440px */
    }
    
    /* MISSIONセクションとCAREERSセクションのコンテンツ幅を1280pxに */
    .mission .container,
    .careers .container {
        max-width: 1440px; /* コンテンツ幅1280px + padding左右80px×2 = 1440px */
    }
    
    /* MISSIONセクションの親要素（section-container-top-wrapper）の幅も1440pxに */
    .mission.section-container-top-wrapper {
        max-width: 1440px; /* コンテンツ幅1280px + padding左右80px×2 = 1440px */
    }
    
    /* FooterContentセクションのコンテンツ幅を1280pxに */
    .footer-content {
        max-width: 1440px !important; /* コンテンツ幅1280px + padding左右80px×2 = 1440px */
    }
    
    /* 下層ページのコンテンツ幅を1280pxに */
    .lower-page-hero .container,
    .all-main .container,
    main .container,
    .news .container,
    .policy-main .container,
    .policy-main .max-w1280px-wrapper .container {
        max-width: 1440px; /* コンテンツ幅1280px + padding左右80px×2 = 1440px */
    }
    
    /* /rules, /policy ページの max-w1280px-wrapper の幅を1440pxに */
    .max-w1280px-wrapper {
        max-width: 1440px !important; /* コンテンツ幅1280px + padding左右80px×2 = 1440px */
    }
    
    /* /rules, /policy ページの mt120w90-center の幅を1440pxに */
    .mt120w90-center,
    .policy-main.mt120w90-center {
        max-width: 1440px !important; /* コンテンツ幅1280px + padding左右80px×2 = 1440px */
    }
    
    /* /rules, /policy ページの max-w1280px-wrapper をより詳細度の高いセレクタで上書き */
    .policy-main .max-w1280px-wrapper,
    .mt120w90-center .max-w1280px-wrapper {
        max-width: 1440px !important; /* コンテンツ幅1280px + padding左右80px×2 = 1440px */
    }
    
    /* /news ページの news-detail の幅を1440pxに */
    .news-detail {
        max-width: 1440px !important; /* コンテンツ幅1280px + padding左右80px×2 = 1440px */
    }
    
    /* /news ページの section-header の幅を1440pxに */
    body.post-type-archive-news .lower-page-hero .section-header,
    body.single-news .lower-page-hero .section-header,
    body.taxonomy-news-cat .lower-page-hero .section-header,
    body.page-news .lower-page-hero .section-header {
        max-width: 1440px !important; /* コンテンツ幅1280px + padding左右80px×2 = 1440px */
    }
}

.head-container {
    margin: 0 auto;
    padding: 0 !important;
    position: relative;
    max-width: 1280px;
}



.section-container-top-wrapper {
    max-width: 1280px;
    padding-top: 0;
    padding-bottom: 120px; /* 背景切り替わり時：最後のコンテンツから背景の切り目まで */
    position: relative;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .section-container-top-wrapper {
        padding-bottom: 80px; /* SP時：背景切り替わり時：最後のコンテンツから背景の切り目まで */
    }
}
/* ==========================================
   ヘッダー
========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08); */
    z-index: 1000;
    padding: 20px;
}

.nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    padding-left: 8px;
    width: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        var(--skin-beige) 0%,
        var(--skin-beige) 50%,
        transparent 100%
    );
    transition: width 0.3s ease;
    display: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo img {
    height: 35px;
    width: auto;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

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

.logo-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--corporate-brown);
}

.nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    gap: 35px;
    align-items: center;
    color: var(--corporate-brown);
}

.nav-list li {
    transition: background-color 0.3s ease;
    padding: 5px 5px;
}

.nav-list li:hover {
    background-color: var(--clinical-white);
    color: var(--corporate-brown);
}

.nav-list a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #3B1700;
    position: relative;
    padding: 5px 0;
    text-align: center;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* SOLUTIONSセクション内でヘッダーの背景を透過なしでSOLUTIONSの背景色と同じにする */
.header-in-solutions {
    background: var(--corporate-brown) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* SOLUTIONSセクション内でヘッダーのメニューを白文字に（SOLUTIONSセクションと同じ色） */
.header-in-solutions .nav-list a {
    color: #ffffff !important;
    opacity: 1 !important;
}

.header-in-solutions .nav-list a:hover {
    color: #333333 !important;
    opacity: 1 !important;
}

/* SOLUTIONSセクション内でhover時の下線の色を#33333に変更 */
.header-in-solutions .nav-list a::after {
    background: linear-gradient(
        to right,
        #333333 0%,
        #333333 50%,
        transparent 100%
    ) !important;
    opacity: 1 !important;
}

.header-in-solutions .nav-list a:hover::after {
    background: linear-gradient(
        to right,
        #333333 0%,
        #333333 50%,
        transparent 100%
    ) !important;
    opacity: 1 !important;
}

/* SOLUTIONSセクション内でロゴを白に */
.header-in-solutions .logo img {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

/* SOLUTIONSセクション内でハンバーガーメニューの色を白に */
.header-in-solutions .mobile-menu-btn span {
    background: linear-gradient(
        to right,
        #ffffff 0%,
        #ffffff 50%,
        transparent 100%
    ) !important;
}

/* .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--corporate-brown);
    transition: width 0.3s ease;
    color: var(--corporate-brown);
} */

.nav-list a:hover {
    color: #3B1700;
}

.nav-list a:hover::after {
    display: block;
    width: 100%;
}

.section-title {
    /* padding-top: 84px; */
    color: var(--skin-beige-light);
    text-align: left;
    letter-spacing: 0.1em;
    font-size: clamp(32px, 8vw, 100px) !important;
    font-weight: 400;
    text-align: left;
    max-width: 1280px;
}

.reserve-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: var(--skin-beige);
    color: var(--white);
    padding: 12px 8px;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    transition: var(--transition);
    white-space: nowrap;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    writing-mode: vertical-rl;
    text-orientation: upright;
    overflow: hidden;
    max-width: 100vw;
    box-sizing: border-box;
}

.reserve-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--corporate-brown);
    transition: left 0.4s ease;
    z-index: -1;
}

.reserve-btn:hover::before {
    left: 0;
}

.reserve-btn:hover {
    color: var(--white);
}

/* SP時のクリック時背景色変更を防ぐ */
.reserve-btn:active,
.reserve-btn:focus {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

@media (max-width: 768px) {
    .reserve-btn:active,
    .reserve-btn:focus {
        background: var(--skin-beige);
        -webkit-tap-highlight-color: transparent;
    }
}

.reserve-btn .material-icons {
    font-size: 18px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    width: 44px;
    height: 44px;
    position: relative;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    background: linear-gradient(
        to right,
        var(--corporate-brown) 0%,
        var(--corporate-brown) 50%,
        transparent 100%
    );
}

.mobile-menu-btn.active span{
    background-color: initial;
    background: linear-gradient(
        to right,
        var(--clinical-white) 0%,
        var(--clinical-white) 50%,
        transparent 100%
    );
}

.mobile-menu-btn.active span::after{
    /* gap: 0; */
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    padding-left: 8px;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        var(--corporate-brown) 0%,
        var(--corporate-brown) 50%,
        transparent 100%
    );
}

.mobile-menu-btn.active span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.reservation-link {
    display: none;
}

/* ==========================================
   ヒーローセクション
========================================== */
.hero {
    height: 100svh;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.hero-slider {
    height: 100%;
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1s ease-in-out, transform 5s ease;
    object-fit: cover;
    /* background-size: cover !important; */
    background-position: center center !important;
}

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

.hero-slide.active {
    opacity: 1;
    transform: scale(1.1);
}

.hero-content {
    padding: 0 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    line-height: 1.8;
    color: var(--white);
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.5);
}

.hero-title.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.2em;
    line-height: 2;
    font-size: 2.3rem;
    display: inline-block;   /* 重要 */
    margin: 0 auto;          /* 横方向中央 */

}

/* ヒーローページネーション */
.hero-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-dot.active {
    background: rgba(255, 255, 255, 1);
    width: 4px;
    height: 4px;
}

/* ==========================================
   NEWS速報バナー
========================================== */
.news-banner-wrapper{
    position: relative;
    transition: var(--transition);
}

.news-banner-wrapper a {
    padding: 16px;
}

.news-banner-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--corporate-brown);
    transition: left 0.4s ease;
    /* z-index: -1; */
}
.news-banner-wrapper:hover::before {
    left: 0;
}

.news-banner-wrapper:hover {
    color: var(--white);
}

/* .news-banner-link {
    position: absolute;
    bottom: 30px;
    right: 100px;
    z-index: 1000;
    text-decoration: none;
    max-width: 280px;
    width: calc(100% - 60px);
    display: block;
} */

.news-banner-link {
    display: flex;
    flex-direction: column;
    align-items: left;
    background: var(--corporate-brown-light);
    color: var(--white);
    padding: 12px 8px;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    transition: var(--transition);
    position: absolute;
    bottom: 30px;
    right: 100px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    min-width: 0;
    height: auto;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
    /* opacity: 0.9; */
}

.news-banner-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--corporate-brown);
    transition: left 0.4s ease;
    z-index: -1;
}

.news-banner-link:hover::before {
    left: 0;
}

.news-banner-link:hover {
    color: var(--white);
}

.news-banner-link .material-icons {
    font-size: 18px;
}

/* .news-banner {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('<?php echo get_template_directory_uri(); ?>/images/topvisual/topvisual-001.jpg') center/cover;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/topvisual/topvisual-001.jpg');
    background-size: cover;
    background-position: center;
    padding: 30px 70px 30px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
} */

.news-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    background-color: var(--skin-beige);
}

.news-banner-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.news-banner-upper {
    display: flex;
    justify-content: space-between;
    /* align-items: center;
    margin-bottom: 8px; */
}

.news-banner-title {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 500;
}

.news-banner-arrow {
    position: static;
    right: 25px;
    top: 50%;
    transform: none;
    width: 24px;
    height: 24px;
}

/* .news .section-title {
    color: var(--skin-beige-light)
} */

.news .section-subtitle,
.news p.text-section-jp {
    color: var(--font-color);
}

/* ==========================================
   セクション共通
========================================== */
/* section {
    padding: 100px 0;
} */

/* 全セクション共通のタイトル周り余白ルール */
.section-header {
    text-align: center;
    padding-top: 160px;
    margin-bottom: 40px;
    z-index: 500;
    width: fit-content;
    max-width: 1280px;
}

/* 背景切り替わり時：最後のコンテンツから背景の切り目までの余白 */
.section-container-wrapper {
    padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
    /* SP時：セクションタイトル上の余白：120px */
    .section-header {
        padding-top: 120px;
        margin-bottom: 40px;
    }
    
    /* SP時：背景切り替わり時：最後のコンテンツから背景の切り目まで 80px */
    .section-container-wrapper {
        padding-bottom: 80px;
    }
}

.section-title {
    font-size: clamp(48px, 8vw, 100px) !important;
    font-weight: 400;
    line-height: clamp(68px, 11.2vw, 140px);
    letter-spacing: 0;
    text-align: left;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

/* h1.section-titleをh1.text-displayに変更 */
h1.text-display {
    font-size: clamp(48px, 8vw, 100px) !important;
    font-weight: 400;
    line-height: clamp(68px, 11.2vw, 140px);
    letter-spacing: 0;
    text-align: left;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
    color: var(--skin-beige-light);
}

/* h2.section-titleをh2.text-displayに変更（トップページ用） */
h2.text-display {
    font-size: clamp(48px, 8vw, 100px) !important;
    font-weight: 400;
    line-height: clamp(68px, 11.2vw, 140px);
    letter-spacing: 0;
    text-align: left;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
    color: var(--skin-beige-light);
}

.section-heading {
    font-weight: 500;
    padding: 24px 0;
    font-size: 1.4rem;
    color: var(--font-color);
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.light-brown-color {
    color: var(--skin-beige-light);
}

.light-brown-color::after {
    background: linear-gradient(
        to right,
        var(--skin-beige) 0%,
        var(--skin-beige) 50%,
        transparent 100%
    ) !important;
}

.corporate-brown-light-color {
    color: var(--corporate-brown-light);
}

/* .solutions .section-title {
    padding-top: 80px;
    z-index: 800;
} */

.overlay {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 38vh;
    /* background: rgba(59, 23, 0, 0.6); */
    z-index: 100;
    box-shadow: 0 0 20px (var(--corporate-brown).15);
    background: linear-gradient(
    to bottom,
    var(--corporate-brown) 0%,
    var(--corporate-brown) 70%,
    rgba(139, 69, 19, 0) 100%
    );
    margin-top: -80px;
    padding-top: 90px;
}

.section-header {
    position: sticky;
    top: -160px;
}

/* MISSIONセクションのsection-headerのstickyを無効化 */
.mission .section-header {
    position: static;
}

/* CONTACTページのsection-headerのstickyを無効化 */
section.contact .section-header,
#contact.contact .section-header {
    position: static !important;
}

/* NEWSページのsection-headerのstickyを無効化（Contactページと同じ位置にするため） */
.news-page-hero .section-header {
    position: static !important;
}

.section-title-h3 {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--corporate-brown);
    opacity: 0.3;
    margin-top: 103px;
    margin-bottom: 10px;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.section-subtitle {
    font-size: 32px;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: 0.03em;
    text-align: left;
    color: var(--corporate-brown);
    min-width: fit-content;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex: 1;
    position: relative;
    overflow-wrap: break-word;
}

/* p.section-subtitleをp.text-section-jpに変更 */
p.text-section-jp {
    font-size: 32px;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: 0.03em;
    text-align: left;
    color: var(--corporate-brown);
    min-width: fit-content;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex: 1;
    position: relative;
    overflow-wrap: break-word;
}

.section-subtitle::after,
p.text-section-jp::after {
    content: "";
    display: block;
    flex-grow: 1;
    height: 1px;
    margin-left: 16px;
    min-width: 0;
    background: linear-gradient(to right, #BD897E, transparent);
}

.solutions .section-subtitle,
.solutions p.text-section-jp {
    color: var(--clinical-white);
}

/* 暗い背景セクション (SOLUTIONSなど) */
.solutions .section-subtitle::after,
.solutions p.text-section-jp::after {
    background: linear-gradient(to right, #BD897E, transparent);
}

/* 店舗情報、お客様の声、プロダクト、お知らせも事業紹介と同じグラデーション */
.locations .section-subtitle::after,
.voices .section-subtitle::after,
.product .section-subtitle::after,
.news .section-subtitle::after,
.locations p.text-section-jp::after,
.voices p.text-section-jp::after,
.product p.text-section-jp::after,
.news p.text-section-jp::after {
    background: linear-gradient(to right, #BD897E, transparent);
}

/* すべてのセクションで事業紹介と同じグラデーション */
.careers .section-subtitle::after,
.careers p.text-section-jp::after {
    background: linear-gradient(to right, #BD897E, transparent);
}

/* aboutページとcareersページの特定セクションのtext-section-jpのグラデーションラインを非表示 */
.about-message-section .text-section-jp::after,
.about-methods-section .text-section-jp::after,
.about-history-section .text-section-jp::after,
.about-profile-section .text-section-jp::after,
.careers-message-section .text-section-jp::after,
.careers-benefits-section .text-section-jp::after,
.careers-environment-section .text-section-jp::after,
.careers-training-section .text-section-jp::after,
.careers-careerplan-section .text-section-jp::after,
.careers-interview-section .text-section-jp::after,
.careers-recruitment-section .text-section-jp::after,
.careers-container-wrapper .contact .text-section-jp::after {
    display: none !important;
}

/* aboutページのmessage, methods, history, profileセクションのtext-mainにcareersページのtext-captionと同じグラデーションを追加 */
.about-message-section > .container > .text-main:first-child,
.about-methods-section .methods-heading > .text-main:first-child,
.about-history-section .history-heading > .text-main:first-child,
.about-profile-section .profile-heading > .text-main:first-child {
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 26px !important;
    letter-spacing: 0.01em !important;
    color: #BD897E !important;
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    position: relative;
}

.about-message-section > .container > .text-main:first-child::after,
.about-methods-section .methods-heading > .text-main:first-child::after,
.about-history-section .history-heading > .text-main:first-child::after,
.about-profile-section .profile-heading > .text-main:first-child::after {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(to right, #BD897E, transparent);
    flex-grow: 1;
    min-width: 100px;
    max-width: 100px;
}

/* 下層ページFVの余白は全セクション共通ルールに統一 */
.lower-page-hero .section-header {
    padding-top: 120px;
    padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
    .lower-page-hero .section-header {
        padding-top: 120px;
        padding-bottom: 40px;
    }
    
    /* NEWSページのsection-headerをContactページと同じ位置に */
    .news-page-hero .section-header {
        padding-top: 80px;
    }
}

/* NEWSセクション: 事業紹介と同じグラデーション */

/* タブレット/SP時: section-subtitleのwhite-spaceを解除 */
@media screen and (max-width: 1024px) {
    .section-subtitle,
    p.text-section-jp {
        white-space: normal;
        word-break: break-word;
    }
}

.desc-title {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 30px;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.solutions .desc-title {
    color: var(--clinical-white);
}

.product .desc-title {
    color: var(--corporate-brown);
}

.section-action {
    text-align: center;
    margin-top: 60px;
    max-width: 1280px;
}

.tal {
    text-align: left;
}

/* .section-action:hover {
    cursor: pointer;
    background: linear-gradient(
        to right,
        var(--skin-beige) 0%,
        transparent 100%
    );
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
} */

/* 矢印アイコンのスタイルは.btn-moreで統一 */

.location-container {
    padding: 0 0 80px 0;
    max-width: 1280px;
    margin: 0 auto;
}

.locations-category-title {
    max-width: 1280px;
}

/* 矢印アイコンのスタイルは.btn-moreで統一 */

.reserve-link {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 4px;
    background: var(--skin-beige);
    color: var(--white);
    padding: 8px 6px;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 140px;
    min-width: 0;
    height: auto;
    opacity: 0.99;
    text-align: center;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
}

.reserve-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--corporate-brown);
    transition: left 0.4s ease;
    z-index: -1;
}

.reserve-link:hover::before {
    left: 0;
}

.reserve-link:hover {
    color: var(--white);
}

.reserve-here {
    font-size: 0.8rem;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 500;
    white-space: nowrap;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

/* SP時は.reserve-hereのwhite-spaceをnormalに変更 */
@media screen and (max-width: 768px) {
    .reserve-here {
        white-space: normal;
        overflow-wrap: break-word;
        word-break: break-word;
    }
}

.section-subtitle-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 32px;
    max-width: 1280px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

/* 下層ページのsection-headerを右端まで伸ばす */
.lower-page-hero .section-header {
    width: 100%;
    max-width: 1280px;
}

/* 下層ページのsection-subtitle-wrapperを右端まで伸ばす */
.lower-page-hero .section-subtitle-wrapper {
    max-width: 1280px;
    width: 100%;
}

/* 下層ページのtext-section-jpの横の線を右端まで伸ばす */
.lower-page-hero .section-subtitle-wrapper p.text-section-jp::after {
    flex-grow: 1; /* 親要素の幅いっぱいに伸ばす */
    width: auto;
    min-width: 0;
}
/* ボタン基本スタイル - 明るい背景用（デフォルト） */
.btn-more {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    color: #BD897E;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.2;
    padding: 6px 0;
    white-space: nowrap;
    text-decoration: none;
    border-bottom: 1px solid #BD897E;
    transition: color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
}

/* SP時は.btn-moreのwhite-spaceをnormalに変更（テキストが長い場合） */
@media screen and (max-width: 768px) {
    .btn-more {
        white-space: normal;
        overflow-wrap: break-word;
        word-break: break-word;
        max-width: 100%;
    }
}

/* hover時のグラデーション背景（明るい背景用） */
.btn-more::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        #BD897E 0%,
        transparent 100%
    );
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

@media (any-hover: hover) {
    .btn-more:hover::before {
        transform: scaleX(1);
    }
    .btn-more:hover {
        color: #ffffff;
    }
    .btn-more .material-icons {
        display: none;
        margin-left: 8px;
        transition: display 0.3s ease;
    }
    .btn-more:hover .material-icons {
        display: inline;
    }
}

/* 暗い背景セクション（SOLUTIONS等）用のスタイル */
.solutions .btn-more {
    color: #F4F1DE;
    border-bottom-color: #F4F1DE;
}

.solutions .btn-more::before {
    background: linear-gradient(
        to right,
        #F4F1DE 0%,
        transparent 100%
    );
}
.btn-more-long {
    padding-right: 40px;
    margin-left: 32px;
    width: 90%;
}

/* .verti {
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 50%;
    right: -25%;
    transform: translate(50%, -50%) rotate(90deg);
    width: 100%;
} */
/* .verti2 {
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 50%;
    right: 40%;
    transform: translate(50%, -50%) rotate(90deg);
    width: 100%;
}
.verti3 {
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 50%;
    right: 40%;
    transform: translate(50%, -50%) rotate(90deg);
    width: 100%;
}
.verti4 {
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 50%;
    right: 0%;
    transform: translate(50%, -50%) rotate(90deg);
    width: 100%;
} */

.colorandlength {
    border-bottom: 0.5px solid var(--skin-beige);
}

/* 既存の下線スタイルは削除（border-bottomで統一） */

/* ここから */



.news-item{
    position: relative;
    overflow: visible;
    color: var(--skin-beige);
}

.news-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        var(--skin-beige) 0%,
        transparent 100%
    );
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

@media (any-hover: hover) {
    .news-item:hover::before {
        transform: scaleX(1);
    }
    .news-item:hover {
        color: var(--white);
    }
}

/* news-item::afterの下線は削除（border-bottomで統一） */


/* ここまで */


.btn-more__arrow {
    display: inline-flex;
    align-items: center;
    line-height: 1;        /* ← 文字の上下余白を殺す */
}

.solutions {
    padding: 0;
    position: relative;
}

/* about-methods-sectionが表示されている時にヘッダーのメニューを白文字に */
.header-in-about-methods .nav-list a {
    color: #ffffff !important;
    opacity: 1 !important;
}

.header-in-about-methods .nav-list a:hover {
    color: #333333 !important;
    opacity: 1 !important;
}

/* about-methods-sectionが表示されている時にhover時の下線の色を#33333に変更 */
.header-in-about-methods .nav-list a::after {
    background: linear-gradient(
        to right,
        #333333 0%,
        #333333 50%,
        transparent 100%
    ) !important;
    opacity: 1 !important;
}

.header-in-about-methods .nav-list a:hover::after {
    background: linear-gradient(
        to right,
        #333333 0%,
        #333333 50%,
        transparent 100%
    ) !important;
    opacity: 1 !important;
}

/* about-methods-sectionが表示されている時にロゴを白に */
.header-in-about-methods .logo img {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

/* about-methods-sectionが表示されている時にヘッダーのハンバーガーメニューの色を白に */
.header-in-about-methods .mobile-menu-btn span {
    background: linear-gradient(
        to right,
        #ffffff 0%,
        #ffffff 50%,
        transparent 100%
    ) !important;
}

.solutions .section-header {
    padding-top: 160px;
    /* SOLUTIONSセクション内でsection-headerをstickyにする */
    position: sticky;
    top: 91px; /* ヘッダーの高さと一致（ナビ直下に密着） */
    z-index: 999;
    background: transparent !important; /* 背景を透明に。overlay が全幅で茶色背景を提供する */
    padding-top: 0; /* 20px → 0（ナビとの隙間をなくす） */
    padding-bottom: 20px; /* フェード用の余白を確保 */
    margin-bottom: 0; /* 20px → 0 */
    margin-top: 0; /* 念のため 0 を明示 */
}

@media screen and (max-width: 768px) {
    .solutions .section-header {
        padding-top: 120px;
        top: 60px; /* SP時のヘッダーの高さに合わせて調整 */
        padding-top: 15px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
}

.solutions h2 {
    padding-top: 85px;
}

/* Solutionsセクションのh2の余白を詰める */
#solutions .section-header h2.text-display {
    padding-top: 10px; /* 85px → 10px（ナビ直下に詰める最大の原因を解消） */
}

.solutions::before {
    content: '';
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 80%;
    background: linear-gradient(
        to bottom,
        var(--clinical-white) 0%,
        var(--corporate-brown) 90%,
        rgba(139, 69, 19, 0) 100%
    );
    /* z-index: 100; */
}

.slick-dots {
    bottom: 10px; /* スライダーの外側に下げる */
}

.slick-dots li button:before {
    font-size: 6px; /* ドットのサイズ */
    color: #ffffff;  /* ドットの色 */
    opacity: 0.5;   /* 通常時の透明度 */
}
.slick-dots li.slick-active button:before {
    color: #ffffff; /* アクティブなドットの色 */
    opacity: 1;    /* アクティブ時の透明度 */
}

/* ==========================================
   MISSION
========================================== */

body {
    position: relative;
    background-image: url('../images/back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 0 36px;
}
/*
.mission {
    position: relative;
    background-image: url('../images/back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
} */


/* .mission.section-container-top-wrapper {
} */

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

.mission-layout {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    grid-template-columns: 1.3fr 2.7fr;
    gap: 60px;
    /* align-items: center; */
    position: relative;
}

.mission-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-images img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.mission-right {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.mission-right .section-header {
    text-align: left;
    margin-bottom: 40px;
    width: fit-content;

}

.mission-content {
    text-align: left;
}

.mission-heading {
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 2;
    margin-bottom: 40px;
    color: var(--corporate-brown);
    letter-spacing: 0.05em;
}

.mission-text {
    margin-bottom: 40px;
}

.mission-text p {
    margin-bottom: 20px;
    line-height: 2.1;
    color: var(--font-color);
    font-size: 1rem;
    letter-spacing: 0.03em;
}

/* ==========================================
   SOLUTIONS
========================================== */
#solutions {
    background: 
        linear-gradient(rgba(59, 23, 0, 0.96), rgba(59, 23, 0, 0.96)),
        url('../images/solutions_back.jpg') center / cover fixed;
    position: relative;
    overflow: hidden;
}

/* コンテンツがテクスチャの下に隠れないようにする処理 */
#solutions > * {
    position: relative;
    z-index: 1;
}

.solutions {
    background: var(--clinical-white);
}

/* Solutionsセクション専用のoverlayスタイル（PC デフォルト） */
#solutions .overlay {
    position: sticky;
    top: 0;
    z-index: 100;
    pointer-events: none; /* 下のコンテンツをクリック可能にする */
    height: 300px;
    background:
        linear-gradient(rgba(59,23,0,0.96), rgba(59,23,0,0.96)),
        url('../images/solutions_back.jpg') center / cover fixed;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 90%, transparent 100%);
}

.solutions-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
}

.solutions-intro-title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--clinical-white);
}

.solutions-intro-text {
    line-height: 2;
    color: var(--clinical-white);
    /* max-width: 60%; */
    margin: 0 auto;
}

.solutions-grid {
    /* display: grid; */
    /* grid-template-columns: 40% 60%; */
    gap: 60px;
    position: relative;
    min-width: 0;
    box-sizing: border-box;
}

/* .solution-item {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
} */

.solution-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 80px auto;
    max-width: 1280px;
    position: relative;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}



/* .solution-images {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
} */

.solution-images {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
}


.solution-item:nth-child(even) {
    grid-template-columns: 1.2fr 1fr;
}

.solution-item:nth-child(even) .solution-image {
    order: 2;
}

.solution-grid .solution-reverse2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.solution-content {
    /* position: sticky; */
    top: 400px;
    height: fit-content;
    position: sticky;
    top: 90px;
    height: fit-content;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.solution-item:nth-child(even) .solution-content {
    order: 1;
}

.solution-item.solution-reverse {
    grid-template-columns: 1fr 1.2fr;
}

.solution-item.solution-reverse .solution-content {
    order: 1;
}

.solution-item.solution-reverse .solution-images-vertical {
    order: 2;
}

.solution-images-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.solution-images-vertical img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* border-radius: 4px; */
}

.solution-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 4px;
}

.solution-label {
    font-size: 0.85rem;
    color: var(--clinical-white);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    padding-top: 260px;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--clinical-white);
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.solution-description {
    line-height: 1.9;
    color: var(--clinical-white);
    margin-bottom: 30px;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.full-width-image {
    margin: 0;
    padding: 0;
}

.full-width-image img {
    height: 600px;
    margin: 0px 0px 0px 0px;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.of-contain {
    object-fit: contain;
    width: auto;
    height: 100%;
}

/* ==========================================
   LOCATIONS
========================================== */
.locations {
    background: var(--clinical-white);
}

/* .locations.section-container-wrapper {
    padding: 0 20px !important;
} */



.locations-category {
    margin-bottom: 80px;
}

.locations-category:last-child {
    margin-bottom: 0;
}

.locations-category-title {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin: 40px 0;
    color: var(--skin-beige);
}

.location-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    max-width: 1280px;
    margin: 0 auto;
    min-width: 0;
    box-sizing: border-box;
}

.location-grid.resort {
    grid-template-columns: repeat(1fr, 1fr);
}

.location-card {
    display: flex;
    background-color: var(--clinical-white);
    overflow: hidden;
    transition: var(--transition);
    padding: 32px;
    border: solid 1px var(--skin-beige);
    grid-template-columns: repeat(1fr, 1fr);
    width: calc((100% - 16px) / 2);
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.location-image {
    width: 100%;
}

.location-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.location-content {
    width: 100%;
    padding: 0;
    min-width: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* リゾートエリアのカード: location-contentを最下部に配置 */
.location-card-small .location-content {
    margin-top: auto;
}

/* 都市エリアのカード: location-contentをflexコンテナに */
.location-card .location-content {
    display: flex;
    flex-direction: column;
}

/* 都市エリアのカード: location-actionsを最下部に配置 */
.location-card .location-actions {
    margin-top: auto;
}

.location-name {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--corporate-brown);
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.location-address {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--font-color);
    margin-bottom: 20px;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.location-address .material-icons {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.location-description {
    line-height: 1.8;
    color: var(--font-color);
    margin-bottom: 25px;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.w100 {
    width: 100%;
}



.location-actions {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.4s ease, opacity 0.4s ease;
    flex-wrap: nowrap;
}

.tal {
    flex-direction: row;
}

.centered {
    justify-content: center;
}

/* ここから */
/*
.btn-more {
    position: relative;
    overflow: hidden;
    color: var(--skin-beige);
}

.btn-more::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        var(--skin-beige) 0%,
        transparent 100%
    );
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.btn-more:hover::before {
    transform: scaleX(1);
}

.btn-more:hover {
    color: var(--white);
    padding-left: 8px;
}

.btn-more::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        var(--skin-beige) 0%,
        var(--skin-beige) 50%,
        transparent 100%
    );
}

.btn-more .material-icons {
    display: none;
    margin-left: 8px;
}

.btn-more:hover .material-icons {
    display: inline;
}

.locations .btn-more .material-icons {
    display: none;
    margin-left: 8px;
}

.locations .btn-more:hover .material-icons {
    display: inline;
} */

/* ここまで */

/* .location-actions:hover {
    transform: translateX(-100px);
    opacity: 0.9;
} */

.btn-reserve {
    background: var(--skin-beige);
    color: var(--white);
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 1px solid var(--skin-beige);
    cursor: pointer;
    transform: translateX(0);
}

.btn-reserve:hover {
    background: var(--corporate-brown);
}

/* リゾートエリア - 小さいカード */
.location-card-small {
    display: flex;
    flex-direction: column;
    background: var(--clinical-white);
    overflow: hidden;
    transition: var(--transition);
    border: solid 1px var(--skin-beige);
    width: calc((100% - 32px) / 3);
    padding: 32px;
    box-sizing: border-box;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.location-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.location-card-small .location-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.location-name-small {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--corporate-brown);
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

/* SP時のみ表示される改行 */
.sp-only {
    display: none;
}

@media screen and (max-width: 768px) {
    .sp-only {
        display: inline;
    }
}

.location-description-small {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--font-color);
    margin-bottom: 20px;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.location-actions-small {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 10px;
}

.btn-reserve-small {
    background: var(--skin-beige);
    color: var(--white);
    padding: 8px 16px;
    /* border-radius: 4px; */
    font-size: 0.85rem;
    text-align: center;
    font-weight: 500;
    transition: var(--transition);
}

.btn-reserve-small:hover {
    background: var(--corporate-brown);
}

.btn-more-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--corporate-brown);
    font-weight: 500;
}

.bt-none {
    border-top: none;
}

.menu-reservation {
    margin: 32px 0;
}

/* ==========================================
   VOICES
========================================== */
.voices {
    background-image: url('../images/voices/AdobeStock_632764816.jpeg');
    overflow-x: hidden;
    margin: 0 auto;
}

.voices-slider-wrapper {
    overflow: hidden;
    max-width: 1280px;
    position: relative;
}

.voices-slider {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    width: fit-content;
    animation: scroll-voices 90s linear infinite;
    will-change: transform;
}

.voices-slider-wrapper:hover .voices-slider {
    animation-play-state: paused;
}

@keyframes scroll-voices {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.voices-slider::-webkit-scrollbar {
    display: none;
}

.voice-item {
    flex: 0 0 400px;
    min-width: 0;
    /* background: var(--white); */
    padding: 40px;
    /* border-radius: 8px; */
    scroll-snap-align: start;
    border: solid 1px var(--skin-beige);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 300px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
}

.voice-text {
    line-height: 1.9;
    color: var(--font-color);
    margin-bottom: 25px;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.voice-divider {
    border: none;
    border-top: 1px solid var(--skin-beige);
    margin: 15px 0;
}

.voice-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--light-gray-color);
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.voice-author {
    font-size: 0.9rem;
    color: var(--font-color);
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

/* ==========================================
   PRODUCT
========================================== */
.product {
    background-image: url('../images/back.jpg');
    /* z-index: -1; */
    position: relative;
    margin: 0 auto;
}

.product-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.product-intro-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--corporate-brown);
}

.product-intro-image {
    width: 280px;
    height: auto;
    margin: 0 auto;
    margin-bottom: 30px;
}

.product-intro-text {
    line-height: 2;
    color: var(--font-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1280px;
    min-width: 0;
    box-sizing: border-box;
}

.product-item {
    /* background: var(--clinical-white); */
    /* border-radius: 8px; */
    overflow: hidden;
    transition: var(--transition);
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* .product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
} */

.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-content {
    padding: 30px;
    min-width: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--corporate-brown);
    text-align: center;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.product-description {
    line-height: 1.8;
    color: var(--font-color);
    font-size: 0.9rem;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.product .container {
    position: static;
}

/* PRODUCTセクションのsection-headerのstickyを無効化 */
.product .section-header {
    position: static;
}

/* ==========================================
   NEWS
========================================== */
/* .news {
    background: var(--clinical-white);
} */

.news .btn-more-long::after {
    background: linear-gradient(
        to right,
        var(--skin-beige) 0%,
        var(--skin-beige) 50%,
        transparent 100%
    );
}

.news-list {
    width: 100%;
    margin: 0 auto;
    max-width: 1280px;
    min-width: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
}

.news-item {
    display: grid;
    grid-template-columns: minmax(80px, 120px) minmax(100px, 150px) 1fr;
    gap: 20px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid var(--skin-beige);
    transition: var(--transition);
    cursor: pointer;
    overflow-wrap: break-word;
    word-break: break-word;
}

.news-item:first-child {
    border-top: 1px solid var(--skin-beige);
}

.news-item:last-child {
    border-bottom: 1px solid var(--skin-beige);
}

/* .news-item:hover {
    background: rgba(0, 0, 0, 0.02);
} */

.news-date {
    font-size: 0.95rem;
    color: var(--font-color);
    letter-spacing: 0.05em;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.news-category {
    display: inline-block;
    padding: 5px 8px;
    background: transparent;
    border: 1px solid var(--skin-beige);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--skin-beige);
    text-align: center;
    width: fit-content;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    box-sizing: border-box;
}

.news-item:hover .news-category {
    color: var(--white);
}

/* .news-item h3 {
    color: var(--black);
} */

.news-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--corporate-brown);
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.mission.section-container-top-wrapper.section-container-wrapper {
    padding: 0 0 64px 0;
}

.logo-center-image img {
    margin: 0 auto;
}

.yururuka-gallery-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ==========================================
   CAREERS
========================================== */
.careers {
    background: url('../images/recruit/263A3620.jpg') center center/cover no-repeat;
    background-size: cover;
    position: relative;
    height: 100vh;
    padding: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

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

.section-title.careers-title {
    font-size: 8vw;
    padding-right: 36px;
}

.careers .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px; /* コンテンツ幅1280px + padding左右80px×2 = 1440px */
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.careers .section-header {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
}

.careers-content {
    width: 50%;
    text-align: left;
}

/* レスポンシブ対応：1280px以下で上下配置に切り替え */
@media screen and (max-width: 1280px) {
    .careers {
        height: auto;
        min-height: 100vh;
        padding: 80px 20px;
    }

    .careers .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 40px;
    }

    .careers .section-header {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 40px;
        width: 100%;
    }

    .careers-content {
        width: 100%;
        max-width: 900px;
    }
}

.careers-heading {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--white);
}

.careers-text {
    line-height: 2;
    color: var(--white);
    margin-bottom: 40px;
}

.careers .section-subtitle,
.careers p.text-section-jp {
    color: var(--white);
}

.btn-careers {
    display: inline-flex;
    align-items: left;
    gap: 8px;
    color: var(--white);
    padding: 15px 42px 15px 0;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: var(--transition);
    border-bottom: 1px solid var(--white);
}

.btn-careers:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--white);
    color: var(--skin-beige);
}

.fadein-up {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fadein-up.is-show {
    opacity: 1;
    transform: translateY(0);
}

.container .four-fr {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 24px 0;
}

.footer-content {
    display: flex;
    flex-direction: row-reverse;
    gap: 48px;
    justify-content: space-between;
    max-width: 1280px;
    box-sizing: border-box;
}

.all-main {
    /* background-color: var(--clinical-white); */
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* @media (max-width: 1024px) {
    .all-main {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
} */


/* ==========================================
   フッター
========================================== */
.footer {
    background: url('../images/back.jpg') center center/cover no-repeat;
    color: var(--white);
    padding: 60px 20px 30px 20px;
    position: relative;
    background: var(--corporate-brown);
    margin: 0 auto;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 1;
    pointer-events: none;
}

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

.footer-wrapper {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-main {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-branding {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.footer-logo {
    flex-shrink: 0;
}

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

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-info div a {
    color: var(--white);
}

.footer-address {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-tel {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 500;
}

.tel-icon {
    margin-right: 8px;
    font-size: 1.5rem;
}

.footer-nav {
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    justify-content: space-between;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.9;
    color: var(--white);
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--white);
}

.footer-contact {
    text-align: left;
    margin-bottom: 48px;
    margin-top: 48px;
    display: flex;
    align-items: center;
    /* justify-content: flex-start; */
}

.footer-contact:hover {
    padding-left: 8px;

    transition: transform 0.3s ease;
}

.footer-tel-container {
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

/* 電話番号リンクのスタイル */
a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a[href^="tel:"]:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* フッターの電話番号リンクは既存のスタイルを継承 */
.footer-tel a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
}

.footer-tel a[href^="tel:"]:hover {
    opacity: 0.8;
}

/* .btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid var(--skin-beige);
    padding: 12px 48px 12px 0;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-contact:hover {
    background: linear-gradient(
        to right,
        var(--skin-beige) 0%,
        transparent 100%
    );
    z-index: -1;
    transform: translateX(8px);
    transition: transform 0.3s ease;
} */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-legal {
    display: flex;
    gap: 20px;

}

.footer-legal a {
    font-size: 0.85rem;
    opacity: 0.8;
    transition: var(--transition);
    color: var(--white);
}

.footer-legal a:hover {
    opacity: 1;
}

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    margin-top: 48px;
}

.footer-social-link {
    vertical-align: middle;
    margin-right: 24px;
    font-size: 1.2rem;
}

.light-gray-color {
    color: var(--font-color);
}

.footer-links a {
    position: relative;
    padding-bottom: 4px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
    color: var(--white);
}

/* ==========================================
   採用ページ（CAREERS）
========================================== */

/* CAREERS HERO */
.careers-hero {
    /* background: var(--clinical-white); */
    padding: 100px 0 60px;
}

.careers-subtitle {
    font-size: 1.5rem;
    color: var(--corporate-brown);
    margin-bottom: 40px;
    font-weight: 400;
}

.careers-divider {
    width: 100%;
    height: 1px;
    background: var(--corporate-brown-light);
    border: none;
    margin: 60px 0;
}

.container .careers-catchphrase {
    font-size: 1.8rem;
    text-align: center;
    color: var(--corporate-brown);
    line-height: 2;
    margin: 80px 0;
    letter-spacing: 0.08em;
    font-weight: 400;
}

/* MESSAGE SECTION */


.message-section-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--clinical-white-light);
    text-align: left;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.message-label {
    font-size: 1.8rem;
    color: var(--corporate-brown);
    font-weight: 400;
}

.message-content-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.message-photo {
    width: 100%;
    /* height: 380px;
    object-fit: cover; */
}

.message-content-wrapper .message-photo img {
    width: 380px;
    height: 380px;
    object-fit: cover;
    display: block;
}

.message-text-box {
    padding: 40px;
}

.message-text-box .message-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--corporate-brown);
    line-height: 1.8;
    margin-bottom: 25px;
}

.message-text-box .message-text {
    font-size: 0.95rem;
    line-height: 2;
    color: var(--font-color);
    margin-bottom: 30px;
}

.message-signature {
    text-align: right;
    font-size: 0.9rem;
}

.message-full-image {
    width: 100%;
    margin-top: 60px;
}

.message-full-image img {
    width: 100%;
    height: auto;
    display: block;
}

.reserve-web {
    width: fit-content;
    margin: 0 auto;
    background: var(--skin-beige);
    padding: 12px 24px;
    color: var(--white);
    font-size: 1rem;
    margin: 12px auto;
    display: block;
}
.reserve-web:hover {
    background: var(--corporate-brown);
}

/* .btn-more.not-hover を完全に非表示 */
.btn-more.not-hover {
    display: none !important;
}

.btn-more.not-hover:hover::before {
    pointer-events: none;
    display: none;
}

.slick-dotted.slick-slider{
    margin-bottom: 20px;
}

.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media screen and (min-width: 769px){
    .logo-link.white-logo {
        display: none;
    }
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
    .location-card {
        display: block;
        width: 100%;
    }

    .nav-list.reservation-link.mobile {
        display: block !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--corporate-brown);
        z-index: 10000;
    }

    /* タブレット時、reserve-btnがフッター予約ボタンと被らないように調整 */
    .reserve-btn {
        bottom: 60px;
    }

    .nav-list.reservation-link.mobile .reserveation-link-btn {
        color: #ffffff;
    }
    
    /* SP時のフッターボタン：リンク遷移以外の挙動をすべてオフ */
    .nav-list.reservation-link.mobile .reserveation-link-btn:hover,
    .nav-list.reservation-link.mobile .reserveation-link-btn:active,
    .nav-list.reservation-link.mobile .reserveation-link-btn:focus,
    .nav-list.reservation-link.mobile .reserveation-link-btn:visited {
        background-color: transparent !important;
        background: transparent !important;
        color: #ffffff !important;
        -webkit-tap-highlight-color: transparent;
        tap-highlight-color: transparent;
        outline: none;
        text-decoration: none;
    }

    .logo-link.white-logo {
        display: block;
    }

    .location-grid {
        display: block;
    }

    .location-card-small {
        width: 100%;
    }

    .message-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .message-photo {
        max-width: 380px;
        margin: 0 auto;
        width: 100%;
    }
    
    .message-content-wrapper .message-photo img {
        width: 100%;
        max-width: 380px;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .mobile-menu-btn{
        display: block;
    }

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        position: relative;
    }

    .mobile-menu-btn span {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .mobile-menu-btn span:nth-child(1) {
        top: 14px;
    }

    .mobile-menu-btn span:nth-child(2) {
        top: 26px;
    }

    .mobile-menu-btn.active span {
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(100vh);
        background: var(--corporate-brown);
        backdrop-filter: blur(10px);
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        justify-content: start;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .nav-list li {
        /* border-bottom: 1px solid var(--white); */
        width: 100%;
        padding-bottom: 12px;
    }

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

    .nav-list a {
        font-size: 1rem;
        padding: 10px 0;
        color: #3B1700;
        display: block;
        text-decoration: none;
    }

    .nav-list a::after {
        width: 0;
        transition: width 0.3s ease;
        display: none;
    }

    .nav-list a:hover {
        color: #3B1700;
    }

    .nav-list a:hover::after {
        display: block;
        width: 100%;
    }

    /* SP時のハンバーガーメニューのテキストを白文字に、グラデーション下線を追加 */
    .nav.active .nav-list a {
        color: #ffffff !important;
        position: relative;
    }

    .nav.active .nav-list a::after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 70%;
        height: 1px;
        background: linear-gradient(to right, #ffffff 0%, #ffffff 50%, transparent 100%);
        display: block;
    }

    .nav.active .nav-list a:hover {
        color: #ffffff !important;
    }

    .nav.active .nav-list a:hover::after {
        background: linear-gradient(to right, #ffffff 0%, #ffffff 50%, transparent 100%);
    }

    /* .reservation-link {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 100%;
} */

    /* 通常のナビゲーション内の予約リンクを非表示（フッターの.mobileは除外） */
    .nav .reservation-link:not(.mobile) {
        display: none;
    }

    .reserveation-link-btn {
        display: block;
        padding: 12px;
        width: 100%;
        color: #ffffff;
        text-align: center;
        text-decoration: none;
    }
    .nav-list .reserveation-link-btn:hover {
        background: var(--clinical-white);
        color: var(--corporate-brown);
    }
    
    /* SP時のクリック時背景色変更を防ぐ */
    .nav-list .reserveation-link-btn:active,
    .nav-list .reserveation-link-btn:focus {
        background-color: transparent !important;
        -webkit-tap-highlight-color: transparent;
    }
    .location-card {
        flex-direction: column;
        margin: 20px 0;
    }

    .location-image {
        width: 100%;
        height: auto;
    }

    .location-content {
        width: 100%;
    }

    .footer-wrapper {
        flex-direction: column;
    }

    .mission-right {
        position: static;
    }

    .solutions::before {
        display: none;
    }

    /* グラデーションでコンテンツが隠れる問題を修正 */
    .overlay {
        z-index: 1;
        height: 30vh;
    }

    .solution-content {
        position: relative;
        z-index: 2;
    }

    .section-header {
        position: sticky;
        top: 90px;
        margin-top: 0px;
        z-index: 2;
    }

    .solutions .section-header {
        position: sticky;
        top: 90px;
        z-index: 999; /* 2 → 999（overlay: 100 より上にする） */
    }

    /* Solutionsセクション専用のoverlayスタイル（SP用） */
    #solutions .overlay {
        height: 250px;
        background:
            linear-gradient(rgba(59,23,0,0.96), rgba(59,23,0,0.96)),
            url('../images/solutions_back.jpg') center / cover fixed;
        -webkit-mask-image: linear-gradient(to bottom, black 0%, black 87%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 0%, black 87%, transparent 100%);
    }

    /* 予約ボタンの2重表示を防ぐ */
    .location-actions-small {
        display: none;
    }
}

.proposal-description-title {
    font-size: 18px;
    line-height: 2;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .header {
        background: none;
    }

    .container .careers-catchphrase {
        margin: 0;
    }

    .overlay {
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        height: 36vh;
        z-index: 1;
        background: linear-gradient(
            to bottom,
            var(--corporate-brown) 0%,
            var(--corporate-brown) 70%,
            rgba(139, 69, 19, 0) 100%
        );
        margin-top: 0;
        padding-top: 90px;
    }

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

    .solutions .section-header {
        position: sticky;
        top: -80px;
        z-index: 999; /* 2 → 999（overlay: 100 より上にする） */
        margin-top: 0;
    }

    .about-catchphrase-section {
        padding: 0;
    }

    /* .section-container-top-wrapper {
        padding: 0;
    } */


    .location-card {
        padding: 16px;
        margin-top: 16px;
    }

    .location-card-small {
        margin-top: 16px;
        padding: 16px;
    }

    .product-intro-image {
        width: 140px;
    }

    .resort-image {
        width: 100%;
        height: 140px;
    }




    .hero {
        padding-top: 50vh;
    }

    .hero-slider {
        width: 80%;
        margin: 0 auto;
    }

    .hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

    .hero-slide {
        width: 100%;
    }

    .hero-title {
        text-shadow: none;
    }

    .careers-subtitle {
        font-size: 1.2rem;
    }

    .container .careers-catchphrase {
        font-size: 3.5vw;
        margin: 24px 0;
    }

    .message-section-title {
        font-size: 2rem;
    }

    .message-text-box {
        padding: 30px;
    }

    .message-text-box .message-title {
        font-size: 1.1rem;
    }

    .message-text-box .message-text {
        font-size: 0.9rem;
    }

    .section-subtitle,
    p.text-section-jp {
        font-size: 1.1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

.material-icons {
    font-size: inherit;
}

.c-white {
    color: var(--white);
    padding-top: 4px;
}
.btn-more.c-white:hover {
    color: var(--corporate-brown);
    background: linear-gradient(
        to right,
        var(--white) 0%,
        transparent 100%
    );
}





/* ここから */
.btn-contact {
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding-bottom: 4px;
}

.btn-contact:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        var(--skin-beige) 0%,
        transparent 100%
    );
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.btn-contact:hover::before {
    transform: scaleX(1);
}

.btn-contact:hover {
    color: var(--white);
    padding-left: 8px;
}

.btn-contact::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        var(--skin-beige) 0%,
        var(--skin-beige) 50%,
        transparent 100%
    );
}
/* ここまで */

.hidden-fields-container {
    display: none;
}

.container.salon-feature {
    margin: 0 !important;
}

/* ==========================================
   レスポンシブ対応
========================================== */
@media screen and (max-width: 1024px) {
    /* .mission-layout {
        display: flex;
        flex-direction: column-reverse;

    } */

    .solution-item:nth-child(even) .solution-image {
        order: 1;
    }

    .solution-item:nth-child(even) .solution-content {
        order: 2;
    }

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

    .location-grid.resort {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .location-grid.resort .location-card-small {
        width: calc((100% - 16px) / 2);
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 840px) {
    .location-grid.resort .location-card-small {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        background-image: url('../images/about/about-anpiel/AdobeStock_632764816.png') ;
    }

    .hero-content {
        top: -25svh;
    }

    .hero-slide {
        height: 40svh;
    }

    .hero-title.vertical-text {
        font-size: 1.3rem;
        color: var(--corporate-brown);
    }

    .news-banner-link {
        width: 100%;
        max-width: 100%;
        position: static;
        background: rgba(59, 23, 0, 0.6);
        color: var(--white);
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .news-banner-link .material-icons {
        color: var(--white);
    }

    .news-banner-link::before {
        background: rgba(59, 23, 0, 1);
    }

    .news-banner-link:hover {
        color: var(--white);
    }

    .news-banner-link:hover .material-icons {
        color: var(--white);
    }

    .location-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        object-fit: cover;
    }

    .location-card-small .location-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        object-fit: cover;
    }

    /* .fade内の画像（箱根ゆとわなど）にもアスペクト比を適用 */
    .location-image .fade img,
    .location-image .fade div img {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        object-fit: cover;
    }
    .solution-item {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        margin-bottom: 60px;
    }

    /* SP時：全てのsolution-itemで説明→画像の順に（PC時の設定を上書き） */
    .solution-item .solution-content {
        order: 1 !important;
        margin-bottom: 40px;
    }

    .solution-item .solution-images-vertical,
    .solution-item .solution-image {
        order: 2 !important;
        margin-top: 0;
    }

    /* PC時のnth-child設定をSP時で上書き */
    .solution-item:nth-child(even) .solution-content {
        order: 1 !important;
    }

    .solution-item:nth-child(even) .solution-images-vertical,
    .solution-item:nth-child(even) .solution-image {
        order: 2 !important;
    }

    /* VIEW MOREが被らないように、最後のsolution-itemのマージンを調整 */
    .solution-item:last-child {
        margin-bottom: 0;
    }

    .solution-label {
        padding-top: 0px;
    }

    /* VIEW MOREボタンの後に余白を追加 */
    .solution-content .btn-more {
        margin-bottom: 30px;
    }

    .mission-layout {
        display: flex;
        flex-direction: column-reverse;
    }

    .hero-title {
        font-size: 2rem;
    }

    .change-order {
    flex-direction: column;
    }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(100vh);
        background: var(--corporate-brown);
        backdrop-filter: blur(10px);
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav.active {
        display: flex;
        justify-content: start;
        flex-direction: column;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        margin-top: 20px;
    }

    .nav-list li {
        /* border-bottom: 1px solid var(--white); */
        width: 100%;
        padding-bottom: 12px;
    }

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

    .nav-list a {
        font-size: 1rem;
        padding: 10px 0;
        color: #3B1700;
        text-decoration: none;
    }

    .nav-list a::after {
        width: 0;
        transition: width 0.3s ease;
        display: none;
    }

    .nav-list a:hover {
        color: #3B1700;
    }

    .nav-list a:hover::after {
        display: block;
        width: 100%;
    }

    /* SP時のハンバーガーメニューのテキストを白文字に、グラデーション下線を追加 */
    .nav.active .nav-list a {
        color: #ffffff !important;
        position: relative;
    }

    .nav.active .nav-list a::after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 70%;
        height: 1px;
        background: linear-gradient(to right, #ffffff 0%, #ffffff 50%, transparent 100%);
        display: block;
    }

    .nav.active .nav-list a:hover {
        color: #ffffff !important;
    }

    .nav.active .nav-list a:hover::after {
        background: linear-gradient(to right, #ffffff 0%, #ffffff 50%, transparent 100%);
    }

    /* .reservation-link {
        position: absolute;;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0 auto;
        display: block;
    } */

    .mobile-menu-btn {
        display: flex;
    }

    .reserve-btn {
        display: none;
    }

    .news-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .location-grid.resort {
        grid-template-columns: 1fr;
    }

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

    .voice-item {
        flex: 0 0 300px;
        padding: 30px;
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-bottom: 80px;
    }

    .footer-copyright {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 480px) {
    section {
        padding: 48px 0;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        height: 100vh;
        min-height: 400px;
    }

    .salon-info-table tr {
        padding: 0 !important;
    }

    .recruitment-wrapper2 {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .mission-heading {
        font-size: 1.4rem;
    }

    .solutions-intro-title {
        font-size: 1.5rem;
    }

    /* .solution-item {
        padding: 25px;

    } */

    /* .location-content {
        padding: 20px;
    } */

    .news-banner-link {
        font-size: 0.9rem;
    }

    .container .four-fr {
    display: block;
}

/* ==========================================
   トップ以外ページ 共通セクション余白
========================================== */
body:not(.home):not(.front-page) section {
    padding: 0;

}

body:not(.home):not(.front-page) > section:first-of-type,
body:not(.home):not(.front-page) main > section:first-of-type {
    padding-top: 149px;
}

/* .max-w1280px-wrapper のグローバル設定は削除（メディアクエリ内で個別に設定） */



.container.salon-info-wrapper.w100per {
    display: block !important;
    width: 100%;
}

@media screen and (max-width: 1024px) {
    /* フォントスタイル定義に基づき、!importantを削除してフォントスタイル定義を優先 */
    /* p, h2, h3, h4, h5, h6 のスタイルはフォントスタイル定義クラスまたはデフォルトスタイルを使用 */
}
}

.all-main.solutions-main {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* .mission.section-container-top-wrapper.section-container-wrapper {
    padding: 0 20px 64px 20px !important;
} */

.pad-top-bottom-120px {
    padding: 120px 0 0 0!important;
}

.pad-top-64px {
    padding-top: 64px!important;
}

/* @media screen and (min-width: 481px) and (max-width: 1024px) {
    .pad-top-64px {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
} */

/* .pad-top64-left20 {
    padding: 64px 0 0 20px !important;
}

.pad-top-200px {
    padding: 200px 0 0 0!important;
} */

/* ==========================================
   トップページ 指定セクション横余白
========================================== */
body.home .mission,
body.home .solutions,
body.home .locations,
body.home .voices,
body.home .product,
body.home .news,
body.home .careers,
body.front-page .mission,
body.front-page .solutions,
body.front-page .locations,
body.front-page .voices,
body.front-page .product,
body.front-page .news,
body.front-page .careers {
    padding-left: 80px !important;
    padding-right: 80px !important;
}

/* @media screen and (min-width: 481px) and (max-width: 1024px) {
    body.home .mission,
    body.home .solutions,
    body.home .locations,
    body.home .voices,
    body.home .product,
    body.home .news,
    body.home .careers,
    body.front-page .mission,
    body.front-page .solutions,
    body.front-page .locations,
    body.front-page .voices,
    body.front-page .product,
    body.front-page .news,
    body.front-page .careers {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

/* トップページのお客様の声セクションのsection-headerのpadding-bottom調整 */
/* PC：0px */
body.home .voices .section-header,
body.front-page .voices .section-header {
    padding-bottom: 0;
}

/* タブレット：padding-bottom: 240px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    body.home .voices .section-header,
    body.front-page .voices .section-header {
        padding-bottom: 240px;
    }
}

/* SP：padding-bottom: 20px */
@media screen and (max-width: 768px) {
    body.home .voices .section-header,
    body.front-page .voices .section-header {
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 480px) {
    body.home .mission,
    body.home .solutions,
    body.home .locations,
    body.home .voices,
    body.home .product,
    body.home .news,
    body.home .careers,
    body.front-page .mission,
    body.front-page .solutions,
    body.front-page .locations,
    body.front-page .voices,
    body.front-page .product,
    body.front-page .news,
    body.front-page .careers {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (min-width: 481px) and (max-width: 1024px) {
    .padding-correct {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

@media screen and (min-width: 480px) {
    .all-main {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (min-width: 481px) and (max-width: 1024px)  {
    .all-main {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

@media screen and (min-width: 1025px) {
    .all-main {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }
}

@media screen and (min-width: 481px) and (max-width: 1024px)  {
    .footer-content{
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

@media screen and (min-width: 1025px) {
    .footer-content {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }
}

@media screen and (min-width: 481px) and (max-width: 1024px)  {
    .policy-main.mt120w90-center{
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

@media screen and (min-width: 1025px) {
    .policy-main.mt120w90-center{
        padding-left: 80px !important;
        padding-right: 80px !important;
    }
}

/* SP時のトップページでhover時の挙動を無効化 
@media screen and (max-width: 768px) {
    body.home *:hover,
    body.front-page *:hover {
        transform: none !important;
        box-shadow: none !important;
        background: inherit !important;
        color: inherit !important;
        opacity: inherit !important;
        padding-left: inherit !important;
        padding-right: inherit !important;
    }
    
    body.home .btn-more:hover,
    body.front-page .btn-more:hover {
        color: inherit !important;
        padding-left: inherit !important;
    }
    
    body.home .btn-more:hover::before,
    body.front-page .btn-more:hover::before {
        transform: none !important;
    }
    
    body.home .btn-more:hover .material-icons,
    body.front-page .btn-more:hover .material-icons {
        display: none !important;
    }
    
    body.home .location-card:hover,
    body.front-page .location-card:hover,
    body.home .location-card-small:hover,
    body.front-page .location-card-small:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    
    body.home .news-item:hover,
    body.front-page .news-item:hover {
        transform: none !important;
        color: inherit !important;
    }
    
    body.home .news-item:hover::before,
    body.front-page .news-item:hover::before {
        transform: none !important;
    }
    
    body.home .news-banner-link:hover,
    body.front-page .news-banner-link:hover {
        color: inherit !important;
    }
    
    body.home .news-banner-link:hover::before,
    body.front-page .news-banner-link:hover::before {
        left: -100% !important;
    }
    
    body.home .reserve-btn:hover,
    body.front-page .reserve-btn:hover {
        color: inherit !important;
    }
    
    body.home .reserve-btn:hover::before,
    body.front-page .reserve-btn:hover::before {
        left: -100% !important;
    }
    
    body.home .btn-reserve:hover,
    body.front-page .btn-reserve:hover,
    body.home .btn-reserve-small:hover,
    body.front-page .btn-reserve-small:hover {
        background: inherit !important;
    }
    
    body.home .footer-links a:hover,
    body.front-page .footer-links a:hover {
        opacity: inherit !important;
        color: inherit !important;
    }
    
    body.home .footer-links a:hover::after,
    body.front-page .footer-links a:hover::after {
        width: 0 !important;
    }
    
    body.home .footer-contact:hover,
    body.front-page .footer-contact:hover {
        padding-left: inherit !important;
    }
    
    body.home .btn-contact:hover,
    body.front-page .btn-contact:hover {
        color: inherit !important;
        padding-left: inherit !important;
    }
    
    body.home .btn-contact:hover::before,
    body.front-page .btn-contact:hover::before {
        transform: none !important;
    }
}
*/




/* ============================================
   Ampeal Font Style Definitions (NEW / 強制適用版)
   ※既存のスタイルに負けないように !important を付与
============================================ */
/* --- PC / Default --- */
.text-display { font-family: 'Shippori Mincho', serif !important; font-size: 100px !important; font-weight: 400 !important; line-height: 140px !important; letter-spacing: 0 !important; color:var(--skin-beige-light);}
.text-section-jp { font-family: 'Shippori Mincho', serif !important; font-size: 32px !important; font-weight: 400 !important; line-height: 42px !important; letter-spacing: 0.03em !important; }
.text-hero-lead { font-family: 'Shippori Mincho', serif !important; font-size: 32px !important; font-weight: 600 !important; line-height: 42px !important; letter-spacing: 0.02em !important; }
.text-title { font-family: 'Shippori Mincho', serif !important; font-size: 28px !important; font-weight: 600 !important; line-height: 38px !important; letter-spacing: 0.02em !important; }
.text-card-title { font-family: 'Shippori Mincho', serif !important; font-size: 20px !important; font-weight: 600 !important; line-height: 28px !important; letter-spacing: 0.02em !important; }
.text-main { font-family: 'Shippori Mincho', serif !important; font-size: 16px !important; font-weight: 500 !important; line-height: 26px !important; letter-spacing: 0.01em !important; }
.text-caption { font-family: 'Shippori Mincho', serif !important; font-size: 14px !important; font-weight: 400 !important; line-height: 22px !important; letter-spacing: 0.01em !important; }
.text-link { font-family: 'Shippori Mincho', serif !important; font-size: 12px !important; font-weight: 400 !important; line-height: 20px !important; letter-spacing: 0.01em !important; }

/* --- タブレット --- */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .text-display { font-size: 64px !important; line-height: 90px !important; }
  .text-section-jp { font-size: 30px !important; line-height: 38px !important; }
  .text-hero-lead { font-size: 30px !important; line-height: 40px !important; }
  .text-title { font-size: 26px !important; line-height: 34px !important; }
  .text-card-title { font-size: 20px !important; line-height: 28px !important; }
  .text-main { font-size: 15px !important; line-height: 24px !important; }
  .text-caption { font-size: 14px !important; font-weight: 400 !important; line-height: 21px !important; }
  .text-link { font-size: 12px !important; line-height: 18px !important; }
}

/* --- SP --- */
@media screen and (max-width: 768px) {
  .text-display { font-size: 48px !important; line-height: 68px !important; }
  .text-section-jp { font-size: 28px !important; line-height: 34px !important; }
  .text-hero-lead { font-size: 28px !important; line-height: 38px !important; }
  .text-title { font-size: 24px !important; line-height: 30px !important; }
  .text-card-title { font-size: 20px !important; line-height: 28px !important; }
  .text-main { font-size: 14px !important; line-height: 22px !important; }
  .text-caption { font-size: 14px !important; font-weight: 500 !important; line-height: 21px !important; }
  .text-link { font-size: 12px !important; line-height: 16px !important; }
}
/* ============================================ 

.text-button {
    font-family: 'Shippori Mincho’, serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.07em;
    } 

    */

    .section-brown {
  position: relative;
  background-color: #3B1700;
  overflow: hidden;
}

.section-brown::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/background_image.jpg');
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.3;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}

/* コンテンツはテクスチャの上に配置 */
.section-brown > * {
  position: relative;
  z-index: 1;
}

/* ----------------------------------------
   下層ページ共通 タイトル下グラデーションライン
   対象: .lower-page-hero .section-header を持つすべての下層ページ
   ---------------------------------------- */
.lower-page-hero .section-header::after {
  display: none; /* 下線をカット */
}