/* ====================================
   Service Phase Detail Page Styles
   STARTプラン詳細ページ
   ビッグナンバー + ミニマル + グリッチエフェクト
   ==================================== */


/* ====================================
   Breadcrumb
   ==================================== */
.phase-breadcrumb {
    width: 100%;
    padding: 10rem 0 0.5rem;
    position: relative;
    z-index: 10;
}

.phase-breadcrumb__container {
    width: 80%;
    margin: 0 auto;
}

.phase-breadcrumb__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.phase-breadcrumb__link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phase-breadcrumb__link:hover {
    color: #4CAF50;
    text-decoration: none;
}

.phase-breadcrumb__separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.phase-breadcrumb__current {
    color: #4CAF50;
    font-weight: bold;
}

/* ====================================
   Hero Section - グリッチエフェクト + 左右分割
   ==================================== */
.phase-hero {
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 20px;
    overflow: hidden;
}

.phase-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.phase-hero__container {
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ====================================
   Left Side - Content
   ==================================== */
.phase-hero__left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-out 0.3s forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phase-hero__label {
    font-size: 0.85rem;
    color: #4CAF50;
    letter-spacing: 0.4em;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.phase-hero__label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #4CAF50;
    animation: lineExpand 0.8s ease-out 0.5s forwards;
    transform-origin: left;
    transform: scaleX(0);
}

@keyframes lineExpand {
    to {
        transform: scaleX(1);
    }
}

.phase-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(76, 175, 80, 0.08) 100%);
    border: 1.5px solid rgba(76, 175, 80, 0.4);
    border-radius: 50px;
    padding: 0.9rem 2rem;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.08em;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.2);
    animation: badgePulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.phase-hero__badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(76, 175, 80, 0.4);
    }
}

@keyframes badgeShine {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.phase-hero__badge i {
    font-size: 1.2rem;
    color: #4CAF50;
}

/* ====================================
   Title with Glitch Effect
   ==================================== */
.phase-hero__title {
    font-size: 3rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 2.5rem;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.phase-hero__title-line {
    display: block;
    position: relative;
}

.phase-hero__price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.phase-hero__price-amount {
    font-size: 4rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #fff 0%, rgba(76, 175, 80, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.phase-hero__price-suffix {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

.phase-hero__description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.05em;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.phase-hero__note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    font-style: italic;
    animation: fadeInUp 1s ease-out 1s backwards;
}

/* ====================================
   Right Side - Visual Elements
   ==================================== */
.phase-hero__right {
    position: relative;
    height: 600px;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out 0.5s forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phase-hero__visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating Particles */
.phase-hero__particle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}

.phase-hero__particle--1 {
    top: 10%;
    left: 20%;
    animation: float1 8s ease-in-out infinite;
}

.phase-hero__particle--2 {
    top: 30%;
    left: 70%;
    animation: float2 10s ease-in-out infinite;
    animation-delay: 1s;
}

.phase-hero__particle--3 {
    top: 50%;
    left: 15%;
    animation: float3 12s ease-in-out infinite;
    animation-delay: 2s;
}

.phase-hero__particle--4 {
    top: 70%;
    left: 80%;
    animation: float4 9s ease-in-out infinite;
    animation-delay: 0.5s;
}

.phase-hero__particle--5 {
    top: 20%;
    left: 50%;
    animation: float5 11s ease-in-out infinite;
    animation-delay: 1.5s;
}

.phase-hero__particle--6 {
    top: 80%;
    left: 30%;
    animation: float6 13s ease-in-out infinite;
    animation-delay: 2.5s;
}

.phase-hero__particle--7 {
    top: 40%;
    left: 90%;
    animation: float7 10s ease-in-out infinite;
    animation-delay: 3s;
}

.phase-hero__particle--8 {
    top: 60%;
    left: 50%;
    animation: float8 14s ease-in-out infinite;
    animation-delay: 0.8s;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, -30px);
    }
    50% {
        transform: translate(-15px, -50px);
    }
    75% {
        transform: translate(30px, -20px);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-25px, 35px);
    }
    50% {
        transform: translate(20px, 60px);
    }
    75% {
        transform: translate(-30px, 25px);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(40px, 30px);
    }
    66% {
        transform: translate(-30px, 50px);
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(15px, -40px);
    }
    50% {
        transform: translate(-25px, -60px);
    }
    75% {
        transform: translate(20px, -30px);
    }
}

@keyframes float5 {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(-35px, 45px);
    }
    66% {
        transform: translate(25px, 70px);
    }
}

@keyframes float6 {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(30px, -25px);
    }
    50% {
        transform: translate(-20px, -45px);
    }
    75% {
        transform: translate(35px, -15px);
    }
}

