/* style.css */

/* 基本のフォント設定 */
body {
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
}

/* ヒーローセクションの背景画像関連のスタイル */
/* 背景画像自体はindex.htmlに直接記述しています */
.hero-bg {
    background-size: cover;
    background-position: center;
}

/* 各セクションのタイトルスタイル */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

/* セクションタイトルの下線 */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #3b82f6; /* Tailwindのblue-600 */
}
