/* 寺のホームページテーマ */
/* 観光寺院向けデザイン */

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

/* 基本設定 */
body {
    font-family: 'Noto Serif JP', 'Noto Sans JP', 'Hiragino Mincho ProN', 'Yu Mincho', 'Meiryo', serif;
    color: #374151;
    line-height: 1.6;
    letter-spacing: 0.05em;
    /* 観光寺院向け：明るめのグレー系のグラデーション */
    background: linear-gradient(135deg, #e8eaf0 0%, #e0e4ea 50%, #d8dce4 100%);
    background-attachment: fixed;
}

.temple-c-page {
    font-family: 'Noto Serif JP', 'Noto Sans JP', 'Hiragino Mincho ProN', 'Yu Mincho', 'Meiryo', serif;
    color: #374151;
    line-height: 1.6;
    min-height: 60vh;
    padding: 0 0 2rem;
    letter-spacing: 0.05em;
    /* セクションごとに異なる背景色で変化をつける */
    background: #e8eaf0;
}

#main-content {
    background: #e8eaf0;
}

/* 段落のマージン */
p {
    margin-bottom: 0.5rem;
}

.temple-c-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
.temple-c-header {
    background: rgba(107, 114, 128, 0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #4a90e2;
}

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

.temple-c-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    margin: 0;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.1em;
}

.temple-c-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.temple-c-nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.temple-c-nav-menu a:hover {
    color: #a8d5ff;
}

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

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

/* ヒーローセクション */
.temple-c-hero {
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
    /* 寺らしい落ち着いた背景：薄い茶色とベージュのグラデーション */
    background: linear-gradient(135deg, #f5f1e8 0%, #ede8dd 50%, #e8e0d3 100%);
    padding: 1rem 0;
}

.temple-c-hero-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 20px;
    text-align: center;
}

.temple-c-hero-content {
    z-index: 2;
}

.temple-c-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.05em;
}

.temple-c-hero-subtitle {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.temple-c-hero-cta {
    margin-top: 1rem;
}

.temple-c-hero-info {
    margin: 1.5rem 0;
    font-size: 1rem;
    color: #374151;
}

.temple-c-hero-admission,
.temple-c-hero-hours {
    margin: 0.5rem 0;
    font-weight: 500;
}

.temple-c-hero-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.temple-c-btn-hero {
    background: #4a90e2;
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.temple-c-btn-hero:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.temple-c-hero-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
}

.temple-c-hero-photo {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #808080;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    position: relative;
}

/* メッセージセクション */
.temple-c-message-section {
    padding: 2rem 0;
    /* 白に近いベージュで区別 */
    background: #faf9f6;
}

.temple-c-message-content {
    max-width: 900px;
    margin: 0 auto;
}

.temple-c-message-title {
    font-size: 2rem;
    font-weight: 400;
    text-align: left;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.05em;
    line-height: 1.8;
}

.temple-c-message-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.temple-c-message-text {
    font-size: 1rem;
    color: #1e293b;
    line-height: 2.2;
    margin: 0;
}

/* セクションタイトル */
.temple-c-section-title {
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.05em;
    line-height: 1.8;
}

.temple-c-section-subtitle {
    font-size: 1.1rem;
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
}

.temple-c-section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* ボタン */
.temple-c-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.temple-c-btn-primary {
    background: #4a90e2;
    color: white;
}

.temple-c-btn-primary:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.temple-c-btn-secondary {
    background: transparent;
    color: #4a90e2;
    border: 2px solid #4a90e2;
}

.temple-c-btn-secondary:hover {
    background: #4a90e2;
    color: white;
    transform: translateY(-2px);
}

/* フッター */
.temple-c-footer {
    background: #6b7280;
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 3px solid #4a90e2;
}

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

.temple-c-footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.temple-c-footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: 'Noto Serif JP', serif;
}

.temple-c-footer-section p,
.temple-c-footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    line-height: 2;
}

