@charset "UTF-8";

/* ==========================================================================
   基本設定 & フォント
   ========================================================================== */
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   ユーティリティ & コンポーネント
   ========================================================================== */

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #F59E0B;
}

/* マーカー強調 */
.highlight-text {
    background: linear-gradient(transparent 65%, rgba(245, 158, 11, 0.2) 65%);
    display: inline;
    padding: 0 4px;
    font-weight: 700;
}

/* 文章内の注目外部リンク */
.inline-external-link {
    color: #324166;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #F59E0B;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
    padding: 0 2px;
    display: inline-flex;
    align-items: center;
}

.inline-external-link:hover {
    color: #F59E0B;
    background-color: rgba(245, 158, 11, 0.1);
    text-decoration-color: #324166;
}

.inline-external-link::after {
    content: '\f35d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    font-size: 0.85em;
    display: inline-block;
}

/* ==========================================================================
   対話集会セクション (Event Section) - シンプル・重なり解消
   ========================================================================== */
.event-card {
    border: 3px solid #F59E0B;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.event-tag {
    background-color: #F59E0B;
    color: #fff;
    padding: 6px 12px;
    font-weight: 900;
    font-size: 11px;
    text-align: center;
    letter-spacing: 0.1em;
}

.event-body {
    padding: 24px 16px;
}

.event-main-title {
    color: #324166;
    font-weight: 900;
    line-height: 1.4;
    font-size: 20px;
    margin-bottom: 12px;
}

.event-details-box {
    background-color: #f9fafb;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.event-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.event-icon {
    width: 32px;
    height: 32px;
    background-color: #324166;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.event-text {
    font-size: 15px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.4;
}

.event-map-btn {
    display: inline-block;
    color: #F59E0B;
    font-weight: 700;
    font-size: 13px;
    margin-top: 4px;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .event-body { padding: 40px; }
    .event-main-title { font-size: 32px; }
    .event-tag { text-align: right; font-size: 13px; padding: 8px 24px; }
    .event-row { gap: 20px; }
    .event-text { font-size: 18px; }
}

/* ==========================================================================
   ヒーロー & その他
   ========================================================================== */
.hero-img-position {
    display: block;
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.animate-soft-float {
    animation: soft-float 2.5s ease-in-out infinite;
}

.bg-primary { background-color: #324166; }
.text-primary { color: #324166; }
.bg-secondary { background-color: #F59E0B; }
.text-secondary { color: #F59E0B; }