<style >

/* ==========================================================================
   1. Base & Reset (基本設定)
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
    padding-bottom: 90px;
    /* CTAの高さより少し大きめ */
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.container img {
    width: 100%;
    /* 重要 */
    height: auto;
    display: block;
    margin: 0 auto;
    /* センタリング */
}

.container p {
    text-align: left;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 16px;
}

section {
    margin-bottom: 40px;
}

/* ==========================================================================
   2. Header & Navigation (ヘッダー・ナビ)
   ========================================================================== */
.header {
    border-top: 8px solid #2e7d32;
    padding: 12px;
}

.header-top {
    text-align: center;
    font-size:16px;
    margin-bottom: 10px;
}

.header-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 10px;
}

.logo img {
    width: 100%;
    display: block;
}

/* ハンバーガーメニュー */
.hamburger-area {
    width: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hamburger {
    width: 28px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #2e7d32;
    transition: .3s;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 8px;
}

.menu-text {
    width: 28px;
    text-align: center;
    font-size: 11px;
    color: #2e7d32;
}

.nav-buttons {
    display: flex;
    flex: 1;
    gap: 1px;
}

.nav-buttons a {
    flex: 1;
    background: #2e7d32;
    color: #fff;
    text-align: center;
    padding: 10px 8px;
    font-size: 14px;
    text-decoration: none;
    transition: .3s;
    white-space: nowrap;
}

.nav-buttons a:hover {
    background: #1b5e20;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ドロワーメニュー */
.drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: #e8f0e8;
    transition: .3s;
    padding: 20px;
    z-index: 1000;
}

.drawer.active {
    left: 0;
}

.drawer-close {
    font-size: 28px;
    color: #2e7d32;
    cursor: pointer;
    margin-bottom: 10px;
}

.drawer li {
    list-style: none;
    border-bottom: 1px solid #9bbf9b;
}

.drawer a {
    display: block;
    padding: 14px 0;
    text-decoration: none;
    color: #2e7d32;
    transition: 0.2s;
}

.drawer li a:hover {
    color: #1b5e20;
    background: rgba(46, 125, 50, 0.08);
    padding-left: 10px;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    display: none;
}

.overlay.active {
    display: block;
}

/* ==========================================================================
   3. Components (各コンポーネント)
   ========================================================================== */

/* ページタイトル */
.page-title {
    text-align: center;
    border: 5px solid #2e7d32;
    border-radius: 33px;
    padding: 15px;
    margin-bottom: 30px;
    font-size: 22px;
    color: #2e7d32;
}

/* ギャラリー/グリッド */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    display: block;
}

.caption {
    font-size: 13px;
    text-align: center;
    margin-top: 8px;
    color: #2e7d32;
}

/* テーブル */
.company-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.company-table th,
.company-table td {
    padding: 12px;
    border-bottom: 1px solid #ccc;
}

.company-table tr:first-child th {
    border-top: 1px solid #ccc;
}

.company-table th {
    width: 30%;
    background: #e0e7dc;
    text-align: left;
    font-weight: normal;
}

/* 紹介セクション */
.about-ikatan {
    background: url("images/company/bali.jpg") center/cover;
    padding: 40px 20px;
    margin: 40px 0;
    position: relative;
}

.about-inner {
    background: rgba(255, 255, 255, 0.85);
    padding: 25px;
    border-radius: 10px;
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.about-inner h2 {
    color: #2e7d32;
    margin-bottom: 15px;
}

.about-inner p {
    line-height: 1.8;
    font-size: 14px;
}

/* リスト形式 */
.facility-list,
.feature-list,
.bad-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.facility-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
}

.facility-list li {
    font-size: 14px;
    position: relative;
    padding-left: 18px;
}

.facility-list li::before,
.feature-list li::before {
    content: "◎";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    font-size: 18px;
    font-weight: bold;
    color: #d32f2f;
    line-height: 1.8;
    margin-bottom: 8px;
}

