/*
Theme Name: Kumamoto Kaitori Theme
Theme URI: https://kumamotokaitoricom/
Description: Original theme for Kumamoto Kaitori based on the new LP design.
Author: Aida Design
Version: 1.0.0
Text Domain: kumamotokaitori
*/

/* LP専用スタイルシート */

:root {
    --color-main: #22382c; /* ダークグリーン */
    --color-main-light: #3a5a48;
    --color-accent: #b09062; /* ゴールド */
    --color-accent-light: #d4c1a5;
    --color-cta: #e67e22; /* オレンジ */
    --color-cta-deep: #d35400;
    --color-line: #06c755; /* LINEグリーン */
    --color-bg-light: #f9f8f6;
    --color-text: #2c2c2c;
    --color-white: #fff;
    --font-serif: 'Noto Serif JP', serif;
    --font-sans: 'Zen Kaku Gothic New', sans-serif;
    --container-width: 1100px;
    --texture-washi: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    line-height: 1.8;
    background-color: var(--color-white);
    background-image: var(--texture-washi);
    -webkit-font-smoothing: antialiased;
}

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.bg-light {
    background-color: var(--color-bg-light);
}

.highlight {
    color: var(--color-accent);
}

.red {
    color: #c0392b;
    font-weight: bold;
}

/* Animations */
@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/* Buttons Premium */
.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 30px;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-25deg);
    left: -100%;
    animation: shine 4s infinite;
}

.btn-orange {
    background: linear-gradient(135deg, var(--color-cta) 0%, var(--color-cta-deep) 100%);
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-green {
    background: linear-gradient(135deg, var(--color-line) 0%, #05a546 100%);
    color: var(--color-white);
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    filter: brightness(1.1);
}

/* Header */
.lp-header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(176, 144, 98, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
}

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

/* Header Global Navigation */
.header-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-nav ul li a {
    display: block;
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-main);
    text-decoration: none;
    border-radius: 6px;
    position: relative;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.header-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--color-cta);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.header-nav ul li a:hover {
    color: var(--color-cta);
}

.header-nav ul li a:hover::after {
    transform: scaleX(1);
}

.header-nav ul li a.nav-btn {
    background-color: var(--color-cta);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    margin-left: 10px;
    font-weight: bold;
}

.header-nav ul li a.nav-btn::after {
    display: none; /* 下線アニメーションを消す */
}

.header-nav ul li a.nav-btn:hover {
    background-color: #e56000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px; /* ボタンが2つになるので、少し間隔を調整 */
}

.header-btns {
    display: flex;
    gap: 12px;
}

.tel-info {
    text-align: right;
}

.tel-number {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-family: var(--font-serif); /* 明朝体を採用 */
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-main);
    text-decoration: none;
    line-height: 1;
    transition: color 0.3s ease;
}

.tel-number i {
    font-size: 1.2rem;
    color: var(--color-accent);
}

.tel-number:hover {
    color: var(--color-accent);
}

.reception {
    font-size: 0.7rem;
    color: #888;
    letter-spacing: 0.05em;
    margin-top: 5px;
    display: block;
}

.btn-header {
    padding: 12px 25px;
    font-size: 0.95rem;
    border-radius: 50px; /* ピル形状で柔らかさを出す */
}

/* Hero Section */
/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
    background-color: #f8f8f8;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(100deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 30%, rgba(255,255,255,0.7) 55%, rgba(255,255,255,0) 85%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 700px;
    padding: 20px 0;
}

.pill-style-brown {
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: #fff;
    font-weight: bold;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #5c4b3a 0%, #3d3126 100%);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    padding: 10px 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.25;
    margin-bottom: 30px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.hero-title span.text-darkred {
    position: relative;
    display: inline-block;
}

.hero-title span.text-darkred::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(163, 29, 29, 0.1);
    z-index: -1;
}

.text-darkred {
    color: #a31d1d;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.8);
}

.hero-lead {
    font-size: 1.3rem;
    margin-bottom: 50px;
    font-weight: 500;
    line-height: 1.8;
    color: #444;
}

.hero-points {
    margin-top: -20px;
    max-width: 550px;
}

.hero-point-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

