/* 全体の初期化とベーススタイル */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #000000;
    background-color: #ffffff;
    padding: 30px 37px;
    font-size: 13px;
    line-height: 1.6;
    font-family: 'Shippori Mincho', serif;
}

/* ==========================================================================
   ヘッダー周り
   ========================================================================== */
.header {
    display: block;
    margin-bottom: 80px;
    width: 100%;
}

.logo h1 {
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.1em;
}

.header-main-line {
    display: flex;
    align-items: baseline;
    margin-top: 2px;
}

.logo .en {
    font-size: 13px;
    white-space: nowrap;
}

.divider {
    font-size: 13px;
    margin: 0 24px;
    color: #000000;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav a {
    color: #000000;
    text-decoration: none;
    font-size: 13px;
}

/* ホバーでメニュー項目を表示させる仕組み */
.nav ul li.menu-item {
    display: none !important;
}

.header:hover .nav ul li.menu-item {
    display: block !important;
}

/* ==========================================================================
   CVページレイアウト
   ========================================================================== */
.cv-container {
    width: 100%;
    padding-left: 100px;
    overflow-x: hidden;
}

/* プロフィール上部 */
.profile-section {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 40px;
}

/* ポートレート用の四角い枠 */
.portrait-box {
    width: 150px;
    height: 170px;
    border: 1px solid #000000;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portrait-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.name-ja {
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.name-en {
    font-size: 12px;
    margin-bottom: 20px;
}

.biography p {
    font-size: 12px;
    line-height: 1.8;
}

/* 自己紹介文 */
.intro-section {
    max-width: 320px;
    margin-bottom: 90px;
    font-size: 12px;
    margin-left: 166px;
    line-height: 1.9;
    text-align: justify;
    text-justify: inter-ideograph;
}

/* 2カラムレイアウト */
.cv-content-grid {
    display: flex;
    margin-bottom: 20px;
    gap: 60px;
}

.cv-block {
    margin-bottom: 50px;
}

.block-title {
    font-size: 13px;
    font-weight: normal;
    margin-bottom: 25px;
    margin-left: 166px;
}

.block-title2 {
    font-size: 13px;
    font-weight: normal;
    margin-bottom: 25px;
}

/* 展覧会・受賞リスト */
.history-list {
    list-style: none;
}

.history-list li {
    display: flex;
    align-items: baseline;
    font-size: 12px;
    margin-bottom: 16px;
    line-height: 1.6;
    gap: 16px;
}

.history-list .date {
    width: 150px;
    color: #a0a0a0;
    flex-shrink: 0;
    font-family: 'Shippori Mincho', serif;
    text-align: right;
    font-size: 8px;
}

.history-list .text {
    color: #000000;
}

/* Contact・Links */
.contact-desc {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-email a, .link-item a {
    font-size: 13px;
    color: #000000;
    text-decoration: underline;
}

.contact-email{
    margin-bottom: 25px;

}

/* 一覧に戻る矢印 */
.back-to-works {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 30px;
}

.back-to-works a {
    font-size: 18px;
    color: #000000;
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 1200px) {
    .cv-content-grid{
        display: flex;
        flex-direction: column;
        gap: 0px;
    }
    .right-column{
        margin-left: 166px;
    }
}

@media (max-width: 1024px) {
    body {
        padding: 25px 20px;
    }
    .nav ul li.menu-item { display: block !important; }
    .divider {
        margin: 0 16px;
    }

    .nav ul {
        gap: 16px;
    }
}

@media (max-width: 700px) {
    .cv-container{
        padding-left: 0px;
    }
}
@media (max-width: 600px) {
   body {
        padding: 20px 30px;
    }
}



@media (max-width: 550px) {
    .block-title {
        margin-left: 6px;
    }

    .history-list .date {
        width: 70px;
        color: #a0a0a0;
        flex-shrink: 0;
        font-family: 'Shippori Mincho', serif;
        text-align: right;
        font-size: 8px;
    }

    .intro-section {
        max-width: none;
        width: 100%;
        margin-bottom: 90px;
        font-size: 12px;
        margin-left: 0px;
        line-height: 1.9;
        text-align: justify;
        text-justify: inter-ideograph;
    }

    .right-column{
        margin-left: 0px;
    }
}