.temple-c-footer-section a:hover {
    color: #ffffff;
}

.temple-c-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* レスポンシブ */
@media (max-width: 1024px) {
    .temple-c-hero-image-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .temple-c-hero-image {
        height: auto;
    }
    
    .temple-c-hero-photo {
        aspect-ratio: 16 / 9;
    }
    
    .temple-c-hero-title {
        font-size: 2.5rem;
    }
    
    .temple-c-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .temple-c-hero-wrapper {
        padding: 1.5rem 20px;
    }
    
    .temple-c-buildings-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .temple-c-course-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .temple-c-tourist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .temple-c-walk-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .temple-c-buddha-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .temple-c-famous-people-grid,
    .temple-c-famous-spots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .temple-c-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .temple-c-highlight-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }
    
    .temple-c-history-teaser-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 768px) {
    .temple-c-hero-image-wrapper {
        grid-template-columns: 1fr;
    }
    
    .temple-c-hero-image-caption {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .temple-c-hero {
        flex-direction: column;
        padding: 0;
    }
    
    .temple-c-hero-image {
        width: 100%;
        order: 1;
        height: auto;
    }
    
    .temple-c-hero-wrapper {
        width: 100%;
        order: 2;
        padding: 1.5rem 15px;
    }
    
    .temple-c-hero-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        font-size: 1.5rem;
    }
    
    .temple-c-hero-title {
        font-size: 2rem;
    }
    
    .temple-c-hero-subtitle {
        font-size: 1rem;
    }
    
    .temple-c-hero-cta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .temple-c-btn-hero {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .temple-c-nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .temple-c-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .temple-c-section-title {
        font-size: 1.8rem;
    }
    
    .temple-c-page-title {
        font-size: 2rem;
    }
    
    .temple-c-container {
        padding: 0 15px;
    }
    
    .temple-c-highlight-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        font-size: 1.5rem;
    }
    
    .temple-c-history-teaser-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        font-size: 1.5rem;
    }
    
    .temple-c-why-card {
        padding: 1.5rem;
    }
    
    .temple-c-why-title {
        font-size: 1.3rem;
    }
    
    .temple-c-why-desc {
        font-size: 0.95rem;
    }
    
    .temple-c-highlight-title {
        font-size: 1.5rem;
    }
    
    .temple-c-highlight-text {
        font-size: 0.95rem;
    }
    
    .temple-c-gallery-photo,
    .temple-c-gallery-photo-large {
        font-size: 1.5rem;
    }
    
    .temple-c-gallery-name {
        font-size: 1.1rem;
    }
    
    .temple-c-gallery-desc {
        font-size: 0.9rem;
    }
    
    .temple-c-container {
        padding: 0 15px;
    }
    
    .temple-c-section-title {
        font-size: 1.8rem;
    }
    
    .temple-c-page-title {
        font-size: 2rem;
    }
    
    .temple-c-hero-photo-large {
        width: 100%;
        height: auto;
        aspect-ratio: 11 / 4;
        min-height: 200px;
    }
    
    .temple-c-hero-image-large {
        height: auto;
        min-height: 200px;
    }
}

/* セクション */
.temple-c-interior-section {
    padding: 2rem 0;
    background: #f5f1e8;
}

.temple-c-interior-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 1rem;
}

.temple-c-interior-text {
    font-size: 1rem;
    color: #1e293b;
    line-height: 2.2;
}

.temple-c-interior-text p {
    margin-bottom: 1rem;
}

.temple-c-interior-image {
    width: 100%;
}

.temple-c-interior-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #808080;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
}

.temple-c-services-section {
    padding: 2rem 0;
    background: #faf9f6;
}

.temple-c-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.temple-c-service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.temple-c-service-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.temple-c-service-desc {
    font-size: 0.95rem;
    color: #1e293b;
    line-height: 1.8;
}

.temple-c-section-cta {
    text-align: center;
    margin-top: 2rem;
}

.temple-c-gallery-section {
    padding: 4rem 0;
    background: #f0f2f5;
}

