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

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    border-top: 20px solid #FF36E0;
    overflow-x: hidden;
}

.pc-break {
    display: inline;
}

@media (max-width: 768px) {
    .pc-break {
        display: none;
    }
}

/* Hero Animation Styles */
.hero-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.hero-fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.hero-fade-up.fast {
    transition-duration: 0.6s;
}

.hero-fade-up.slow {
    transition-duration: 1.2s;
}

/* Feature badges individual timing */
.feature-1 {
    transition-delay: 0.2s;
}

.feature-2 {
    transition-delay: 0.22s;
}

.feature-3 {
    transition-delay: 0.24s;
}

/* スマホでのhero-featuresとlegal-noticeの初期位置調整 */
@media (max-width: 768px) {
    .hero-features .feature-badge.hero-fade-up {
        transform: translateY(30px);
    }
    
    .hero-features .feature-badge.hero-fade-up.show {
        transform: translateY(0);
    }
    
    .legal-notice.hero-fade-up {
        transform: translateX(-50%) translateY(30px);
    }
    
    .legal-notice.hero-fade-up.show {
        transform: translateX(-50%) translateY(0);
    }
}

/* Scroll Animation Styles */
.scroll-fade-in {
    opacity: 0;
    transition: opacity 1.5s ease-out;
}

.scroll-fade-in.animate {
    opacity: 1;
}

.scroll-fade-in-fast {
    transition-duration: 0.6s;
}

.scroll-fade-in-slow {
    transition-duration: 1.0s;
}

.container {
    margin: 0 auto;
    padding: 0 20px;
}

/* ヒーロー以外のセクションのcontainer */
.problem-section .container,
.solution-section .container,
.pricing-section .container,
.steps-section .container,
.faq-section .container,
.company-section .container,
.contact-section .container {
    max-width: 1200px;
}