@media (max-width: 768px) {
    .hero-points {
        margin-top: 20px;
        max-width: 100%;
    }
}

/* Section Common */
.section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.3;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    margin: 20px auto 0;
}

.section-title .small {
    font-size: 1.1rem;
    font-family: var(--font-sans);
    font-weight: bold;
    color: var(--color-accent);
    letter-spacing: 0.1em;
}

.section-sub {
    text-align: center;
    color: var(--color-accent);
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.section-lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* 背景デコレーション */
section:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--color-accent-light) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
    pointer-events: none;
}

/* Troubles Section */
.troubles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.trouble-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.trouble-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-accent);
    box-sizing: border-box;
    opacity: 0;
    transform: scale(1.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
    border-radius: 12px;
}

.trouble-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.trouble-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.card-icon {
    width: 100%; /* 横幅いっぱい */
    max-width: 180px;
    height: auto;
    margin: 0 auto 25px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    /* 丸い縁とボーダーを削除 */
}

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

/* パステル背景を削除し、より洗練されたスタイルに */
/* 個別のボーダー設定を削除 */
.trouble-card:nth-child(1) .card-icon { border: none; }
.trouble-card:nth-child(2) .card-icon { border: none; }
.trouble-card:nth-child(3) .card-icon { border: none; }
.trouble-card:nth-child(4) .card-icon { border: none; }

.trouble-card:hover .card-icon {
    transform: translateY(-10px) rotate(3deg);
    border-color: var(--color-accent);
}

.card-text {
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: bold;
    color: var(--color-main);
}

