/*
Theme Name: fukugi_theme
Author: Crossroad Co., Ltd.
*/
@charset "utf-8";

:root {
    --color-salt-white: #f9f7f2;
    --color-logo-yellow: #ebc11b;
    --color-primary-text: #1a1111;
    --color-deep-accent: #6a5c4d;
    --color-utility-grey: #a54559;
    --color-coral-sand: #e8e2d6;
    --bg-salt-white: #f9f7f2;
    --accent-red: #910000;

    --serif-font: 'Noto Serif JP', serif;
    --letter-spacing-lg: 0.2em;
    --letter-spacing-md: 0.1em;
    --letter-spacing-sm: 0.05em;

    --header-height: 70px;
    --transition-slow: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-medium: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-fast: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--serif-font);
    color: var(--color-primary-text);
    background-color: var(--bg-salt-white);
    line-height: 1.8;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* プレースホルダー画像用のスタイル */
.img-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #ddd;
    color: var(--color-utility-grey);
    font-size: 0.85rem;
    font-family: monospace;
    letter-spacing: 0.05em;
}

/* SPのみ表示 */
.sp-only {
    display: inline;
}

/* =============================================
   HEADER
   ============================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background-color: var(--color-logo-yellow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

/* スクロール時のヘッダースタイル */
header.is-scrolled {
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 16px;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- ハンバーガーメニュー --- */
.menu-trigger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 1001;
}

.menu-trigger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: var(--color-primary-text);
    transition: transform var(--transition-fast),
        opacity var(--transition-fast);
}

.menu-trigger span:nth-child(1) {
    transform: translateY(-4px);
}

.menu-trigger span:nth-child(3) {
    transform: translateY(4px);
}

/* アクティブ時のハンバーガーアニメーション */
.menu-trigger.is-active span:nth-child(1) {
    transform: translateY(1.5px) rotate(45deg);
}

.menu-trigger.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-trigger.is-active span:nth-child(3) {
    transform: translateY(-1.5px) rotate(-45deg);
}

/* --- ロゴ (中央配置) --- */
.header-logo {
    font-size: 0;
    line-height: 1;
    margin-bottom: 0;
}
.header-logo a {
    display: block;
}

.header-logo img {
    height: auto;
    width: 152px;
    object-fit: contain;
}

@media(max-width:767px){
    html[lang="en"] .header-logo img{
        max-width: 120px;
    }
}
@media(min-width:600px){
    .header-logo{
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .header-logo img{
        width: 192px;
    }
}
/* --- CTA ボタン (右端) --- */
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background-color: var(--accent-red);
    color: var(--color-salt-white);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: var(--letter-spacing-sm);
    border: none;
    text-decoration: none;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.header-cta:hover {
    background-color: var(--color-coral-sand);
    color: var(--color-primary-text);
    transform: translateY(-1px);
}
html[lang="en"]{
    overflow-x:hidden;
}
@media(max-width:767px){
    html[lang="en"] .header-cta{
        max-width: 150px;
    }
}
/* --- コンテンツ内汎用CTAボタン (他セクションでも使い回す用) --- */
.btn-content-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 64px;
    background-color: var(--accent-red);
    color: var(--color-salt-white);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: var(--letter-spacing-md);
    border: none;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.btn-content-cta:hover {
    background-color: var(--bg-salt-white);
    color: var(--color-primary-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* =============================================
   DRAWER NAVIGATION
   ============================================= */
#drawer-nav {
    position: fixed;
    top: 0;
    left: -110%;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background-color: #6a3906;
    z-index: 999;
    transition: left var(--transition-medium);
    overflow-y: auto;
}

#drawer-nav.is-open {
    left: 0;
}

.drawer-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: calc(var(--header-height) + 32px) 32px 32px;
}

.drawer-inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-inner li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-inner a {
    display: block;
    padding: 18px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    letter-spacing: var(--letter-spacing-md);
    transition: color var(--transition-fast),
        padding-left var(--transition-fast);
}

.drawer-inner a:hover {
    color: var(--color-logo-yellow);
    padding-left: 8px;
}

.drawer-footer {
    margin-top: auto;
    padding-top: 40px;
    text-align: center;
}

.drawer-logo {
    height: 50px;
    width: auto;
    opacity: 0.4;
    margin: 0 auto;
}

/* オーバーレイ (背景を暗くする) */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast),
        visibility var(--transition-fast);
}

.drawer-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* body スクロール固定用 */
body.drawer-open {
    overflow: hidden;
}

/* =============================================
   SWIPER HERO SECTION
   ============================================= */
.lp-hero-swiper {
    position: relative;
    width: 100%;
    background-color: #111;
    padding-top: var(--header-height);
    padding-bottom: 120px;
}
.hero-thumbs .swiper-wrapper {
    transition-timing-function: linear !important;
}
.hero-main {
    width: 100%;
    height: 50vh;
    height: 50dvh;
    min-height: 300px;
}