.temple-c-gallery-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.temple-c-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 100%;
}

.temple-c-gallery-item-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.temple-c-gallery-item {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.temple-c-gallery-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #808080;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.temple-c-gallery-photo-large {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #808080;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.temple-c-gallery-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-family: 'Noto Serif JP', serif;
}

.temple-c-gallery-desc {
    font-size: 0.95rem;
    color: #1f2937;
    line-height: 1.8;
}

.temple-c-contact-section {
    padding: 2rem 0;
    background: #faf9f6;
}

.temple-c-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.temple-c-contact-info {
    font-size: 1rem;
    color: #1e293b;
    line-height: 2;
}

.temple-c-contact-phone {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.temple-c-contact-phone a {
    color: #8b6f47;
    text-decoration: none;
}

.temple-c-contact-note {
    font-size: 0.9rem;
    color: #1e293b;
}

.temple-c-contact-hours h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.temple-c-contact-hours h3:first-child {
    margin-top: 0;
}

.temple-c-contact-hours p {
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

/* 写真のダミー */
.temple-c-hero-photo,
.temple-c-staff-photo,
.temple-c-interior-photo,
.temple-c-gallery-photo,
.temple-c-hero-photo-large,
.temple-c-intro-photo,
.temple-c-famous-photo,
.temple-c-spot-photo,
.temple-c-season-photo,
.temple-c-memorial-photo,
.temple-c-tradition-photo,
.temple-c-buddha-photo,
.temple-c-map-photo,
.temple-c-blog-photo {
    background: #808080;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    position: relative;
    min-height: 100%;
}

.temple-c-hero-photo::before,
.temple-c-staff-photo::before,
.temple-c-interior-photo::before,
.temple-c-gallery-photo::before,
.temple-c-hero-photo-large::before,
.temple-c-intro-photo::before,
.temple-c-famous-photo::before,
.temple-c-spot-photo::before,
.temple-c-season-photo::before,
.temple-c-memorial-photo::before,
.temple-c-tradition-photo::before,
.temple-c-buddha-photo::before,
.temple-c-map-photo::before,
.temple-c-blog-photo::before {
    content: '';
    flex: 1;
    min-height: 0;
}

.temple-c-hero-photo::after,
.temple-c-staff-photo::after,
.temple-c-interior-photo::after,
.temple-c-gallery-photo::after,
.temple-c-hero-photo-large::after,
.temple-c-intro-photo::after,
.temple-c-famous-photo::after,
.temple-c-spot-photo::after,
.temple-c-season-photo::after,
.temple-c-memorial-photo::after,
.temple-c-tradition-photo::after,
.temple-c-buddha-photo::after,
.temple-c-map-photo::after,
.temple-c-blog-photo::after {
    content: '';
    flex: 1;
    min-height: 0;
}

.temple-c-hero-photo > span:not(.temple-c-photo-size),
.temple-c-staff-photo > span:not(.temple-c-photo-size),
.temple-c-interior-photo > span:not(.temple-c-photo-size),
.temple-c-gallery-photo > span:not(.temple-c-photo-size),
.temple-c-hero-photo-large > span:not(.temple-c-photo-size),
.temple-c-intro-photo > span:not(.temple-c-photo-size),
.temple-c-famous-photo > span:not(.temple-c-photo-size),
.temple-c-spot-photo > span:not(.temple-c-photo-size),
.temple-c-season-photo > span:not(.temple-c-photo-size),
.temple-c-memorial-photo > span:not(.temple-c-photo-size),
.temple-c-tradition-photo > span:not(.temple-c-photo-size),
.temple-c-buddha-photo > span:not(.temple-c-photo-size),
.temple-c-map-photo > span:not(.temple-c-photo-size),
.temple-c-blog-photo > span:not(.temple-c-photo-size) {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    display: inline;
}

.temple-c-hero-photo,
.temple-c-staff-photo,
.temple-c-interior-photo,
.temple-c-gallery-photo,
.temple-c-hero-photo-large,
.temple-c-intro-photo,
.temple-c-famous-photo,
.temple-c-spot-photo,
.temple-c-season-photo,
.temple-c-memorial-photo,
.temple-c-tradition-photo,
.temple-c-buddha-photo,
.temple-c-map-photo,
.temple-c-blog-photo {
    gap: 0.3rem;
}

.temple-c-photo-size {
    font-size: 0.7rem;
    color: #ffffff;
    margin-top: 0.3rem;
    opacity: 0.8;
    font-weight: normal;
    line-height: 1.2;
}

/* 写真のサイズ指定（実際のサイズでスペースを確保） */
.temple-c-hero-photo {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.temple-c-intro-photo {
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 4 / 3;
    min-height: 600px;
}

.temple-c-famous-photo,
.temple-c-buildings-photo,
.temple-c-buddha-photo,
.temple-c-tradition-photo {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 4 / 3;
    min-height: 500px;
}

.temple-c-spot-photo {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 4 / 3;
    min-height: 400px;
}

.temple-c-hero-photo-large {
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 11 / 4;
    min-height: 300px;
}

.temple-c-map-photo {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1 / 1;
    min-height: 500px;
}

/* ページヘッダー */
.temple-c-page-header {
    padding: 1rem 0;
    text-align: center;
}

.temple-c-page-title {
    font-size: 2.8rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

/* アイキャッチ画像セクション */
.temple-c-hero-image-section {
    padding: 2rem 0;
    background: #f5f1e8;
}

.temple-c-hero-image-large {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    height: 400px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    border-top: 4px solid #8b6f47;
    border-bottom: 4px solid #8b6f47;
}

.temple-c-hero-photo-large {
    width: 1100px;
    max-width: 100%;
    height: 400px;
    background: #808080;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
}

.temple-c-hero-image-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.temple-c-hero-image-caption {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.8;
    font-family: 'Noto Serif JP', serif;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-left: 4px solid #8b6f47;
    border-radius: 4px;
}

/* 歴史セクション */
.temple-c-history-section {
    padding: 2rem 0;
    background: #faf9f6;
}

.temple-c-history-content {
    max-width: 900px;
    margin: 0 auto;
}

.temple-c-history-text {
    font-size: 1rem;
    color: #1e293b;
    line-height: 2.2;
}

.temple-c-history-text p {
    margin-bottom: 1.5rem;
}

/* 年表セクション */
.temple-c-timeline-section {
    padding: 2rem 0;
    background: #f5f1e8;
}

.temple-c-timeline {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.temple-c-timeline-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #e8e0d3;
    position: relative;
}

.temple-c-timeline-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.temple-c-timeline-year {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8b6f47;
    font-family: 'Noto Serif JP', serif;
}

.temple-c-timeline-content {
    font-size: 1rem;
    color: #1e293b;
    line-height: 2;
}

.temple-c-timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-family: 'Noto Serif JP', serif;
}

.temple-c-timeline-content p {
    margin-bottom: 0.5rem;
}

/* 伝統セクション */
.temple-c-tradition-section {
    padding: 2rem 0;
    background: #faf9f6;
}

.temple-c-tradition-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 1rem;
}

.temple-c-tradition-text {
    font-size: 1rem;
    color: #1e293b;
    line-height: 2.2;
}

.temple-c-tradition-text p {
    margin-bottom: 1rem;
}

.temple-c-tradition-image {
    width: 100%;
}

.temple-c-tradition-photo {
    width: 800px;
    max-width: 100%;
    height: 600px;
    background: #808080;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
}

/* ご本尊セクション */
.temple-c-buddha-section {
    padding: 2rem 0;
    background: #f5f1e8;
}

.temple-c-buddha-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 1rem;
}

.temple-c-buddha-image {
    width: 100%;
}

.temple-c-buddha-photo {
    width: 800px;
    max-width: 100%;
    height: 600px;
    background: #808080;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
}

.temple-c-buddha-text {
    font-size: 1rem;
    color: #1e293b;
    line-height: 2.2;
}

.temple-c-buddha-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.temple-c-buddha-title:first-child {
    margin-top: 0;
}

.temple-c-buddha-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.temple-c-buddha-subtitle:first-child {
    margin-top: 0;
}

.temple-c-buddha-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.temple-c-buddha-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #1e293b;
    border-bottom: 1px solid #e8e0d3;
}

