/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基本設定 */
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* ヘッダー */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 24px;
    color: #FF8C42;
    font-weight: 700;
    margin-bottom: 2px;
}

.logo .subtitle {
    font-size: 14px;
    color: #666;
}

.header-contact {
    display: flex;
    align-items: center;
}

.header-cta-button {
    background: linear-gradient(135deg, #FF8C42, #FF6B1A);
    color: white !important;
    text-decoration: none !important;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.header-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
    color: white !important;
    text-decoration: none !important;
}

.header-cta-button .cta-icon {
    font-size: 16px;
}

.header-cta-button .cta-text {
    font-size: 14px;
    font-weight: 600;
}

/* リンクのデフォルトスタイルをリセット */
a.cta-button,
a.phone-button,
a.final-phone-button {
    color: inherit !important;
    text-decoration: none !important;
}

a.cta-button:hover,
a.phone-button:hover {
    color: white !important;
    text-decoration: none !important;
}

a.final-phone-button:hover {
    color: #FF8C42 !important;
    text-decoration: none !important;
}

/* CTAボタン */
.cta-button {
    background: linear-gradient(135deg, #FF8C42, #FF6B1A);
    color: white !important;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
    color: white !important;
    text-decoration: none;
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 30px;
}

/* PC用ヒーローセクション */
.hero-desktop {
    display: block;
    position: relative;
    padding: 0 0 60px;
    min-height: 600px;
    overflow: hidden;
    margin-top: 80px;
}

/* デスクトップ専用スタイル */
@media (min-width: 769px) {
    .hero-desktop {
        display: block;
        margin-top: 0;
        padding: 120px 0 60px;
    }
    
    .hero-mobile {
        display: none;
    }
    
    .hospital-info-section-mobile {
        display: none;
    }
}

/* スマホ用ヒーローセクション */
.hero-mobile {
    display: none;
    position: relative;
    padding: 0 0 60px;
    min-height: 600px;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('trimming-image.png');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 2;
}

/* スマホ用背景 */
.hero-background-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('trimming-image.png');
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-background-mobile::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 40px;
}

/* スマホ用ヒーローコンテンツ */
.hero-content-mobile {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    height: 100%;
    position: relative;
    z-index: 3;
    padding-top: 120px;
    padding-right: 20px;
}

.hero-overlay-mobile {
    text-align: right;
    max-width: 300px;
}

.hero-title-mobile {
    font-size: 46px;
    font-weight: 500;
    color: white;
    margin-bottom: 0;
    line-height: 1.4;
    text-align: right;
    font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'MS PMincho', serif;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-text-area {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 500px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 36px;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.4;
    text-align: left;
    font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'MS PMincho', serif;
    letter-spacing: 0.05em;
}

.hospital-info {
    margin-bottom: 30px;
}

.hospital-info .address {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.hospital-info .parking {
    font-size: 14px;
    color: #666;
}

.schedule-table {
    margin-bottom: 30px;
}

/* スマホ用病院情報セクション */
.hospital-info-section-mobile {
    display: none;
    padding: 40px 0;
    background: white;
}

.hospital-info-mobile {
    margin-bottom: 30px;
    text-align: center;
}

.schedule-table-mobile {
    margin-bottom: 30px;
}

.schedule-table-mobile table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.schedule-table-mobile th,
.schedule-table-mobile td {
    padding: 12px 8px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.schedule-table-mobile th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.schedule-table-mobile td {
    font-size: 14px;
    color: #666;
}

.hero-cta-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
}

.schedule-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.schedule-table th {
    background: #4A90E2;
    color: white;
    padding: 12px 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.schedule-table td {
    padding: 12px 8px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.schedule-table td:first-child {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

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

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.phone-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white !important;
    padding: 20px 32px;
    min-width: 280px;
}

.phone-button .button-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.phone-button .phone-number {
    font-size: 20px;
    font-weight: 700;
}

.phone-button:hover {
    color: white !important;
    transform: translateY(-2px);
    text-decoration: none;
}

/* 説明文セクション */
.description-section {
    padding: 60px 0;
    background: #fff;
}

.hero-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.hero-description p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}





/* セクション共通 */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    line-height: 1.3;
}

.subtitle-text {
    font-size: 17px;
    font-weight: 400;
    color: #666;
    display: block;
    margin-top: 10px;
}

/* PC専用要素 */
.pc-only {
    display: inline;
}

/* 3つのHappyセクション */
.happy-section {
    padding: 80px 0;
    background: #fff;
}

.happy-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 60px;
}

.happy-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    max-width: 66.67%;
    margin-left: auto;
    margin-right: auto;
}

.happy-card:hover {
    transform: translateY(-5px);
}

.happy-number {
    background: linear-gradient(135deg, #FF8C42, #FF6B1A);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.happy-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.happy-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* スタッフセクション */
.staff-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.director-intro {
    margin-bottom: 60px;
}

.director-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.director-photo {
    width: 200px;
    height: 200px;
    margin: 20px auto;
}

.director-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.director-content h3 {
    font-size: 28px;
    color: #FF8C42;
    margin-bottom: 20px;
    font-weight: 700;
}

.director-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trimmer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.trimmer-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trimmer-header {
    margin-bottom: 20px;
}

.trimmer-header h4 {
    color: #333;
    margin-bottom: 0;
    font-size: 30px;
}

.trimmer-role {
    color: #888;
    font-size: 21px;
}

.trimmer-photo {
    margin-bottom: 20px;
}

.trimmer-photo img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.trimmer-content {
    width: 100%;
}

.trimmer-content .specialty {
    background: #E3F2FD;
    color: #1976D2;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
    display: inline-block;
}

.trimmer-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}

.trimmer-content .qualification {
    color: #888;
    font-size: 14px;
    font-style: italic;
    text-align: left;
}

/* こだわりセクション */
.commitment-section {
    padding: 80px 0;
    background: #fff;
}

.commitment-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

.commitment-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #FF8C42;
}

.commitment-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.commitment-card .note {
    font-size: 14px;
    color: #888;
}

.commitment-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* プロセスセクション */
.process-section {
    padding: 120px 0 80px 0;
    background: #f8f9fa;
    margin-top: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.step {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.step-number {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

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

.process-cta {
    text-align: center;
}

.process-cta .cta-button {
    margin-bottom: 15px;
}

/* FAQセクション */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #FF8C42;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
}

.faq-cta .cta-button {
    margin-bottom: 15px;
}

/* アクセスセクション */
.access-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.info-item a {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 600;
}

.schedule-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.schedule-table th,
.schedule-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.schedule-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* 最終CTAセクション */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF8C42, #FF6B1A);
    color: white;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta-section > p {
    font-size: 18px;
    margin-bottom: 60px;
    opacity: 0.9;
}

.final-cta {
    margin-top: 40px;
}

.final-cta-button {
    color: white !important;
    text-decoration: none;
    display: inline-block;
    padding: 20px 40px;
    border: 3px solid white;
    border-radius: 60px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.final-cta-button:hover {
    background: white;
    color: #FF8C42 !important;
    transform: translateY(-3px);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.final-cta-button:hover .cta-text,
.final-cta-button:hover .cta-phone {
    color: #FF8C42 !important;
}

.cta-text {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'MS PMincho', serif;
    letter-spacing: 0.05em;
}

.cta-phone {
    display: block;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.final-cta .note {
    font-size: 14px;
    opacity: 0.8;
}

/* フッター */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
}

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

.footer-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-info p {
    font-size: 14px;
    margin-bottom: 5px;
    opacity: 0.8;
}

.footer-info a {
    color: #4A90E2;
    text-decoration: none;
}

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

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .logo .subtitle {
        font-size: 12px;
    }
    
    .header-contact {
        justify-content: flex-end;
    }
    
    .header-cta-button {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .header-cta-button .cta-text {
        font-size: 13px;
    }
    
    .header-cta-button .cta-phone {
        font-size: 13px;
    }
    
    /* PC用を非表示 */
    .hero-desktop {
        display: none;
    }
    
    /* スマホ用を表示 */
    .hero-mobile {
        display: block;
        padding: 0 0 40px;
        min-height: 500px;
        margin-top: 80px;
    }
    
    .hospital-info-section-mobile {
        display: block;
        padding: 30px 0;
    }
    
    .hero-title-mobile {
        font-size: 28px;
    }
    
    .hero-content-mobile {
        padding-top: 60px;
        padding-right: 15px;
    }
    
    .hero-overlay-mobile {
        max-width: 280px;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .schedule-table table {
        font-size: 12px;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 8px 4px;
    }
    
    .description-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .happy-cards {
        gap: 40px;
    }
    
    .happy-card {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* .happy-card h3 br {
        display: none;
    } */
    
    .happy-card p {
        margin-bottom: 40px;
    }
    
    .pc-only {
        display: none;
    }
    
    .process-section .section-title br {
        display: inline;
    }
    
    .trimmer-cards {
        grid-template-columns: 1fr;
    }
    
    .trimmer-photo img {
        width: 180px;
        height: 180px;
    }
    
    .trimmer-header h4 {
        font-size: 30px;
    }
    
    .trimmer-role {
        font-size: 21px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .access-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .phone-button {
        min-width: 250px;
        padding: 16px 24px;
    }
    
    .phone-button .button-text {
        font-size: 14px;
    }
    
    .phone-button .phone-number {
        font-size: 18px;
    }
    
    .final-cta-button {
        padding: 16px 30px;
        border-width: 2px;
        border-radius: 50px;
    }
    
    .cta-text {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .cta-phone {
        font-size: 24px;
    }
    
    .final-cta-section h2 {
        font-size: 28px;
    }
    
    .final-cta-section h2 br {
        display: none;
    }
    
    .final-cta-section > p br {
        display: none;
    }
    
    .final-cta .note {
        font-size: 13px;
    }
    
    .pc-only {
        display: none;
    }
    
    .process-section .section-title br {
        display: inline;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 18px;
    }
    
    .logo .subtitle {
        font-size: 11px;
    }
    
    .header-cta-button {
        padding: 8px 12px;
        gap: 4px;
    }
    
    .header-cta-button .cta-icon {
        font-size: 14px;
    }
    
    .header-cta-button .cta-text {
        font-size: 11px;
    }
    
    .trimmer-photo img {
        width: 165px;
        height: 165px;
    }
    
    .trimmer-header h4 {
        font-size: 27px;
    }
    
    .trimmer-role {
        font-size: 19px;
    }
    
    /* PC用を非表示 */
    .hero-desktop {
        display: none;
    }
    
    /* スマホ用を表示 */
    .hero-mobile {
        display: block;
        padding: 0 0 30px;
        min-height: 400px;
        margin-top: 80px;
    }
    
    .hospital-info-section-mobile {
        display: block;
        padding: 25px 0;
    }
    
    .hero-title-mobile {
        font-size: 24px;
    }
    
    .hero-content-mobile {
        padding-top: 50px;
        padding-right: 10px;
    }
    
    .hero-overlay-mobile {
        max-width: 250px;
    }
    
    .schedule-table-mobile th,
    .schedule-table-mobile td {
        padding: 10px 6px;
        font-size: 12px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .happy-card,
    .director-card,
    .commitment-card {
        padding: 25px 20px;
    }
    
    .director-card {
        text-align: center;
        padding: 30px 20px;
    }
    
    .director-photo {
        width: 180px;
        height: 180px;
        margin: 15px auto;
    }
    
    .director-content {
        text-align: center;
    }
    
    .director-content p {
        text-align: center;
        font-size: 15px;
    }
    
    .cta-button.large {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .hero-text-area {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .description-section {
        padding: 30px 0;
    }
    
    .final-cta-button {
        padding: 14px 24px;
        border-width: 2px;
        border-radius: 40px;
    }
    
    .cta-text {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .cta-phone {
        font-size: 20px;
    }
    
    .final-cta-section h2 {
        font-size: 24px;
    }
    
    .final-cta-section h2 br {
        display: none;
    }
    
    .final-cta-section > p {
        font-size: 16px;
    }
    
    .final-cta-section > p br {
        display: none;
    }
    
    .final-cta .note {
        font-size: 13px;
    }
    
    .pc-only {
        display: none;
    }
    
    .process-section .section-title br {
        display: inline;
    }
}



/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.happy-card,
.director-card,
.trimmer-card,
.commitment-card,
.step,
.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

/* スムーススクロール */
html {
    scroll-behavior: smooth;
}

/* カルーセルスライダー */
.carousel-container {
    margin-top: 50px;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #FF8C42;
    transform: scale(1.2);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .carousel-container {
        max-width: 70%;
    }
    
    .carousel-slide img {
        object-position: center 20%;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        max-width: 80%;
    }
    
    .carousel-slide img {
        object-position: center 15%;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .carousel-prev {
        left: 8px;
    }
    
    .carousel-next {
        right: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* 健康チェック画像 */
.health-check-image {
    margin-top: 50px;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.health-check-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: block;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .health-check-image {
        max-width: 70%;
    }
    
    .health-check-image img {
        object-position: center 35%;
    }
}

@media (max-width: 480px) {
    .health-check-image {
        max-width: 80%;
    }
    
    .health-check-image img {
        object-position: center 40%;
    }
}

/* 安心ケア画像 */
.comfort-care-image {
    margin-top: 50px;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.comfort-care-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center 25%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: block;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .comfort-care-image {
        max-width: 70%;
    }
    
    .comfort-care-image img {
        object-position: center 30%;
    }
}

@media (max-width: 480px) {
    .comfort-care-image {
        max-width: 80%;
    }
    
    .comfort-care-image img {
        object-position: center 35%;
    }
}

/* 料金表セクション */
.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-table-container,
.pricing-table-container {
    margin-bottom: 60px;
    max-width: 66.67%;
    margin-left: auto;
    margin-right: auto;
}

.service-table-container h3,
.pricing-table-container h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

/* サービステーブル */
.table-wrapper {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.service-table th,
.service-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.service-table td:first-child {
    white-space: nowrap;
    width: 30%;
}

.service-table td:last-child {
    width: 70%;
    word-wrap: break-word;
}

.service-table th {
    background: #FF8C42;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.service-table td {
    font-size: 15px;
    color: #333;
}

.service-table tr:hover {
    background: #f8f9fa;
}

/* 料金表タブ */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-button {
    background: #fff;
    border: 2px solid #FF8C42;
    color: #FF8C42;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tab-button:hover {
    background: #FFF5F0;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 140, 66, 0.2);
}

.tab-button.active {
    background: #FF8C42;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 140, 66, 0.4);
    border: 2px solid #FF6B1A;
}

/* タブコンテンツ */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.price-list {
    display: grid;
    gap: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.price-item:hover {
    transform: translateY(-2px);
}

.price-info {
    text-align: right;
}

.price-main {
    font-size: 18px;
    font-weight: bold;
    color: #FF8C42;
    display: block;
}

.price-tax {
    font-size: 14px;
    color: #666;
    white-space: nowrap;
}

.breed {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    flex: 1;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #FF8C42;
    text-align: right;
}

.price small {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

/* 注意事項 */
.pricing-notes {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.pricing-notes p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.license-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.license-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.license-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .service-table-container,
    .pricing-table-container {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .service-table-container h3,
    .pricing-table-container h3 {
        font-size: 20px;
    }
    
    .service-table th,
    .service-table td {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .service-table td:first-child {
        width: 35%;
    }
    
    .service-table td:last-child {
        width: 65%;
    }
    
    .pricing-tabs {
        gap: 5px;
    }
    
    .tab-button {
        padding: 10px 15px;
        font-size: 12px;
    }
        .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .price-info {
        text-align: left;
        width: 100%;
    }
    
    .price-main {
        font-size: 20px;
    }
    
    .price-tax {
        font-size: 15px;
    }
    
    .breed {
        font-size: 15px;
    }
    
    .price {
        font-size: 16px;
        text-align: left;
    }
    
    .pricing-notes {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .tab-button {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .price-item {
        padding: 15px;
    }
    
    .breed {
        font-size: 14px;
    }
    
    .price {
        font-size: 15px;
    }
}


/* モバイル版改行制御 */
.mobile-br {
    display: none;
}

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

/* すべてのボタンで白文字を強制（タブボタン以外） */
.cta-button,
.cta-button *,
.phone-button,
.phone-button *,
.header-cta-button,
.header-cta-button *,
.final-cta-button,
.final-cta-button * {
    color: white !important;
}

/* ホバー時も白文字を維持（タブボタン以外） */
.cta-button:hover,
.cta-button:hover *,
.phone-button:hover,
.phone-button:hover *,
.header-cta-button:hover,
.header-cta-button:hover * {
    color: white !important;
}

/* タブボタンのアクティブ時のみ白文字 */
.tab-button.active,
.tab-button.active * {
    color: white !important;
}

/* 最終CTAボタンのホバー時のみ例外（オレンジ文字） */
.final-cta-button:hover,
.final-cta-button:hover * {
    color: #FF8C42 !important;
}


/* クラスなしのpタグを左揃えに設定 */
p:not([class]) {
    text-align: left !important;
}



/* 指定された単語の途中で改行されないように設定 */
.no-break {
    white-space: nowrap;
}
