:root {
    --color-main: #db673a;
    --color-sub: #334a66;
    --color-bg-light: #F8FAFC;
    --color-text: #334155;
    --color-white: #FFFFFF;
    --color-green: #446043; /* 安心感のあるグリーン */
    --wrapper-pc-width: 480px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f5f3ef;
    display: flex;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    color: var(--color-text);
    line-height: 1.8;
    letter-spacing: 0.05em;
}

img {
    display: block;
    width: 100%;
    object-fit: contain;
}

/* 
Wrapper
*/

.wrapper {
    width: 100%;
    height: 100vh;
    background-color: var(--color-white);
    overflow-y: auto;
    position: relative;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
    scrollbar-width: none;
    z-index: 10;
}

.wrapper::-webkit-scrollbar {
    display: none;
}

.pc-side {
    display: none;
}

@media (min-width: 1024px) {
    :root {
        --side-space: calc((100vw - var(--wrapper-pc-width)) / 2);
    }

    .wrapper {
        width: var(--wrapper-pc-width);
        max-width: var(--wrapper-pc-width);
    }

    .pc-side {
        display: flex;
        position: fixed;
        top: 0;
        bottom: 0;
        width: var(--side-space);
        align-items: center;
        justify-content: center;
        pointer-events: none;
        z-index: 1;
    }

    .pc-side.left {
        left: 0;
    }

    .pc-side.right {
        right: 0;
        text-align: center;
    }

    .pc-side.left img {
        width: 120px;
        max-width: 50%;
        height: auto;
    }

    .pc-side.right p {
        pointer-events: none;
        margin: 0;
        font-size: 24px;
        font-weight: bold;
        color: var(--color-sub);
        line-height: 1.6;
        letter-spacing: 0.08em;
    }
}

.page-header .logo {
    width: 20%;
    margin: 0 auto;
    padding: 10px 0;
}

section {
    padding: 60px 24px;
}

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

h2 {
    font-size: 24px;
    text-align: center;
    color: var(--color-sub);
    margin: 0;
    font-weight: bold;
}

h3.sub_title {
    font-size: 14px;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 32px;
}

h3.sub_title::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--color-main);
    margin: 16px auto 0;
    border-radius: 2px;
}

h4{
  font-weight: bold;
}

.section-text {
    font-size: 14px;
    margin: 15px 0 15px;
    line-height: 1.3;
}

.section-text.center {
    text-align: center;
}


.cta-btn {
    display: block;
    width: 100%;
    padding: 18px;
    text-align: center;
    background-color: var(--color-main);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 40px;
    font-weight: bold;
    font-size: 16px;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(219, 103, 58, 0.3);
}

.section-cta {
    margin-top: 32px;
}


.fv {
    position: relative;
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
    min-height: 78vh;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.restaurant-fv::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/sizulu/hero.jpg") center / cover no-repeat;
    z-index: 0;
}

.restaurant-fv::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.55) 100%
    );
    z-index: 1;
}

.fv > * {
    position: relative;
    z-index: 2;
}

.fv h1 {
  text-align: center;
  margin: 0 0 20px;
  font-size: 42px;
  line-height: 1.25;
  font-weight: bold;
  color: var(--color-white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  letter-spacing: 0.04em;
}

.fv h1 .small {
  font-size: 32px;
}

.fv .sub-copy {
    margin: 0 0 32px;
    font-size: 13px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.92);
    /* text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); */
    background: var(--color-green);
    padding: 5px 10px;
    border-radius: 8px;
}

.fv-buttons {
    width: 100%;
    max-width: 320px;
}

.check-card,
.info-card,
.feature-card,
.value-card,
.plan-card,
.option-card,
.tag,
.contact-guide{
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

/* 
#problem
*/

.check-card {
    padding: 20px;
    margin-bottom: 15px;
}

.check-list,
.plan-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li,
.plan-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-weight: bold;
}

.check-list li:last-child,
.plan-list li:last-child {
    margin-bottom: 0;
}

.check-list li::before {
    content: "−";
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--color-main);
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.plan-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-main);
    font-weight: bold;
}

.plan-list li.no_icon{
  padding-left: 0px;
}
.plan-list li.no_icon::before{
  content: "";
}


