/* リセットとベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
}

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

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

/* 期限表示バー */
.deadline-bar {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 16px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ヒーローセクション */
.hero {
    background: linear-gradient(180deg, #fff9f0 0%, #ffffff 100%);
    padding: 60px 20px 80px;
    text-align: center;
}

.hero-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #2c3e50;
}

.hero-title br {
    display: block;
}

.title-break {
    display: inline;
}

@media (max-width: 768px) {
    .hero-title br {
        display: none;
    }
    
    .hero-title {
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .title-break {
        display: block;
    }

    .title-break::after {
        content: "";
        display: block;
        height: 0;
    }
}

.highlight {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2em;
}

.hero-image {
    max-width: 600px;
    margin: 0 auto 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-image img {
    width: 100%;
}

/* CTA 2種類並列 */
.cta-double {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.cta-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: #ff6b6b;
}

.cta-card .badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    animation: pulse 2s infinite;
}

.cta-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-card .price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.cta-card .price-old {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.cta-card .price-arrow {
    font-size: 24px;
    color: #ff6b6b;
    font-weight: 700;
}

.cta-card .price-new {
    font-size: 36px;
    font-weight: 900;
    color: #ff6b6b;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cta-card .price-new {
        font-size: 28px;
    }
}

.cta-card .price-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

/* ボタンスタイル */
.btn {
    display: inline-block;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.7);
}

@media (max-width: 1024px) {
    .btn-primary {
        font-size: 15px;
        padding: 20px 20px;
    }
}

@media (max-width: 768px) {
    .btn-primary {
        font-size: 14px;
        padding: 18px 15px;
        white-space: normal;
        line-height: 1.5;
        min-height: 58px;
    }
}

@media (max-width: 400px) {
    .btn-primary {
        font-size: 13px;
        padding: 16px 12px;
        min-height: 54px;
    }
}

@media (max-width: 360px) {
    .btn-primary {
        font-size: 12px;
        padding: 14px 10px;
        min-height: 50px;
        letter-spacing: -0.3px;
    }
}

@media (max-width: 320px) {
    .btn-primary {
        font-size: 11px;
        padding: 12px 8px;
        min-height: 48px;
        letter-spacing: -0.5px;
    }
}

/* ストーリーセクション */
.story {
    padding: 80px 20px;
    background: white;
}

.story-image {
    max-width: 900px;
    margin: 0 auto 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.story-text {
    font-size: 18px;
    line-height: 2;
    max-width: 900px;
    margin: 0 auto;
    color: #333;
}

.story-text strong {
    color: #ff6b6b;
    font-weight: 700;
}

/* お客様の声セクション */
.testimonials {
    padding: 80px 20px;
    background: #f9f9f9;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.5;
}

.subsection-title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #555;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.testimonial-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-note {
    text-align: center;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* 統計セクション */
.stats {
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

/* 3つのこだわりセクション */
.features {
    padding: 80px 20px;
    background: white;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse .feature-content {
    direction: ltr;
}

.feature-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.feature-content h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #2c3e50;
}

.feature-content p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #555;
}

.feature-content strong {
    color: #ff6b6b;
    font-weight: 700;
}

.benefits {
    background: #fff9f0;
    padding: 25px;
    border-radius: 15px;
    margin-top: 25px;
}

.benefits h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefits ul {
    list-style: none;
    padding-left: 0;
}

.benefits ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 15px;
}

.benefits ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: 700;
    font-size: 18px;
}

.ingredients {
    background: #f0f8ff;
    padding: 25px;
    border-radius: 15px;
    margin-top: 25px;
}

.ingredients h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.ingredients p {
    margin-bottom: 10px;
}

.ingredients .size {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* 医師推薦セクション */
.doctor-recommendation {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f0f8ff 0%, #fff 100%);
}

.doctor-card {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto 40px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.doctor-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-info h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 5px;
    color: #2c3e50;
}

.doctor-title {
    font-size: 16px;
    color: #666;
}

.doctor-message {
    max-width: 900px;
    margin: 0 auto 40px;
}

.bread-image {
    max-width: 500px;
    margin: 0 auto 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.message-content p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #555;
}

.message-content strong {
    color: #ff6b6b;
    font-weight: 700;
}

.doctor-profile {
    max-width: 900px;
    margin: 0 auto;
    background: #fff9f0;
    padding: 30px;
    border-radius: 15px;
}

.doctor-profile h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.doctor-profile p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
}

/* 解約・スキップ説明セクション */
.flexibility {
    padding: 80px 20px;
    background: white;
}

.flexibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.flexibility-item {
    text-align: center;
}

.flex-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.flexibility-item h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #2c3e50;
}

.flexibility-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.flexibility-item > p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
}

.steps {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    margin-bottom: 20px;
}

.step {
    margin-bottom: 20px;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
}

.step p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.note {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* ミッションセクション */
.mission {
    padding: 80px 20px;
    background: linear-gradient(180deg, #fff9f0 0%, #ffffff 100%);
}

.mission-image {
    max-width: 800px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content p {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 30px;
    color: #555;
}

.mission-content strong {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1.1em;
}

.quote {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #ff6b6b;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.quote p {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.mission-cta-text {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

/* メインCTAセクション */
.main-cta,
.final-cta,
.additional-cta {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f0f8ff 0%, #fff 100%);
}

.cta-header {
    text-align: center;
    margin-bottom: 30px;
}

.cta-deadline {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
}

.cta-hero-image {
    max-width: 500px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    line-height: 1.5;
}

/* CTA オプション並列 */
.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.cta-option {
    background: white;
    border-radius: 20px;
    padding: 40px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #f0f0f0;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

@media (max-width: 1024px) {
    .cta-option {
        padding: 35px 20px;
    }
}

.cta-option::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-option:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
    border-color: #10b981;
}

.cta-option:hover::after {
    opacity: 1;
}

.option-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
    }
}

.cta-option h3 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 25px;
    color: #2c3e50;
}

.option-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.old-price {
    font-size: 22px;
    color: #999;
    text-decoration: line-through;
}

.arrow {
    font-size: 28px;
    color: #ff6b6b;
    font-weight: 700;
}

.new-price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.new-price {
    font-size: 48px;
    font-weight: 900;
    color: #ff6b6b;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .new-price {
        font-size: 36px;
    }
}