.hero .container {
    background-image: url('images/pink-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Header Section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding: 0 0 0 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-main {
    padding: 40px 40px 0 40px;
    display: flex;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.catchphrase {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF1493;
    text-shadow: 1px 1px 0px #FFFFFF, -1px -1px 0px #FFFFFF, 1px -1px 0px #FFFFFF, -1px 1px 0px #FFFFFF;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.05em;
}

.hero-text {
    flex: 1;
    text-align: center;
    padding: 40px 0 20px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
}

.hero-text-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-text .logo {
    max-width: 560px;
    height: auto;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4A90E2;
    background: white;
    padding: 10px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hero-text .subtitle {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-text .description {
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    justify-content: center;
}

.feature-badge {
    padding: 0;
}

.feature-badge img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.legal-notice {
    font-size: 2.4rem;
    font-weight: 700;
    color: #FF1493;
    text-shadow: 1px 1px 0px #FFFFFF, -1px -1px 0px #FFFFFF, 1px -1px 0px #FFFFFF, -1px 1px 0px #FFFFFF;
    margin-bottom: 0;
    text-align: center;
    letter-spacing: 0.05em;
}

.hero-image {
    flex: 0 0 auto;
    text-align: center;
    align-self: flex-end;
}

.hero-image img {
    width: 500px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* PC版ではデスクトップ画像を表示、モバイル画像を非表示 */
.hero-image-desktop {
    display: block;
}

.hero-image-mobile {
    display: none;
}

.contact-buttons {
    display: flex;
    gap: 40px;
    margin-top: -1px;
    align-items: center;
    width: 100vw;
    background: linear-gradient(to bottom, #F767F2, #A0A4FF);
    padding: 25px 0;
    border-radius: 0;
    justify-content: center;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
}

.contact-buttons-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.line-button, .phone-section {
    min-height: 70px;
    display: flex;
    align-items: center;
}

.line-button {
    gap: 15px;
    padding: 10px 40px;
    border-radius: 45px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
    background: #FFFFFF;
    color: #00B900;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.phone-section {
    flex-direction: column;
    justify-content: center;
}

.phone-notice {
    background: transparent;
    color: white;
    padding: 3px 0;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid white;
    border-radius: 0;
    box-sizing: border-box;
    width: 100%;
    text-align: center;
}

.phone-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 2.8rem;
    transition: transform 0.3s ease;
    background: transparent;
    color: white;
    border: none;
}

.phone-button:link,
.phone-button:visited,
.phone-button:hover,
.phone-button:active {
    color: white;
    text-decoration: none;
}

.phone-icon {
    width: 40px;
    height: 40px;
    vertical-align: bottom;
}

.line-button:hover, .phone-button:hover {
    transform: translateY(-2px);
}

/* PC版：QRコード表示、アイコン非表示 */
.line-qr {
    width: 70px;
    height: 70px;
    display: block;
}

.line-icon {
    width: 40px;
    height: 40px;
    display: none;
}

/* Problem Section */
.problem-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #C9C9C9, #FFFFFF);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
    padding-left: 0.8em;
}

.problem-content {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 40px;
}

.problem-list {
    text-align: left;
}

.problem-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.problem-item span {
    font-weight: 700;
}

.problem-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.problem-image {
    text-align: center;
}

.problem-image img {
    max-width: 200px;
    height: auto;
}

/* Solution Section */
.solution-section {
    padding: 60px 0 30px;
    background: linear-gradient(to bottom, #FDDAF8, #FCBEF3, #F468F2);
}

.solution-content {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 40px;
}

.solution-list {
    text-align: left;
}

.solution-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: #333;
}

.solution-item span {
    font-weight: 700;
    color: #333;
}

.solution-item img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

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

.solution-image img {
    max-width: 200px;
    height: auto;
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    background: #F5F5F5;
    text-align: center;
}

.pricing-box {
    background: linear-gradient(to bottom, #F962FF, #BBA7FF);
    color: white;
    padding: 0 50px;
    border-radius: 65px;
    max-width: 600px;
    margin: 0 auto;
    display: inline-block;
}

.pricing-amount {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0;
    white-space: nowrap;
    position: relative;
    padding-left: 110px;
    padding-bottom: 9px;
}

.pricing-label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #EA14D9;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.pricing-amount .small {
    font-size: 1.3rem;
}

.pricing-part-time {
    color: #EA14D9;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 30px;
}

.pricing-part-time .price-number {
    font-size: 2.5rem;
}

.pricing-note {
    font-size: 0.8rem;
    color: #333;
    font-weight: 700;
    margin-top: 20px;
    line-height: 1.4;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Steps Section */
.steps-section {
    padding: 60px 0;
    background: #fff;
}

.steps-header {
    text-align: center;
    margin-bottom: 50px;
}

.steps-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.steps-title::after {
    content: '';
    flex: 1;
    max-width: 60px;
}

.steps-number-inline {
    height: 5rem;
    width: auto;
    vertical-align: middle;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.step-item {
    text-align: center;
    padding: 0;
    color: #333;
    position: relative;
}

.step-item:nth-child(1) .step-number {
    background: #DD049A;
    border: 1px solid #DD049A;
    color: white;
}

.step-item:nth-child(2) .step-number {
    background: #A1A7F3;
    border: 1px solid #A1A7F3;
    color: white;
}

.step-item:nth-child(3) .step-number {
    background: #7F9CF1;
    border: 1px solid #7F9CF1;
    color: white;
}

.step-item:nth-child(1) .step-content {
    border: 1px solid #DD049A;
    background: linear-gradient(to bottom, #FFFFFF, #FFCEFB);
    position: relative;
}

.step-item:nth-child(2) .step-content {
    border: 1px solid #A1A7F3;
    background: linear-gradient(to bottom, #FFFFFF, #E3DBFF);
    position: relative;
}

.step-item:nth-child(3) .step-content {
    border: 1px solid #7F9CF1;
    background: linear-gradient(to bottom, #FFFFFF, #E3DBFF);
}

/* 矢印を追加 */
.step-item:nth-child(1) .step-content::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 12px solid #D30202;
    z-index: 3;
}

.step-item:nth-child(2) .step-content::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 12px solid #A1A7F3;
    z-index: 3;
}

.step-number {
    width: 200px;
    height: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transform: translateY(3px);
}

.step-content {
    padding: 25px 20px 20px;
    margin-top: -15px;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 10px;
}

.step-description {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: left;
}

.step-image {
    margin: 20px 0;
}

.step-image img {
    width: auto;
    height: 120px;
    object-fit: contain;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #FFFFFF, #D2D2FC);
}

.faq-item {
    background: rgba(255,255,255,0.9);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0px 20px;
    background: #A1A8F8;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    border-bottom: 1px solid #CE63FD;
}

.faq-question img {
    width: 36px;
    height: 42px;
    margin: 5px 0;
}

.faq-answer {
    padding: 0px 20px;
    background: rgba(255,255,255,0.95);
    color: #333;
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid #8DCAFF;
}

.faq-answer img {
    width: 36px;
    height: 42px;
    margin: 5px 0;
    flex-shrink: 0;
}

/* Company Info Section */
.company-section {
    padding: 60px 0;
    background: #F5F4F4;
}

.company-content {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.company-info {
    font-weight: 700;
    flex: 1;
}

.company-info .section-title {
    color: #7251DE;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
}

.info-label {
    min-width: 80px;
    font-weight: 700;
    padding: 15px 15px 15px 0;
    text-align: justify;
    text-align-last: justify;
}

.info-content {
    flex: 1;
    line-height: 1.6;
    padding: 15px 0 15px 20px;
    border-left: 1px solid #C4C4C4;
}

/* iPhone等での電話番号自動リンク化のスタイル調整 */
.info-content a[href^="tel:"] {
    color: #333 !important;
    text-decoration: none !important;
}

.map-container {
    text-align: center;
    flex: 1;
}

.map-responsive {
    position: relative;
    padding-bottom: 75%; /* 4:3 aspect ratio (3/4 = 0.75) */
    height: 0;
    overflow: hidden;
    border: 4px solid #C4C4C4;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Contact Section */
.contact-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #FF69B4 0%, #DDA0DD 100%);
    text-align: center;
}

.contact-section .contact-buttons {
    justify-content: center;
}

/* Footer */
.footer {
    background: #FF36E0;
    padding: 15px 0;
    text-align: center;
}

.copyright {
    color: white;
    font-size: 0.8rem;
    margin: 0;
}

/* Mobile Break Class - スマホでのみ改行を表示 */
.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* ヒーロー以外のセクション */
    .problem-section .container,
    .solution-section .container,
    .pricing-section .container,
    .steps-section .container,
    .faq-section .container,
    .company-section .container,
    .contact-section .container {
        max-width: 100%;
    }

    /* スマホ版ではフルスクリーン幅設定をリセット */
    .hero .container {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .hero-text {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .hero-text-content {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    /* contact-buttonsもスマホ版ではフルスクリーン幅設定をリセット */
    .contact-buttons {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .contact-buttons-content {
        max-width: 100%;
        margin: 0;
        padding: 0;
        flex-direction: column;
        gap: 20px;
    }

    .hero-main {
        padding: 20px 0 0 0;
        flex-direction: column;
        text-align: center;
        max-width: 100%;
        margin: 0;
        gap: 20px;
    }

    .problem-content,
    .solution-content {
        flex-direction: column;
        align-items: center;
    }

    .problem-section {
        padding: 20px 0;
    }

    /* Problem Section モバイル調整 */
    .problem-section .section-title {
        margin-bottom: 30px;
        font-size: 1.5rem;
    }

    .problem-content {
        gap: 20px;
    }

    .problem-list {
        margin-bottom: 0;
    }

    .problem-icon {
        width: 24px;
        height: 24px;
    }

    .problem-item {
        margin-bottom: 12px;
        gap: 10px;
    }

    .problem-image {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0 auto;
    }

    .problem-image img {
        width: 125px;
        height: auto;
    }

    /* Solution Section モバイル調整 */
    .solution-section {
        padding: 20px 0;
    }

    .solution-section .section-title {
        margin-bottom: 30px;
        font-size: 1.5rem;
    }

    .solution-content {
        gap: 20px;
    }

    .solution-list {
        margin-bottom: 0;
    }

    .solution-item img {
        width: 24px;
        height: 24px;
    }

    .solution-item {
        margin-bottom: 12px;
        gap: 10px;
    }

    .solution-image {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0 auto;
    }

    .solution-image img {
        width: 125px;
        height: auto;
    }

    /* スマホ版ではデスクトップ画像を非表示、モバイル画像を表示 */
    .hero-image-desktop {
        display: none;
    }

    .hero-image-mobile {
        position: relative;
        display: block;
        margin: 20px 0 0 0;
        order: 0;
    }

    /* スマホ版のテキストサイズ調整 */
    .catchphrase {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .hero-text .description {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .hero-features {
        position: absolute;
        width: 100%;
        bottom: 65px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        display: flex;
        justify-content: center;
        z-index: 3;
    }

    .hero-features.show {
        transform: translateX(-50%) translateY(0);
    }

    .legal-notice {
        position: absolute;
        width: 100%;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.4rem;
        margin-bottom: 0;
        z-index: 3;
        color: #FF1493;
        text-shadow: 1px 1px 0px #FFFFFF, -1px -1px 0px #FFFFFF, 1px -1px 0px #FFFFFF, -1px 1px 0px #FFFFFF;
    }

    .legal-notice.show {
        transform: translateX(-50%) translateY(0);
    }

    .hero-text .logo {
        max-width: 300px;
    }

    .hero-image img {
        width: 300px;
    }

    .feature-badge img {
        width: 100px;
        height: 100px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .company-content {
        display: block;
    }

    .map-container {
        margin-top: 40px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
        padding: 15px 10px 5px;
    }

    .line-button,
    .phone-button {
        justify-content: center;
    }

    .line-button {
        font-size: 1.4rem;
        padding: 0 30px;
    }

    /* スマホ版では電話ボタンのサイズを元に戻す */
    .phone-button {
        font-size: 2.4rem;
    }

    .phone-icon {
        width: 34px;
        height: 34px;
    }

    /* スマホ版：アイコン表示、QRコード非表示 */
    .line-qr {
        display: none;
    }

    .line-icon {
        display: block;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    /* Steps Section モバイル調整 */
    .steps-section {
        padding: 30px 0;
    }

    .steps-number-inline {
        height: 4rem;
    }

    .steps-title::after {
        max-width: 0;
    }

    .steps-grid {
        padding: 0 25px;
    }

    /* モバイルでは右向き矢印を下向き三角形に変更 */
    .step-item:nth-child(1) .step-content::after,
    .step-item:nth-child(2) .step-content::after {
        right: 50%;
        top: auto;
        bottom: -12px;
        transform: translateX(50%);
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 12px solid #DD049A;
        border-bottom: none;
    }

    .step-item:nth-child(2) .step-content::after {
        border-top: 12px solid #A1A7F3;
    }

    /* Pricing Section モバイル調整 */
    .pricing-section {
        padding: 20px 0;
    }

    .pricing-box {
        padding: 0 25px;
        max-width: 98%;
        position: relative;
        margin-left: 0;
    }

    .pricing-label {
        left: 0;
        width: 50px;
        height: 50px;
        font-size: 0.75rem;
    }

    .pricing-amount {
        font-size: 2rem;
        padding-left: 60px;
    }

    .pricing-amount .small {
        font-size: 1rem;
    }

    .pricing-part-time {
        font-size: 1.2rem;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .pricing-part-time .price-number {
        font-size: 1.6rem;
    }

    .pricing-note {
        font-size: 0.7rem;
    }

    /* FAQ Section モバイル調整 */
    .faq-section {
        padding: 30px 0;
    }

    .faq-question {
        padding: 20px;
        gap: 20px;
        font-size: 1.1rem;
    }

    .faq-question img {
        width: 30px;
        height: 30px;
        margin: 0;
    }

    .faq-answer {
        padding: 20px;
        gap: 15px;
        font-size: inherit;
    }

    .faq-answer img {
        width: 30px;
        height: 30px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .catchphrase {
        font-size: 1.4rem;
    }

    .hero-text .description {
        font-size: 1.2rem;
        padding-left: 1em;
    }

    .hero-text .logo {
        max-width: 100%;
    }

    .logo-wrapper {
    margin-bottom: 10px;
}

    .legal-notice {
        font-size: 1.8rem;
    }

    .feature-badge img {
        width: 95px;
        height: 95px;
    }

    .problem-item,
    .solution-item {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .solution-item {
        font-size: 0.9rem;
    }

    .problem-content {
        gap: 15px;
    }

    .problem-item {
        gap: 8px;
        margin-bottom: 8px;
    }

    .problem-section .section-title {
        margin-bottom: 20px;
        font-size: 1.2rem;
    }

    .problem-image {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0 auto;
    }

    .problem-image img {
        width: 110px;
    }

    .solution-content {
        gap: 15px;
    }

    .solution-item {
        gap: 8px;
        margin-bottom: 8px;
    }

    .solution-section .section-title {
        margin-bottom: 20px;
        font-size: 1.2rem;
    }

    .solution-image {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0 auto;
    }

    .solution-image img {
        width: 110px;
    }

    .pricing-amount {
        font-size: 1.4rem;
        white-space: nowrap;
    }

    .pricing-box {
        margin-left: 0;
    }

    .pricing-amount {
        font-size: 3rem;
        padding-left: 75px;
    }

    .pricing-label {
        left: 0;
        width: 65px;
        height: 65px;
        font-size: 1rem;
    }

    .pricing-amount .small {
        font-size: 0.9rem;
    }

    .pricing-part-time {
        font-size: 1rem;
    }

    .pricing-part-time .price-number {
        font-size: 1.4rem;
    }

    .pricing-note {
        font-size: 0.65rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .steps-number-inline {
        height: 4rem; /* 480px以下では4remを維持 */
    }
}