/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-top {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-main img {
    height: 30px;
}

.nav-top ul {
    display: flex;
    gap: 30px;
}

.nav-top a {
    font-size: 14px;
    color: #002656;
    transition: opacity 0.3s;
}

.nav-top a:hover {
    opacity: 0.7;
}

.btn-contact-top {
    padding: 8px 20px;
    background: #002656;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    transition: opacity 0.3s;
}

.btn-contact-top:hover {
    opacity: 0.8;
}

.header-vetlink {
    background: #fff;
    padding: 15px 0;
}

.logo-vetlink img {
    height: 40px;
}

.nav-vetlink ul {
    display: flex;
    gap: 30px;
}

.nav-vetlink a {
    font-size: 15px;
    color: #002656;
    transition: opacity 0.3s;
}

.nav-vetlink a:hover {
    opacity: 0.7;
}

.btn-contact-vetlink {
    padding: 12px 30px;
    background: #D4A527;
    color: #002656;
    border-radius: 25px;
    font-size: 15px;
    font-weight: bold;
    transition: opacity 0.3s;
}

.btn-contact-vetlink:hover {
    opacity: 0.8;
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #002656;
    display: block;
}

/* Page Title */
.page-title {
    text-align: center;
    padding: 60px 20px 80px;
}

.page-title h1 {
    font-size: 48px;
    color: #333;
    font-weight: bold;
    font-family: Noto Sans JP, sans-serif;
}

.page-title .highlight {
    color: #00A0E9;
}

/* Voice Section */
.voice-section-top{
    margin-top: 6rem;
    padding: 0px;
}
.voice-section {
    padding: 0 20px 80px;
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.voice-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.voice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.voice-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f5f5f5;
}

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

.voice-content {
    padding: 25px 20px;
}

.voice-title {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.voice-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.voice-clinic {
    font-size: 15px;
    color: #002656;
    font-weight: bold;
    margin-bottom: 15px;
}

.voice-tag {
    display: inline-block;
    padding: 5px 12px;
    background: #E6F4FA;
    color: #00A0E9;
    border-radius: 4px;
    font-size: 13px;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
}

.cta-box {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-content {
    flex: 1;
}

.cta-subtitle {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
}

.cta-title {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 30px;
}

.cta-image {
    position: absolute;
    right: 50px;
    bottom: 0;
    width: 400px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: #fff;
    color: #0066CC;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 2;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-cta .arrow {
    font-size: 20px;
}

/* Back to Top */
.back-to-top-wrapper {
    text-align: center;
    padding: 40px 20px;
    font-weight: bold;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: #fff;
    border: 2px solid #002656;
    color: #002656;
    border-radius: 30px;
    font-size: 15px;
    transition: background 0.3s, color 0.3s;
}

.back-to-top:hover {
    background: #002656;
    color: #fff;
}

/* Footer */
.footer {
    background: #002656;
    color: #fff;
    padding: 40px 20px 20px;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-nav a {
    font-size: 13px;
    color: #fff;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-message {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-logo {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-copyright {
    font-size: 12px;
    opacity: 0.8;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .voice-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .cta-box {
        padding: 40px 30px;
    }

    .cta-image {
        width: 300px;
        right: 30px;
    }

    .cta-title {
        font-size: 30px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Header Mobile */
    .header-top {
        padding: 8px 0;
    }

    .nav-top,
    .btn-contact-top {
        display: none;
    }

    .logo-main img {
        height: 25px;
    }

    .header-vetlink {
        padding: 10px 0;
    }

    .logo-vetlink img {
        height: 35px;
    }

    .nav-vetlink {
        display: none;
    }

    .btn-contact-vetlink {
        padding: 10px 20px;
        font-size: 14px;
    }

    .menu-toggle {
        display: flex;
    }

    /* Main Content Mobile */
    .main-content {
        margin-top: 100px;
    }

    .page-title {
        padding: 40px 20px 50px;
    }

    .page-title h1 {
        font-size: 36px;
    }

    /* Voice Section Mobile */
    .voice-section {
        padding: 0 15px 60px;
    }

    .voice-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .voice-content {
        padding: 20px 15px;
    }

    .voice-title {
        font-size: 16px;
    }

    .voice-title br {
        display: none;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 0px;
    }

    .cta-box {
        padding: 30px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-box .pc{
        display: none;
    }

    .cta-subtitle {
        font-size: 14px;
    }

    .cta-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .cta-image {
        position: static;
        width: 100%;
        margin: 20px 0;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 12px 30px;
        font-size: 15px;
    }

    /* Footer Mobile */
    .footer {
        padding: 30px 15px 20px;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .footer-nav a {
        font-size: 12px;
    }

    .footer-message {
        font-size: 14px;
    }

    .footer-logo {
        font-size: 13px;
    }

    .footer-copyright {
        font-size: 11px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .page-title h1 {
        font-size: 30px;
    }

    .voice-title {
        font-size: 15px;
    }

    .cta-title {
        font-size: 20px;
    }

    .btn-cta {
        font-size: 14px;
        padding: 10px 25px;
    }
}

/* ========================================
   Detail Page Styles
   ======================================== */

/* Container Narrow */
.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Detail Title Area */
.detail-title-area {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px 40px 20px;
}

h1.page-category{
  padding: 0;  
  margin: 0px;
  font-family: Noto Sans JP, sans-serif;
}
.page-category {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    text-align: left;
}

.category-highlight {
    color: #00A0E9;
}

/* Detail Hero Section */
.detail-hero-section {
    padding: 0;
    margin-bottom: 50px;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Detail Info Section */
.detail-info-section {
    padding: 0 20px 35px;
}

.case-tag {
    display: inline-block;
    background: #00A0E9;
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 18px;
}

.case-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Profile Area */
.profile-area {
    padding: 0 20px 50px;
}

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

.profile-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-prefecture {
    font-size: 14px;
    color: #666;
    margin: 0 0 6px 0;
}

.profile-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

/* Boxes Section */
.boxes-section {
    padding: 0 20px 60px;
}

.info-box {
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.info-box:last-child {
    margin-bottom: 0;
}

.info-box.background {
    background: #E6F4FA;
}

.info-box.effect {
    background: #E6F4FA;
}

.box-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.box-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00A0E9;
    flex-shrink: 0;
}

h1.page-category,
.box-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.box-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.box-list li:last-child {
    margin-bottom: 0;
}

.box-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #333;
    font-weight: bold;
    font-size: 18px;
}

/* Article Section */
.article-section {
    padding: 0 20px 60px;
}

.article-block {
    margin-bottom: 50px;
}

.article-block:last-child {
    margin-bottom: 0;
}

.article-heading {
    font-size: 22px;
    font-weight: bold;
    color: #00A0E9;
    margin-bottom: 25px;
    line-height: 1.6;
}

.article-text {
    font-size: 15px;
    line-height: 2;
    color: #333;
    margin-bottom: 22px;
}

.article-text:last-child {
    margin-bottom: 0;
}

/* Clinic Detail Section */
.clinic-detail-section {
    padding: 0 20px 80px;
}

.clinic-detail-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    padding: 50px 0;
    border-top: 1px solid #ddd;
}

.clinic-detail-content {
    flex: 1;
    min-width: 0;
}

.clinic-detail-name {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0 0 30px 0;
}

.clinic-detail-table {
    width: 100%;
}

.clinic-detail-table tr {
    display: flex;
    margin-bottom: 20px;
}

.clinic-detail-table tr:last-child {
    margin-bottom: 0;
}

.clinic-detail-table th {
    width: 120px;
    font-size: 15px;
    font-weight: bold;
    color: #333;
    flex-shrink: 0;
}

.clinic-detail-table td {
    flex: 1;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}

.clinic-detail-table a {
    color: #00A0E9;
    text-decoration: underline;
}

.clinic-detail-table a:hover {
    opacity: 0.7;
}

.clinic-detail-image {
    width: 50%;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

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

/* Clinic Detail Mobile */
@media (max-width: 768px) {
    .clinic-detail-section {
        padding: 0 15px 60px;
    }

    .clinic-detail-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 40px 0;
    }

    .clinic-detail-name {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .clinic-detail-table tr {
        flex-direction: column;
        margin-bottom: 16px;
    }

    .clinic-detail-table th {
        width: 100%;
        margin-bottom: 5px;
        font-size: 14px;
    }

    .clinic-detail-table td {
        font-size: 14px;
    }

    .clinic-detail-image {
        width: 100%;
    }
}

/* Other Cases Section */
.other-cases-section {
    padding: 80px 20px;
    background: #fff;
}

.other-cases-heading {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.other-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1000px;
    margin: 0 auto 50px;
}



.other-cases-button {
    text-align: center;
}

.btn-view-all {
    display: inline-block;
    padding: 15px 45px;
    background: #fff;
    color: #002656;
    border: 2px solid #002656;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.btn-view-all:hover {
    background: #002656;
    color: #fff;
}

/* Detail Page Mobile Styles */
@media (max-width: 768px) {
    /* Title Area Mobile */
    .detail-title-area {
        padding: 40px 15px 30px;
    }

    .page-category {
        font-size: 32px;
    }

    /* Hero Section Mobile */
    .detail-hero-section {
        margin-bottom: 40px;
    }

    /* Info Section Mobile */
    h1.page-category,
    .detail-hero-section{
        padding: 0 15px; 
    }

    .detail-info-section {
        padding: 0 15px 30px;
    }


    .case-tag {
        font-size: 12px;
        padding: 5px 12px;
        margin-bottom: 15px;
    }

    .case-title {
        font-size: 22px;
    }

    /* Profile Mobile */
    .profile-area {
        padding: 0 15px 40px;
    }

    .profile-wrapper {
        gap: 16px;
    }

    .profile-photo {
        width: 70px;
        height: 70px;
    }

    .profile-prefecture {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .profile-title {
        font-size: 15px;
    }

    /* Boxes Mobile */
    .boxes-section {
        padding: 0 15px 50px;
    }

    .info-box {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .box-header {
        gap: 8px;
        margin-bottom: 16px;
    }

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

    h1.page-category,
    .box-title {
        font-size: 17px;
    }

    .box-list li {
        padding-left: 18px;
        margin-bottom: 12px;
        font-size: 14px;
    }

    /* Article Mobile */
    .article-section {
        padding: 0 15px 50px;
    }

    .article-block {
        margin-bottom: 40px;
    }

    .article-heading {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .article-text {
        font-size: 14px;
        line-height: 1.9;
        margin-bottom: 20px;
    }

    /* Clinic Detail Mobile */
    .clinic-detail-section {
        padding: 0 15px 60px;
    }

    .clinic-detail-box {
        padding: 30px 20px;
    }

    .clinic-detail-name {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .clinic-detail-table th,
    .clinic-detail-table td {
        padding: 13px 0;
        font-size: 13px;
    }

    .clinic-detail-table th {
        width: 100px;
    }

    /* Other Cases Mobile */
    .other-cases-section {
        padding: 60px 15px;
    }

    .other-cases-heading {
        font-size: 17px;
        margin-bottom: 40px;
    }

    .other-cases-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .case-card-body {
        padding: 20px;
    }

    .case-card-title {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .btn-view-all {
        padding: 13px 35px;
        font-size: 15px;
    }
}

/* Small Mobile Detail */
@media (max-width: 480px) {
    .page-category {
        font-size: 28px;
    }

    .case-title {
        font-size: 20px;
    }

    .article-heading {
        font-size: 18px;
    }

    .article-text {
        font-size: 13px;
    }

    .other-cases-heading {
        font-size: 17px;
    }
}

/*Add*/
.pt-30{
    padding-top: 30px;
}
