/* ========================================
   リセット & 基本設定
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e67e22;
    --secondary-color: #f39c12;
    --accent-color: #f1c40f;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    --gradient-green: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    --gradient-blue: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 20px;
}

/* ========================================
   ヘッダー
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.header-top {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 12px 0;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.phone-number {
    font-weight: 700;
    font-size: 1.1rem;
}

.reception-time {
    opacity: 0.9;
}

.navbar {
    background: var(--bg-white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-icon {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo-icon img:hover {
    transform: scale(1.1);
}

.logo h1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}

.logo-highlight {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary);
    color: var(--text-white) !important;
    padding: 10px 20px;
    border-radius: 25px;
}

.nav-cta::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========================================
   ヒーローセクション（リビング写真付き）
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 100px;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(230, 126, 34, 0.65) 0%,
        rgba(243, 156, 18, 0.55) 50%,
        rgba(241, 196, 15, 0.5) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    text-align: center;
    color: var(--text-white);
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 30px;
    margin-right: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

.hero-badge-full {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border: 3px solid var(--text-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--text-white);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #f8f9fa;
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ========================================
   施設紹介
   ======================================== */
.about {
    background: var(--bg-light);
}

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

.about-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.about-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 2rem;
}

.about-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.target-box {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.target-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 30px;
}

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

.target-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
    font-weight: 500;
}

.target-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* ========================================
   7つの魅力
   ======================================== */
.features {
    background: var(--bg-white);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 30px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    transition: all 0.3s;
    border-left: 5px solid transparent;
}

.feature-item:nth-child(odd) {
    border-left-color: var(--primary-color);
}

.feature-item:nth-child(even) {
    border-left-color: var(--secondary-color);
}

.feature-item:hover {
    transform: translateX(3px);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    min-width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.feature-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-details li {
    display: flex;
    align-items: start;
    gap: 12px;
    color: var(--text-light);
}

.feature-details i {
    color: var(--secondary-color);
    margin-top: 5px;
    font-size: 0.9rem;
}

/* ========================================
   サービス内容
   ======================================== */
.services {
    background: var(--bg-light);
}

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

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.service-commitment {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.service-commitment h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

.service-commitment ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-commitment li {
    display: flex;
    align-items: start;
    gap: 15px;
    color: var(--text-light);
}

.service-commitment i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

/* ========================================
   1日のスケジュール
   ======================================== */
.schedule {
    background: var(--bg-white);
}

.schedule-timeline {
    position: relative;
    padding-left: 50px;
    margin-bottom: 50px;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
}

.schedule-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
    align-items: start;
}

.schedule-item::before {
    content: '';
    position: absolute;
    left: -43px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 5px var(--bg-white), 0 0 0 8px var(--primary-color);
}

.schedule-time {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 100px;
}

.schedule-content {
    flex: 1;
    background: var(--bg-light);
    padding: 20px 30px;
    border-radius: 10px;
}

.schedule-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.schedule-content p {
    color: var(--text-light);
}

.activities-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
}

.activities-box h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

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

.activity-item {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.activity-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.activity-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 10px;
}

.activity-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.activities-note {
    text-align: center;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   費用
   ======================================== */
.pricing {
    background: var(--bg-light);
}

.pricing-content {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-box {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.pricing-box h3 {
    font-size: 2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
}

.pricing-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.pricing-label {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
}

.pricing-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: var(--primary-color);
    border-radius: 10px;
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.pricing-total .pricing-label {
    font-size: 1.3rem;
    color: var(--text-white);
}

.pricing-total-value {
    font-size: 2.5rem;
    font-weight: 900;
}

.pricing-notes {
    display: grid;
    gap: 20px;
}

.pricing-note-item {
    display: flex;
    gap: 20px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.pricing-note-item i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.pricing-note-item h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.pricing-note-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   アクセス
   ======================================== */
.access {
    background: var(--bg-white);
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.access-item {
    display: flex;
    gap: 20px;
}

.access-item i {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 40px;
}

.access-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.access-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.access-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.nearby-facilities {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
}

.nearby-facilities h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.facility-item {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.facility-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.facility-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 15px;
}

.facility-item span {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.facility-item small {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========================================
   お問い合わせ
   ======================================== */
.contact {
    background: var(--primary-color);
    color: var(--text-white);
}

.contact .section-title,
.contact .section-description {
    color: var(--text-white);
}

.contact .section-title::after {
    background: var(--text-white);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-cta {
    text-align: center;
    margin-bottom: 60px;
}

.contact-phone {
    margin-bottom: 20px;
}

.contact-phone i {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.contact-phone a {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-white);
    text-decoration: none;
    display: block;
    transition: all 0.3s;
}

.contact-phone a:hover {
    transform: scale(1.05);
}

.contact-hours {
    font-size: 1.2rem;
    opacity: 0.9;
}

.admission-flow {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.admission-flow h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-white);
}

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 120px;
}

.flow-step-number {
    width: 100px;
    height: 100px;
    background: var(--text-white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    margin: 0;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.flow-step h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.flow-step p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* ========================================
   フッター
   ======================================== */
.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-info p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 10px;
}

.footer-nav h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 0.9;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ========================================
   ページトップボタン
   ======================================== */
.page-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.page-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.page-top-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   スクロールアニメーション
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   レスポンシブデザイン
   ======================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .access-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    /* ヘッダー */
    .header-contact {
        flex-direction: column;
        gap: 5px;
    }
    
    .phone-number {
        font-size: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    
    .nav-menu.active {
        top: 100px;
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* ヒーロー */
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 18px;
        margin-right: 10px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* 特徴 */
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-number {
        margin: 0 auto;
    }
    
    /* スケジュール */
    .schedule-timeline {
        padding-left: 30px;
    }
    
    .schedule-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .schedule-time {
        font-size: 1.4rem;
    }
    
    /* 価格 */
    .pricing-box {
        padding: 30px 20px;
    }
    
    .pricing-total-value {
        font-size: 2rem;
    }
    
    .contact-phone a {
        font-size: 2.5rem;
    }
    
    .flow-step {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
    }
    
    .flow-step-number {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .flow-step h4 {
        font-size: 1.5rem;
    }
    
    .flow-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo-icon {
        width: 60px;
        height: 60px;
    }
    
    .logo h1 {
        font-size: 1.1rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
        margin-right: 8px;
        margin-bottom: 15px;
        display: inline-block;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .about-grid,
    .services-grid,
    .target-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-phone a {
        font-size: 2rem;
    }
    
    .flow-step {
        padding: 25px 15px;
        gap: 20px;
    }
    
    .flow-step-number {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .flow-step h4 {
        font-size: 1.3rem;
    }
    
    .flow-step p {
        font-size: 1rem;
    }
}