.hero-main .swiper-slide picture,.hero-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* サムネイル部分 */
.hero-thumbs {
    width: 100%;
    height: 100px;
    /* サムネイルの高さ */
    background-color: #111;
    padding: 10px 0;
    box-sizing: border-box;
}

.hero-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s;
}

.hero-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-bottom: 3px solid var(--color-logo-yellow);
}

.hero-thumbs .swiper-slide picture,.hero-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* メインスライダー上のテキストオーバーレイ */
.hero-copy-overlay {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 0 24px;
    pointer-events: none;
}

.hero-en-sub {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.25em;
    margin-bottom: 16px;
    font-weight: 300;
}

.hero-main-copy {
    font-size: clamp(1.6rem, 6vw, 3rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.7;
    letter-spacing: var(--letter-spacing-lg);
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}

/* スクロールインジケーター */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.scroll-indicator span {
    display: inline-block;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 50px;
    font-size: 0.91rem;
    /* 14.5px 相当 */
    font-weight: 500;
}

/* 枠線（背景）になる線 */
.scroll-indicator span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* 動く線 */
.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5px;
    height: 15px;
    background-color: #fff;
    animation: scrollLineDrop 1.8s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    z-index: 2;
}

@keyframes scrollLineDrop {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 25px);
        opacity: 0;
    }
}
@media(min-width:992px){
    .hero-main{
        height: 65vh;
        height: 65dvh;
    }
}
/* --- Main Catch Copy Area --- */
.hero-catch-wrap {
    padding: 80px 0 60px;
    background-color: #fff;
    overflow: hidden;
}

.hero-catch-inner {
    position: relative;
    display: inline-block;
    /* 幅を文字に合わせる（デコ配置の基準） */
    text-align: left;
}

.hero-catch-text {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.2em;
    color: var(--color-primary-text);
    position: relative;
    z-index: 2;
    margin: 0;
    display: inline-block;
}

.hero-catch-deco {
    position: absolute;
    right: -80px;
    bottom: -40px;
    width: clamp(100px, 15vw, 160px);
    z-index: 1;
    opacity: 0.9;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-catch-wrap {
        padding: 60px 0 40px;
    }

    .hero-catch-inner {
        width: 100%;
    }

    .hero-catch-deco {
        right: 0;
        bottom: -30px;
        width: 80px;
    }
}

@media(min-width:992px) {
    .hero-catch-deco {
        right: -170px;
        bottom: -60px;
    }
    html[lang="en"] .hero-catch-deco{
        right:0;
    }
}

/* =============================================
   INTRODUCTION SECTION
   ============================================= */
.lp-intro {
    padding: 20px 0 80px;
    background-color: #fff;
}

.intro-header {
    text-align: left;
    margin-bottom: 30px;
    /* 40pxから微減 */
}

.intro-spec-item dt,
.intro-spec-item dd {
    display: inline;
}

/* 価格強調 */
.price-val {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.price-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary-text);
}

.intro-en {
    display: block;
    font-size: 14.5px;
    color: var(--color-deep-accent);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.intro-title {
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 500;
    letter-spacing: var(--letter-spacing-md);
    margin-bottom: 0;
    position: relative;
    display: table;
    line-height: 1.5;
    padding-right: 30px;
}

.intro-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-logo-yellow);
}

