/*
Theme Name: 里親募集用テーマ
Author: maru
Author URI: https://tckw2.sunnyday.jp/
Description: 里親サイト用のテーマです。
Version: 1.0
License: GNU General Public License
License URI: http://www.gnu.org/licenses/gpl.html
*/

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

:root {
    --primary-color: #FF9966;
    --secondary-color: #4ECDC4;
    --accent-color: #FFD93D;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-cream: #FFF4E6;
    --bg-light: #FAFAFA;
    --white: #FFFFFF;
    --shadow: 0 6px 18px rgba(0,0,0,0.06);
    --shadow-hover: 0 12px 28px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-icon {
    font-size: 32px;
}

.logo-text {
    color: var(--text-dark);
}

.nav {
    display: flex;
    gap: 30px;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Main Content Area */
.main-content {
    padding-top: 100px;
    min-height: 60vh;
}

/* ヒーローセクション */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background-image: url('https://images.unsplash.com/photo-1514888286974-6c03e2ca1dba?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    color: #fff;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    color: #f5f5f5;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* ステータスバー */
.status-bar {
    background: var(--white);
    padding: 30px 0;
    box-shadow: var(--shadow);
}

.status-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-icon {
    font-size: 28px;
}

.status-text {
    font-weight: 500;
    color: var(--text-dark);
}

/* セクション共通 */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* 猫セクション */
.cats-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.cats-section .container {
    max-width: 1380px;
}

.cats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 50px;
}

@media (max-width: 1024px) {
    .cats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .cats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .detail__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.cat-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.cat-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-bottom: 1px solid #f2f2f2;
}

.cat-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.cat-card:hover .cat-image {
    transform: scale(1.02);
}

.cat-status {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .05em;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.cat-status.recruiting {
    background: var(--secondary-color);
}

.cat-status.preparing {
    background: var(--accent-color);
    color: #fff;
}

.cat-status.adopted {
    background: #fb91c5;
    color: #fff;
}

.cat-status.hogoneko {
    background: #4A90E2; /* Bluish */
    color: #fff;
}

.cat-status.other-cat {
    background: #888; /* Generic Gray */
    color: #fff;
}

.badge--adopted {
    background: #fb91c5;
    color: #fff;
}

.badge--preparing {
    background: var(--accent-color);
    color: #fff;
}

.cat-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cat-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.cat-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cat-details-placeholder {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    width: 100%;
    margin: 0;
}

.cat-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    padding: 8px 14px;
    background: var(--bg-light);
    border-radius: 999px;
}

.detail-icon {
    font-size: 16px;
}

.cat-description {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    flex-grow: 1;
}

.cat-description--spacer {
    min-height: 24px;
}

.cat-button {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.cat-button:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-1px);
}


.cat-button.disabled {
    background: var(--text-light);
    border-color: var(--text-light);
    color: var(--white);
    cursor: not-allowed;
}

.cat-button.disabled:hover {
    transform: none;
}

/* 詳細ページのコンテンツ調整 */
.detail-content {
    overflow-wrap: break-word;
    word-break: break-word;
}

/* 詳細ページ */
.detail {
    padding: 120px 0 80px;
    background: var(--bg-light);
}

.detail__breadcrumbs {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.detail__breadcrumbs a {
    color: var(--text-light);
    text-decoration: underline;
}

.detail__title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.detail__grid {
    display: grid;
    grid-template-columns: 2.05fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Card共通スタイル */
.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.card--pad {
    padding: 20px 22px;
}

/* ギャラリー */
.gallery {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 18px;
}

.gallery__hero {
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.gallery__hero img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.gallery__thumbs img {
    width: 100%;
    height: 92px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

/* サイドパネル */
.side {
    position: sticky;
    top: 96px;
}

.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.badge--recruit {
    background: var(--secondary-color);
    color: #fff;
}

.badge--preparing {
    background: var(--accent-color);
    color: #fff;
}

.badge--adopted {
    background: #fb91c5;
    color: #fff;
}

.badge--hogoneko {
    background: #4A90E2;
    color: #fff;
}

.badge--other {
    background: #888;
    color: #fff;
}

.kv {
    display: grid;
    grid-template-columns: 110px 1fr;
    row-gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 12px;
}

.kv strong {
    color: var(--text-dark);
}

.cta {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.cta-button {
    display: inline-block;
    padding: 12px 20px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-1px);
}

.secondary-button {
    display: inline-block;
    padding: 12px 20px;
    background: #fff;
    color: var(--text-dark);
    border: 1px solid #ddd;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.secondary-button:hover {
    background: #f7f7f7;
}

/* セクション */
.section {
    margin-bottom: 18px;
}

.section h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.section p {
    color: var(--text-light);
    line-height: 1.8;
}

.bullets {
    padding-left: 18px;
}

.bullets li {
    margin: 6px 0;
    color: var(--text-light);
}

/* 譲渡の流れ */
.process-section {
    padding: 80px 0;
    background: var(--white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.process-arrow {
    font-size: 24px;
    color: var(--primary-color);
    align-self: center;
    display: flex;
    align-items: center;
}

/* concept */
.concept-section {
    padding: 60px 0;
}

.concept-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}

.concept-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.concept-text {
    color: var(--text-light);
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

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

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* 子猫を迎える準備 */
.preparation-section {
    padding: 80px 0;
    background: var(--white);
}

.preparation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.preparation-item {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow);
    line-height: 1.8;
    color: var(--text-light);
}

.preparation-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* 固定ページ */
.default-page {
    background: var(--bg-light);
}

.page-hero {
    padding: 80px 0 40px;
    background: var(--white);
    border-bottom: 1px solid #f1f1f1;
}

.page-breadcrumb {
    display: inline-block;
    font-size: 13px;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 8px;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.page-lead {
    font-size: 16px;
    color: var(--text-light);
    max-width: 760px;
}

.page-content-section {
    padding: 60px 0 100px;
}

.page-content {
     line-height: 1.9;
     color: var(--text-light);
}

.page-content h2,
.page-content h3,
.detail-content h2,
.detail-content h3 {
    color: var(--text-dark);
    margin: 2em 0 0.5em;
}

.page-content ul,
.page-content ol,
.detail-content ul,
.detail-content ol {
    padding-left: 1.5em;
    margin-left: 0;
    margin-bottom: 1.2em;
}

.page-content ul,
.detail-content ul {
    list-style: disc;
}

.page-content ol,
.detail-content ol {
    list-style: decimal;
}

.page-content li,
.detail-content li {
    margin: 0.4em 0;
    color: var(--text-dark);
}

.page-content img,
.detail-content img {
    max-width: 100%;
    border-radius: 12px;
}

.page-content a,
.detail-content a {
    color: var(--text-dark);
    box-shadow: inset 0 -6px rgba(255, 153, 102, 0.2);
    transition: box-shadow 0.2s ease;
}

.page-content a:hover,
.detail-content a:hover {
    box-shadow: inset 0 -12px rgba(255, 153, 102, 0.15);
}

/* 猫一覧ページ */
.cats-archive .section-header {
    margin-bottom: 40px;
}

.cats-pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination-buttons {
    display: inline-flex;
    gap: 12px;
}

.pagination-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.pagination-button:hover {
    background: #ff7744;
    transform: translateY(-1px);
}

/* お問い合わせ */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-section .container {
    max-width: 1000px;
}

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

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    padding: 12px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-link:hover {
    background: #ff7744;
    transform: translateY(-2px);
}

/* フォーム */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper .wpcf7 {
    width: 100%;
}

.contact-form-wrapper .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-wrapper .wpcf7-form p {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.contact-form-wrapper .wpcf7-form label {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form-wrapper fieldset {
    border: 0;
    padding: 0;
    margin: 0;
    min-width: 0;
}

.contact-form-wrapper .wpcf7-form input[type="text"],
.contact-form-wrapper .wpcf7-form input[type="email"],
.contact-form-wrapper .wpcf7-form input[type="tel"],
.contact-form-wrapper .wpcf7-form select,
.contact-form-wrapper .wpcf7-form textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
}

.contact-form-wrapper .wpcf7-form input:focus,
.contact-form-wrapper .wpcf7-form select:focus,
.contact-form-wrapper .wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form-wrapper .wpcf7-form textarea {
    resize: vertical;
}

.contact-form-wrapper .wpcf7-form .wpcf7-submit {
    width: fit-content;
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.contact-form-wrapper .wpcf7-form .wpcf7-submit:hover {
    background: #ff7744;
    transform: translateY(-1px);
}

.contact-form-wrapper .wpcf7-form .wpcf7-not-valid-tip {
    color: #d93025;
    font-size: 12px;
}

.contact-form-wrapper .wpcf7-response-output {
    margin: 0;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    background: var(--bg-light);
    color: var(--text-dark);
}

.contact-form-placeholder {
    color: var(--text-light);
    font-size: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* ページネーション */
.navigation {
    text-align: center;
    padding: 40px 0;
}

.navigation a {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 5px;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: var(--transition);
}

.navigation a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 14px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* フッターSNSリンク */
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    width: fit-content;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.social-link span {
    font-size: 18px;
}

/* アーカイブセレクト */
.footer-archives {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-archive-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.footer-archives select {
    padding: 8px 10px;
    border: 1px solid #fff;
    border-radius: 6px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.footer-archives select option {
    color: #000;
}

/* レスポンシブ */
@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
    }

    .process-arrow {
        display: none;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        max-width: 400px;
    }

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

    .gallery__hero img {
        height: 360px;
    }

    .side {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 30px;
        box-shadow: var(--shadow);
        transition: var(--transition);
        gap: 20px;
    }

    .nav.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .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: 70vh;
        min-height: 500px;
        margin-top: 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        gap: 30px;
    }

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

    .cats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cat-image-wrapper {
        height: 220px;
    }

    .status-content {
        flex-direction: column;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .detail {
        padding-top: 0;
    }
}

@media (max-width: 600px) {
    .footer-archives {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .container {
        max-width: 1250px;
        margin: 0 auto;
        padding: 0 10px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }

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

    .cats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card--pad {
        padding: 20px 10px;
    }

    .cat-image-wrapper {
        height: 220px;
    }
}
