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

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.5;
    color: #333;
    -webkit-font-smoothing: antialiased;
    background-color: #FFFFFF;
}

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

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

ul {
    list-style: none;
}

/* Utilities */
.section {
    width: 100%;
    overflow: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 15px 20px;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.08);
}

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

.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FF6733;
    border-radius: 40px;
    padding: 13px 55px;
    gap: 15px;
    color: #FFFFFF;
    transition: opacity 0.3s;
}

.header-btn:hover {
    opacity: 0.7;
    transform: translateY(2px);
}

.header-btn-icon img {
    width: 25px;
    height: 25px;
}

.header-btn-text {
    font-weight: 700;
    font-size: 16px;
}

/* Hero Section */
.hero-section {
    padding-top: 120px;
    /* Space for fixed header */
    background-color: #FFFFFF;
    width: 100%;
    overflow: hidden;
}

.hero-image-wrapper {
    /* 1:17 Image container: mode row, justify stretch, align stretch */
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;
    width: 100%;
    max-width: 1500px;
    padding: 0 80px;
    margin: 0 auto;
}

.hero-text-container {
    /* 1:18 Text container: mode column, gap 50px, sizing fill */
    display: flex;
    flex-direction: column;
    gap: 50px;
    flex: 1;
    justify-content: center;
    padding: 80px 60px;
}

.hero-text {
    /* 1:19 Text: mode column, align center, gap 33px */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 33px;
    text-align: center;
}

.hero-title {
    /* 1:20: fontWeight 700, fontSize 65, lineHeight 1.4em, color #FF6733 */
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 65px;
    line-height: 1.4;
    color: #FF6733;
    text-align: center;
}