.temple-c-buddha-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: bold;
}

.temple-c-buddha-list li:last-child {
    border-bottom: none;
}

.temple-c-buddha-text p {
    margin-bottom: 1rem;
}

/* 四季折々の風景セクション */
.temple-c-season-section {
    padding: 3rem 0;
}

.temple-c-season-spring {
    background: #faf9f6;
}

.temple-c-season-summer {
    background: #f5f1e8;
}

.temple-c-season-autumn {
    background: #faf9f6;
}

.temple-c-season-winter {
    background: #f5f1e8;
}

.temple-c-season-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Noto Serif JP', serif;
}

.temple-c-season-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.temple-c-season-summer .temple-c-season-content,
.temple-c-season-winter .temple-c-season-content {
    grid-template-columns: 1fr 1fr;
}

.temple-c-season-summer .temple-c-season-text {
    order: 1;
}

.temple-c-season-summer .temple-c-season-image {
    order: 2;
}

.temple-c-season-winter .temple-c-season-text {
    order: 1;
}

.temple-c-season-winter .temple-c-season-image {
    order: 2;
}

.temple-c-season-image {
    width: 100%;
}

.temple-c-season-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #808080;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.temple-c-season-text {
    font-size: 1rem;
    color: #1e293b;
    line-height: 2.2;
}