.info-grid,
.feature-list,
.value-cards,
.plan-links,
.option-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card,
.feature-card,
.value-card,
.option-card {
    padding: 20px;
}

.info-card h4,
.feature-card h4,
.value-card h4,
.option-card h4 {
    margin: 0 0 8px;
    font-size: 16px;
    color: var(--color-sub);
}

.info-card p,
.feature-card p,
.value-card p {
    margin: 0;
    font-size: 14px;
}

.concept-highlight {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: var(--color-main);
    margin: 12px 0px;
    padding: 20px 16px;
    border-top: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
    line-height: 1.8;
}

.benefit-box {
    margin-top: 28px;
}

.benefit-box p {
    text-align: center;
    font-weight: bold;
    margin: 0 0 20px;
}

.target-tags {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tag {
    border: 1px solid #E2E8F0;
    padding: 16px;
    text-align: center;
    font-weight: bold;
    color: var(--color-sub);
}


.task-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.task-item {
    padding: 10px 14px;
    background: #fff8f4;
    border: 1px solid #f2d2c3;
    border-radius: 999px;
    font-size: 13px;
    font-weight: bold;
    color: var(--color-sub);
    text-align: center;
}

.workload-message {
    margin-top: 24px;
}

.workload-message p {
    margin: 0;
    text-align: center;
}

/* =========================
   Structure / PDCA Loop
   ========================= */
.pdca-loop {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 28px 0 24px;
}

.pdca-item {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 20px 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    text-align: center;
}

.pdca-label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(219, 103, 58, 0.1);
    color: var(--color-main);
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.06em;
}

.pdca-item h4 {
    margin: 0 0 8px;
    font-size: 18px;
    color: var(--color-sub);
}

.pdca-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text);
}

.pdca-arrow {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: var(--color-main);
    line-height: 1;
}

.pdca-return {
    text-align: center;
    margin-top: 4px;
}

.pdca-return span {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--color-sub);
    color: #fff;
    font-size: 13px;
    font-weight: bold;
}

.structure-note-box {
    background: var(--color-bg-light);
    border-radius: 16px;
    padding: 20px 18px;
    margin-bottom: 24px;
    border: 1px solid #E5E7EB;
}

.structure-note-box h4 {
    margin: 0 0 14px;
    font-size: 16px;
    color: var(--color-sub);
    text-align: center;
    line-height: 1.7;
}

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

.structure-point-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.8;
    font-weight: bold;
    color: var(--color-text);
}

.structure-point-list li:last-child {
    margin-bottom: 0;
}

.structure-point-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-main);
    font-weight: bold;
}

/* =========================
   Structure Box
   ========================= */
.structure-box {
    margin: 32px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.structure-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 24px 20px 20px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    border: 1px solid #E5E7EB;
    overflow: hidden;
}

.structure-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
}

.structure-card-main::before {
    background: var(--color-main);
}

.structure-card-option::before {
    background: var(--color-sub);
}

.structure-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.08em;
}

.structure-card-main .structure-badge {
    background: rgba(219, 103, 58, 0.1);
    color: var(--color-main);
}

.structure-card-option .structure-badge {
    background: rgba(51, 74, 102, 0.10);
    color: var(--color-sub);
}

.structure-card h4 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.4;
    color: var(--color-sub);
}

.structure-copy {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text);
    font-weight: bold;
}

.structure-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.structure-list li {
    position: relative;
    padding: 12px 14px 12px 36px;
    background: #F8FAFC;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--color-text);
    font-weight: 600;
}

.structure-list li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 12px;
    color: var(--color-main);
    font-weight: bold;
}

.structure-connector {
    text-align: center;
    padding: 4px 0;
}

.structure-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-main);
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(219, 103, 58, 0.24);
    margin-bottom: 8px;
}

.structure-connector p {
    margin: 0;
    font-size: 12px;
    font-weight: bold;
    color: var(--color-text);
}

@media (min-width: 768px) {
    .structure-card {
        padding: 26px 22px 22px;
    }
}

/* 
Plan
*/

/* =========================
   Plans
   ========================= */
.plans-intro {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0 20px;
}