.hero-subtitle-container {
    /* 1:21 Subtitle container: mode column, align center, gap 14px */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-subtitle {
    /* 1:22: fontWeight 500, fontSize 28, lineHeight 1.2em, letterSpacing -2%, color #333333 */
    font-weight: 500;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #333333;
    text-align: center;
}

.hero-app-badge {
    /* 1:23 Button container: mode row, justify center, align center, padding 12px 40px, bg #FF6733 */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 45px;
    background-color: #FF6733;
}

.hero-app-name {
    /* 1:24: fontWeight 700, fontSize 40, lineHeight 1.2em, letterSpacing -2%, (white text assumed) */
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    text-align: center;
}

.hero-image-container {
    /* 1:25 Image container: sizing fill */
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Problem Section (1:27) */
.problem-section {
    /* 1:27 layout: mode column, padding 100px 20px, bg white */
    padding: 0px 20px 70px 20px;
    background-color: #FFFFFF;
    width: 100%;
}

.problem-inner {
    /* 1:28 Inner Container: mode column, gap implied */
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.problem-content-container {
    /* 1:29 Content Container */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.problem-card {
    /* 1:30 Main Content: mode row, bg #F7F7F7, borderRadius 90px */
    background-color: #F7F7F7;
    border-radius: 90px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 60px 80px;
    gap: 40px;
    width: 100%;
}

.problem-text-section {
    /* 1:31 Text Section: mode column, gap 40px */
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}

.problem-title {
    /* 1:32: fontWeight 700, fontSize 40, lineHeight 1.4em, color #333333 */
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.025em;
    color: #333333;
}

.problem-list {
    /* 1:33 List Container: mode column, gap 18px */
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.problem-item {
    /* 1:34 List Item: mode row, align center, gap 7px */
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
}

.problem-icon {
    /* 1:35 Icon Container: 25x25, padding 4px, bg #F39A7C, borderRadius 20px */
    width: 25px;
    height: 25px;
    background-color: #F39A7C;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 4px;
}

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

.problem-text {
    /* 1:37: fontWeight 400, fontSize 16, lineHeight 1.45em, color #333333 */
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: -0.005em;
    color: #333333;
}

.problem-image-container {
    /* 1:50 Image Container: width 270px */
    width: 270px;
    flex-shrink: 0;
}

.problem-image-container img {
    width: 100%;
    height: auto;
}

.problem-arrow {
    /* 1:52 Polygon: decorative triangle pointing down */
    width: 0;
    height: 0;
    border-left: 88px solid transparent;
    border-right: 88px solid transparent;
    border-top: 86px solid #F7F7F7;
    margin-top: -35px;
}

.problem-bottom-section {
    /* 1:53 Bottom Section: mode column, align center, padding 0 150px */
    display: flex;
    justify-content: center;
    padding: 0 150px;
}

.problem-bottom-card {
    /* 1:54 Bottom Text Container: padding 50px 30px, bg white, border #F39A7C 5px, borderRadius 25px */
    background-color: #FFFFFF;
    border: 5px solid #F39A7C;
    border-radius: 25px;
    padding: 50px 30px;
    width: 100%;
}

.problem-bottom-text {
    /* 1:55: fontWeight 700, fontSize 20, lineHeight 1.6em, color #333333, text center */
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: -0.005em;
    color: #333333;
    text-align: center;
}

/* Solution Section (1:56) */
.solution-section {
    /* 1:56 layout: mode column, align center, padding 100px 20px, bg #FFE7DC */
    padding: 80px 20px;
    background-color: #FFE7DC;
    width: 100%;
}

.solution-inner {
    /* 1:57 Inner Container */
    max-width: 1024px;
    margin: 0 auto;
}

.solution-content-container {
    /* 1:58 Content Container: mode column, gap 70px */
    display: flex;
    flex-direction: column;
    gap: 75px;
}

.solution-header {
    /* 1:59 Header Container: mode row, align center, gap implied */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.solution-pre-title {
    /* 1:60: fontWeight 700, fontSize 40, lineHeight 1.3em, color #333333 */
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    color: #333333;
}

.solution-highlight {
    /* 1:61 Highlight Container: mode row, justify center, align center, padding 3px 8px, bg #FF6733 */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 3px 8px;
    background-color: #FF6733;
}

.solution-highlight-text {
    /* 1:62: fontWeight 700, fontSize 48, lineHeight 1.3em, color #FFFFFF */
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: #FFFFFF;
}

.solution-main {
    /* 1:63 Image and Text Container: mode row, justify center, align center, gap 30px */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.solution-image {
    /* 1:64 Image Container: width 520px */
    width: 520px;
    flex-shrink: 0;
}

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

.solution-desc {
    /* 1:66 Description Container: mode column, justify center, gap 20px */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    flex: 1;
}

.solution-desc-title {
    /* 1:67: fontWeight 700, fontSize 28, lineHeight 1.5em, color #333333 */
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.005em;
    color: #333333;
    text-align: left;
}

.solution-highlight-inline {
    color: #FF6733;
    font-weight: bold;
}

.solution-desc-text {
    /* 1:68: fontWeight 400, fontSize 16, lineHeight 1.7em, color #333333 */
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.005em;
    color: #333333;
    text-align: left;
}

/* Reasons Section (1:69) */
.reasons-section {
    padding: 60px 20px;
    background-color: #F7F7F7;
    width: 100%;
}

.reasons-inner {
    max-width: 1024px;
    margin: 0 auto;
}

.reasons-header {
    text-align: center;
    margin-bottom: 40px;
}

.reasons-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.005em;
    color: #333333;
}

.reasons-title-highlight {
    color: #FF6733;
}

.reasons-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reason-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    /* Common padding for mobile */
    padding: 30px 40px;
}

/* Card 1: Coach */
.reason-card--coach {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reason-card-main {
    display: flex;
    flex-direction: column;
    /* Mobile: Stack vertical */
    gap: 20px;
    align-items: center;
    padding: 0;
    /* padding handled by .reason-card */
}

.reason-card--coach .reason-card-image {
    width: 100%;
    max-width: 280px;
    /* Adjust as needed for mobile image size */
}

.reason-card--coach .reason-card-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.reason-card-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.reason-card--coach .reason-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reason-card-image-bottom {
    width: 100%;
    margin-top: 10px;
}

.reason-card-image-bottom img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Card 2 & 3: Simple & Community */
.reason-card--simple,
.reason-card--community {
    display: flex;
    flex-direction: column-reverse;
    /* Mobile: Image on top or bottom depending on design? Usually Image Top or Text Top.
       Looking at Figma mobile:
       Point 02: Text (top) -> Image (bottom)
       Point 03: Text (top) -> Image (bottom)
       Wait, standard stacking usually puts image first if it's visual, but here content is key.
       Let's check current HTML structure:
       Simple: Content, then Image.
       Community: Image, then Content.
       We want consistent stacking. Users usually want Image then Text, or Text then Image.
       Figma Mobile usually shows Text -> Image for these feature cards?
       The user request links for mobile:
       Point 02 (1-595): Text block top, Image block bottom.
       Point 03 (1-1113): Text block top, Image block bottom.
       
       Current HTML:
       Simple: Content (first), Image (second). -> Default column works.
       Community: Image (first), Content (second). -> Need column-reverse? No, if we want Text Top, we need Content first.
       So for Community, if we want Text Top, we need reverse of HTML order (Image, Content). So yes, flex-direction: column-reverse works if we want Content at Bottom? No.
       HTML: Image, Content.
       Row: Image Left, Content Right.
       Column: Image Top, Content Bottom.
       Column-reverse: Content Top, Image Bottom.
       So for Community (Image first in HTML), use column-reverse to get Text Top.
       For Simple (Content first in HTML), use column to get Text Top.
    */
    gap: 30px;
    align-items: center;
}

.reason-card--simple {
    flex-direction: column;
    /* HTML: Content, Image. Result: Text Top, Image Bottom */
}

.reason-card--community {
    flex-direction: column-reverse;
    /* HTML: Image, Content. Result: Text Top, Image Bottom */
}


.reason-card--simple .reason-card-image,
.reason-card--community .reason-card-image {
    width: 100%;
    max-width: 280px;
}

.reason-card--simple .reason-card-image img,
.reason-card--community .reason-card-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.reason-card--simple .reason-card-content,
.reason-card--community .reason-card-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Card header - POINT badge and title */
.reason-card-header {
    display: flex;
    flex-direction: row;
    /* Mobile: Side by side */
    align-items: center;
    justify-content: center;
    /* Center the whole group on mobile */
    gap: 8px;
    margin-bottom: 10px;
}

.reason-point-badge {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 10px;
    background-color: #FF6733;
    line-height: 1;
}

.reason-point-badge span {
    color: #FFFFFF;
    display: block;
}

.reason-point-badge span:first-child {
    font-size: 10px;
    margin-bottom: 2px;
}

.reason-point-badge span:last-child {
    font-size: 28px;
    font-weight: 700;
}

.reason-card-title {
    font-size: 20px;
    /* Mobile font size */
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.005em;
    color: #333333;
    text-align: center;
}

.reason-card-title .highlight {
    color: #FF6733;
}

.reason-card-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    /* 1.5->1.7 for readability */
    letter-spacing: 0;
    color: #333333;
    /* Darker for better contrast on mobile? Or keep #666 */
    text-align: left;
}


/* Desktop / Tablet adjustments */
@media screen and (min-width: 768px) {
    .reasons-section {
        padding: 100px 20px;
    }

    .reasons-header {
        margin-bottom: 60px;
    }

    .reasons-cards {
        gap: 40px;
    }

    .reason-card {
        padding: 45px 40px;
    }

    /* Card 1: Coach - Desktop Layout */
    /* .reason-card--coach keeps column direction but inner main becomes row */

    .reason-card-main {
        flex-direction: row;
        /* Side by side */
        align-items: flex-start;
        gap: 40px;
    }

    .reason-card--coach .reason-card-image {
        width: 45%;
        max-width: none;
        flex-shrink: 0;
    }

    .reason-card-right {
        gap: 30px;
    }

    /* Card 2 & 3: Horizontal Layout */
    .reason-card--simple {
        flex-direction: row;
        /* Content Left, Image Right */
    }

    .reason-card--community {
        flex-direction: row;
        /* Image Left, Content Right */
    }

    .reason-card--simple .reason-card-image,
    .reason-card--community .reason-card-image {
        flex: 1;
        max-width: none;
    }

    .reason-card--simple .reason-card-content,
    .reason-card--community .reason-card-content {
        flex: 1;
    }

    /* Headers align left on desktop */
    .reason-card-header {
        flex-direction: row;
        /* Side by side badge and title */
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
    }

    .reason-card-title {
        font-size: 28px;
        /* Desktop font size */
        text-align: left;
    }

    .reason-point-badge {
        flex-direction: row;
        /* Badge horizontal? Or specific design? 
           Let's look at Figma Desktop. 
           Desktop design often keeps the stacked badge or horizontal?
           The user said "Point 01~03". 
           Let's assume the badge style might be distinct.
           Actually, let's keep it stacked if it looks like a badge, or horizontal if it's "POINT 01".
           Figma node 1:83 (Desktop) has text "POINT\L01". Stacked.
           So Keep stacked badge across devices, but maybe scale it.
        */
        flex-direction: column;
        padding: 7px 8px;
    }

    .reason-point-badge span:first-child {
        font-size: 11px;
    }

    .reason-point-badge span:last-child {
        font-size: 22px;
    }

    .reason-card-desc {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* Partner Section (1:110) */
.partner-section {
    /* 1:110 layout: mode column, align center, gap 50px, padding 100px 20px, bg #F7F7F7 */
    padding: 100px 20px;
    background-color: #F7F7F7;
    width: 100%;
}

.partner-inner {
    /* 1:111: mode column, gap 50px */
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.partner-header {
    /* 1:112: mode column, align center, gap 10px */
    text-align: center;
}

.partner-title {
    /* 1:114: fontWeight 700, fontSize 42, lineHeight 1.6em, color #333333 */
    font-size: 40px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: -0.005em;
    color: #333333;
}

.partner-highlight {
    /* 1:117: bg #FF6733, color white, padding small */
    background-color: #FF6733;
    color: #FFFFFF;
    padding: 5px 15px;
}

.partner-desc-container {
    /* 1:119: mode row, padding 0 140px */
    padding: 0 140px;
    text-align: center;
}

.partner-desc {
    /* 1:120: fontWeight 400, fontSize 16, lineHeight 1.7em, color #333333 */
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.005em;
    color: #333333;
}

.partner-image-main {
    /* 1:121: mode column, justify center, align center, padding 0 160px */
    padding: 0 250px;
}

.partner-image-main img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.partner-bottom {
    /* 1:123: mode row, gap 20px */
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    padding: 0 80px;
}

.partner-bottom-image {
    flex: 1;
}

.partner-bottom-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.partner-bottom-text {
    /* 1:126: fontWeight 400, fontSize 16, lineHeight 1.7em, color #333333 */
    flex: 1;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.005em;
    color: #333333;
}

/* Steps Section (1:127) */
.steps-section {
    /* 1:127 layout: mode column, align center, gap 40px, padding 100px 20px, bg #FFE7DC */
    padding: 100px 20px;
    background-color: #FFE7DC;
    width: 100%;
}

.steps-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.steps-header {
    /* 1:129: Header */
    text-align: center;
}

.steps-title {
    /* 1:130: fontWeight 700, fontSize 40, lineHeight 1.45em, color #333333 */
    font-size: 40px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.005em;
    color: #333333;
}

.steps-container {
    /* 1:131: mode row, gap 25px */
    display: flex;
    flex-direction: row;
    gap: 25px;
}

.step-card {
    /* 1:132: mode column, align center, gap 20px, padding 30px 20px, bg white, radius 20px */
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.step-header {
    /* 1:133: mode column, align center, gap 16px */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.step-number {
    /* 1:134: 75x75, bg #F39A7C, radius 37.5px (circle), padding 13px 16px */
    background-color: #F39A7C;
    color: #FFFFFF;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.step-number span:first-child {
    /* STEP label */
    font-size: 10px;
    line-height: 1;
}

.step-number span:last-child {
    /* Number */
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.step-title {
    /* 1:136: fontWeight 700, fontSize 25, lineHeight 1.45em, color #333333 */
    font-size: 25px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.005em;
    color: #333333;
    text-align: center;
}

.step-image {
    /* 1:137: Image container with padding 0 20px */
    width: 100%;
    padding: 0px;
}

.step-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.step-desc {
    /* 1:139: fontWeight 400, fontSize 16, lineHeight 1.7em, color #333333 */
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.005em;
    color: #333333;
    text-align: left;
}

/* Why Habitasu Section (1:159) */
.why-section {
    padding: 100px 20px;
    background-color: #FFFFFF;
    width: 100%;
}

.why-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.why-title {
    font-size: 40px;
    font-weight: 700;
    color: #333333;
    text-align: center;
}

.why-cards {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.why-card-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.why-card {
    border: 3px solid #F39A7C;
    border-radius: 20px;
    overflow: hidden;
}

.why-card-header {
    background-color: #F39A7C;
    padding: 15px 0;
    border-radius: 17px 17px 0 0;
}

.why-card-subtitle {
    font-size: 25px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.4;
    text-align: center;
    display: block;
}

.why-card-image {
    width: 100%;
}

.why-card-image img {
    width: 100%;
    height: auto;
}

.why-card-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #333333;
}

/* Testimonials Section (1:282) */
.testimonials-section {
    padding: 100px 20px;
    background-color: rgb(255, 231, 220);
    width: 100%;
    overflow-x: hidden;
}

.testimonials-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonials-header {
    padding-left: max(20px, calc((100vw - 1200px) / 2 + 20px));
}

.testimonials-title {
    font-size: 40px;
    font-weight: 700;
    color: #292524;
}

.testimonials-scroll-hint {
    padding-left: max(20px, calc((100vw - 1200px) / 2 + 20px));
}

.testimonials-scroll-text {
    font-size: 16px;
    font-weight: 500;
    color: #FF6733;
}

.testimonials-cards {
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow-x: auto;
    padding-left: max(20px, calc((100vw - 1200px) / 2 + 20px));
    padding-right: 50px;
    padding-bottom: 20px;
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    width: 500px;
    flex-shrink: 0;
}

.testimonial-header {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
}

.testimonial-rating {
    color: #FAB007;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #333333;
}

/* CTA Section (1:433) */
.cta-section {
    padding: 100px 20px;
    background-color: #FFFFFF;
    width: 100%;
}

.cta-inner {
    max-width: 1024px;
    margin: 0 auto;
}

.cta-content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.cta-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 31px;
    justify-content: center;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    color: #333333;
}

.cta-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #333333;
}

.cta-image {
    flex: 1;
    padding: 0 60px;
}

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

/* Campaign Section (1:462) */
.campaign-section {
    padding: 70px 20px;
    background-color: rgb(255, 231, 220);
    width: 100%;
}

.campaign-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.campaign-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    color: #333333;
    text-align: center;
}

.campaign-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
}

.campaign-image {
    flex: 1;
}

.campaign-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.campaign-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.campaign-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #333333;
}

.campaign-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FF6733;
    border-radius: 50px;
    padding: 18px 85px;
    gap: 15px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.campaign-btn:hover {
    opacity: 0.7;
    transform: translateY(2px);
}

.campaign-btn-text {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
}

.campaign-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.campaign-cta-text {
    font-size: 16px;
    font-weight: 700;
    color: #FF6733;
}

.campaign-line-icon {
    width: 32px;
    height: 32px;
}

/* Pricing Section (1:395) */
.pricing-section {
    padding: 100px 20px;
    background-color: #F7F7F7;
    width: 100%;
}

.pricing-inner {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 27px;
}

.pricing-title {
    font-size: 40px;
    font-weight: 700;
    color: #333333;
    text-align: center;
}

.pricing-desc {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    padding: 0 180px;
}

.pricing-image {
    max-width: 700px;
    width: 100%;
    margin-top: 20px;
}

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

.pricing-monthly {
    background-color: #FF6733;
    padding: 20px 50px;
}

.pricing-price {
    font-size: 40px;
    font-weight: 700;
    color: #FFFFFF;
    white-space: nowrap;
}

.pricing-price-small {
    font-size: 36px;
}

.pricing-annual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.pricing-annual-desc {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: #FF6733;
}

.pricing-annual-price {
    font-size: 40px;
    font-weight: 700;
    color: #333333;
}

.pricing-features-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 40px 60px;
    background: #FFFFFF;
    border: 2px solid #FF6733;
    border-radius: 10px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-feature-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.pricing-feature-icon img {
    width: 100%;
    height: 100%;
}

.pricing-feature-text {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
}

/* FAQ Section (1:475) */
.faq-section {
    /* 1:475 layout: mode column, align center, gap 48px, padding 100px 20px, bg #F7F7F7 */
    padding: 100px 20px;
    background-color: #F7F7F7;
    width: 100%;
}

.faq-inner {
    /* 1:476: mode column, gap 48px, padding 0 100px */
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-title {
    /* 1:477: fontWeight 700, fontSize 40, color #292524 */
    font-size: 40px;
    font-weight: 700;
    color: #292524;
}

.faq-list {
    /* 1:478: mode column, gap 12px */
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    /* 1:479: mode row, gap 16px, padding 15px, bg white, border #DDDDDD 1px, radius 16px */
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 16px;
    padding: 15px;
}

.faq-question {
    /* 1:480: mode row, align center, gap 10px */
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-question-text {
    /* 1:481: fontWeight 700, fontSize 16, color #333333 */
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    color: #333333;
    flex: 1;
}

.faq-icon {
    /* 1:482: expand icon */
    font-size: 12px;
    color: #99A1AF;
    flex-shrink: 0;
}

/* Footer (1:509) */
.footer {
    /* 1:509 layout: mode column, align center, gap 30px, padding 50px 20px, bg #FF6733 */
    padding: 150px 20px;
    background-color: #F39A7C;
    width: 100%;
}

.footer-inner {
    /* 1:510: mode column, align center, gap 30px */
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    /* 1:511: width 318, height 105 */
    width: 318px;
}

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

.footer-nav {
    /* 1:512: mode row, justify center, align center, gap 35px */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.footer-link {
    /* 1:514: fontWeight 500, fontSize 16, color #FFFFFF */
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.7;
}

/* ==================== TABLET RESPONSIVE (800px - 1279px) ==================== */
@media (max-width: 1279px) and (min-width: 800px) {

    /* Header */
    .header {
        top: 0px;
        padding: 0 10px;
    }

    .header-inner {
        padding: 10px 20px;
    }

    .logo img {
        height: 50px;
    }

    .header-btn {
        padding: 10px 40px;
    }

    /* Hero Section */
    .hero-section {
        padding: 100px 0 50px 0;
    }

    .hero-image-wrapper {
        flex-direction: column;
        max-width: 650px;
        padding: 0px;
    }

    .hero-text-container {
        padding: 10px 0px;
        gap: 25px;
        order: 2;
    }

    .hero-text {
        gap: 25px;
    }

    .hero-title {
        font-size: 55px;
    }

    .hero-subtitle {
        font-size: 30px;
    }

    .hero-app-name {
        font-size: 40px;
    }

    .hero-image-container {
        order: 1;
    }

    /* Problem Section */
    .problem-section {
        padding: 20px 40px 80px 40px;
    }

    .problem-content-container {
        padding: 0 40px;
    }

    .problem-card {
        flex-direction: column;
        padding: 40px 90px;
        gap: 30px;
    }

    .problem-image-container {
        width: 100%;
        order: -1;
    }

    .problem-image-container img {
        max-height: 180px;
        width: auto;
        margin: 0 auto;
        display: block;
    }

    .problem-title {
        font-size: 30px;
        text-align: center;
    }

    .problem-bottom-section {
        padding: 0 40px;
    }

    .problem-bottom-card {
        border-width: 3px;
    }

    .problem-bottom-text {
        font-size: 18px;
    }

    /* Solution Section */
    .solution-section {
        padding: 80px 20px;
    }

    .solution-inner {
        max-width: 600px;
        margin: 0 auto;
    }

    .solution-header {
        justify-content: flex-start;
    }

    .solution-content-container {
        gap: 50px;
    }

    .solution-pre-title {
        font-size: 30px;
    }

    .solution-highlight-text {
        font-size: 32px;
    }

    .solution-main {
        flex-direction: column;
        gap: 40px;
    }

    .solution-image {
        width: 100%;
        max-width: 500px;
    }

    .solution-desc {
        text-align: center;
    }

    .solution-desc-title {
        font-size: 24px;
        text-align: center;
    }

    .solution-desc-text {
        text-align: center;
    }

    /* Reasons Section */
    .reasons-section {
        padding: 80px 20px;
    }

    .reasons-inner {
        max-width: 600px;
        margin: 0 auto;
    }

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

    .reasons-title {
        font-size: 30px;
        text-align: center;
    }

    .reasons-cards {
        flex-direction: column;
        gap: 30px;
    }

    /* Card 1: Coach - 縦並び（テキスト上、画像下） */
    .reason-card--coach .reason-card-main {
        flex-direction: column;
        gap: 20px;
    }

    .reason-card--coach .reason-card-image {
        width: 100%;
        order: 2;
        padding: 0 46px;
    }

    .reason-card--coach .reason-card-right {
        order: 1;
    }

    .reason-card--coach .reason-card-image-bottom {
        padding: 0 20px;
    }

    /* Card 2: Simple - 縦並び */
    .reason-card--simple {
        flex-direction: column;
        padding: 45px 40px;
        gap: 30px;
    }

    .reason-card--simple .reason-card-content {
        order: 1;
    }

    .reason-card--simple .reason-card-image {
        order: 2;
        max-width: 100%;
        padding: 0 60px;
    }

    /* Card 3: Community - 縦並び（テキスト上、画像下） */
    .reason-card--community {
        flex-direction: column;
        padding: 45px 40px;
        gap: 20px;
    }

    .reason-card--community .reason-card-image {
        order: 2;
        max-width: 100%;
        padding: 0 60px;
    }

    .reason-card--community .reason-card-content {
        order: 1;
    }

    .reason-card-header {
        justify-content: flex-start;
    }

    .reason-card-title {
        font-size: 24px;
    }

    .reason-card-desc {
        font-size: 16px;
    }

    /* Partner Section */
    .partner-section {
        padding: 40px 20px;
    }

    .partner-inner {
        max-width: 600px;
        margin: 0 auto;
        gap: 30px;
    }

    .partner-title {
        font-size: 30px;
    }

    .partner-title span {
        font-size: 32px;
    }

    .partner-desc-container {
        padding: 0 70px;
        text-align: left;
    }

    .partner-image-main {
        padding: 0 60px;
    }

    .partner-bottom {
        flex-direction: column;
        gap: 30px;
        padding: 0px;
    }

    .partner-bottom-image {
        width: 100%;
        padding: 0 50px;
    }

    .partner-bottom-text {
        text-align: left;
    }

    /* Steps Section */
    .steps-section {
        padding: 80px 20px;
    }

    .steps-inner {
        max-width: 600px;
        margin: 0 auto;
        padding: 0 80px;
    }

    .steps-title {
        font-size: 30px;
    }

    .step-title {
        font-size: 24px;
    }

    .steps-container {
        flex-direction: column;
        gap: 30px;
    }

    .step-card {
        max-width: 100%;
    }

    .step-desc {
        font-size: 16px;
    }

    /* Why Habitasu Section */
    .why-section {
        padding: 80px 40px;
    }

    .why-inner {
        max-width: 600px;
        margin: 0 auto;
    }

    .why-title {
        font-size: 30px;
    }

    .why-cards {
        flex-direction: column;
        gap: 45px;
        padding: 0 80px;
    }

    .why-card {
        max-width: 100%;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 80px 20px;
    }

    .testimonials-title {
        font-size: 30px;
    }

    .testimonial-card {
        width: 400px;
    }

    /* Pricing Section */
    .pricing-section {
        padding: 80px 20px;
    }

    .pricing-inner {
        max-width: 600px;
        margin: 0 auto;
    }

    .pricing-title {
        font-size: 30px;
    }

    .pricing-desc {
        font-size: 24px;
        padding: 0px;
    }

    .pricing-image {
        max-width: 100%;
        padding: 0 40px;
        margin: 0px;
    }

    .pricing-monthly {
        padding: 15px 40px;
    }

    .pricing-price {
        font-size: 30px;
    }

    .pricing-price-small {
        font-size: 26px;
    }

    .pricing-annual-desc {
        font-size: 18px;
        font-weight: bold;
    }

    .pricing-annual {
        gap: 10px;
        padding: 0 50px;
    }

    .pricing-annual-price {
        font-size: 30px;
    }

    .pricing-features-card {
        padding: 40px 90px;
    }

    /* CTA Section */
    .cta-section {
        padding: 80px 40px;
    }

    .cta-inner {
        max-width: 600px;
        margin: 0 auto;
    }

    .cta-content {
        flex-direction: row;
        gap: 30px;
        align-items: center;
    }

    .cta-text {
        flex: 1;
    }

    .cta-image {
        flex: 1;
        padding: 0px;
    }

    .cta-title {
        font-size: 30px;
    }

    .cta-desc {
        font-size: 16px;
    }

    /* Campaign Section */
    .campaign-section {
        padding: 80px 20px;
    }

    .campaign-inner {
        max-width: 600px;
        margin: 0 auto;
    }

    .campaign-title {
        font-size: 24px;
    }

    .campaign-content {
        flex-direction: column;
        gap: 20px;
    }

    .campaign-image {
        padding: 0 60px;
    }

    .campaign-desc-container {
        padding: 0 70px;
        gap: 40px;
    }

    .campaign-cta-container {
        padding: 0 50px;
        gap: 10px;
    }

    /* FAQ Section */
    .faq-inner {
        max-width: 600px;
        margin: 0 auto;
    }

    .faq-section {
        padding: 80px 20px;
    }

    .faq-title {
        font-size: 30px;
    }

    /* Footer */
    .footer {
        padding: 150px 40px;
    }

    .footer-logo {
        width: 280px;
    }

    .footer-nav {
        gap: 25px;
    }

    .footer-link {
        font-size: 14px;
    }
}

/* ===================
   Mobile (max-width: 799px)
   =================== */
@media (max-width: 799px) {

    /* Header */
    .header {
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        width: auto;
        max-width: none;
        padding: 0;
    }

    .header-inner {
        padding: 7px 20px;
        border-radius: 0;
        justify-content: center;
    }

    .logo img {
        width: 170px;
        height: 56px;
        object-fit: contain;
    }

    .header-btn {
        display: none;
    }

    /* Hero Section */
    .hero-section {
        padding: 105px 20px 30px;
    }

    .hero-image-wrapper {
        flex-direction: column;
        gap: 0px;
        padding: 0px;
    }

    .hero-image-container {
        order: 1;
        width: 100%;
    }

    .hero-image-container img {
        max-width: 100%;
        height: auto;
    }

    .hero-text-container {
        order: 2;
        width: 100%;
    }

    .hero-text-container {
        padding: 0px;
    }

    .hero-text {
        gap: 33px;
        align-items: center;
    }

    .hero-title {
        font-size: 45px;
        text-align: center;
    }

    .hero-subtitle-container {
        gap: 15px;
        align-items: center;
    }

    .hero-subtitle {
        font-size: 23px;
        text-align: center;
    }

    .hero-app-badge {
        padding: 12px 40px;
    }

    .hero-app-name {
        font-size: 30px;
    }

    /* Problem Section */
    .problem-section {
        padding: 20px 20px 50px 20px;
    }

    .problem-inner {
        max-width: 430px;
        margin: 0 auto;
    }

    .problem-card {
        flex-direction: column;
        padding: 30px 20px;
        border-radius: 45px;
        gap: 25px;
    }

    .problem-text-section {
        gap: 28px;
    }

    .problem-title {
        font-size: 26px;
        text-align: center;
    }

    .problem-list {
        gap: 18px;
    }

    .problem-item {
        font-size: 16px;
        gap: 7px;
    }

    .problem-icon {
        width: 25px;
        height: 25px;
        min-width: 25px;
    }

    .problem-icon img {
        width: 100%;
        height: 100%;
    }

    .problem-text {
        font-size: 16px;
    }

    .problem-image-container {
        width: 100%;
        padding: 0;
        order: -1;
    }

    .problem-image-container img {
        max-height: 150px;
        width: auto;
        margin: 0 auto;
        display: block;
    }

    .problem-arrow {
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
        border-top: 50px solid #F7F7F7;
    }

    .problem-bottom-section {
        padding: 0;
    }

    .problem-bottom-card {
        padding: 35px 15px;
        border: 3px solid #F39A7C;
    }

    .problem-bottom-text {
        font-size: 16px;
    }

    /* Solution Section */
    .solution-section {
        padding: 60px 20px;
    }

    .solution-inner {
        max-width: 430px;
        margin: 0 auto;
    }

    .solution-content-container {
        gap: 35px;
    }

    .solution-header {
        gap: 10px;
        align-items: flex-start;
        flex-direction: column;
    }

    .solution-pre-title {
        font-size: 26px;
    }

    .solution-highlight {
        padding: 3px 25px;
    }

    .solution-highlight-text {
        font-size: 28px;
    }

    .solution-main {
        flex-direction: column;
        gap: 11px;
    }

    .solution-image {
        width: 100%;
        max-width: 100%;
    }

    .solution-desc {
        gap: 20px;
        text-align: left;
    }

    .solution-desc-title {
        font-size: 20px;
        text-align: left;
    }

    .solution-desc-text {
        font-size: 16px;
        text-align: left;
    }

    /* Reasons Section */
    .reasons-section {
        padding: 60px 20px;
    }

    .reasons-inner {
        max-width: 430px;
        margin: 0 auto;
    }

    .reasons-header {
        margin-bottom: 30px;
    }

    .reasons-title {
        font-size: 26px;
        text-align: center;
    }

    .reasons-cards {
        flex-direction: column;
        gap: 20px;
    }

    /* Card 1: Coach - 縦並び */
    .reason-card {
        padding: 40px 20px;
    }

    .reason-card--coach {
        border-radius: 15px;
    }

    .reason-card-main {
        flex-direction: column;
        gap: 20px;
    }

    .reason-card--coach .reason-card-image {
        width: 100%;
        order: 2;
        padding: 0px;
    }

    .reason-card--coach .reason-card-right {
        order: 1;
        gap: 20px;
    }

    .reason-card--coach .reason-card-content {
        gap: 15px;
    }


    /* Card 2: Simple - 縦並び（テキスト上、画像下） */
    .reason-card--simple {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        border-radius: 15px;
    }

    .reason-card--simple .reason-card-content {
        order: 1;
        gap: 15px;
    }

    .reason-card--simple .reason-card-image {
        order: 2;
        max-width: 100%;
        padding: 0;
    }

    .reason-card--simple .reason-card-image img {
        padding: 0;
    }

    /* Card 3: Community - 縦並び（テキスト上、画像下） */
    .reason-card--community {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        border-radius: 15px;
    }

    .reason-card--community .reason-card-image {
        order: 2;
        max-width: 100%;
        padding: 0;
    }

    .reason-card--community .reason-card-image img {
        padding: 0;
    }

    .reason-card--community .reason-card-content {
        order: 1;
        gap: 15px;
    }

    /* Common card styles */
    .reason-point-badge {
        padding: 7px 8px;
    }

    .reason-card-header {
        gap: 8px;
        justify-content: flex-start;
    }

    .reason-card-title {
        font-size: 20px;
    }

    .reason-card-desc {
        font-size: 16px;
    }

    /* Partner Section */
    .partner-section {
        padding: 20px 20px 50px 20px;
    }

    .partner-inner {
        max-width: 430px;
        margin: 0 auto;
        gap: 20px;
    }

    .partner-title {
        font-size: 26px;
    }

    .partner-title span {
        font-size: 28px;
    }

    .partner-desc-container {
        padding: 0px;
    }

    .partner-desc {
        font-size: 16px;
    }

    .partner-image-main {
        padding: 0px 30px;
    }

    .partner-bottom {
        flex-direction: column;
        gap: 20px;
        padding: 0px;
    }

    .partner-bottom-image {
        width: 100%;
    }

    .partner-bottom-text {
        font-size: 16px;
        text-align: left;
    }

    /* Steps Section */
    .steps-section {
        padding: 60px 20px;
    }

    .steps-inner {
        max-width: 430px;
        margin: 0 auto;
    }

    .steps-title {
        font-size: 26px;
    }

    .steps-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .step-card {
        max-width: 100%;
    }

    .step-number {
        font-size: 24px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-desc {
        font-size: 16px;
    }

    /* Why Habitasu Section */
    .why-section {
        padding: 60px 20px;
    }

    .why-inner {
        max-width: 430px;
        margin: 0 auto;
    }

    .why-title {
        font-size: 26px;
    }

    .why-cards {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .why-card {
        max-width: 100%;
    }

    .why-card-subtitle {
        font-size: 20px;
    }

    .why-card-title {
        font-size: 16px;
    }

    .why-card-desc {
        font-size: 16px;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 60px 0px;
    }

    .testimonials-header {
        padding-left: 30px;
    }

    .testimonials-scroll-hint {
        padding-left: 30px;
    }

    .testimonials-cards {
        padding-left: 30px;
    }


    .testimonials-title {
        font-size: 26px;
    }

    .testimonial-card {
        width: 300px;
    }

    /* Pricing Section */
    .pricing-section {
        padding: 60px 20px;
    }

    .pricing-inner {
        max-width: 430px;
        margin: 0 auto;
        gap: 23px;
    }

    .pricing-title {
        font-size: 26px;
    }

    .pricing-desc {
        font-size: 22px;
        padding: 0px;
    }

    .pricing-image {
        padding: 0;
        max-width: 100%;
        margin: 0px;
    }

    .pricing-monthly {
        padding: 15px 20px;
        width: 85%;
        box-sizing: border-box;
        text-align: center;
    }

    .pricing-price {
        font-size: 26px;
        white-space: normal;
        text-align: center;
    }

    .pricing-price-small {
        font-size: 22px;
    }

    .pricing-annual {
        gap: 5px;
        padding: 0 15px;
    }

    .pricing-annual-desc {
        font-size: 16px;
        font-weight: bold;
    }

    .pricing-annual-price {
        font-size: 22px;
    }

    .pricing-features-card {
        padding: 25px 20px;
        gap: 5px;
        width: 80%;
    }

    .pricing-feature {
        gap: 7px;
    }

    .pricing-feature-text {
        font-size: 16px;
    }

    /* CTA Section */
    .cta-section {
        padding: 70px 20px;
    }

    .cta-inner {
        max-width: 430px;
        margin: 0 auto;
        gap: 40px;
    }

    .cta-content {
        flex-direction: column;
        gap: 37px;
    }

    .cta-image {
        order: 1;
        padding: 0 30px;
    }

    .cta-text {
        order: 2;
        gap: 12px;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-desc {
        font-size: 16px;
    }

    /* Campaign Section */
    .campaign-section {
        padding: 60px 20px;
    }

    .campaign-inner {
        max-width: 430px;
        margin: 0 auto;
        gap: 30px;
    }

    .campaign-title {
        font-size: 20px;
        text-align: center;
    }

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

    .campaign-image {
        padding: 0;
        width: 100%;
    }

    .campaign-details {
        gap: 30px;
    }

    .campaign-desc {
        font-size: 16px;
        line-height: 1.7;
    }

    .campaign-cta-container {
        gap: 10px;
        padding: 0;
    }

    .campaign-cta-text {
        font-size: 16px;
    }

    .campaign-btn {
        padding: 18px 45px;
        gap: 15px;
        width: 100%;
        justify-content: center;
    }

    .campaign-line-icon {
        width: 32px;
        height: 32px;
    }

    .campaign-btn-text {
        font-size: 18px;
    }

    /* FAQ Section */
    .faq-section {
        padding: 60px 20px;
    }

    .faq-inner {
        max-width: 430px;
        margin: 0 auto;
    }

    .faq-title {
        font-size: 24px;
    }

    .faq-question-text {
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 100px 20px 184px 20px
    }

    .footer-logo {
        width: 200px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .footer-link {
        font-size: 12px;
    }
}

/* Mobile Fixed CTA - Hidden by default */
.mobile-fixed-cta {
    display: none;
}

/* Show mobile fixed CTA only on mobile */
@media (max-width: 799px) {
    .mobile-fixed-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #f2f2f285;
        padding: 10px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-fixed-cta-text {
        font-size: 14px;
        font-weight: 700;
        color: #FF6733;
        text-align: center;
        line-height: 1.2;
        letter-spacing: -0.02em;
    }

    .mobile-fixed-cta-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        background-color: #FF6733;
        border-radius: 40px;
        padding: 17px 50px;
        text-decoration: none;
        transition: opacity 0.3s;
    }

    .mobile-fixed-cta-btn:hover {
        opacity: 0.7;
        transform: translateY(2px);
    }

    .mobile-fixed-cta-icon {
        width: 25px;
        height: 24px;
        object-fit: contain;
    }

    .mobile-fixed-cta-btn-text {
        font-size: 16px;
        font-weight: 700;
        color: #FFFFFF;
        line-height: 1.45;
        letter-spacing: -0.005em;
    }
}

/* Legal Page Styles */
.legal-page {
    padding-top: 140px;
    /* Header space + gap */
    padding-bottom: 100px;
    background-color: #FFFFFF;
}

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

.legal-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333333;
}

.legal-intro {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F39A7C;
    color: #333333;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-list li {
    list-style-type: decimal;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.8;
}

.legal-sublist {
    margin-top: 10px;
    padding-left: 20px;
}

.legal-sublist li {
    list-style-type: disc;
    margin-bottom: 5px;
}

.legal-note {
    font-size: 14px;
    color: #666666;
    margin-top: 10px;
}

.legal-contact {
    background: #F7F7F7;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.legal-contact p {
    margin-bottom: 5px;
    font-weight: 500;
}

.legal-contact p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .legal-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .legal-page {
        padding-top: 120px;
    }

    .legal-heading {
        font-size: 18px;
    }
}

/* Tokushosho Table Styles */
.tokusho-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-top: 1px solid #EEEEEE;
}

.tokusho-table th,
.tokusho-table td {
    padding: 20px;
    border-bottom: 1px solid #EEEEEE;
    vertical-align: top;
    font-size: 15px;
    line-height: 1.8;
}

.tokusho-table th {
    width: 30%;
    background-color: #FAFAFA;
    font-weight: 700;
    color: #333333;
    text-align: left;
    white-space: nowrap;
}

.tokusho-table td {
    color: #333333;
}

@media screen and (max-width: 767px) {

    .tokusho-table th,
    .tokusho-table td {
        display: block;
        width: 100%;
        border-bottom: none;
    }

    .tokusho-table th {
        background-color: transparent;
        padding-bottom: 5px;
        color: #FF6733;
        white-space: normal;
    }

    .tokusho-table td {
        padding-top: 0;
        border-bottom: 1px solid #EEEEEE;
        padding-bottom: 30px;
    }

    .tokusho-table tr:last-child td {
        border-bottom: none;
    }
}

/* Logo Link Hover Effect */
.logo-link {
    display: block;
    transition: opacity 0.3s, transform 0.3s;
}

.logo-link:hover {
    opacity: 0.7;
    transform: translateY(2px);
}