.temple-c-season-text p {
    margin-bottom: 1.5rem;
}

/* 四季ギャラリーセクション */
.temple-c-seasons-gallery-section {
    padding: 2rem 0;
    background: #faf9f6;
}

.temple-c-seasons-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.temple-c-seasons-gallery-item {
    width: 100%;
}

.temple-c-seasons-gallery-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #808080;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.temple-c-seasons-gallery-photo:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .temple-c-interior-content,
    .temple-c-contact-content,
    .temple-c-tradition-content {
        grid-template-columns: 1fr;
    }
    
    .temple-c-services-grid,
    .temple-c-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .temple-c-timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .temple-c-buddha-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .temple-c-hero-image-large {
        height: 250px;
    }
    
    .temple-c-season-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .temple-c-season-summer .temple-c-season-text,
    .temple-c-season-winter .temple-c-season-text {
        order: 2;
    }
    
    .temple-c-season-summer .temple-c-season-image,
    .temple-c-season-winter .temple-c-season-image {
        order: 1;
    }
    
    .temple-c-seasons-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ご祈祷・法要ページ */
.temple-c-prayer-section {
    padding: 2rem 0;
    background: #faf9f6;
}

.temple-c-prayer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.temple-c-prayer-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #8b6f47;
}

.temple-c-prayer-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.temple-c-prayer-desc {
    font-size: 0.95rem;
    color: #1e293b;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.temple-c-prayer-time {
    font-size: 0.9rem;
    color: #8b6f47;
    font-weight: 500;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e8e0d3;
}

.temple-c-memorial-section {
    padding: 2rem 0;
    background: #f5f1e8;
}

.temple-c-memorial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 1rem;
}

.temple-c-memorial-text {
    font-size: 1rem;
    color: #1e293b;
    line-height: 2.2;
}

.temple-c-memorial-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.temple-c-memorial-subtitle:first-child {
    margin-top: 0;
}

.temple-c-memorial-text p {
    margin-bottom: 1rem;
}

.temple-c-memorial-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.temple-c-memorial-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #1e293b;
    border-bottom: 1px solid #e8e0d3;
}

.temple-c-memorial-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: bold;
}