.plans-intro-base,
.plans-intro-option {
    background: var(--color-white);
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.plans-intro-base {
    padding: 16px 16px 14px;
}

.plans-intro-option {
    padding: 20px 18px;
}

.plans-intro-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.plans-intro-head h4 {
    margin: 0;
    font-size: 18px;
    color: var(--color-sub);
    line-height: 1.5;
}

.plans-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(219, 103, 58, 0.1);
    color: var(--color-main);
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.08em;
    flex-shrink: 0;
}

.plans-badge.is-sub {
    background: rgba(51, 74, 102, 0.1);
    color: var(--color-sub);
}

.plans-intro-copy {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text);
    font-weight: bold;
}

.plans-mini-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.plans-mini-list li {
    position: relative;
    padding-left: 20px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--color-text);
    font-weight: 600;
}

.plans-mini-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-main);
    font-weight: bold;
}

.plans-intro-plus {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--color-main);
    line-height: 1;
}

.plans-intro-note {
    margin: 0 0 32px;
    text-align: center;
    font-size: 14px;
    line-height: 1.9;
    color: var(--color-text);
}

.plans-block {
    margin-top: 28px;
}

.plans-block:first-of-type {
    margin-top: 0;
}

.plans-block-head {
    margin-bottom: 18px;
    text-align: center;
}

.plans-block-label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(219, 103, 58, 0.1);
    color: var(--color-main);
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.08em;
}

.plans-block-label.is-sub {
    background: rgba(51, 74, 102, 0.1);
    color: var(--color-sub);
}

.plans-block-head h3 {
    margin: 0 0 8px;
    font-size: 22px;
    color: var(--color-sub);
    font-weight: bold;
}

.plans-block-head p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text);
}

.plan-links,
.option-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-card,
.option-card {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    padding: 20px;
}

.plan-card.featured {
    border: 2px solid var(--color-main);
}

.plan-card.dark {
    background: var(--color-sub);
    color: var(--color-white);
}

.plan-card.dark h4,
.plan-card.dark .plan-price,
.plan-card.dark .plan-period {
    color: var(--color-white);
}

.plan-card.dark .plan-list li::before {
    color: #ffd8c7;
}

.plan-label,
.option-label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: 0.08em;
    font-weight: bold;
    color: var(--color-main);
}

.option-label {
    color: var(--color-sub);
}

.plan-card.dark .plan-label {
    color: #ffd8c7;
}

.plan-card h4,
.option-card h4 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-main);
}

.option-card h4 {
    color: var(--color-sub);
}

.plan-period {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: bold;
}

.plan-price,
.option-price {
    margin: 16px 0 0;
    font-size: 18px;
    font-weight: bold;
    color: var(--color-main);
}

.plan-state {
    margin: 14px 0 0;
    padding: 12px;
    background: rgba(0,0,0,0.04);
    border-radius: 10px;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
}

.plan-card.dark .plan-state {
    background: rgba(255,255,255,0.12);
}

.option-note {
    margin: 8px 0 12px;
    font-size: 12px;
    color: #64748B;
}

.plans-block-sub {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #E2E8F0;
}

@media (min-width: 768px) {
    .plans-intro {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }
}

.option-note {
    margin: 8px 0 12px;
    font-size: 12px;
    color: #64748B;
}

.flow-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    counter-reset: flow;
}

.flow-list li {
    position: relative;
    padding: 16px 16px 16px 56px;
    margin-bottom: 12px;
    background: var(--color-white);
    border-radius: 12px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.flow-list li::before {
    counter-increment: flow;
    content: counter(flow);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-main);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
}

.stance-closing {
    text-align: center;
    font-weight: bold;
}

.contact-guide {
    margin: 60px 24px;
    padding: 32px 20px;
    text-align: center;
    background: var(--color-bg-light);
}

.contact-guide-text {
    margin: 0 0 24px;
    font-size: 14px;
}

footer {
    background: var(--color-sub);
    color: #94A3B8;
    text-align: center;
    padding: 24px;
    font-size: 12px;
}

/* =========================
   Before / After
   ========================= */
.before-after-section {
    overflow: hidden;
}

.ba-lead {
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 32px;
    color: var(--color-text);
}

.gmb-comparison-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
}

.gmb-arrow {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: var(--color-main);
    line-height: 1;
}

.gmb-card {
    width: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    border: 1px solid #E5E7EB;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.status-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.04em;
}

.badge-before {
    background: #5f6368;
}