.intro-image {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.intro-card-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.intro-card {
    background-color: var(--color-salt-white);
    padding: 40px 24px;
    border-radius: 2px;
}

.intro-specs {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 30px;
}

.intro-spec-item {
    margin-bottom: 12px;
}

.intro-spec-item:last-child {
    margin-bottom: 0;
}

.intro-spec-item dt {
    width: 100px;
    font-weight: 700;
    color: var(--color-deep-accent);
    font-size: 14.5px;
}

.intro-spec-item dd {
    width: calc(100% - 100px);
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.intro-spec-item dd .note {
    font-size: 14.5px;
    font-weight: 400;
    color: var(--color-utility-grey);
    margin-left: 8px;
}

/* 吹き出しと猫イラスト */
.intro-cat-illustration {
    position: relative;
    display: inline-block;
    /* コンテナの幅を中身に合わせる */
    text-align: center;
    max-width: 100%; /* 親要素からはみ出さないように */
}

.intro-cat-illustration .fukidashi-wrap {
    margin-left: 50px;
    position: relative;
    z-index: 2;
}

.fukidashi-img {
    display: inline-block;
    width: 100%;
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}
.fukidashi-img.langen,.fukidashi-img.langtw,.fukidashi-img.langcn {
  display: none;
}
html[lang^="en"] .fukidashi-img.langjp, html[lang="zh-CN"] .fukidashi-img.langjp, html[lang="zh-TW"] .fukidashi-img.langjp{
  display: none;
}
html[lang^="en"] .fukidashi-img.langen {
  display: inline-block;
}
html[lang="zh-CN"] .fukidashi-img.langcn {
  display: inline-block;
}
html[lang="zh-TW"] .fukidashi-img.langtw {
  display: inline-block;
}
.intro-cat-illustration .cat-illust-wrap {
    position: absolute;
    bottom: -20px;
    left: -10px;
    z-index: 1;
}

.intro-cat-illustration .cat-illust-wrap img {
    width: 80px;
}

/* 猫イラストのアニメーション */
.illust-katakata {
    animation: katakata 2.5s infinite;
    transform-origin: bottom center;
}

@keyframes katakata {
    0% {
        transform: rotate(0deg);
    }

    5% {
        transform: rotate(5deg);
    }

    10% {
        transform: rotate(-5deg);
    }

    15% {
        transform: rotate(4deg);
    }

    20% {
        transform: rotate(-4deg);
    }

    25% {
        transform: rotate(3deg);
    }

    30% {
        transform: rotate(-3deg);
    }

    35% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.intro-desc {
    font-size: 16px;
    line-height: 2;
    color: var(--color-deep-accent);
    text-align: justify;
}
html[lang="en"] .intro-desc{
    text-align:left;
}

@media(min-width:768px) {
    .intro-card {
        padding: 40px;
    }

    .intro-cat-illustration .fukidashi-wrap {
        margin-left: 100px;
    }

    .intro-cat-illustration .cat-illust-wrap img {
        width: 90px;
        bottom: -30px;
    }
}

/* =============================================
   COMMON SECTION STYLES
   ============================================= */
section {
    padding: 80px 0;
}

.section-en {
    display: block;
    font-size: 0.75rem;
    color: var(--color-deep-accent);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 400;
}

.section-heading {
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 500;
    letter-spacing: var(--letter-spacing-md);
    margin-bottom: 40px;
    position: relative;
    display: block;
    text-align: left;
}
.section-h-en{
    margin-left:20px;
    font-size:1rem;
}
.section-heading::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    transform: none;
    width: 100%;
    height: 4px;
    background-color: var(--color-logo-yellow);
}

.section-heading-wrap {
    position: relative;
    display: inline-block;
}

.heading-deco {
    position: absolute;
    pointer-events: none;
}

.starsand-deco {
    width: 50px;
    top: -20px;
    right: -15px;
    opacity: 0.8;
}

.btn-primary {
    display: inline-block;
    background-color: var(--color-logo-yellow);
    color: var(--color-primary-text);
    padding: 18px 30px;
    font-size: 0.9rem;
    border-radius: 0;
    transition: 0.4s;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: var(--letter-spacing-md);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-primary-text);
    color: var(--bg-salt-white);
}

@media(min-width:768px) {
    .starsand-deco {
        width: 70px;
        top: -30px;
    }
}

/* =============================================
   EXPERIENCE FLOW SECTION
   ============================================= */
.lp-experience {
    background-color: var(--color-salt-white);
}

.lp-experience .section-heading {
    padding-right: 50px;
}

.flow-timeline {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
    justify-content: center;
}

.flow-item {
    background: transparent;
    padding: 0;
    box-shadow: none;
    position: relative;
    border-radius: 0;
    width: 100%;
    /* Default Mobile */
    display: flex;
    flex-direction: column;
}

.flow-item__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
}

.flow-deco-cat {
    position: absolute;
    width: 70px;
    height: auto;
    right: 0;
    top: -20px;
    z-index: 2;
}

.flow-item__number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary-text);
    background-color: var(--color-logo-yellow);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    border: none;
    line-height: 1;
}

.flow-item__title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.5;
    text-align: left;
}

.flow-item__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    background-color: #eee;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.flow-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.notice-box {
    margin-top: 16px;
    background-color: rgba(232, 226, 214, 0.6);
    /* coral-sand + transparency */
    padding: 16px;
    border-left: 2px solid var(--color-deep-accent);
}

.notice-title {
    font-weight: 700;
    color: var(--color-deep-accent);
    margin-bottom: 8px;
}

.notice-box p {
    margin: 0;
    line-height: 1.6;
    color: var(--color-primary-text);
}

.flow-connector {
    display: none;
}

@media (min-width: 768px) {
    .lp-experience .section-heading{
        padding-right: 100px;
    }
    .flow-item {
        width: calc(50% - 12px);
    }

    .flow-item.item3 .flow-item__header,.flow-item.item4 .flow-item__header {
        min-height:115px;
    }
}

@media (min-width: 992px) {
    .flow-timeline {
        gap: 40px 60px;
    }

    .flow-item {
        width: calc(50% - 30px);
        max-width: 400px;
        flex: none;
    }

    .flow-item__header {
        min-height: 58px;
    }
    .flow-item.item3 .flow-item__header,.flow-item.item4 .flow-item__header {
        min-height:87px;
    }

    .flow-item__number {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
    }

    .flow-deco-cat {
        width: 80px;
        top: -10px;
    }
}

/* =============================================
   CONDITIONS & SAFETY SECTION
   ============================================= */
.lp-safety {
    padding: 80px 0;
    background-color: #fff;
}

.safety-box {
    background-color: var(--color-salt-white);
    border: 1px solid rgba(166, 124, 109, 0.2);
    padding: 60px 40px 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.safety-heading {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.safety-deco {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 60px;
    opacity: 0.7;
    pointer-events: none;
}

.safety-block {
    margin-bottom: 32px;
}

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

.safety-sub-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-deep-accent);
    margin-bottom: 12px;
}

