@charset "UTF-8";

/* ============================================
   基本設定 (Base)
   ============================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', "Helvetica Neue", Arial, sans-serif;
    color: #333;
    font-size: 15px;       /* 読みやすい基本サイズ */
    line-height: 1.6;      /* 行間を適度に */
    background-color: #fff;
    -webkit-font-smoothing: antialiased; /* 文字をきれいに見せる */
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

/* ============================================
   レイアウト (Wrapper)
   ============================================ */
.wrapper {
    max-width: 800px;      /* 画面が広すぎないように制限 */
    margin: 0 auto;        /* 中央寄せ */
    padding: 60px 20px;    /* 上下の余白と、スマホ用の左右の余白 */
}

/* ============================================
   ヘッダー (Logo)
   ============================================ */
.header {
    margin-bottom: 50px;   /* ロゴと本文の間の距離 */
}

.logo a {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #000;
}

/* ============================================
   プロフィール (Bio Header)
   ============================================ */
.bio-section {
    margin-bottom: 60px;
}

.bio-header {
    margin-bottom: 10px; /* ★ここが名前とAwardsの距離です。狭くしました */
}

.bio-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px; /* 名前と誕生年の距離 */
}

.bio-header p {
    font-size: 0.95rem;
    line-height: 1.6;  /* ★この数字を小さくすれば（例: 1.4）もっと詰まります */
    margin: 0;
    color: #333;
}

/* メールアドレスの微調整 */
.bio-header p:last-child {
    margin-top: 5px;     /* メールだけ少し隙間を作っても綺麗です */
    color: #555;
}

/* ============================================
   リスト部分 (Awards & Talk)
   ============================================ */
.bio-list {
    margin-top: 25px;
    margin-bottom: 10px;   /* 下の隙間を狭く設定 */
    border-bottom: 1px solid #eee; /* 区切り線 */
    padding-bottom: 10px;
}

/* -------------------------------------------
   アコーディオン共通設定 (iPhone対策版)
   ------------------------------------------- */

/* 1. ブラウザ標準の三角（絵文字）を絶対に消す */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}

/* 2. 見出し（クリックエリア）の設定 */
.accordion-head {
    display: flex;          /* 横並び */
    align-items: center;    /* 上下中央揃え */
    cursor: pointer;
    outline: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 5px 0;
}

/* 3. CSSで「図形」として三角を描く（これがiPhone対策） */
.accordion-head::before {
    content: "";
    display: inline-block;
    
    /* 三角形の描画設定 */
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px; /* 三角のサイズ */
    border-color: transparent transparent transparent #333; /* #333が三角の色 */
    
    margin-right: 12px;     /* 三角と文字の隙間 */
    transition: transform 0.2s; /* 回転アニメーション */
}

/* 4. 開いた時に三角を90度回す */
details[open] .accordion-head::before {
    transform: rotate(90deg);
}

/* -------------------------------------------
   中身（リスト）のレイアウト
   ------------------------------------------- */
.bio-list dl {
    margin-top: 10px;
    padding-left: 20px;     /* 全体を少し右にずらす */
}

.bio-list .row {
    display: flex;          /* 年号とテキストを横並び */
    margin-bottom: 8px;     /* 行間の広さ */
    font-size: 0.9rem;
}

.bio-list dt {
    width: 60px;            /* 年号の幅 */
    font-weight: normal;
    opacity: 0.6;
    flex-shrink: 0;         /* 縮まないように固定 */
}

.bio-list dd {
    margin: 0;
}

/* リンクの下線デザイン */
.bio-list a {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #333;
}

/* --- 作者の言葉（メッセージエリア）のデザイン --- */
.artist-message {
    margin-top: 25px;       /* 上のリンクとの距離 */
    padding-left: 15px;     /* 左の線の内側の余白 */
    border-left: 2px solid #ddd; /* 左側の細いライン（アクセント） */
    
    /* ▼ 雰囲気を変えるフォント設定 */
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Georgia", serif;
    font-style: italic;     /* 斜体にして「独白」っぽくする */
    color: #666;            /* 真っ黒ではなく、少し淡い色に */
    font-size: 0.9rem;      /* ほんの少し小さくして上品に */
    line-height: 1.8;       /* 行間を広げてゆったり読ませる */
}

/* 署名（名前）のデザイン */
.artist-message .sign {
    margin-top: 10px;
    text-align: right;      /* 右寄せ */
    font-style: normal;     /* 名前は斜体にしない */
    font-size: 0.85rem;
    opacity: 0.8;
}














/* ============================================
   コンタクト (Socials)
   ============================================ */
.contact-section {
    margin-top: 50px;
    
}

.socials {
    display: flex;
    justify-content: center;
    gap: 30px;           /* SNSリンク同士の間隔 */
}

.socials a {
    font-size: 0.95rem;
    font-weight: 500;
}

/* ============================================
   フッター
   ============================================ */
.footer {
    
    border-top: 1px solid #ffffff; /* 薄い区切り線 */
    font-size: 0.75rem;
    color: #999;
    text-align: center;
}