    /* 全体設定 */
body {
    margin: 0;
    font-family: "Yu Mincho", "MS PMincho", serif;
    color: #333;
    background-color: #faf9f8; /* 白十字のような温かみのあるオフホワイト */
    line-height: 1.8;
}

h1, h2, h3, h4, p {
    margin: 0;
}

/* ヘッダー */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 5px rgba(0,0,0,0.03);
    height: 30px;
    word-break: keep-all;
    overflow-wrap: normal;
}

.logo {
    font-size: 24px;
    letter-spacing: 0.1em;
    color: #2c3e50;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav a {
    text-decoration: none;
    color: #555;
    font-size: 16px;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.nav a:hover {
    color: #bfa37e; /* 落ち着いたゴールド系のアクセンカラー */
}

.top {
    display: block;
    color: inherit;
    text-decoration: none;
    text-align: center;
    padding: 60px 20px;
    border: none;
    outline: none;
}

/* ヒーローセクション (修正後：画像とオーバーレイを追加) */
.hero {
    height: 50vh; /* 高さを少し高くしました (お好みで調整してください) */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative; /* オーバーレイの基準にするため */
    overflow: hidden; /* 画像がはみ出さないように */
    
    /* 1. 背景画像の設定 */
    /* 'image/hero-bg.jpg' は、実際に用意した画像のパスとファイル名に書き換えてください */
    background-image: url('image.png'); 
    background-size: cover; /* 画像をセクション全体にフィットさせる */
    background-position: center; /* 画像の中央を表示 */
    background-repeat: no-repeat;
    
    /* (オプション) スクロール時に画像を固定してパララックス効果を出したい場合 */
    /* background-attachment: fixed; */
}

/* 2. テキストの可読性を確保するための半透明オーバーレイ */
/* 画像の上に、黒の40%透明な膜を重ねます */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* 画像の明るさに合わせて 0.4 を調整してください */
    z-index: 1; /* テキストの下に配置 */
}

/* 3. ヒーローセクション内のテキストの設定 (修正後) */
.hero-text {
    position: relative;
    z-index: 2; /* オーバーレイの上に配置 */
    /* 画像の上なので、テキストは白が基本となります */
    color: #fff; 
    padding: 0 20px; /* スマホ表示用の余白 */
}

/* ヒーローテキスト内の特定の要素の色を調整 */
.hero-text h2 {
    font-size: 48px; /* 少し大きくしました */
    font-weight: normal;
    letter-spacing: 0.15em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #fff; /* 白に変更 */
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* テキストに薄い影をつけて、より読みやすく */
}

.hero-text p {
    font-family: "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.9); /* 少し透明な白に変更 */
    font-size: 18px; /* 少し大きくしました */
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* 共通セクション設定 */
.section {
    padding: 50px 50px;
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
    font-weight: normal;
    letter-spacing: 0.15em;
    color: #2c3e50;
}

.section-sentence {
    text-align: center;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 50px;
    letter-spacing: 0.1em;
}

/* ニュースセクション */
.news-list {
    list-style: none;
    padding: 0;
    border-top: 1px solid #e0dcd5;
}

.news-list li {
    padding: 25px 0;
    border-bottom: 1px solid #e0dcd5;
    display: flex;
    align-items: center;
}

.news-list .date {
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #bfa37e;
    margin-right: 20px;
    font-size: 16px;
    letter-spacing: 0.05em;
}

.news-list .tag {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background-color: #f0ece1;
    color: #555;
    padding: 4px 12px;
    font-size: 14px;
    margin-right: 30px;
    min-width: 50px;
    text-align: center;
}

.news-list .text {
    /*font-size: 18px;*/
    color: #444;
}

/* 研究内容セクション */
.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.research-section {
    font-size: clamp(10ox,2vw,18px);
    color: #444;
}

.card {
    background: #fff;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.card h4 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #2c3e50;
    border-bottom: 1px solid #bfa37e;
    padding-bottom: 15px;
    display: inline-block;
    letter-spacing: 0.1em;
}

.card p {
    font-size: 18px;
    text-align: left;
    color: #555;
    line-height: 2;
}

.card img {
    width: 80px;
    height: 80px;
    border-radius: 20%;
    object-fit: cover;
    overflow: hidden;
    position: relative;
    margin: 0 20px 0 20px;
}

.float {
    float: left;
    margin-left: 20px;
}

/* 理念セクション */
.philosophy-section {
    background-color: #fff;
    padding: 120px 50px;
    text-align: center;
    margin: 50px auto 100px;
    border: 1px solid #f0ece1;
}

.philosophy-content p {
    font-size: 16px;
    line-height: 2.6;
    color: #333;
    letter-spacing: 0.1em;
}

.container {
    max-width: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 5fr;
    gap: 20px;
}

.block1 {
    grid-column: 1;
    background-color: #8fabc8;
    padding: 20px;
    border: 3px solid #e0dcd5;
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
}

.block2 {
    grid-column: 2;
}


/* フッター */
.footer {
    text-align: center;
    padding: 40px;
    background-color: #517293;
    color: #fff;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 10px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}