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

/* 基本設定 */
body {
    font-family: 'Noto Serif JP', serif;
    line-height: 1.6;
    color: #8B7355;
    background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 50%, #FBCFE8 100%);
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="watercolor" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="70" cy="70" r="1.8" fill="rgba(255,255,255,0.09)"/></pattern></defs><rect width="100" height="100" fill="url(%23watercolor)"/></svg>');
    pointer-events: none;
    z-index: -1;
}

/* コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 115, 85, 0.2);
    position: relative;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-image {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 2px 4px rgba(139, 115, 85, 0.2));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #8B7355;
    margin: 0;
}

.logo-text p {
    font-size: 0.9rem;
    color: #A08B7A;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #8B7355;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #D4A574;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4A574;
    transition: width 0.3s ease;
}

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

/* メインコンテンツ */
main {
    margin-top: 0;
}

/* ヒーローセクション */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(252, 231, 243, 0.8) 0%, rgba(251, 207, 232, 0.6) 100%);
    position: relative;
    padding: 2rem 0;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-pattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.3)"/><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.2)"/><circle cx="40" cy="40" r="0.8" fill="rgba(255,255,255,0.25)"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 1rem;
}

.hero-logo-image {
    width: 400px;
    height: 400px;
    filter: drop-shadow(0 8px 16px rgba(139, 115, 85, 0.5));
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #8B7355;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    max-width: 100%;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #A08B7A;
    line-height: 1.8;
    max-width: 100%;
    word-wrap: break-word;
}

/* セクション共通 */
.section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 3;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #8B7355;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #A08B7A;
    font-weight: 300;
}

/* エレガントなフレームデザイン */
.elegant-frame {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(139, 115, 85, 0.3);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.1);
}

.elegant-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(139, 115, 85, 0.2);
    border-radius: 4px;
    pointer-events: none;
}

/* 事業内容セクション */
#service {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

#service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(252, 231, 243, 0.3) 0%, rgba(251, 207, 232, 0.2) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: -1;
}

.service-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.service-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(139, 115, 85, 0.3);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(139, 115, 85, 0.2);
    border-radius: 4px;
    pointer-events: none;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 115, 85, 0.15);
    z-index: 3;
}

.service-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #8B7355;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-item p {
    color: #A08B7A;
    line-height: 1.7;
}

/* ABOUTセクション */
#about {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(252, 231, 243, 0.3) 0%, rgba(251, 207, 232, 0.2) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: -1;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-text {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(139, 115, 85, 0.3);
    border-radius: 8px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.about-text::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(139, 115, 85, 0.2);
    border-radius: 4px;
    pointer-events: none;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #8B7355;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 500;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: #A08B7A;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* 利用者の声セクション */
.testimonials-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(252, 231, 243, 0.2) 0%, rgba(251, 207, 232, 0.1) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: -1;
}

.testimonials-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(139, 115, 85, 0.3);
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: rgba(139, 115, 85, 0.2);
    line-height: 1;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 115, 85, 0.15);
}

.testimonial-text {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-text p {
    color: #A08B7A;
    line-height: 1.8;
    font-size: 1.1rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(139, 115, 85, 0.2);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-photo {
    flex-shrink: 0;
}

.photo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(252, 231, 243, 0.8) 0%, rgba(251, 207, 232, 0.6) 100%);
    border: 2px solid rgba(139, 115, 85, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A08B7A;
    font-size: 0.8rem;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.2);
}

.author-info {
    flex: 1;
}

.author-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #8B7355;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.author-info p {
    color: #A08B7A;
    font-size: 0.9rem;
}

/* お知らせセクション */
.news-content {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(139, 115, 85, 0.3);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.1);
    transition: transform 0.3s ease;
}

.news-item::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(139, 115, 85, 0.2);
    border-radius: 4px;
    pointer-events: none;
}

.news-item:hover {
    transform: translateX(5px);
}

.news-date {
    font-size: 0.9rem;
    color: #D4A574;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.news-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #8B7355;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.news-excerpt {
    color: #A08B7A;
    line-height: 1.6;
}

/* ギャラリーページ専用スタイル */
.gallery-hero {
    background: linear-gradient(135deg, rgba(252, 231, 243, 0.8) 0%, rgba(251, 207, 232, 0.6) 100%);
    padding: 120px 0 4rem 0;
    text-align: center;
    position: relative;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-pattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.3)"/><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.2)"/><circle cx="40" cy="40" r="0.8" fill="rgba(255,255,255,0.25)"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
    opacity: 0.5;
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
}