.badge-after {
    background: var(--color-main);
}

.gmb-photo {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.gmb-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.22), rgba(0,0,0,0.04));
}

.photo-before {
    background-image: url("../img/sizulu/Before.jpg");
    /* filter: grayscale(20%) brightness(0.8); */
}

.photo-after {
    background-image: url("../img/sizulu/After.jpg");
}

.gmb-content {
    padding: 18px 16px 16px;
}

.gmb-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 6px;
    color: #202124;
}

.gmb-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    margin-bottom: 6px;
}

.rating-score {
    font-weight: bold;
    color: #3c4043;
}

.stars {
    color: #fbbc04;
    letter-spacing: 1px;
}

.stars-gray {
    color: #d1d5db;
}

.review-count {
    color: #70757a;
    font-size: 13px;
}

.gmb-category {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 14px;
}

.gmb-impression {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.gmb-impression span {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
}

.before-text span {
    background: #F3F4F6;
    color: #6B7280;
}

.after-text span {
    background: rgba(219, 103, 58, 0.1);
    color: var(--color-main);
}

.gmb-actions {
    display: flex;
    justify-content: space-around;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E7EB;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #1a73e8;
    font-weight: 600;
    min-width: 56px;
}

.action-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #E8F0FE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

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

.gmb-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.gmb-info-list li:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 15px;
    line-height: 1.6;
}

.info-text {
    color: #374151;
    line-height: 1.7;
}

.info-text.missing {
    color: #D93025;
    font-weight: bold;
}

.info-text .success {
    color: #188038;
    font-weight: bold;
}

.info-text.small {
    font-size: 12px;
    color: #555;
}

.service-options {
    margin-top: 4px;
    font-size: 12px;
    color: #4B5563;
}

.check-icon {
    color: #188038;
    font-weight: bold;
}

.cross-icon {
    color: #D93025;
    font-weight: bold;
}

.dot {
    color: #94A3B8;
    margin: 0 2px;
}


.ba-closing {
    margin-top: 28px;
    text-align: center;
    line-height: 1.9;
    font-weight: bold;
    color: var(--color-sub);
}

/* =========================
   Benefit Section
   ========================= */
.benefit-section {
    overflow: hidden;
}

.benefit-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.benefit-detail-card {
    background: #fff;
    border-radius: 18px;
    padding: 22px 18px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.benefit-detail-head {
    margin-bottom: 14px;
}

.benefit-label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(219, 103, 58, 0.1);
    color: var(--color-main);
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.08em;
}

.benefit-detail-head h4 {
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-sub);
}

.benefit-description {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.9;
    color: var(--color-text);
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: grid;
    gap: 10px;
}

.benefit-list li {
    position: relative;
    padding: 12px 14px 12px 36px;
    background: #F8FAFC;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--color-text);
    font-weight: 600;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 12px;
    color: var(--color-main);
    font-weight: bold;
}

.benefit-point {
    padding: 14px 16px;
    border-radius: 12px;
    background: #fff8f4;
    border: 1px solid #f3d7c8;
    font-size: 13px;
    line-height: 1.8;
    color: var(--color-text);
    font-weight: 600;
}

.benefit-summary-box {
    margin-top: 28px;
    background: #fff;
    border-radius: 18px;
    padding: 24px 18px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.benefit-summary-box h4 {
    margin: 0 0 16px;
    font-size: 18px;
    color: var(--color-sub);
}

.benefit-summary-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.benefit-summary-tags span {
    flex: 1 1 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(219, 103, 58, 0.1);
    color: var(--color-main);
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}

.benefit-summary-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: var(--color-text);
    font-weight: bold;
}

/* 
Gallery 
*/
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 14px;
    background: #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.gallery-note {
    margin-top: 16px;
    font-size: 12px;
    color: #64748B;
    text-align: center;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}



.wrapper {
    scroll-behavior: smooth;
}