.troubles-solution-box {
    background: linear-gradient(135deg, #1a2a21 0%, #0d1a13 100%);
    padding: 60px 40px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    position: relative;
    border: 1px solid rgba(176, 144, 98, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.solution-header {
    margin-bottom: 40px;
}

.solution-label {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.solution-title {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    line-height: 1.4;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3つの枠の横幅を揃える */
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center; /* 中央寄せ */
    gap: 12px;
    font-size: 1.1rem; /* 少し小さくして1行に収まりやすく */
    background: rgba(255,255,255,0.08);
    padding: 15px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    height: 100%; /* 高さを揃える */
}

.feature-icon {
    color: var(--color-accent);
    font-size: 1.6rem;
}

.feature-text {
    text-align: left;
    line-height: 1.4;
}

.feature-text strong {
    color: var(--color-accent);
}

.solution-banner {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid var(--color-main);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    position: relative;
}

.solution-banner img {
    width: 100%;
    max-width: 300px;
    mix-blend-mode: multiply;
}

.banner-badge {
    background: #e74c3c;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
    margin-right: 30px;
}

.banner-text .sub {
    display: block;
    font-size: 1.2rem;
}

.banner-text .main {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-main);
    margin-right: 20px;
}

.highlight-tag {
    background: var(--color-accent);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.9rem;
    border-radius: 4px;
}

.contact-points {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.contact-points li {
    font-size: 1.1rem;
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Guide Button */
.reasons-guide {
    text-align: center;
    margin-top: 50px;
}

.guide-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0a2e1d;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid #0a2e1d;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.guide-btn:hover {
    background: #fff;
    color: #0a2e1d;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.guide-btn i {
    font-size: 1.5rem;
}

.reason-card {
    background: #fff;
    padding: 40px 30px;
    border: 1px solid #eee;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.reason-num {
    font-size: 3rem;
    font-weight: bold;
    color: rgba(176, 144, 98, 0.2);
    position: absolute;
    top: 20px;
    left: 20px;
    line-height: 1;
}

.reason-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.reason-image {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.reason-text {
    font-size: 0.95rem;
    text-align: left;
}

.reason-footer {
    max-width: 900px;
    margin: 40px auto 0;
}

.footer-box {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(to right, #fffaf0, #ffffff);
    padding: 40px;
    border: 1px solid rgba(176, 144, 98, 0.3);
    border-left: 5px solid var(--color-accent);
    border-radius: 4px; /* あえて少し角を立たせてフォーマルに */
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.box-icon {
    font-size: 3.5rem;
    color: var(--color-accent);
    flex-shrink: 0;
    opacity: 0.9;
}

.promise-main {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--color-main);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.promise-sub {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
}

/* Methods Comparison Section */
.methods-comparison-container {
    background: #fff;
    border-radius: 20px;
    padding: 60px 40px;
    margin: 60px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #f0ede9;
}

.comparison-header {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 50px;
    color: var(--color-main);
}

.text-green { color: #2e7d32; font-weight: bold; }
.text-orange { color: #e67e22; font-weight: bold; }

.comparison-main-box {
    display: flex;
    flex-direction: column; /* 横並びから縦並びに変更 */
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.comparison-cards {
    width: 100%; /* 全幅表示 */
    display: flex;
    align-items: center;
    gap: 0;
}

.comparison-card {
    flex: 1;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    text-align: center;
}

.comparison-card.purchase { background-color: #f1f8e9; border: 1px solid #dcedc8; }
.comparison-card.auction { background-color: #fff3e0; border: 1px solid #ffe0b2; }

.card-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 1.1rem; /* 大きく */
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.purchase .card-label { color: #2e7d32; border: 2px solid #2e7d32; }
.auction .card-label { color: #e67e22; border: 2px solid #e67e22; }

.card-illust-wrap {
    width: 120px;
    height: 120px;
    margin: 15px auto 20px;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

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

.card-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-highlight {
    font-size: 2.2rem; /* 大幅に大きく */
    font-weight: bold;
    color: var(--color-main);
    line-height: 1.2;
}

.card-desc {
    font-size: 1rem; /* 少し大きく */
    color: #555;
    line-height: 1.4;
    font-weight: bold;
}

.comparison-separator {
    flex: 0 0 60px;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.sep-circle {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #999;
    font-size: 0.9rem;
}

.comparison-side-info {
    width: 100%;
    display: flex;
    flex-direction: row; /* メッセージを下段で横並びに */
    align-items: center;
    justify-content: center;
    padding: 30px 40px;
    border-top: 1px dashed #ddd; /* 境界線を上に配置 */
    background-color: #fafaf8;
    border-radius: 12px;
    gap: 30px;
}

.side-illust-wrap {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 50%; /* 円形にクリップ */
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: #fff;
}

.side-illust-wrap img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; /* 確実に円形に収める */
}

.side-text {
    flex: 1;
    text-align: left;
}

.side-text p {
    font-size: 1.1rem; /* 少し大きく */
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.comparison-footer-bar {
    background: #fff8f0;
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #ffe0b2;
}

.footer-icon-circle {
    width: 45px;
    height: 45px;
    background: #fff;
    color: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.comparison-footer-bar p {
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Scroll Top Button */
.scroll-top-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-main);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

@media (max-width: 1024px) {
    .comparison-side-info { flex-direction: column; text-align: center; }
    .side-text { text-align: center; }
}

@media (max-width: 768px) {
    .comparison-cards { flex-direction: column; gap: 20px; }
    .comparison-card { width: 100%; flex: none; } /* 幅をいっぱいに広げる */
    .comparison-separator { transform: rotate(90deg); margin: -10px 0; }
    .comparison-header { font-size: 1.4rem; }
    .methods-comparison-container { padding: 40px 20px; }
    .scroll-top-btn {
        bottom: 120px; /* Mobile CTAの上 */
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Manga Mobile Zoom Hint */
    .manga-image {
        cursor: zoom-in;
    }
}

/* Footer QR Code */
.footer-qr-wrap {
    margin-bottom: 15px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.footer-qr {
    width: 90px;
    height: 90px;
    display: block;
    margin: 0 auto 8px;
}

.qr-desc {
    font-size: 0.7rem;
    color: #666;
    margin: 0;
    font-weight: bold;
}

/* Items Grid */
.items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.item-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.item-link:hover .item-name {
    color: var(--color-accent);
}

.item-img {
    background: #f9f9f9;
    padding: 0; /* 余白を削除 */
    height: 200px; /* 少し高さを出す */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ボックスいっぱいに広げる */
    transition: transform 0.5s ease;
}

.item-box:hover .item-img img {
    transform: scale(1.1); /* ホバー時に少しズーム */
}

.item-info {
    padding: 15px;
    /* border-top: 1px solid #f0f0f0; */ /* 画像が埋まるので境界線は不要に */
}

.item-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--color-main);
    margin: 15px 0 5px; /* 上下に余白 */
    transition: color 0.3s ease;
}

.item-desc {
    font-size: 0.75rem;
    color: #777;
    line-height: 1.4;
}

.items-more {
    text-align: center;
}

.items-more p {
    margin-bottom: 30px;
    font-weight: bold;
}

/* Flow Section */
.flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.flow-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    border: 1px solid #eee;
}

.flow-num {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 20px;
    display: inline-block;
    padding: 5px 15px;
    border-bottom: 3px solid var(--color-accent);
    letter-spacing: 0.1em;
    font-family: var(--font-serif);
}

.flow-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--color-main);
}

.flow-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    text-align: left;
}

/* Auction Section V2 */
.auction-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.auction-card {
    background: #fff;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid #eee;
}

.auction-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.auction-text {
    flex: 1;
}

.auction-badge {
    display: inline-block;
    background: var(--color-cta);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.auction-main-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    line-height: 1.4;
    color: var(--color-main);
    text-align: left;
}

.auction-points-v2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.auction-point-v2 {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.point-icon-v2 {
    background: var(--color-bg-light);
    color: var(--color-accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.point-h3 {
    font-size: 1.25rem;
    color: var(--color-main);
    margin-bottom: 8px;
    font-weight: bold;
}

.point-content-v2 p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.auction-image-v2 {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.auction-image-v2 img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.auction-card:hover .auction-image-v2 img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .auction-content {
        flex-direction: column;
        gap: 40px;
    }
    .auction-image-v2 {
        width: 100%;
    }
    .auction-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .auction-main-title {
        font-size: 1.8rem;
    }
    .auction-card {
        padding: 30px 20px;
    }
    .point-h3 {
        font-size: 1.1rem;
    }
}

/* Manga Sections */
.manga-wrapper {
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
}

.manga-img {
    width: 100%;
    height: auto;
}

/* Contact Section */
.contact-section {
    background-color: var(--color-bg-light);
}

.contact-box-final {
    background: #fff;
    padding: 80px 60px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    text-align: center;
}

.contact-sub {
    color: var(--color-accent);
    font-weight: bold;
    margin-bottom: 15px;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    gap: 30px;
    margin: 60px 0;
}

.method-card {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.method-card.tel {
    background-color: #fff9f0;
    border: 2px solid #f3e5ab;
}

.method-card.line {
    background: linear-gradient(135deg, var(--color-line) 0%, #05a546 100%);
    color: #fff;
}

.method-icon {
    font-size: 2.5rem;
    margin-right: 20px;
}

.method-text {
    text-align: left;
}

.method-text .label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 5px;
    opacity: 0.9;
}

.method-text .number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-main);
    line-height: 1.2;
}

.method-text .mainText {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.line-btn {
    display: inline-block;
    background: #fff;
    color: var(--color-line);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: bold;
}

.method-card.web {
    background-color: #f0f4f8;
    border: 2px solid #d1d9e6;
    color: var(--color-main);
}

.method-card.tel-reserve {
    background: linear-gradient(135deg, var(--color-main) 0%, #1a2a21 100%);
    color: #fff;
}

.method-card.tel-reserve .number {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    display: block;
}

.method-card.tel-reserve .time {
    color: var(--color-accent);
    font-weight: bold;
    font-size: 0.9rem;
    display: block;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.method-text .subText {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

.contact-email-simple {
    text-align: center;
    margin: 40px 0 60px;
}

.email-lead {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.btn-email-link {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #ddd;
    color: #666;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-email-link:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
    color: #333;
}
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 2px;
    margin-left: 10px;
    vertical-align: middle;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

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

.btn-submit {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    font-size: 1.2rem;
}

.privacy-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 20px;
}

.contact-footer {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.promise-banner {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #ffffff; /* 背景白 */
    color: var(--color-main);
    padding: 30px 40px;
    border-radius: 15px;
    margin-top: 50px;
    border: 2px solid #0a2e1d; /* 緑の枠線 */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.promise-label {
    background: #0a2e1d; /* ラベル背景を緑に */
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.4;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.promise-content {
    flex-grow: 1;
    text-align: left;
}

.promise-content p {
    font-size: 1.1rem; /* 指定通り1.1rem */
    line-height: 1.8;
    color: var(--color-main);
    margin-bottom: 0;
    font-weight: bold;
}

.promise-highlight {
    color: #e67e22; /* 強調をオレンジに */
    text-decoration: underline;
    text-underline-offset: 5px;
    font-size: 1.2rem;
}

.promise-footer-text {
    margin-top: 10px !important;
    font-size: 1rem !important;
    color: #666 !important;
    font-family: var(--font-serif);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .promise-banner {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }
    .promise-label {
        width: 90px;
        height: 90px;
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    .promise-content p {
        font-size: 1rem;
        text-align: center;
    }
    .promise-highlight {
        font-size: 1.1rem;
    }
}

/* Footer Navigation */
.lp-footer {
    background-color: #0a2e1d; /* ダークグリーンに変更 */
    color: #fff;
    padding: 80px 0 40px;
}

.footer-mega-menu-btn {
    display: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column-title {
    font-size: 1.2rem;
    color: var(--color-accent);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
}

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

.footer-links li {
    margin-bottom: 8px; /* 行間を狭く */
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.logo-column .footer-logo img {
    height: 60px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1) contrast(1.2); /* 字が潰れないようコントラスト調整 */
}

.footer-info {
    text-align: left;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-info p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 5px;
}

.company-name {
    color: #fff !important;
    font-weight: bold;
    font-size: 1rem !important;
}

/* Manga Sections background */
.manga-section {
    background-color: #ffffff !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-copy {
    font-size: 0.85rem;
    color: #666;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-logo img {
    height: 60px;
    filter: invert(1); /* 黒を白に反転 */
    mix-blend-mode: screen; /* 反転した背景の黒を透過させる */
}



.footer-copy {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Mobile Fixes */
.fixed-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
}

.fixed-cta-mobile a {
    flex: 1;
    padding: 12px 5px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column; /* アイコンを上に配置 */
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.fixed-cta-mobile a:last-child {
    border-right: none;
}

.fixed-cta-mobile a i {
    font-size: 1.2rem;
}

.cta-tel { background-color: var(--color-main); }
.cta-line { background-color: var(--color-line); }
.cta-mail { background-color: var(--color-cta); }

/* Right Fixed CTA Panel (PC Only) */
.fixed-cta-pc {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    box-shadow: -6px 5px 25px rgba(0, 0, 0, 0.0);
    border-radius: 12px 0 0 12px;
}

.fixed-cta-person {
    position: relative;
    padding: 10px 0;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.person-bubble {
    position: absolute;
    left: -110px;
    top: 10px;
    background: var(--color-cta);
    color: #fff;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
    line-height: 1.3;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.person-bubble::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid var(--color-cta);
}

.person-img-wrap {
    width: 100px; /* サイズを戻す */
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    background: transparent;
    overflow: hidden;
    /* margin-right を削除 */
}

.person-img {
    width: 130%; /* ズーム */
    height: 130%;
    object-fit: cover;
    object-position: 50% 10%; /* 顔にフォーカス */
    mix-blend-mode: multiply; /* 白背景を透過 */
}

.pc-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 105px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    position: relative;
    box-shadow: inset 0 2px 5px rgba(255,255,255,0.2);
}

.pc-cta-btn:last-child {
    border-bottom: none;
}

.pc-cta-btn:hover {
    filter: brightness(1.1);
}

.pc-cta-tel:hover { background-color: #8a1919 !important; }
.pc-cta-line:hover { background-color: #049b04 !important; }
.pc-cta-mail:hover { background-color: #1a4a8a !important; }

.pc-cta-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
    line-height: 1;
}

.pc-cta-text {
    font-size: 0.95rem; /* 5文字でも収まりやすく微調整 */
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.pc-cta-tel { background-color: var(--color-main); }
.pc-cta-line { background-color: var(--color-line); }
.pc-cta-form { background-color: var(--color-cta); }

/* アテンション用のアニメーション */
.pulse-anim {
    animation: ctaPulse 2.5s infinite;
    transform-origin: center;
}

@keyframes ctaPulse {
    0% { transform: scale(1); }
    10% { transform: scale(1.05); }
    20% { transform: scale(1); }
    30% { transform: scale(1.05); }
    40% { transform: scale(1); }
    100% { transform: scale(1); }
}



@media (max-width: 1024px) {
    .hero-section {
        padding: 60px 0 100px;
        background-attachment: scroll;
    }
    .hero-content {
        max-width: 100%;
        padding: 30px;
        margin: 0 20px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-laurel-badges {
        gap: 10px;
    }
    .laurel-badge {
        width: 120px;
        height: 120px;
        animation: none;
    }
    .bar-content {
        padding-right: 0; /* Let it wrap if needed, or smaller LINE card */
    }
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .flow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-laurel-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }
    .laurel-badge {
        width: 100%;
        max-width: 300px;
        height: auto;
        flex-direction: row;
        animation: none;
        justify-content: flex-start;
        padding: 10px;
        text-align: left;
        gap: 15px;
        background: rgba(255,255,255,0.8);
        border-radius: 12px;
    }
    .laurel-badge .badge-img {
        width: 60px;
        height: 60px;
        position: static;
    }
    .items-grid {
        grid-template-columns: repeat(2, 1fr); /* スマホでも2列表示 */
        gap: 15px;
    }
    .troubles-content {
        flex-direction: column;
    }
    .troubles-grid {
        grid-template-columns: repeat(2, 1fr); /* 2行2列に調整 */
        gap: 15px;
    }

    .solution-features {
        grid-template-columns: 1fr; /* スマホでは縦並び */
        gap: 10px;
    }

    .feature-item {
        font-size: 1rem;
        padding: 12px;
    }

    .troubles-image {
        flex: 0 0 auto;
        width: 100%;
        margin-top: 30px;
    }

    .lp-header {
        position: relative;
    }
    .header-inner {
        justify-content: center;
    }
    .header-nav {
        display: none; /* モバイルではナビゲーションは非表示 */
    }
    .pc-only {
        display: none !important;
    }
    .header-right {
        display: none; /* モバイルではヘッダーのボタン類は非表示にし、下部の固定CTAに任せる */
    }
    .section-title {
        font-size: 1.8rem;
    }
    .contact-points {
        flex-direction: column;
        gap: 10px;
    }
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    .flow-grid {
        grid-template-columns: 1fr;
    }
    .auction-content {
        flex-direction: column;
    }
    .contact-methods {
        flex-direction: column;
    }
    .contact-box-final {
        padding: 40px 20px;
    }
    .contact-footer {
        flex-direction: column;
        gap: 20px;
    }
    .fixed-cta-mobile {
        display: flex;
    }
    body { padding-bottom: 60px; }

    /* Manga Zoom Modal Styles */
    .manga-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.9);
        z-index: 9999;
        justify-content: center;
        align-items: center;
        cursor: zoom-out;
    }

    .manga-modal img {
        max-width: 95%;
        max-height: 95%;
        object-fit: contain;
        box-shadow: 0 0 20px rgba(255,255,255,0.2);
    }

    /* Footer Hide Nav on Mobile */
    .footer-column:not(.logo-column) {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .logo-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-mega-menu-btn {
        display: inline-block;
        margin-top: 25px;
        background: var(--color-main);
        color: #fff;
        padding: 12px 30px;
        border: none;
        border-radius: 30px;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .footer-mega-menu-btn i {
        margin-right: 8px;
    }
}

/* Mobile Mega Menu */
.mobile-mega-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
}

.mobile-mega-menu.active {
    transform: translateX(0);
}

.menu-inner {
    padding: 30px 20px;
}

.menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.menu-close {
    font-size: 2rem;
    color: var(--color-main);
    cursor: pointer;
}

.menu-category {
    margin-bottom: 40px;
}

.menu-category h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    border-bottom: 2px solid var(--color-main);
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: var(--color-main);
}

.menu-category ul {
    list-style: none;
    padding: 0;
}

.menu-category ul li {
    margin-bottom: 15px;
}

.menu-category ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-category ul li a i {
    color: var(--color-accent);
    width: 20px;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.menu-grid a {
    background: #f8f8f8;
    padding: 12px;
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    border-radius: 8px;
    text-align: center;
}

.menu-contact-box {
    background: #fdf6ec;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
}

.menu-contact-box p {
    font-weight: bold;
    margin-bottom: 15px;
}

.menu-tel-btn {
    display: block;
    background: var(--color-main);
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.menu-line-btn {
    display: block;
    background: var(--color-line);
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

/* Footer QR Simple */
.footer-qr-wrap.simple {
    padding: 0;
    box-shadow: none;
    background: transparent;
}

.footer-qr-wrap.simple .footer-qr {
    width: 120px;
    height: 120px;
    margin: 0;
}

/* Illustration Circular Clipping Fix */
.side-illust-wrap {
    overflow: hidden !important;
    mask-image: radial-gradient(white, black); /* For older browsers / certain edge cases */
}

.side-illust-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}





table.basic-table{
  border:1px solid #dddddd;
  border-collapse:collapse;
  margin:1em 0em;
  font-size:95%;
}

.basic-table th{
  border:1px solid #eeeeee;
  padding:10px 15px;
  background:#fafafa;
  font-weight:normal;
}

.basic-table td{
  border:1px solid #eeeeee;
  padding:10px 15px;
	
}
/* ==========================================================================
   About Us Page Styles (カスタマイザー用)
   ================*/

.page-header {
    background-color: var(--color-bg-light, #f8f9fa);
    padding: 60px 0 40px;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
}
.page-title {
    font-size: 2.2rem;
    color: var(--color-main, #0a2e1d);
    margin: 0;
}
.breadcrumb {
    background: #fdfdfd;
    padding: 15px 0;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #eee;
}
.breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.breadcrumb a {
    color: var(--color-main, #0a2e1d);
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.breadcrumb span {
    color: #999;
}
.about-message-section {
    padding: 80px 0;
}
.message-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    border: 1px solid #f9f9f9;
}
.message-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #444;
}
.company-profile-section {
    padding: 80px 0;
    background-color: var(--color-bg-light, #f8f9fa);
}
.profile-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    border: 1px solid #eaeaea;
}
.profile-table {
    width: 100%;
    border-collapse: collapse;
}
.profile-table th, .profile-table td {
    padding: 25px 30px;
    border-bottom: 1px solid #eaeaea;
}
.profile-table tr:last-child th, .profile-table tr:last-child td {
    border-bottom: none;
}
.profile-table th {
    background-color: #fcfcfc;
    width: 25%;
    text-align: left;
    font-weight: bold;
    color: var(--color-main, #0a2e1d);
    border-right: 1px solid #eaeaea;
}
.profile-table td {
    color: #333;
    line-height: 1.6;
}
.profile-table td a {
    color: var(--color-main, #0a2e1d);
    text-decoration: none;
    font-weight: bold;
}
.business-list {
    margin: 0;
    padding-left: 20px;
}
.business-list li {
    margin-bottom: 8px;
}
.business-list li:last-child {
    margin-bottom: 0;
}
.access-map-section {
    padding: 80px 0;
}
.map-address {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: bold;
}
.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.business-guide-section {
    padding: 80px 0;
    background-color: var(--color-bg-light, #f8f9fa);
}
/* カードを強制的に2列にするスタイル */
.business-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
    max-width: 1000px;
    margin: 0 auto;
}
.business-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}
.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.business-icon {
    font-size: 2.5rem;
    color: var(--color-accent, #b09062);
    margin-bottom: 20px;
}
.business-title {
    font-size: 1.4rem;
    color: var(--color-main, #0a2e1d);
    margin-bottom: 15px;
    font-family: var(--font-serif, serif);
}
.business-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}
@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
    }
    .message-content {
        padding: 30px 20px;
    }
    .profile-table th, .profile-table td {
        display: block;
        width: 100%;
        border-right: none;
    }
    .profile-table th {
        padding: 15px 20px;
        background-color: #f9f9f9;
    }
    .profile-table td {
        padding: 15px 20px 25px;
    }
    .business-grid {
        grid-template-columns: 1fr !important;
    }
}