.safety-block p {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--color-primary-text);
    /* ベースの文字カラーに変更 */
    margin-bottom: 8px;
}

.safety-caution {
    color: #d9534f !important;
    font-weight: 500;
}

.safety-policy-link a {
    text-decoration: underline;
    color: var(--color-primary-text);
}

@media(min-width:768px) {
    .safety-deco {
        width: 80px;
        right: auto;
        left: 30px;
    }
}

/* =============================================
   FAQ SECTION
   ============================================= */
.lp-faq {
    background-color: var(--color-salt-white);
}

.shisa-deco {
    width: 60px;
    top: -30px;
    right: -80px;
    opacity: 0.8;
}

@media(min-width:768px) {
    .shisa-deco {
        width: 80px;
        top: -40px;
        right: -110px;
    }
}

.faq-list {
    margin-top: 20px;
}

.faq-more-btn-wrap {
    text-align: center;
    margin: 40px 0;
}

.btn-faq-more {
    display: inline-block;
    padding: 16px 48px;
    background-color: #6a3906;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-faq-more:hover {
    background-color: var(--color-logo-yellow);
    color: var(--color-primary-text);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.faq-hidden-container {
    opacity: 1;
}

.faq-accordion {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-accordion:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color var(--transition-fast);
}

.faq-accordion__q-mark {
    color: var(--color-logo-yellow);
    font-weight: 700;
    margin-right: 12px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-accordion__question {
    flex-grow: 1;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-primary-text);
    padding-right: 20px;
}

.faq-accordion__icon {
    position: relative;
    width: 16px;
    height: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

.faq-accordion__icon::before,
.faq-accordion__icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-utility-grey);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-accordion__icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
}

.faq-accordion__icon::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
}

.faq-accordion__trigger.is-open .faq-accordion__icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-accordion__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        padding 0.4s ease;
}

.faq-accordion__panel.is-open {
    max-height: 1000px;
    padding-bottom: 24px;
}

.faq-accordion__panel p {
    font-size: 0.95rem;
    color: var(--color-primary-text);
    padding-left: 28px;
    line-height: 1.8;
}

.faq-accordion__panel a {
    color: var(--color-utility-grey);
    text-decoration: underline;
}

.faq-accordion__panel a:hover {
    color: var(--color-logo-yellow);
}

/* =============================================
   ACCESS SECTION
   ============================================= */
.lp-about-taketomi {
    padding: 80px 0 60px;
    background-color: #fff;
    overflow: hidden;
}
.lp-about-taketomi .section-heading{
    padding-right: 55px;
}
.lp-about-taketomi .starsand-deco{
    right: -15px!important;
}
.lp-access {
    background-color: var(--color-salt-white);
    padding: 80px 0;
    position: relative;
    z-index: 1;
}
.about-taketomi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Mobile / Default Grid (Single Column) --- */
.about-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

/* Order: Title -> Visuals -> Body */
.about-title-area {
    text-align: left;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-visual-area {
    position: relative;
    width: 100%;
    margin-bottom: 32px;
}

.about-body-area {
    text-align: center;
}

.about-title {
    font-family: "Zen Old Mincho", "Times New Roman", serif;
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--color-primary-text);
    font-weight: 500;
}