.tax {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.btn-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 22px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    min-height: 65px;
    align-items: center;
    justify-content: center;
}

.btn-text {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .btn-cta {
        font-size: 15px;
        padding: 20px 20px;
    }
}

@media (max-width: 768px) {
    .btn-cta {
        font-size: 14px;
        padding: 18px 15px;
        white-space: normal;
        line-height: 1.5;
        min-height: 58px;
    }

    .btn-text {
        white-space: normal;
        word-break: keep-all;
        display: inline;
    }
}

@media (max-width: 400px) {
    .btn-cta {
        font-size: 13px;
        padding: 16px 12px;
        min-height: 54px;
    }
}

@media (max-width: 360px) {
    .btn-cta {
        font-size: 12px;
        padding: 14px 10px;
        min-height: 50px;
        letter-spacing: -0.3px;
    }
}

@media (max-width: 320px) {
    .btn-cta {
        font-size: 11px;
        padding: 12px 8px;
        min-height: 48px;
        letter-spacing: -0.5px;
    }
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta:hover::before {
    width: 400px;
    height: 400px;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 45px rgba(16, 185, 129, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-cta:active {
    transform: translateY(-1px) scale(1.01);
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-feature {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
}

/* クーポンコード表示 */
.coupon-notice {
    background: linear-gradient(135deg, #fff9e6 0%, #ffedd5 100%);
    border: 3px dashed #ff8e53;
    border-radius: 15px;
    padding: 25px 30px;
    margin: 30px auto;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(255, 142, 83, 0.2);
    animation: shake 3s infinite;
}

@keyframes shake {
    0%, 90%, 100% {
        transform: translateX(0);
    }
    92%, 96% {
        transform: translateX(-3px);
    }
    94%, 98% {
        transform: translateX(3px);
    }
}

.coupon-icon {
    font-size: 48px;
    flex-shrink: 0;
    animation: rotate 4s infinite linear;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(10deg);
    }
    20% {
        transform: rotate(-10deg);
    }
    30% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.coupon-text {
    flex: 1;
    text-align: center;
}

.coupon-title {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.coupon-code {
    font-size: 32px;
    font-weight: 900;
    color: #ff6b6b;
    letter-spacing: 4px;
    background: white;
    padding: 10px 25px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3);
    border: 2px solid #ff8e53;
    margin: 0;
}

/* 配送情報 */
.shipping-info {
    text-align: center;
    margin: 20px auto 30px;
}

.shipping-info p {
    font-size: 16px;
    font-weight: 600;
    color: #059669;
    background: #f0fdf4;
    padding: 12px 25px;
    border-radius: 30px;
    display: inline-block;
    border: 2px solid #10b981;
}

/* FAQセクション */
.faq {
    padding: 80px 20px;
    background: white;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #f0f8ff;
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

/* 会社概要セクション */
.company {
    padding: 80px 20px;
    background: #f9f9f9;
}

.company-character {
    max-width: 400px;
    margin: 40px auto 50px;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.company-description {
    font-size: 16px;
    line-height: 2;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555;
}

.company-info {
    max-width: 800px;
    margin: 0 auto;
}

.company-character img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.company-table {
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.company-table tr {
    border-bottom: 1px solid #f0f0f0;
}

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

.company-table th,
.company-table td {
    padding: 20px;
    text-align: left;
}

.company-table th {
    background: #f9f9f9;
    font-weight: 700;
    color: #2c3e50;
    width: 30%;
}

.company-table td {
    color: #555;
}

/* フッター */
.footer {
    background: #2c3e50;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.footer p {
    font-size: 14px;
    opacity: 0.8;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .feature-item,
    .feature-item.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
        direction: ltr;
    }

    .doctor-card {
        flex-direction: column;
        text-align: center;
    }

    .cta-double,
    .cta-options {
        grid-template-columns: 1fr;
    }

    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
    }

    .company-table th {
        padding-bottom: 10px;
    }

    .company-table td {
        padding-top: 10px;
    }

    .stats-grid {
        gap: 30px;
    }

    .flexibility-grid {
        gap: 40px;
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
    }

    /* タイトルの改行調整 */
    .section-title br {
        display: none;
    }

    .cta-title .title-break {
        display: block;
    }

    .cta-title br {
        display: block;
    }
}

@media (max-width: 480px) {
    .deadline-bar {
        font-size: 14px;
        padding: 10px 15px;
    }

    .hero {
        padding: 40px 15px 60px;
    }

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

    .feature-content h3 {
        font-size: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

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

    .coupon-notice {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .coupon-icon {
        font-size: 40px;
    }

    .coupon-code {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .coupon-title {
        font-size: 14px;
    }

    .shipping-info p {
        font-size: 14px;
        padding: 10px 20px;
    }

    /* ボタンテキストの改行調整 */
    .cta-option {
        padding: 30px 15px;
    }

    /* タイトルの改行 */
    .hero-title {
        font-size: 24px;
        line-height: 1.6;
    }

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

    /* キャラクター画像 */
    .company-character {
        max-width: 280px;
    }
}
