@charset "UTF-8";

/* 全体の基本設定 */
body {
    font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.8; 
    color: #333;
    margin: 0;
    background-color: #f4f4f4;
}

/* ヘッダー */
header {
    background: linear-gradient(135deg, #003e7e 0%, #002a55 50%, #8a0000 100%); 
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}
header h1 {
    margin: 10px 0 0;
    font-size: 3rem; 
    letter-spacing: 0.1em;
}
header .header-sub {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: bold;
}


.nav-menu {
    background: #fff;
    position: sticky; 
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.nav-menu ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 15px 0;
    margin: 0;
    gap: 30px;
}
.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 20px;
    transition: background 0.3s;
}
.nav-menu a:hover {
    background-color: #eee;
    color: #003e7e;
}

/* メインコンテンツの枠 */
.container {
    max-width: 840px; 
    margin: 40px auto;
    padding: 0 20px;
}

/* 各セクションのデザイン */
.interview-section {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 60px;
}

/* セクションの見出し周り */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2 {
    font-size: 2.2rem;
    margin: 15px 0;
    color: #111;
}
.subtitle {
    color: #666;
    font-weight: bold;
}

/* 大学名タグ */
.tag-keio, .tag-waseda {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: bold;
}
.tag-keio { background-color: #003e7e; }   
.tag-waseda { background-color: #8a0000; } 
.tag-cross { margin: 0 5px; color: #999; }

/* 導入文ボックス */
.intro-box {
    background-color: #f9f9f9;
    border-left: 5px solid #333;
    padding: 20px 30px;
    margin-bottom: 40px;
    font-weight: bold;
    color: #555;
}

/* 写真 */
.main-photo {
    margin: 0 0 40px 0;
    text-align: center;
}
.main-photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.main-photo figcaption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #777;
}

/* インタビュー本文 */
.interview-body p {
    margin-bottom: 1.8em;
    text-align: justify;  
}
.interview-body strong {
    color: #000;
    background: linear-gradient(transparent 70%, #e0e0e0 70%); /* 蛍光ペンのような下線 */
}

/* 区切り線 */
.divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, transparent, #ccc, transparent);
    margin: 60px 0;
}

/* フッター */
footer {
    text-align: center;
    padding: 40px 0;
    color: #999;
    background-color: #eee;
    font-size: 0.8rem;
}

/* スマホ対応（画面が狭いとき） */
@media (max-width: 600px) {
    header h1 { font-size: 2rem; }
    .interview-section { padding: 25px; }
    .section-header h2 { font-size: 1.6rem; }
}

/* --- 本文中の写真用デザイン --- */
.body-photo {
    margin: 40px 0;      
    text-align: center;  
}

.body-photo img {
    max-width: 100%;    
    width: 80%;        
    height: auto;
    border-radius: 6px;  
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
}

.body-photo figcaption {
    font-size: 0.85rem;
    color: #888;
    margin-top: 8px;
}


@media (max-width: 600px) {
    .body-photo img {
        width: 100%;
    }
}