.about-tree-icon {
    height: auto;
    position: absolute;
    display: block;
    opacity: 0.8;
    top: -40px;
    right: -20px;
    margin: 0;
    width: 70px;
}
.about-title-area {
    display: block;
    text-align: left;
    position: relative;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.about-img-main {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
    /* スマホ（〜500px）では隙間をあける */
}

.about-img-sub {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (min-width: 500px) and (max-width: 991px) {
    .about-img-main {
        margin-bottom: 0;
        width: 70%;
        margin: 0 auto;
    }

    .about-img-sub {
        width: 56%;
        margin: -10% auto 0;
        border: 6px solid #fff;
        left: 20%;
    }

    .about-title-area {
        margin-top: 40px;
    }
}
@media(min-width:768px){
    .lp-about-taketomi .section-heading{
        padding-right: 100px;
    }
}

.about-body-text {
    font-size: 1rem;
    line-height: 2;
    text-align: justify;
    color: var(--color-utility-grey);
    margin-bottom: 16px;
}
html[lang="en"] .about-body-text{
    text-align: left;
}

/* --- Desktop Layout (Editorial Grid) 992px~ --- */
@media (min-width: 992px) {
    .lp-about-taketomi {
        padding: 120px 0 60px;
    }

    .about-grid-layout {
        grid-template-columns: 1fr 1.1fr;
        gap:0 40px;
        align-items: start;
    }

    /* Visuals: Left Column, Spanning all rows */
    .about-visual-area {
        grid-column: 1;
        grid-row: 1 / span 2;
        margin-bottom: 0;
        padding-right: 40px;
    }

    /* Title: Right Column */
    .about-title-area {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
        margin-bottom: 0px;
        padding-top: 40px;
        margin-left: 0;
    }

    /* Body: Right Column */
    .about-body-area {
        grid-column: 2;
        grid-row: 2;
        text-align: left;
        padding-top: 40px;
    }

    .about-title {
        font-size: clamp(2rem, 2.5vw, 2.4rem);
        margin-bottom: 0;
        line-height: 1.5;
    }

    .about-tree-icon {
        top: -40px;
        right: 0px;
        width: 110px;
    }

    .about-img-main {
        width: 85%;
        margin-bottom: 0;
    }

    .about-img-sub {
        position: absolute;
        width: 50%;
        bottom: -60px;
        right: 0;
        margin: 0;
        border: 8px solid #fff;
        left: auto;
        /* 重ねレイアウトのリセット */
    }

    .about-body-text {
        font-size: 1.05rem;
        line-height: 2.2;
        letter-spacing: 0.05em;
        margin-bottom: 32px;
    }
}

/* =============================================
   INSTAGRAM FEED SECTION (Placeholder)
   ============================================= */
.lp-instagram {
    padding-top: 0;
    background-color: var(--bg-salt-white);
}

.instagram-feed-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.access-sub-heading-wrap {
    text-align: center;
    margin-bottom: 30px;
}

.access-sub-heading {
    font-family: "Zen Old Mincho", "Times New Roman", serif;
    font-size: 1.4rem;
    color: var(--color-primary-text);
    margin-bottom: 12px;
}

.text-start-lg {
    text-align: center;
}

.access-sub-desc {
    font-size: 0.95rem;
    color: var(--color-utility-grey);
}

/* --- Access Flow (New Structure) --- */
.access-flow .flow-step {
    background: #fff;
    padding: 40px 0;
    height: 100%;
    position: relative;
    overflow: visible;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-primary-text);
    border-bottom: 2px solid var(--color-logo-yellow);
    display: inline-block;
    padding-bottom: 4px;
    position: relative;
    z-index: 2;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--color-brand-brown);
    font-weight: bold;
}

/* 船・花の画像 */
.access-deco-ship {
    position: absolute;
    width: 100px;
    height: auto;
    z-index: 3;
    top: -20px;
    right: 0;
}

.access-deco-flower {
    position: absolute;
    width: 60px;
    height: auto;
    z-index: 3;
    top: -20px;
    right: 10px;
}

/* アクセスマップ画像 */
.access-map-img {
    max-width: 100%;
    width: 300px;
    height: auto;
    object-fit: contain;
}

/* --- Workshop Access --- */
.section-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 24px;
}

.fukugi-access.section-title-wrap {
    gap: 0;
}

/* 水牛アイコン */
.section-deco-buffalo {
    width: 70px;
    height: auto;
}

.access-workshop-info {
    text-align: center;
    margin-bottom: 24px;
}

