/* 全体のリセットと基本設定 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans JP', -apple-system, sans-serif;
    background-color: #fafafa;
    color: #222222;
    line-height: 1.8;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 20px 40px;
}

/* 全体を囲むコンテナ */
.wrapper {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

/* ヘッダー・プロフィール */
.header {
    margin-bottom: 56px;
}

.name-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    color: #111111;
}

.name-jp {
    font-size: 0.95rem;
    font-weight: 400;
    color: #666666;
    margin-bottom: 16px;
}

.occupation {
    font-size: 0.8rem;
    font-weight: 500;
    color: #888888;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* セクション共通 */
.section {
    margin-bottom: 48px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #111111;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background-color: #111111;
    margin: 8px auto 0;
}

/* リンクカードスタイル */
.link-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    text-decoration: none;
    color: #222222;
    transition: all 0.25s ease;
}

.card-title {
    font-size: 0.95rem;
    font-weight: 400;
}

.card-arrow {
    font-size: 1rem;
    color: #999999;
    transition: transform 0.25s ease;
}

.card-link:hover {
    border-color: #111111;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.card-link:hover .card-arrow {
    transform: translateX(4px);
    color: #111111;
}

/* コンタクトエリア */
.contact-box {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 28px 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-label {
    font-size: 0.75rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 0.95rem;
    color: #111111;
    text-decoration: none;
    font-weight: 500;
}

.contact-value:hover {
    text-decoration: underline;
}

/* フッター */
.footer {
    margin-top: 64px;
    font-size: 0.75rem;
    color: #aaaaaa;
}