.temple-c-memorial-list li:last-child {
    border-bottom: none;
}

.temple-c-memorial-image {
    width: 100%;
}

.temple-c-memorial-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #808080;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
}

.temple-c-booking-section {
    padding: 2rem 0;
    background: #faf9f6;
}

.temple-c-booking-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.temple-c-booking-text {
    font-size: 1rem;
    color: #1e293b;
    line-height: 2;
    margin-bottom: 2rem;
}

.temple-c-booking-info {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.temple-c-booking-phone {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.temple-c-booking-phone a {
    color: #8b6f47;
    text-decoration: none;
}

.temple-c-booking-hours {
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.temple-c-booking-note {
    font-size: 0.9rem;
    color: #1e293b;
    line-height: 1.6;
}

/* アクセスのページ */
.temple-c-access-section {
    padding: 2rem 0;
    background: #faf9f6;
}

.temple-c-access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 1rem;
}

.temple-c-access-details {
    margin-top: 1rem;
}

.temple-c-access-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e0d3;
}

.temple-c-access-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.temple-c-access-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-family: 'Noto Serif JP', serif;
}

.temple-c-access-value {
    font-size: 1rem;
    color: #1e293b;
    line-height: 1.8;
}

.temple-c-access-value a {
    color: #8b6f47;
    text-decoration: none;
    font-weight: 500;
}

.temple-c-access-map {
    width: 100%;
}

.temple-c-map-photo {
    width: 600px;
    max-width: 100%;
    height: 600px;
    background: #808080;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
}

/* 歴史上の人物とのゆかりページ */
.temple-c-famous-section {
    padding: 4rem 0;
    background: #ffffff;
}

.temple-c-famous-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.temple-c-famous-text {
    font-size: 1rem;
    color: #1f2937;
    line-height: 2;
}

.temple-c-famous-text p {
    margin-bottom: 1.5rem;
}

.temple-c-famous-image {
    width: 100%;
}

.temple-c-famous-people-section {
    padding: 4rem 0;
    background: #f0f2f5;
}

.temple-c-famous-people-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.temple-c-famous-person-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #4a90e2;
}

.temple-c-famous-person-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
    border-bottom: 2px solid #e8eaf0;
    padding-bottom: 0.8rem;
}

.temple-c-famous-person-desc {
    font-size: 0.95rem;
    color: #1f2937;
    line-height: 1.8;
}

.temple-c-famous-spots-section {
    padding: 4rem 0;
    background: #ffffff;
}

.temple-c-famous-spots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.temple-c-famous-spot-item {
    background: #f0f2f5;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.temple-c-famous-spot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.temple-c-famous-spot-image {
    width: 100%;
}

.temple-c-famous-spot-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #808080;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    position: relative;
}

.temple-c-famous-spot-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 1.5rem 0.5rem;
    font-family: 'Noto Serif JP', serif;
}

.temple-c-famous-spot-desc {
    font-size: 0.95rem;
    color: #1f2937;
    line-height: 1.8;
    margin: 0 1.5rem 1.5rem;
}

.temple-c-transport-section {
    padding: 2rem 0;
    background: #f5f1e8;
}

.temple-c-transport-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.temple-c-transport-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.temple-c-transport-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.temple-c-transport-desc {
    font-size: 1rem;
    color: #1e293b;
    line-height: 1.8;
}

/* 新しいトップページセクション */
.temple-c-why-section {
    padding: 4rem 0;
    background: #ffffff;
}

.temple-c-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.temple-c-why-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.temple-c-why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.temple-c-why-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
    font-family: 'Noto Serif JP', serif;
    border-bottom: 2px solid #e8eaf0;
    padding-bottom: 0.8rem;
}

.temple-c-why-desc {
    font-size: 1rem;
    color: #1f2937;
    line-height: 1.8;
}

.temple-c-highlight-section {
    padding: 4rem 0;
    background: #e8eaf0;
}

.temple-c-highlight-content {
    margin-top: 2rem;
}