.workshop-image-wrap {
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.workshop-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.workshop-address-box {
    background: #fff;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.workshop-address {
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
}

.workshop-travel-modes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mode-icon {
    display: inline-block;
    background-color: var(--color-logo-yellow);
    color: var(--color-primary-text);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    min-width: 80px;
    text-align: center;
    margin-bottom: 0.8rem;
}

.mode p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.google-map-wrap,
.google-map {
    width: 100%;
    height: 100%;
    min-height: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.google-map iframe {
    height: 300px;
    width: 100%;
}

/* 自転車画像 */
.bicycle-deco-wrap {
    text-align: right;
    margin-top: 0;
    position: relative;
    z-index: 2;
    pointer-events: none;
    top: -30px;
    right: 30px;
    margin-bottom: -30px;
}

.access-deco-bicycle {
    width: 110px;
    height: auto;
    display: inline-block;
}


/* --- Desktop Layout (Access) --- */
@media (min-width: 992px) {
    .lp-access {
        padding: 100px 0;
    }

    .text-start-lg {
        text-align: left;
    }

    .section-title-wrap {
        justify-content: flex-start;
    }

    .access-deco-ship {
        width: 120px;
        right: 20px;
    }

    .access-deco-flower {
        right: 20px;
    }

    .section-deco-buffalo {
        width: 70px;
    }

    .bicycle-deco-wrap {
        margin-top: 20px;
        margin-right: -30px;
    }

    .access-deco-bicycle {
        width: 140px;
    }

    .google-map iframe {
        height: 480px;
    }
}

/* =============================================
   CONTACT SECTION
   ============================================= */
/* contact_toggle.css */
.lp-contact .text-link{
    text-decoration: underline;
}
.lp-contact .text-link:hover{
    opacity:0.8;
    text-decoration: none;
}
.contact-hidden-container {
    opacity: 0;
    transition: opacity 0.4s ease;
    display: none;
}
.contact-hidden-container.is-open {
    display: block;
    animation: fadeInForm 0.4s ease forwards;
}

@keyframes fadeInForm {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.lp-contact {
    background-color: #fff;
}

.yarabo-deco {
    width: 60px;
    top: -30px;
    right: -80px;
    opacity: 0.8;
}

.contact-lead {
    margin-bottom: 40px;
    font-size: 0.95rem;
    color: var(--color-utility-grey);
}

.contact-phone {
    text-align: center;
    margin-bottom: 56px;
    padding: 32px;
    background-color: var(--color-salt-white);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-phone__label {
    display: block;
    font-size: 0.7rem;
    margin-bottom: 8px;
    color: var(--color-deep-accent);
}

.contact-phone__number {
    display: block;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-family: sans-serif;
    margin-bottom: 8px;
    color: var(--color-primary-text);
}

.contact-phone__hours {
    display: block;
    font-size: 0.85rem;
    color: var(--color-utility-grey);
}

.contact-form-wrap {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form__row {
    margin-bottom: 24px;
}

.contact-form__label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form__required {
    display: inline-block;
    background-color: var(--color-logo-yellow);
    color: var(--color-primary-text);
    font-size: 14.5px;
    padding: 2px 6px;
    margin-left: 8px;
    border-radius: 2px;
    vertical-align: middle;
}

.contact-form__input,
.contact-form__textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 0;
    background-color: #fcfcfc;
    font-size: 1rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    font-family: inherit;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: var(--color-deep-accent);
    background-color: #fff;
}

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

.contact-form__submit {
    display: inline-block;
    background-color: var(--color-primary-text);
    color: #fff;
    border: none;
    padding: 16px 64px;
    font-size: 1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.contact-form__submit:hover {
    background-color: var(--color-utility-grey);
}

.contact-form__submit:active {
    transform: translateY(1px);
}

/* --- Access & Contact Page Specifics --- */

/* Access Flow */
.access-flow {
    border-top: 1px solid var(--color-coral-sand);
}

.step-label {
    display: inline-block;
    font-family: var(--serif-font);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-logo-yellow);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.flow-step .step-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--color-coral-sand);
    font-family: serif;
}
@media(min-width:768px){
    .access-flow{
        border-bottom: 1px solid var(--color-coral-sand);
    }
}
/* Address & Map */
.address {
    font-size: 1.2rem;
    line-height: 1.8;
}

.google-map {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Contact Area */
.phone-display {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-coral-sand);
    margin-bottom: 40px;
}

.phone-label {
    display: block;
    font-size: 0.9rem;
    color: var(--utility-grey);
    margin-bottom: 0.5rem;
}

.phone-number {
    font-family: var(--serif-font);
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary-text);
    text-decoration: none;
    letter-spacing: 0.05em;
}

/* Form Styling */
.form-container {
    background-color: var(--bg-salt-white);
    padding: 40px;
    border: 1px solid var(--color-coral-sand);
}

.form-row {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.required {
    color: #a67c6d;
    font-size: 0.75rem;
    margin-left: 5px;
    font-weight: normal;
}

.form-control {
    border: 1px solid var(--color-coral-sand);
    border-radius: 0;
    padding: 12px 15px;
    background-color: #fff;
    font-family: sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--color-logo-yellow);
    box-shadow: none;
    outline: none;
}

.btn-submit {
    padding: 15px 50px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

@media (max-width: 991px) {
    .flow-step {
        padding: 30px 20px;
    }
    .flow-step.step2{
        padding-bottom: 10px;
    }
    .flow-step.step1,.lp-about-taketomi .container{
        border-bottom: 1px solid var(--color-coral-sand);
    }
    .lp-about-taketomi .container{
        padding-bottom: 30px;
    }
}
@media(max-width:767px){
    .form-container {
        padding: 30px 20px;
    }

    .phone-number {
        font-size: 1.5rem;
    }
}
/* =============================================
   FOOTER
   ============================================= */
#site-footer {
    background-color: #ebca1b;
    color: var(--color-primary-text);
    padding: 50px 25px 40px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 50px;
}
.footer-logo p{
    font-weight: 500;
    font-size: 22px;
}

.footer-logo img {
    height: 80px;
    /* Logo size adjustment */
    width: auto;
    margin: 0 auto;
}

/* Basic Information */
.footer-info {
    margin-bottom: 50px;
}

.footer-info-title {
    font-family: var(--serif-font);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-primary-text);
}

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

.footer-info-list li {
    margin-bottom: 3px;
    /* User Request */
    font-size: 0.9rem;
    font-weight: 500;
}

/* Related Facilities (Boxed) */
.footer-related {
    border: 1px solid var(--color-primary-text);
    padding: 30px;
    margin-bottom: 50px;
    max-width: 500px;
    /* margin-left/right removed to respect flex alignment */
}

.footer-related-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-related-links li {
    margin-bottom: 10px;
}

.footer-related-links li:last-child {
    margin-bottom: 0;
}

.footer-related-links li a {
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s;
    font-size: 0.95rem;
}

.footer-related-links li a:hover {
    opacity: 0.7;
    text-decoration: underline;
}
.ftr_insta{
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}
.ftr_insta i{
    font-size: 110%;
    margin-right: 5px;
}
.ftr_insta:hover{
    opacity: 0.8;
}

/* Legal Links */
.footer-bottom {
    font-size: 14px;
}

.footer-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.footer-legal-links li a {
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-legal-links li a:hover {
    text-decoration: underline;
}

.copyright {
    display: block;
    font-size: 0.75rem;
    color: var(--color-primary-text);
    opacity: 0.8;
    margin-top: 40px;
    /* footer-bottomとの間隔 */
}

@media (min-width: 768px) {
    .footer-legal-links {
        flex-wrap: wrap;
        flex-direction: row;
        gap: 10px 30px;
    }
}
/* =============================================
   RESPONSIVE: Tablet (768px~)
   ============================================= */
@media (min-width: 768px) {
    :root {
        --header-height: 80px;
    }

    .header-inner {
        padding: 0 32px;
    }

    .header-cta {
        padding: 10px 24px;
        font-size: 0.8rem;
    }

    .hero-copy-overlay {
        padding: 0 48px;
        bottom: 18%;
    }

    .hero-en-sub {
        font-size: 0.8rem;
    }

    .hero-thumbs {
        padding: 16px 32px;
    }

    .hero-thumbs .swiper-slide {
        width: calc((100% - 16px) / 3);
        max-width: 200px;
    }

    .sp-only {
        display: none;
    }
}

/* =============================================
   RESPONSIVE: Desktop (992px~)
   ============================================= */
@media (min-width: 992px) {
    :root {
        --header-height: 85px;
    }

    .header-inner {
        padding: 0 48px;
    }

    .google-map-wrap {
        height: 100%;
        min-height: 400px;
        /* PCでは高さを確保 */
    }

    .google-map-wrap iframe {
        width: 100%;
        height: 100%;
        min-height: 400px;
    }

    .header-logo img {
        width: 240px;
    }

    .header-cta {
        padding: 12px 32px;
        font-size: 0.85rem;
        letter-spacing: var(--letter-spacing-md);
    }

    .menu-trigger span {
        width: 28px;
    }

    .hero-copy-overlay {
        padding: 0 80px;
        bottom: 20%;
    }

    .hero-en-sub {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .hero-thumbs {
        padding: 20px 80px;
    }

    .hero-thumbs .swiper-wrapper {
        gap: 12px;
    }

    .hero-thumbs .swiper-slide {
        width: calc((100% - 48px) / 5);
        max-width: 220px;
    }

    /* Introduction Section adjustments */
    .intro-header {
        text-align: left;
        /* 左寄せに変更 */
    }

    .intro-title::after {
        left: 0;
        transform: none;
    }
}

/* =============================================
   RESPONSIVE: Wide Desktop (1400px~)
   ============================================= */
@media (min-width: 1400px) {
    .hero-thumbs {
        padding: 24px 120px;
    }

    .hero-thumbs .swiper-slide {
        max-width: 260px;
    }
}

/* メディアクエリ内での個別調整 */
@media (max-width: 768px) {
    .intro-spec-item dt {
        width: 100%;
        margin-bottom: 4px;
    }

    .intro-spec-item dd {
        width: 100%;
    }

    .hero-main {
        height: 60vh;
    }
}

/* =============================================
   Animations (Imported from Main Site)
   ============================================= */
[class*="animate-"] {
    opacity: 0;
    transition: 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-up {
    transform: translateY(40px);
}

.animate-left {
    transform: translateX(40px);
}

.animate-right {
    transform: translateX(-40px);
}

.animate-scale {
    transform: scale(0.95);
}

.is-visible {
    opacity: 1;
    transform: none;
}

/* =============================================
   POLICY PAGE (キャンセルポリシー)
   ============================================= */
.policy-section {
    padding: 80px 0;
    /* ヘッダースペースはページヘッダーが担うため縮小 */
    background-color: var(--bg-salt-white);
}

.policy-block {
    background-color: #fff;
    padding: 40px 48px;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.policy-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary-text);
    border-left: 4px solid var(--color-logo-yellow);
    padding-left: 16px;
    letter-spacing: var(--letter-spacing-sm);
    line-height: 1.4;
}

.policy-text {
    font-size: 16px;
    line-height: 2;
    color: var(--color-primary-text);
    text-align: justify;
    margin-bottom: 0;
}
html[lang="en"] .policy-text{
    text-align: left;
}

.policy-fee-box {
    background-color: var(--color-salt-white);
    border: 1px solid var(--color-coral-sand);
    padding: 32px;
    border-radius: 2px;
}

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

.policy-list li {
    display: flex;
    flex-wrap: wrap;
    padding: 16px 0;
    border-bottom: 1px dashed rgba(106, 92, 77, 0.2);
    font-size: 16px;
    line-height: 1.8;
}

.policy-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.policy-list li:first-child {
    padding-top: 0;
}

.fee-label {
    font-weight: 700;
    width: 250px;
    color: var(--color-deep-accent);
}

.fee-val {
    flex: 1;
    min-width: 200px;
}

/* モバイル用調整 */
@media (max-width: 768px) {
    .policy-section {
        padding: 60px 0;
    }

    .policy-block {
        padding: 32px 24px;
    }

    .fee-label {
        width: 100%;
        margin-bottom: 4px;
    }

    .policy-fee-box {
        padding: 24px;
    }
}

/* =============================================
   PAGE HEADER (下層ページ)
   ============================================= */
.page-header {
    position: relative;
    padding: 160px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    overflow: hidden;
    color: var(--color-primary-text);
    background-image: url('img/hero_slide/hero-09.jpg');
}

/* 背景写真に白っぽい半透明のオーバーレイをかける */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(249, 247, 242, 0.75);
    /* var(--bg-salt-white)ベースの半透明 */
    z-index: 1;
}

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

.page-slug {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--color-deep-accent);
    margin-bottom: 16px;
    text-transform: uppercase;
    font-family: sans-serif;
}

.page-title {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    font-weight: 400;
    letter-spacing: 0.2em;
    margin: 0;
    display: inline-block;
    color: var(--color-primary-text);
}

/* 各ページの背景画像指定 */
.page-header-cancel-policy {
    background-image: url('img/hero_slide/hero-01.jpg');
}

.page-header-legal {
    background-image: url('img/hero_slide/hero-02.jpg');
}

.page-header-privacy-policy {
    background-image: url('img/hero_slide/hero-07.jpg');
}

.page-header-terms {
    background-image: url('img/hero_slide/hero-05.jpg');
}

.page-header-sns {
    background-image: url('img/hero_slide/hero-09.jpg');
}

@media(max-width:599px) {
    .page-title {
        letter-spacing: 0.1em;
        font-weight: 500;
    }
}

@media(max-width:499px) {
    .page-header-legal .page-title {
        font-size: 24px;
    }
}

@media(min-width:600px) {
    .page-slug {
        font-size: 1rem;
    }
}

/* =============================================
   LEGAL PAGE (特定商取引法に基づく表記)
   ============================================= */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
}