.bad-list > li {
    position: relative;
    padding-left: 30px;
    font-size: 18px;
    font-weight: bold;
    color: #1976d2;
    margin-bottom: 12px;
    line-height: 1.6;
}

.bad-list > li::before {
    content: "✕";
    position: absolute;
    left: 0;
    top: 0;
    color: #d32f2f;
    font-weight: bold;
}

.bad-list ul {
    margin-top: 6px;
    padding-left: 0;
    list-style: none;
}

.bad-list ul li {
    font-size: 15px;
    font-weight: normal;
    color: #333;
    line-height: 1.8;
}

/* フロー(手順) */
.flow {
    list-style: none;
    padding: 0;
    margin: 0;
}

.flow li {
    position: relative;
    padding-left: 40px;
    margin: 14px 0;
    font-size: 16px;
    line-height: 1.4;
}

.flow .num {
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 26px;
    font-size: 14px;
}

.flow li::after {
    content: "↓";
    display: block;
    margin-left: 2px;
    margin-top: 6px;
    color: #000;
}

.flow li:last-child::after {
    content: none;
}

.flow .highlight {
    font-weight: bold;
    font-size: 18px;
    color: #0a7a3c;
}

.flow .highlight .num {
    background: #0a7a3c;
}

.flow .note {
    color: red;
    padding-left: 0;
    margin: 10px 0 20px;
}

.flow .note::after {
    content: none;
}

/* ==========================================================================
   4. FAQ Section
   ========================================================================== */
.faq {
    max-width: 900px;
    margin: 20px auto 120px;
    padding: 0 20px;
}

.faq-lead {
    font-size: 23px;
    font-weight: bold;
    line-height: 1.5;
    margin: 20px 0;
}

.faq-section {
    margin-bottom: 30px;
    scroll-margin-top: 90px;
}

.faq-section-title {
    position: relative;
    background: #2e7d32;
    color: #fff;
    padding: 12px 15px 12px 55px;
    font-size: 16px;
    border-radius: 4px;
}