.gallery-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 500;
    color: #8B7355;
    margin-bottom: 0.5rem;
}

.gallery-hero-subtitle {
    font-size: 1.3rem;
    color: #A08B7A;
    margin-bottom: 1rem;
}

.gallery-hero-description {
    font-size: 1.1rem;
    color: #A08B7A;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.gallery-item-large {
    grid-column: 1 / -1;
    background: #f8f9fa;
    border: 1px solid rgba(139, 115, 85, 0.3);
    border-radius: 8px;
    height: 400px;
    position: relative;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item {
    background: #f8f9fa;
    border: 1px solid rgba(139, 115, 85, 0.3);
    border-radius: 8px;
    height: 250px;
    position: relative;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-large::before,
.gallery-item::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(139, 115, 85, 0.2);
    border-radius: 4px;
    pointer-events: none;
}

.gallery-item-large:hover,
.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(139, 115, 85, 0.15);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image,
.gallery-item-large:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(139, 115, 85, 0.9), rgba(139, 115, 85, 0.7), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay,
.gallery-item-large:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-overlay p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.gallery-description {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.gallery-description-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(139, 115, 85, 0.3);
    border-radius: 8px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.1);
}

.gallery-description-content::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(139, 115, 85, 0.2);
    border-radius: 4px;
    pointer-events: none;
}

.gallery-description-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #8B7355;
    margin-bottom: 1.5rem;
    text-align: center;
}

.gallery-description-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #8B7355;
    margin: 2rem 0 1rem 0;
}

.gallery-description-content p {
    color: #A08B7A;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* アクティブなナビゲーションリンク */
.nav-menu a.active {
    color: #D4A574;
    font-weight: 500;
}

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

/* 会社概要セクション */
.company-content {
    max-width: 900px;
    margin: 0 auto;
}

.company-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(139, 115, 85, 0.3);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.1);
}

.info-item::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(139, 115, 85, 0.2);
    border-radius: 4px;
    pointer-events: none;
}

.info-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #8B7355;
    margin-bottom: 1rem;
    font-weight: 500;
}

.info-item p {
    color: #A08B7A;
    line-height: 1.7;
}

.phone-link {
    color: #8B7355;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #D4A574;
    text-decoration: underline;
}

.email-link {
    color: #8B7355;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #D4A574;
    text-decoration: underline;
}

/* フッター */
.footer {
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(139, 115, 85, 0.2);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
    position: relative;
    z-index: 1;
}

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

.footer-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8B7355;
    margin-bottom: 0.5rem;
}

.footer-info p {
    color: #A08B7A;
}

.footer-contact p {
    color: #A08B7A;
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 115, 85, 0.1);
}

.footer-bottom p {
    color: #A08B7A;
    font-size: 0.9rem;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .header {
        min-height: 90px;
    }
    .nav-container {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem 2rem;
    }
    
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .logo {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .logo-link {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .logo-image {
        display: none;
    }
    
    .hero-logo-image {
        width: 280px;
        height: 280px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-content {
        gap: 2.5rem;
        padding: 0 1rem;
        margin-top: 1rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .gallery-content {
        grid-template-columns: 1fr;
    }
    
    .company-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* ギャラリーページのモバイル対応 */
    .gallery-hero-title {
        font-size: 2.5rem;
    }
    
    .gallery-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .gallery-hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .gallery-item-large {
        grid-column: 1 / -1;
        height: 300px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .gallery-overlay h3 {
        font-size: 1.3rem;
    }
    
    .gallery-overlay h4 {
        font-size: 1.1rem;
    }
    
    .gallery-description-content {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .gallery-description-content h2 {
        font-size: 1.8rem;
    }
    
    .gallery-description-content h3 {
        font-size: 1.2rem;
    }
    
    /* 利用者の声セクションのモバイル対応 */
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .testimonial-item {
        padding: 2rem;
    }
    
    .testimonial-text p {
        font-size: 1rem;
    }
    
    .author-info h4 {
        font-size: 1.1rem;
    }
    
    .photo-placeholder {
        width: 50px;
        height: 50px;
        font-size: 0.7rem;
    }
}

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

.section {
    animation: fadeInUp 0.8s ease-out;
}

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