@media (min-width: 1024px) {
    .pc-side.right {
        text-align: center;
        pointer-events: auto;
    }

    .pc-side.right .side-inner {
        width: min(220px, calc(100% - 40px));
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
        pointer-events: auto;
    }

    .pc-side.right p {
        pointer-events: none;
        margin: 0;
        font-size: 24px;
        font-weight: bold;
        color: var(--color-sub);
        line-height: 1.6;
        letter-spacing: 0.08em;
    }

    .page-toc {
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid rgba(255, 255, 255, 0.7);
        border-radius: 20px;
        padding: 16px 14px;
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.10);
        backdrop-filter: blur(10px);
        text-align: left;
    }

    .page-toc-title {
        margin: 0 0 12px;
        text-align: center;
        font-size: 11px;
        font-weight: bold;
        letter-spacing: 0.18em;
        color: #94A3B8;
    }

    .page-toc-nav {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .toc-link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 10px;
        border-radius: 12px;
        text-decoration: none;
        color: #64748B;
        font-size: 12px;
        font-weight: bold;
        line-height: 1.5;
        transition: all 0.25s ease;
    }

    .toc-link::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 999px;
        flex-shrink: 0;
        background: #CBD5E1;
        transition: all 0.25s ease;
    }

    .toc-link:hover {
        background: rgba(219, 103, 58, 0.06);
        color: var(--color-sub);
        transform: translateX(2px);
    }

    .toc-link.is-active {
        /* background: rgba(219, 103, 58, 0.10); */
        color: var(--color-main);
        font-size: 13px;
    }

    .toc-link.is-active::before {
        background: var(--color-main);
        transform: scale(1.3);
        /* box-shadow: 0 0 0 5px rgba(219, 103, 58, 0.14); */
    }
}


/* 
追加分
*/

.section-text.strong {
    text-align: center;
    line-height: 1.9;
    font-size: 15px;
}

.insight_point{
    margin-top: 25px;
}

.highlight{
    display: block;
    width: 100%;
    text-align: center;
    font-weight: bold;
    background: var(--color-sub);
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--color-white);
}

.arrow i{
  display: block;
  font-size: 25px;
  margin: 0 auto;
  color: var(--color-sub);
}


/* =========================
   Mobile TOC
   ========================= */
.mobile-toc-trigger,
.mobile-toc-overlay {
    display: none;
}

@media (max-width: 1023px) {
    .page-header {
        position: sticky;
        top: 0;
        z-index: 40;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(10px);
    }

    .page-header .logo {
        width: 92px;
        margin: 0 auto;
        padding: 14px 0;
    }

    .mobile-toc-trigger {
        display: flex;
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 45;
    }

    .mobile-toc-trigger span {
        display: block;
        width: 18px;
        height: 2px;
        background: var(--color-sub);
        border-radius: 999px;
        transition: 0.25s ease;
    }

    .mobile-toc-trigger.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-toc-trigger.is-open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toc-trigger.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-toc-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.68);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: 0.25s ease;
        z-index: 200;
    }

    .mobile-toc-overlay.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-toc-panel {
        position: absolute;
        inset: 0;
        background: #fff;
        padding: 0px 0px 32px;
        overflow-y: auto;
    }

    .mobile-toc-head {
      height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
        position: relative;
    }

    .mobile-toc-title {
      display: block;
        margin: 0 auto;
        font-size: 20px;
        letter-spacing: 0.16em;
        font-weight: bold;
        color: #94A3B8;
    }

    .mobile-toc-close {
        width: 42px;
        height: 42px;
        top:50%;
        right: 16px;
        transform: translateY(-50%);
        position: absolute;
        cursor: pointer;
    }

    .mobile-toc-close span {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 18px;
        height: 2px;
        background: var(--color-sub);
        border-radius: 999px;
    }

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

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

    .mobile-toc-nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0px 20px;
    }

    .mobile-toc-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        border-radius: 14px;
        text-decoration: none;
        color: var(--color-sub);
        background: #F8FAFC;
        font-size: 15px;
        font-weight: bold;
        line-height: 1.6;
        transition: 0.25s ease;
    }

    .mobile-toc-link::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: #CBD5E1;
        flex-shrink: 0;
        transition: 0.25s ease;
    }

    .mobile-toc-link.is-active {
        color: var(--color-main);
        font-size: 17px;
        background: rgba(219, 103, 58, 0.08);
    }

    .mobile-toc-link.is-active::before {
        background: var(--color-main);
        transform: scale(1.3);
    }
}

@media (min-width: 1024px) {
    .mobile-toc-trigger,
    .mobile-toc-overlay {
        display: none !important;
    }
}