@keyframes float7 {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(-40px, 35px);
    }
    66% {
        transform: translate(30px, 55px);
    }
}

@keyframes float8 {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(25px, -35px);
    }
    50% {
        transform: translate(-30px, -55px);
    }
    75% {
        transform: translate(20px, -25px);
    }
}

/* ====================================
   Recommended Section
   ==================================== */
.phase-recommended {
    position: relative;
    margin-bottom: 12rem;
}

.phase-recommended__container {
    width: 80%;
    margin: 0 auto;
    position: relative;
}

.phase-recommended__bg-number {
    position: absolute;
    top: -80px;
    left: -50px;
    font-size: 20rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.phase-recommended__title {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 4rem;
    font-weight: normal;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}

.phase-recommended__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.phase-recommended__item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.phase-recommended__item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(76, 175, 80, 0.4);
    transform: translateY(-5px);
}

.phase-recommended__icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.phase-recommended__item-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    font-weight: normal;
}

.phase-recommended__item-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    letter-spacing: 0.08em;
}

/* ====================================
   Plan Details Section
   ==================================== */
.phase-details {
    position: relative;
    margin-bottom: 12rem;
}

.phase-details__container {
    width: 80%;
    margin: 0 auto;
    position: relative;
}

.phase-details__bg-number {
    position: absolute;
    top: -80px;
    right: -50px;
    font-size: 20rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.phase-details__title {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 4rem;
    font-weight: normal;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
    text-align: right;
}

.phase-details__content {
    position: relative;
    z-index: 1;
}

.phase-details__table {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.phase-details__row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.phase-details__row:last-child {
    border-bottom: none;
}

.phase-details__row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.phase-details__label {
    padding: 2rem;
    font-size: 1.1rem;
    color: #4CAF50;
    font-weight: bold;
    letter-spacing: 0.1em;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.phase-details__value {
    padding: 2rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    letter-spacing: 0.08em;
}

.phase-details__note {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

/* ====================================
   Flow Section
   ==================================== */
.phase-flow {
    position: relative;
    margin-bottom: 12rem;
}

.phase-flow__container {
    width: 80%;
    margin: 0 auto;
    position: relative;
}

.phase-flow__bg-number {
    position: absolute;
    top: -80px;
    left: -50px;
    font-size: 20rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.phase-flow__title {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 4rem;
    font-weight: normal;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}

.phase-flow__steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.phase-flow__step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
}

.phase-flow__step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(76, 175, 80, 0.4);
    transform: translateX(10px);
}

.phase-flow__step-number {
    font-size: 1rem;
    color: #4CAF50;
    font-weight: bold;
    letter-spacing: 0.1em;
    white-space: nowrap;
    min-width: 80px;
}

.phase-flow__step-content {
    flex: 1;
}

.phase-flow__step-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    font-weight: normal;
}

.phase-flow__step-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.phase-flow__step-duration {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.08em;
}

.phase-flow__arrow {
    text-align: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0.5rem 0;
}

/* ====================================
   Pricing Section
   ==================================== */
.phase-pricing {
    position: relative;
    margin-bottom: 12rem;
}

.phase-pricing__container {
    width: 80%;
    margin: 0 auto;
    position: relative;
}

.phase-pricing__bg-number {
    position: absolute;
    top: -80px;
    right: -50px;
    font-size: 20rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.phase-pricing__title {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: normal;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
    text-align: right;
}

.phase-pricing__subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    letter-spacing: 0.1em;
    text-align: right;
    position: relative;
    z-index: 1;
}

.phase-pricing__content {
    position: relative;
    z-index: 1;
}

.phase-pricing__table {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.phase-pricing__row {
    display: grid;
    grid-template-columns: 1fr 200px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.phase-pricing__row:last-child {
    border-bottom: none;
}

.phase-pricing__row:hover:not(.phase-pricing__row--header):not(.phase-pricing__row--total) {
    background: rgba(255, 255, 255, 0.05);
}

.phase-pricing__row--header {
    background: rgba(76, 175, 80, 0.1);
}

.phase-pricing__row--total {
    background: rgba(76, 175, 80, 0.2);
    font-weight: bold;
}

.phase-pricing__row--free {
    background: rgba(76, 175, 80, 0.05);
}

.phase-pricing__item-name {
    padding: 2rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.08em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.phase-pricing__item-note {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    font-weight: normal;
}

.phase-pricing__item-price {
    padding: 2rem;
    font-size: 1.3rem;
    color: #4CAF50;
    font-weight: bold;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.phase-pricing__item-price--free {
    color: #66BB6A;
    font-size: 1.5rem;
}

.phase-pricing__included {
    background: rgba(76, 175, 80, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.phase-pricing__included-title {
    font-size: 1.3rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    font-weight: normal;
}

.phase-pricing__included-list {
    list-style: none;
    padding: 0;
}

.phase-pricing__included-list li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 2.2;
    letter-spacing: 0.08em;
    padding-left: 1.5rem;
    position: relative;
}

.phase-pricing__included-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.phase-pricing__notes {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.phase-pricing__notes:last-child {
    margin-bottom: 0;
}

.phase-pricing__notes-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    font-weight: normal;
}

.phase-pricing__notes-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.phase-pricing__notes-list li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 2.2;
    letter-spacing: 0.08em;
    padding-left: 1.5rem;
    position: relative;
}

.phase-pricing__notes-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-size: 1.2rem;
}

.phase-pricing__notes-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    line-height: 1.8;
    letter-spacing: 0.08em;
}

/* ====================================
   FAQ Section
   ==================================== */
   .phase-faq {
    position: relative;
    margin-bottom: 12rem;
}

.phase-faq__container {
    width: 80%;
    margin: 0 auto;
    position: relative;
}

.phase-faq__bg-number {
    position: absolute;
    top: -80px;
    left: -50px;
    font-size: 20rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.phase-faq__title {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 4rem;
    font-weight: normal;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}

.phase-faq__list {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}


/* ====================================
   レスポンシブ対応
   ==================================== */
   @media (max-width: 1200px) {
    .phase-hero__container {
        width: 90%;
    }
    
    .phase-hero__title {
        font-size: 3rem;
    }
    
    .phase-hero__price-amount {
        font-size: 3.5rem;
    }
    
    .phase-recommended__grid {
        grid-template-columns: 1fr;
    }
    
    .phase-details__row {
        grid-template-columns: 1fr;
    }
    
    .phase-details__label {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .phase-pricing__row {
        grid-template-columns: 1fr;
    }
    
    .phase-pricing__item-price {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: flex-start;
    }
}

@media (max-width: 1000px) {
    .phase-breadcrumb__container {
        width: 85%;
    }
    
    .phase-breadcrumb {
        padding: 8.5rem 0 0.5rem;
    }
    
    .phase-hero {
        padding-top: 20px;
    }
    
    .phase-hero__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .phase-hero__right {
        height: 400px;
    }
    
    .phase-hero__title {
        font-size: 2.5rem;
    }
    
    .phase-recommended__title,
    .phase-details__title,
    .phase-flow__title,
    .phase-pricing__title,
    .phase-faq__title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .phase-pricing__subtitle {
        text-align: center;
    }
    
    .phase-recommended__bg-number,
    .phase-details__bg-number,
    .phase-flow__bg-number,
    .phase-pricing__bg-number,
    .phase-faq__bg-number {
        font-size: 12rem;
        top: -60px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .phase-breadcrumb {
        padding: 7rem 0 0.5rem;
    }
    
    .phase-breadcrumb__container {
        width: 85%;
    }
    
    .phase-breadcrumb__nav {
        font-size: 0.75rem;
        gap: 0.6rem;
    }
    
    /* メインビジュアルはそのまま */
    .phase-hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .phase-hero__container {
        width: 85%;
    }
    
    .phase-hero__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .phase-hero__badge {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
    
    .phase-hero__price-amount {
        font-size: 2.5rem;
    }
    
    .phase-hero__description {
        font-size: 1rem;
    }
    
    .phase-hero__right {
        height: 300px;
    }
    
    /* メインビジュアル以外のセクション - 文字サイズ縮小 */
    
    /* Recommended Section */
    .phase-recommended__container,
    .phase-details__container,
    .phase-flow__container,
    .phase-pricing__container,
    .phase-faq__container {
        width: 85%;
    }
    
    .phase-recommended__title,
    .phase-details__title,
    .phase-flow__title,
    .phase-pricing__title,
    .phase-faq__title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .phase-pricing__subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .phase-recommended__item {
        padding: 2rem 1.5rem;
    }
    
    .phase-recommended__icon {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    .phase-recommended__item-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .phase-recommended__item-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    /* Plan Details Section */
    .phase-details__label {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    
    .phase-details__value {
        padding: 1.5rem;
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .phase-details__note {
        font-size: 0.85rem;
    }
    
    /* Flow Section */
    .phase-flow__step {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .phase-flow__step-number {
        font-size: 0.9rem;
    }
    
    .phase-flow__step-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .phase-flow__step-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .phase-flow__step-duration {
        font-size: 0.85rem;
    }
    
    .phase-flow__arrow {
        font-size: 1.5rem;
    }
    
    /* Pricing Section */
    .phase-pricing__item-name {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    
    .phase-pricing__item-note {
        font-size: 0.85rem;
    }
    
    .phase-pricing__item-price {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
    
    .phase-pricing__item-price--free {
        font-size: 1.2rem;
    }
    
    .phase-pricing__included {
        padding: 2rem 1.5rem;
    }
    
    .phase-pricing__included-title {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .phase-pricing__included-list li {
        font-size: 0.9rem;
        line-height: 2;
    }
    
    .phase-pricing__notes {
        padding: 2rem 1.5rem;
    }
    
    .phase-pricing__notes-title {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .phase-pricing__notes-list li {
        font-size: 0.9rem;
        line-height: 2;
    }
    
    .phase-pricing__notes-text {
        font-size: 0.85rem;
        line-height: 1.7;
    }
    
    /* 背景ナンバー */
    .phase-recommended__bg-number,
    .phase-details__bg-number,
    .phase-flow__bg-number,
    .phase-pricing__bg-number,
    .phase-faq__bg-number {
        font-size: 10rem;
        top: -50px;
    }
}

@media (max-width: 480px) {
    .phase-breadcrumb {
        padding: 6.5rem 0 0.5rem;
    }
    
    .phase-breadcrumb__container {
        width: 90%;
    }
    
    .phase-breadcrumb__nav {
        font-size: 0.7rem;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .phase-breadcrumb__separator {
        font-size: 0.7rem;
    }
    
    /* メインビジュアルはそのまま */
    .phase-hero__container {
        width: 90%;
    }
    
    .phase-hero__title {
        font-size: 1.6rem;
    }
    
    .phase-hero__badge {
        font-size: 0.8rem;
        padding: 0.7rem 1.2rem;
    }
    
    .phase-hero__price-amount {
        font-size: 2rem;
    }
    
    .phase-hero__description {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .phase-hero__right {
        height: 250px;
    }
    
    /* メインビジュアル以外のセクション - さらに縮小 */
    
    .phase-recommended__container,
    .phase-details__container,
    .phase-flow__container,
    .phase-pricing__container,
    .phase-faq__container {
        width: 90%;
    }
    
    .phase-recommended__title,
    .phase-details__title,
    .phase-flow__title,
    .phase-pricing__title,
    .phase-faq__title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .phase-pricing__subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .phase-recommended__item {
        padding: 1.5rem 1.2rem;
    }
    
    .phase-recommended__icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .phase-recommended__item-title {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }
    
    .phase-recommended__item-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    /* Plan Details Section */
    .phase-details__label {
        padding: 1.2rem;
        font-size: 0.9rem;
    }
    
    .phase-details__value {
        padding: 1.2rem;
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .phase-details__note {
        font-size: 0.8rem;
    }
    
    /* Flow Section */
    .phase-flow__step {
        padding: 1.5rem 1.2rem;
    }
    
    .phase-flow__step-number {
        font-size: 0.85rem;
    }
    
    .phase-flow__step-title {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }
    
    .phase-flow__step-text {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }
    
    .phase-flow__step-duration {
        font-size: 0.8rem;
    }
    
    .phase-flow__arrow {
        font-size: 1.2rem;
        margin: 0.3rem 0;
    }
    
    /* Pricing Section */
    .phase-pricing__item-name {
        padding: 1.2rem;
        font-size: 0.9rem;
    }
    
    .phase-pricing__item-note {
        font-size: 0.8rem;
    }
    
    .phase-pricing__item-price {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .phase-pricing__item-price--free {
        font-size: 1.1rem;
    }
    
    .phase-pricing__included {
        padding: 1.5rem 1.2rem;
    }
    
    .phase-pricing__included-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .phase-pricing__included-list li {
        font-size: 0.85rem;
        line-height: 1.8;
        padding-left: 1.2rem;
    }
    
    .phase-pricing__notes {
        padding: 1.5rem 1.2rem;
    }
    
    .phase-pricing__notes-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .phase-pricing__notes-list li {
        font-size: 0.85rem;
        line-height: 1.8;
        padding-left: 1.2rem;
    }
    
    .phase-pricing__notes-text {
        font-size: 0.8rem;
        line-height: 1.6;
    }
    
    /* 背景ナンバー */
    .phase-recommended__bg-number,
    .phase-details__bg-number,
    .phase-flow__bg-number,
    .phase-pricing__bg-number,
    .phase-faq__bg-number {
        font-size: 7rem;
        top: -35px;
    }
}