/*
Theme Name: London Regenerative
Theme URI: https://example.com/london-regenerative-theme/
Author: Your Name
Author URI: https://example.com/
Description: 高級感のあるロンジェビティクリニック向けWordPressテーマ。London Regenerative Instituteのデザインを参考に作成されています。
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: london-regenerative
Tags: dark, gold, luxury, health, clinic, longevity, responsive
*/

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

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background-color: #1a2634;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    color: #c9a96e;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #e0c08a;
}

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

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

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 60px;
    text-align: center;
    color: #c9a96e;
}

/* ヘッダー */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: rgba(26, 38, 52, 0.9);
}

.site-header.scrolled {
    padding: 10px 0;
    background-color: rgba(26, 38, 52, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo {
    max-width: 180px;
}

.site-navigation {
    display: flex;
    align-items: center;
}

.main-menu {
    display: none;
}

.main-menu ul {
    display: flex;
    list-style: none;
}

.main-menu li {
    margin-left: 30px;
}

.main-menu a {
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.main-menu a:hover {
    color: #c9a96e;
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.book-consultation-button {
    display: inline-block;
    background-color: #c9a96e;
    color: #1a2634;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-left: 30px;
    transition: all 0.3s ease;
}

.book-consultation-button:hover {
    background-color: #e0c08a;
    color: #1a2634;
    transform: translateY(-2px);
}

/* モバイルメニュー */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: #1a2634;
    z-index: 1001;
    padding: 80px 40px;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ヒーローセクション */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: #1a2634;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-button {
    display: inline-block;
    background-color: #c9a96e;
    color: #1a2634;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: #e0c08a;
    color: #1a2634;
    transform: translateY(-2px);
}

/* サービスセクション */
.services-section {
    background-color: #1a2634;
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-card {
    position: relative;
    background-color: #243142;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(201, 169, 110, 0.2);
    position: absolute;
    bottom: 20px;
    right: 20px;
    line-height: 1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #c9a96e;
}

.service-description {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: #c9a96e;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.service-link:hover {
    color: #e0c08a;
}

/* 科学的根拠セクション */
.facts-section {
    background-color: #243142;
    padding: 100px 0;
}

.facts-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.facts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.fact-card {
    text-align: center;
    padding: 30px;
}

.fact-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #c9a96e;
    margin-bottom: 15px;
    line-height: 1;
}

.fact-description {
    font-size: 1rem;
    color: #fff;
    max-width: 300px;
    margin: 0 auto;
}

/* 体験談セクション */
.testimonials-section {
    background-color: #c9a96e;
    padding: 100px 0;
    color: #1a2634;
}

.testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a2634;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    text-align: center;
    padding: 0 30px;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    padding: 0 40px;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    font-size: 4rem;
    color: rgba(26, 38, 52, 0.2);
    position: absolute;
    line-height: 1;
}

.testimonial-quote::before {
    top: 0;
    left: 0;
}

.testimonial-quote::after {
    bottom: -20px;
    right: 0;
}

.testimonial-author {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-info {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.testimonial-result {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2634;
}

/* 最新情報セクション */
.latest-section {
    background-color: #1a2634;
    padding: 100px 0;
}

.latest-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.latest-card {
    background-color: #243142;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.latest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.latest-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.latest-content {
    padding: 30px;
}

.latest-date {
    font-size: 0.9rem;
    color: #c9a96e;
    margin-bottom: 10px;
}

.latest-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.latest-excerpt {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 20px;
}

.latest-link {
    display: inline-block;
    color: #c9a96e;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.latest-link:hover {
    color: #e0c08a;
}

/* プレスセクション */
.press-section {
    background-color: #fff;
    padding: 80px 0;
}

.press-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a2634;
}

.press-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.press-logo {
    max-width: 150px;
    height: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.press-logo:hover {
    opacity: 1;
}

/* CTAセクション */
.cta-section {
    background-color: #c9a96e;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a2634;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #1a2634;
}

.cta-button {
    display: inline-block;
    background-color: #1a2634;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #243142;
    transform: translateY(-2px);
}

/* フッター */
.site-footer {
    background-color: #1a2634;
    padding: 80px 0 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact-icon {
    margin-right: 15px;
    color: #c9a96e;
    font-size: 1.2rem;
}

.footer-contact-text {
    font-size: 1rem;
}

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

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #243142;
    border-radius: 50%;
    color: #c9a96e;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: #c9a96e;
    color: #1a2634;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #c9a96e;
}

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

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

.footer-menu a {
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: #c9a96e;
}

.footer-newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.footer-newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    background-color: #243142;
    color: #fff;
    font-size: 1rem;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-button {
    padding: 12px 20px;
    border: none;
    border-radius: 0 5px 5px 0;
    background-color: #c9a96e;
    color: #1a2634;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter-button:hover {
    background-color: #e0c08a;
}

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

/* レスポンシブスタイル */
@media (min-width: 576px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .latest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .main-menu {
        display: block;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .facts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .latest-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-content {
        text-align: left;
        max-width: 600px;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

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

.animate-fadeIn {
    animation: fadeIn 1s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

/* WordPress特有のスタイル */
.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 20px;
}

.wp-caption-text {
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    margin-top: 10px;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

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

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

.gallery-icon img {
    border: none !important;
}

.gallery-caption {
    font-size: 0.9rem;
    margin-top: 10px;
}

.bypostauthor {
    background-color: rgba(201, 169, 110, 0.05);
    padding: 20px;
    border-left: 3px solid #c9a96e;
}

.sticky {
    position: relative;
    padding: 20px;
    background-color: rgba(201, 169, 110, 0.05);
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.sticky::before {
    content: "Featured";
    position: absolute;
    top: 0;
    right: 0;
    background-color: #c9a96e;
    color: #1a2634;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.wp-block-button__link {
    background-color: #c9a96e;
    color: #1a2634;
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wp-block-button__link:hover {
    background-color: #e0c08a;
    color: #1a2634;
}

.wp-block-quote {
    border-left: 3px solid #c9a96e;
    padding-left: 20px;
    margin-left: 0;
    font-style: italic;
}

.wp-block-pullquote {
    border-top: 3px solid #c9a96e;
    border-bottom: 3px solid #c9a96e;
    padding: 20px 0;
    margin: 40px 0;
    text-align: center;
}

.wp-block-table table {
    border-collapse: collapse;
    width: 100%;
}

.wp-block-table th,
.wp-block-table td {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
}

.wp-block-table th {
    background-color: #243142;
    font-weight: 600;
}

.wp-block-cover {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.wp-block-cover__inner-container {
    max-width: 800px;
    text-align: center;
}
