/* ベース設定 */
html {
    scroll-behavior: smooth; /* リンククリック時に滑らかにスクロール */
}
body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
    padding-top: 60px; /* ヘッダーの高さ分だけ下げる */
}
a {
    color: #16A085; /* 少し濃いめのミントグリーン */
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.bg-gray {
    background-color: #f4f9f8; /* ミントに合わせたごく薄いグリーンがかったグレー */
}

/* ヘッダー */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 60px;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}
.logo a {
    font-size: 1.2rem;
    font-weight: bold;
    color: #16A085;
    text-decoration: none;
}
.global-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.global-nav li {
    margin-left: 20px;
}
.global-nav a {
    color: #555;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}
.global-nav a:hover {
    color: #1ABC9C; /* ホバー時は明るいミント */
}

/* ヒーロー（トップ画像エリア） */
.hero {
    /* グラデーションで爽やかなミント空間を演出 */
    background: linear-gradient(135deg, #2C3E38, #16A085);
    /* 背景画像を入れる場合は以下を使用 */
    /* background-image: url('top-image.jpg'); background-size: cover; background-position: center; */
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}
.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* セクション共通 */
.section {
    padding: 80px 0;
}
.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 50px;
    color: #16A085;
    position: relative;
}
.section-title span {
    display: block;
    font-size: 0.9rem;
    color: #88a09b;
    text-transform: uppercase;
    margin-top: 5px;
}

/* 研究内容 */
.research-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.research-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #1ABC9C; /* 左側の線を明るいミントに */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.research-item h3 {
    margin-top: 0;
    color: #2C3E38;
    border-bottom: 1px dashed #bee0d8; /* 下線を薄いミントに */
    padding-bottom: 10px;
}

/* 業績 */
.pub-list ul {
    list-style: none;
    padding: 0;
}
.pub-list li {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #e1e9e7;
    padding-bottom: 15px;
}
.pub-year {
    font-weight: bold;
    color: #16A085;
    margin-right: 20px;
    flex-shrink: 0;
}
.pub-detail {
    margin: 0;
}
.pub-note {
    text-align: right;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* リンク */
.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.link-card {
    display: block;
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none !important;
}
.link-card h4 {
    margin: 0 0 10px 0;
    color: #16A085;
}
.link-card p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}
.link-card:hover {
    border-color: #1ABC9C;
    box-shadow: 0 4px 12px rgba(26, 188, 156, 0.15); /* 影もほんのりミント色に */
    transform: translateY(-3px);
}

/* フッター */
footer {
    background-color: #2C3E38; /* 引き締まるダークグリーン */
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* スマホ対応 */
@media (max-width: 600px) {
    .pub-list li {
        flex-direction: column;
    }
    .pub-year {
        margin-bottom: 5px;
    }
}