.faq-section-title::before {
    content: attr(data-num);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    color: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.faq-item {
    margin-top: 10px;
}

.faq-q {
    position: relative;
    background: #e6f0e6;
    padding: 10px 12px 10px 40px;
    font-weight: bold;
    font-size: 17px;
    border-left: 4px solid #2e7d32;
}

.faq-q::before {
    content: "Q";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #2e7d32;
    color: #fff;
    font-size: 11px;
    padding: 2px 5px;
    border-radius: 2px;
}

.faq-a {
    padding: 10px 12px 15px 15px;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

/* FAQ Index */
.faq-index {
    list-style: none;
    margin: 20px 0 30px;
    padding: 0;
    counter-reset: faqIndex;
}

.faq-index li {
    counter-increment: faqIndex;
    margin-bottom: 12px;
    border-bottom: 1px solid #2e7d32;
    padding-bottom: 8px;
}

.faq-index a {
    text-decoration: none;
    color: #2e7d32;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.faq-index a::before {
    content: counter(faqIndex);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #2e7d32;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 8px;
}

.faq-index a:hover {
    opacity: 0.7;
}

/* ==========================================================================
   5. Coverage & Alpha Sections (対応箇所・アルファベット)
   ========================================================================== */
.coverage {
    margin: 20px auto 120px;
}

.coverage-lead {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.coverage-section {
    margin-bottom: 40px;
    scroll-margin-top: 90px;
}

.coverage-index {
    list-style: none;
    margin: 20px 0 30px;
    padding: 0;
    counter-reset: coverageIndex;
}

.coverage-index li {
    counter-increment: coverageIndex;
    border-bottom: 2px solid #2e7d32;
    padding: 10px 0;
}

.coverage-index a {
    text-decoration: none;
    color: #2e7d32;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.coverage-index a::before {
    content: counter(coverageIndex);
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #2e7d32;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 8px;
    flex-shrink: 0;
}

.coverage-title {
    position: relative;
    background: #2e7d32;
    color: #fff;
    padding: 12px 15px 12px 55px;
    border-radius: 4px;
}

.coverage-title::before {
    content: attr(data-num);
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    background: #fff;
    color: #2e7d32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.coverage-grid img {
    width: 100%;
    display: block;
}

.coverage-grid p {
    font-size: 13px;
    margin-top: 5px;
}

/* Alpha Section */
.alpha-index {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
    counter-reset: alphaIndex;
}

.alpha-index li {
    counter-increment: alphaIndex;
    border-bottom: 2px solid #2e7d32;
    transition: .25s;
}

.alpha-index li:hover {
    background: rgba(46, 125, 50, 0.08);
}

.alpha-index a {
    display: flex;
    align-items: center;
    padding: 10px 0;
    text-decoration: none;
    color: #2e7d32;
    font-weight: bold;
    transition: .25s;
}

.alpha-index a:hover {
    transform: translateX(4px);
    color: #1b5e20;
}

.alpha-index a::before {
    content: counter(alphaIndex, upper-alpha);
    width: 26px;
    height: 26px;
    background: #2e7d32;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 10px;
    flex-shrink: 0;
    transition: .25s;
}

.alpha-index a:hover::before {
    background: #1b5e20;
    transform: scale(1.08);
}

.alpha-section {
    margin-bottom: 40px;
    scroll-margin-top: 90px;
}

.alpha-title {
    position: relative;
    background: #2e7d32;
    color: #fff;
    padding: 14px 15px 14px 60px;
    border-radius: 4px;
}

.alpha-title::before {
    content: attr(data-alpha);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: #fff;
    color: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 4px;
}

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

/* ==========================================================================
   6. Visual Effects & Media (画像演出)
   ========================================================================== */
/* Before After */
.before-after {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.photo {
    position: relative;
}

.photo img {
    width: 100%;
    display: block;
}

.photo::before {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
}

.photo.before::before {
    content: "ビフォー";
}

.photo.after::before {
    content: "アフター ✨";
    color: #000;
    background: #fff;
}

.arrow {
    position: absolute;
    width: 84px;
    height: 84px;
    background: red;
    clip-path: polygon(0 40%, 60% 40%, 60% 20%, 100% 50%, 60% 80%, 60% 60%, 0 60%);
    left: 50%;
    top: 45%;
    transform: translateX(-50%) rotate(90deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
}

/* 指差し演出 */
.image-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.image-wrap::after {
    content: "";
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    aspect-ratio: 1/1;
    border: 6px dotted #ff2d8b;
    border-radius: 50%;
    pointer-events: none;
}

.finger {
    position: absolute;
    top: 5%;
    right: 5%;
    width: 30%;
    max-width: 150px;
    pointer-events: none;
    animation: fingerPoint 1.2s ease-in-out infinite;
    transform-origin: 80% 20%;
}

@keyframes fingerPoint {

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

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

/* 震える画像 */
.shake-img {
    animation: uneasyShake 1.2s linear infinite;
}

@keyframes uneasyShake {

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

    10%,
    90% {
        transform: translate(-0.8px, 0.6px) rotate(-0.2deg);
    }

    20%,
    80% {
        transform: translate(0.9px, -0.7px) rotate(0.25deg);
    }

    30%,
    70% {
        transform: translate(-0.6px, 0.8px) rotate(-0.2deg);
    }

    40%,
    60% {
        transform: translate(0.7px, 0.3px) rotate(0.15deg);
    }

    50% {
        transform: translate(-0.9px, -0.6px) rotate(-0.25deg);
    }
}

/* ==========================================================================
   7. Buttons & CTA (アクションボタン)
   ========================================================================== */
/* 固定CTA */
.cta {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 80px;
    background: repeating-linear-gradient(45deg, #ffd400, #ffd400 3px, #ffe766 3px, #ffe766 8px);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button {
    position: relative;
    width: 70%;
    max-width: 360px;
    background: linear-gradient(to right, #ff9800, #e60000);
    color: #fff;
    text-align: center;
    border-radius: 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bolder;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px; /* ←左右を揃える */
    position: relative;
    left: -10px;
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.5);
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
    transition: 0.25s;
}

.cta-button::before {
    content: "▶";
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.cta-button:hover {
    background: linear-gradient(to right, #d97700, #b80000);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.65);
    transform: translateY(-1px);
}

/* 通常CTA */
.cta-wrap {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
}

.cta-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    padding: 22px 22px 22px 44px;
    margin-bottom: 30px;
    border-radius: 4px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
}

.cta-btn::before {
    content: "▶";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #fff;
    transition: 0.25s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
    opacity: 0.95;
}

.cta-btn:hover::before {
    transform: translateY(-50%) translateX(3px);
}

.cta-btn.red {
    background: #e60000;
}

.cta-btn.green {
    background: #3a8f2a;
}

/* 電話CTA */
.cta-tel {
    display: block;
    width: 100%;
    text-align: center;
}

.cta-tel img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
    transition: all 0.25s ease;
}

.cta-tel:hover img {
    transform: translateY(-3px) scale(1.03);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

/* ==========================================================================
   8. LP Specific (LP専用パーツ)
   ========================================================================== */
.review-block {
    background: #ffd700;
    padding: 30px 20px;
    text-align: center;
}

.review-search {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 300px;
    background: #fff;
    border-radius: 30px;
    padding: 10px 16px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.review-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.review-voices p {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 3px;
}

.review-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.review-images img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.review-link a {
    color: #0b3d91;
    font-weight: bold;
    text-decoration: underline;
}

.lp-section-title {
    position: relative;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #2e7d32;
    opacity: 0.85;
    margin: 40px 0 25px;
    padding: 10px 20px;
    display: inline-block;
}

.lp-section-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    border: 1px solid #2e7d32;
    border-radius: 6px;
    z-index: -1;
}

.lp-section-title::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 60%;
    background: #fff;
    z-index: -2;
}

.lp-hero-main {
    color: #e60000;
    font-weight:900;
    font-size: 50px;
    line-height: 1.5;
    margin: 20px 0;
    letter-spacing: 0.02em;
}

.seo-block {
    margin: 40px 0;
    padding: 16px 18px;
    background: #fafafa;
    border-left: 3px solid #2e7d32;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.seo-block h2 {
    font-size: 16px;
    color: #2e7d32;
    font-weight: 600;
    margin-bottom: 8px;
}

/* ==========================================================================
   9. Footer
   ========================================================================== */
.footer {
    background: #f2f2f2;
    padding: 20px 15px;
    font-size: 13px;
}

.footer-inner {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: auto;
}

.footer-col {
    width: 100%;
    max-width: 300px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    border-bottom: 1px solid #ccc;
}

.footer-col a {
    display: block;
    padding: 6px 0;
    text-decoration: none;
    color: #555;
    line-height: 1.4;
}

.footer-col a:hover {
    color: #2e7d32;
}

/* ==========================================================================
   10. Responsive (レスポンシブまとめ)
   ========================================================================== */

/* タブレット・PCサイズ (768px以上) */
@media (min-width: 768px) {
    .before-after {
        flex-direction: row;
        align-items: center;
    }

    .photo {
        width: 50%;
    }

    .arrow {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(0deg);
        /* 右向き */
    }

    .faq-q,
    .faq-a {
        font-size: 15px;
    }
}

/* PCサイズ (900px以上) */
@media (min-width: 900px) {
    .header {
        padding: 16px 40px;
    }

    .header-row {
        max-width: 900px;
        margin: auto;
    }
}

/* スマホサイズ (768px以下) */
@media (max-width: 768px) {
    .container p {
        font-size: 16px;
        line-height: 1.8;
    }

    .alpha-images,
    .gallery-grid,
    .coverage-grid {
        grid-template-columns: 1fr;
    }

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

    .faq {
        padding: 0 20px;
    }

    /* 未定義クラスへの対応 */
    .danger-title {
        font-size: 20px;
    }

    .danger-list li,
    .danger-text {
        font-size: 16px;
    }
}

</style >