.legal-table th,
.legal-table td {
    padding: 24px;
    border-bottom: 1px dashed rgba(106, 92, 77, 0.2);
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
}

.legal-table th {
    width: 250px;
    font-weight: 700;
    color: var(--color-deep-accent);
    vertical-align: top;
}

.legal-table td {
    color: var(--color-primary-text);
}

.legal-table tr:first-child th,
.legal-table tr:first-child td {
    border-top: 2px solid var(--color-logo-yellow);
}

.legal-table tr:last-child th,
.legal-table tr:last-child td {
    border-bottom: 2px solid var(--color-coral-sand);
}

/* モバイル用調整 (特定商取引法ページ) */
@media (max-width: 768px) {

    .legal-table th,
    .legal-table td {
        display: block;
        width: 100%;
        padding: 16px 0;
    }

    .legal-table th {
        border-bottom: none;
        padding-bottom: 4px;
    }

    .legal-table td {
        padding-top: 0;
    }

    .legal-table tr:first-child th,
    .legal-table tr:first-child td {
        border-top: none;
    }

    .legal-table tr:first-child th {
        padding-top: 24px;
    }

    .legal-table tr:last-child th {
        border-bottom: none;
    }

    .legal-table {
        border-top: 2px solid var(--color-logo-yellow);
    }
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb-container {
    background-color: var(--bg-salt-white);
    padding: 12px 20px;
    border-bottom: 1px solid rgba(165, 69, 89, 0.1);
}

.breadcrumb-nav {
    /* Bootstrapのcontainerと同じように動作させる */
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .breadcrumb-nav {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .breadcrumb-nav {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .breadcrumb-nav {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .breadcrumb-nav {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .breadcrumb-nav {
        max-width: 1320px;
    }
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.8rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--color-utility-grey);
    letter-spacing: 0.05em;
}

.breadcrumb-item a {
    color: var(--color-deep-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--color-logo-yellow);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\203A';
    /* 右向きの山括弧 › */
    margin: 0 10px;
    color: var(--color-utility-grey);
    font-size: 1.1rem;
    line-height: 1;
}

.breadcrumb-item.active {
    color: var(--color-primary-text);
}

/* モバイル用調整 (ページヘッダー) */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 80px;
    }
}

/* Image animation */
.illust-katakata {
    display: inline-block;
    transform-origin: bottom center;
    animation: katakata-motion 3s ease-in-out infinite;
}

@keyframes katakata-motion {
    0% {
        transform: rotate(0deg);
    }

    4% {
        transform: rotate(5deg);
    }

    8% {
        transform: rotate(-5deg);
    }

    12% {
        transform: rotate(5deg);
    }

    16% {
        transform: rotate(-5deg);
    }

    20% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* 左右にゆらゆら揺れるアニメーション */
.illust-yurayura {
    display: inline-block;
    animation: yurayura-motion 4s ease-in-out infinite;
}

@keyframes yurayura-motion {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(12px);
    }
}
/*======================
 Gtranslate plugin
======================*/
.gtrans_float{
    position: fixed;
    bottom:20px;
    right: 20px;
    z-index: 2;
}
@media(min-width:992px){
    html[lang="en"] .header-logo{
        left: 40%;
    }
}