@charset "UTF-8";

/* 共通部分 */

html {
    font-size: 100%;
}

body {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDP Gothic", sans-serif;
    line-height: 1.7;
    color: #000;
    font-size: 100%;
}

a {
    text-decoration: none;
}

a:link,
a:visited,
a:hover,
a:active {
    color: inherit;
}

img {
    max-width: 100%;
}

th,
td {
    vertical-align: top;
}

/* Google fonts */
/* .anton-regular {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.anton-regular {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.noto-sans-jp {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
} */

/* ヘッダー */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3.6rem;
}

header h1 {
    font-family: "Anton", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    color: #202020;
}

/* メインコンテンツ */
main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
    margin: 0 auto 2rem;
    max-width: 1100px;
}

main p {
    font-size: .875rem;
}

main h3 {
    font-size: 1.5rem;
}

span.MediumTitle {
    font-size: 1rem;
    font-weight: 600;
}

.AboutMe,
.SalesPoints,
.Works,
.Favorite {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

/* 自己紹介 */
.Introduction {
    display: flex;
    flex-direction: column;
    gap: 2rem;

}

.MyPortrait img {
    width: 100%;
}

.AboutName h2 {
    font-size: 2rem;
}

.AboutName p {
    margin-top: .5rem;
    font-size: .75rem;
}

/* コンタクト */
.Contact {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    margin-bottom: 1rem;
}

.Contact h3 {
    margin-bottom: .5rem;
}

.Contact a {
    text-decoration: underline;
}

.Contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.Contact span {
    color: #404040;
    font-weight: bold;
    margin-right: .5rem;
}

/* 得意とすること */
.SalesPoints ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: .5rem;
}

.SalesPoints li {
    position: relative;
    padding-left: 1.25rem;
    font-weight: bold;
}

.SalesPoints li::before {
    content: "◎";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1rem;
    font-weight: bold;
}

.SalesPoints span {
    font-weight: bold;
}

/* やってきたこと */
.Works ul,
.Favorite ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: .5rem;
}

.Works li,
.Favorite li {
    font-size: .875rem;
    position: relative;
    padding-left: .875rem;
}

.Works li::before,
.Favorite li::before {
    content: "";
    position: absolute;
    top: .2rem;
    left: .1rem;
    background: #000;
    width: 6px;
    height: 6px;
    margin: 6px 10px 0 0;
    border-radius: 50%;
}

.Works .WorksList {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: .5rem;

}

/* 略歴のテーブル */
.History table {
    text-align: left;
    font-size: .875rem;
    border-spacing: 0 .75rem;

}

.History th,
.History td {
    display: block;
    text-align: left;
    font-size: .875rem;
}

.History th {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-size: .75rem;
    color: #a0a0a0;
    padding-top: .18rem;

}

/* フッター */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-align: center;
    color: #fff;
    background-color: #202020;
    height: 3rem;
}


/* デスクトップ版 */
@media(min-width: 800px) {
    header {
        height: 4rem;
    }

    main {
        margin-bottom: 4rem;
    }

    .Profile {
        display: flex;
        justify-content: space-between;
        margin-top: 2rem;
    }

    .MyPortrait {
        width: 54%;
    }

    .MyPortrait img {
        height: 100%;
        object-fit: cover;
        object-position: calc(100% - 40%) 50%;
    }

    .AboutName h2 {
        font-size: 2.5rem;
    }

    .Introduction {
        width: 42%;
    }

    .Contact {
        margin-bottom: 0;
    }

    .History th,
    .History td {
        display: table-cell;
    }

    .History td {
        padding-left: .75rem;
    }
}