.temple-c-highlight-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.temple-c-highlight-image {
    width: 100%;
}

.temple-c-highlight-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #808080;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    border-radius: 12px;
}

.temple-c-highlight-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
    font-family: 'Noto Serif JP', serif;
}

.temple-c-highlight-text {
    font-size: 1rem;
    color: #1f2937;
    line-height: 2;
}

.temple-c-highlight-text p {
    margin-bottom: 1.5rem;
}

.temple-c-history-teaser-section {
    padding: 4rem 0;
    background: #ffffff;
}

.temple-c-history-teaser-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.temple-c-history-teaser-lead {
    font-size: 1.2rem;
    color: #374151;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.temple-c-history-teaser-text {
    font-size: 1rem;
    color: #1f2937;
    line-height: 2;
}

.temple-c-history-teaser-text p {
    margin-bottom: 1.5rem;
}

.temple-c-history-teaser-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.temple-c-history-teaser-image {
    width: 100%;
}

.temple-c-history-teaser-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #808080;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    border-radius: 12px;
}

.temple-c-access-teaser-section {
    padding: 4rem 0;
    background: #f0f2f5;
}

.temple-c-access-teaser-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.temple-c-access-teaser-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.temple-c-access-teaser-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-family: 'Noto Serif JP', serif;
}

.temple-c-access-teaser-item p {
    font-size: 1rem;
    color: #1f2937;
    line-height: 1.8;
}

.temple-c-btn-hero {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.temple-c-btn-hero-secondary {
    background: transparent;
    color: #4a90e2;
    border: 2px solid #4a90e2;
}

.temple-c-btn-hero-secondary:hover {
    background: #4a90e2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

@media (max-width: 768px) {
    .temple-c-prayer-grid,
    .temple-c-transport-content {
        grid-template-columns: 1fr;
    }
    
    .temple-c-memorial-content,
    .temple-c-access-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .temple-c-why-grid {
        grid-template-columns: 1fr;
    }
    
    .temple-c-highlight-main,
    .temple-c-history-teaser-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .temple-c-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .temple-c-gallery-item-large {
        grid-row: auto;
    }
    
    .temple-c-access-teaser-content {
        grid-template-columns: 1fr;
    }
    
    .temple-c-access-teaser-info {
        grid-template-columns: 1fr;
    }
    
    .temple-c-famous-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .temple-c-famous-people-grid,
    .temple-c-famous-spots-grid {
        grid-template-columns: 1fr;
    }
    
    .temple-c-blog-grid {
        grid-template-columns: 1fr;
    }
    
    .temple-c-buildings-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .temple-c-course-steps {
        grid-template-columns: 1fr;
    }
    
    .temple-c-tourist-grid {
        grid-template-columns: 1fr;
    }
    
    .temple-c-walk-grid {
        grid-template-columns: 1fr;
    }
    
    .temple-c-highlight-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        font-size: 1.5rem;
    }
    
    .temple-c-history-teaser-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        font-size: 1.5rem;
    }
    
    .temple-c-why-card {
        padding: 1.5rem;
    }
    
    .temple-c-why-title {
        font-size: 1.3rem;
    }
    
    .temple-c-why-desc {
        font-size: 0.95rem;
    }
    
    .temple-c-highlight-title {
        font-size: 1.5rem;
    }
    
    .temple-c-highlight-text {
        font-size: 0.95rem;
    }
    
    .temple-c-gallery-photo,
    .temple-c-gallery-photo-large {
        font-size: 1.5rem;
    }
    
    .temple-c-gallery-name {
        font-size: 1.1rem;
    }
    
    .temple-c-gallery-desc {
        font-size: 0.9rem;
    }
    
    .temple-c-buddha-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        font-size: 1.5rem;
    }
    
    .temple-c-buildings-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        font-size: 1.5rem;
    }
    
    .temple-c-course-step {
        padding: 1.5rem;
    }
    
    .temple-c-course-step-title {
        font-size: 1.2rem;
    }
    
    .temple-c-tourist-card,
    .temple-c-walk-card {
        padding: 1.5rem;
    }
    
    .temple-c-tourist-name,
    .temple-c-walk-name {
        font-size: 1.2rem;
    }
    
    .temple-c-buddha-subtitle {
        font-size: 1.2rem;
    }
    
    .temple-c-buildings-subtitle {
        font-size: 1.2rem;
    }
    
    .temple-c-buddha-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .temple-c-buildings-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* 住職ブログページ */
.temple-c-blog-section {
    padding: 4rem 0;
    background: #ffffff;
}

.temple-c-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.temple-c-blog-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.temple-c-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.temple-c-blog-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.temple-c-blog-thumbnail {
    width: 100%;
    overflow: hidden;
}

.temple-c-blog-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #808080;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    position: relative;
    line-height: 1.4;
}

.temple-c-blog-content {
    padding: 1.5rem;
}

.temple-c-blog-date {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.8rem;
}

.temple-c-blog-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
    line-height: 1.6;
}

.temple-c-blog-excerpt {
    font-size: 0.95rem;
    color: #1f2937;
    line-height: 1.8;
    margin: 0;
}

/* 伽藍セクション */
.temple-c-buildings-section {
    padding: 2rem 0;
    background: #faf9f6;
}

.temple-c-buildings-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 1rem;
}

.temple-c-buildings-text {
    font-size: 1rem;
    color: #1e293b;
    line-height: 2.2;
}

.temple-c-buildings-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.temple-c-buildings-subtitle:first-child {
    margin-top: 0;
}

.temple-c-buildings-text p {
    margin-bottom: 1rem;
}

.temple-c-buildings-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.temple-c-buildings-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #1e293b;
    border-bottom: 1px solid #e8e0d3;
}

.temple-c-buildings-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: bold;
}

.temple-c-buildings-list li:last-child {
    border-bottom: none;
}

.temple-c-buildings-image {
    width: 100%;
}

.temple-c-buildings-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #808080;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
}

/* 拝観コースセクション */
.temple-c-course-section {
    padding: 2rem 0;
    background: #f5f1e8;
}

.temple-c-course-content {
    margin-top: 1rem;
}

.temple-c-course-intro {
    font-size: 1rem;
    color: #1e293b;
    line-height: 2;
    margin-bottom: 2rem;
    text-align: center;
}

.temple-c-course-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.temple-c-course-step {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4a90e2;
}

.temple-c-course-step-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a90e2;
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.temple-c-course-step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.temple-c-course-step-desc {
    font-size: 0.95rem;
    color: #1e293b;
    line-height: 1.8;
}

/* 観光スポットセクション */
.temple-c-tourist-section {
    padding: 2rem 0;
    background: #faf9f6;
}

.temple-c-tourist-content {
    margin-top: 1rem;
}

.temple-c-tourist-intro {
    text-align: center;
    font-size: 1rem;
    color: #1e293b;
    line-height: 2;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.temple-c-tourist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.temple-c-tourist-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4a90e2;
}

.temple-c-tourist-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.temple-c-tourist-desc {
    font-size: 0.95rem;
    color: #1e293b;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.temple-c-tourist-distance {
    font-size: 0.9rem;
    color: #8b6f47;
    font-weight: 500;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e8e0d3;
}

/* 散策コースセクション */
.temple-c-walk-section {
    padding: 2rem 0;
    background: #f5f1e8;
}

.temple-c-walk-content {
    margin-top: 1rem;
}

.temple-c-walk-intro {
    text-align: center;
    font-size: 1rem;
    color: #1e293b;
    line-height: 2;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.temple-c-walk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.temple-c-walk-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4a90e2;
}

.temple-c-walk-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.temple-c-walk-desc {
    font-size: 0.95rem;
    color: #1e293b;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.temple-c-walk-time {
    font-size: 0.9rem;
    color: #8b6f47;
    font-weight: 500;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e8e0d3;
}


