@charset "UTF-8";

#main {
    width: 100% !important;
    max-width: none !important;
    line-height: 1.9;
    letter-spacing: 0.06em;
}
.member_interview {
    max-width: 1280px;
    margin: auto;
    padding: 5rem;
}
#footer {
    max-width: 1280px;
    margin: auto;
}
.member_fv {
    background: linear-gradient(to bottom, rgba(50, 144, 155, 1) 0%, rgba(115, 223, 237, 1) 100%);
    display: grid;
    grid-template-columns: 45% 55%;
    height: auto;
}
.member_info {
    color: #fff;
    width: 60%;
    padding-top: 10%;
    padding-bottom: 10%;
    margin: 0 auto;
}
.member-thumbnail {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    clip-path: polygon(21% 0, 100% 0%, 100% 100%, 0% 100%);
}
.member-thumbnail img {
    transform: scale(0.8); 
}
.member_position {
    /* 役職 */
    font-size: clamp(1.1rem, 1.219rem + 0.41vw, 1.5rem);
}
.member_name {
    /* 名前（日本語名） */
    font-size: clamp(1.875rem, 1.605rem + 1.35vw, 3.125rem);
}
.alpha_name {
    /* アルファベットネーム */
    font-size: clamp(1rem, 0.919rem + 0.41vw, 1.375rem);
    margin-top: -2%;
}
.member-content {
    font-size: clamp(0.875rem, 0.794rem + 0.41vw, 1.25rem);
    padding-top: 8%;
}
.interview-a ul li {
    position: relative;
    display: inline-block;
    padding-left: 24px;
}
.interview-a ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%; /* 垂直中央に配置 */
    transform: translateY(-50%); /* 正確に中央に合わせる */
    width: 7px; /* 丸の直径 */
    height: 7px; /* 丸の直径 */
    border-radius: 50%; /* 丸を作成 */
    background-color: #098999; /* 丸の背景色 */
}


/* インタビュー詳細 */
.member_interview {
    background-color: #fff;
}
.member_interview section {
    padding-top: 7rem;
}
.section_ttl {
    color: #098999;
    font-size: clamp(1.25rem, 1.088rem + 0.81vw, 2rem);
    font-weight: bold;
    display: flex;
    gap: 1%;
    align-items: center;
    padding-bottom: 2rem;
}
.interview-q {
    color: #666666;
    font-size: clamp(1rem, 0.946rem + 0.27vw, 1.25rem);
    padding-bottom: 2.5rem;
}
.interview-q a {
    color: #3796a1;
}
.interview-q a:hover {
    opacity: 0.8;
}
.interview-a {
    color: #000000;
    font-size: clamp(0.875rem, 0.834rem + 0.2vw, 1.063rem);
    padding-bottom: 4rem;
}
/* キャリアについて */
.career-wrapper {
    display: grid;
    grid-template-columns: 56% 35%;
    gap: 9%;
    /* 合わせて100%になるように */
}
.career-image {
    width: 100%;
    height: auto;
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    aspect-ratio:  430 / 500;
}
/* 仕事内容について */
.work-image {
    width: 100%;
    height: auto;
    background-size: cover; /* 画像がdivにぴったり合わせて拡大縮小されます */
    background-position: center; /* 画像を中央に配置します */
    background-repeat: no-repeat; /* 画像が繰り返されないように設定 */
    margin: 1.5rem auto 6rem;
    aspect-ratio: 1000 / 370;
}
/* プロジェクトについて */
.project-image {
    width: 100%;
    height: auto;
    background-size: cover; /* 画像がdivにぴったり合わせて拡大縮小されます */
    background-position: center; /* 画像を中央に配置します */
    background-repeat: no-repeat; /* 画像が繰り返されないように設定 */
    aspect-ratio: 1000 / 370;
    margin: 1.5rem auto 6rem;
}
/* 1日のスケジュール表 */
table {
    width: 100%;
}
tr {
    display: grid;
    grid-template-columns: 20% 80%;
}
th {
    background-color: #098999;
    color: #fff;
    padding: 1rem;
    border-top: solid 1px #3796a1;
    border-left: solid 1px #3796a1;
    border-right: solid 1px #3796a1;
    border-bottom: solid 1px #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
td {
    color: #666666;
    padding: 1rem 3rem;
    border-top: solid 1px #3796a1;
    border-right: solid 1px #3796a1;
}
tr:last-child th {
    border-bottom: solid 1px #3796a1;
}
tr:last-child td {
    border-top: solid 1px #3796a1;
    border-right: solid 1px #3796a1;
    border-bottom: solid 1px #3796a1;
}
/* 1日のスケジュール表終わり */


/* レスポンシブ */
@media screen and (max-width: 1024px) {
    .member_info {
        width: 70%;
    }
}
@media screen and (max-width: 820px) {
.career-wrapper {
    grid-template-columns: 100%;
    gap: 0;
}
}
@media screen and (max-width: 768px) {
    .member_interview section {
        padding-top: 4rem;
    }
    .member_fv {
        grid-template-columns: 100%;
    }
.member-thumbnail {
    height: 300px;
    clip-path: none;
}
.work-image,
.project-image {
    margin: 1.5rem auto 4rem;
}
th {
    padding: 0.5rem;
}
td {
    padding: 0.5rem 1.5rem;
}
.interview-q {
    padding-bottom: 2rem;
}
.interview-a {
    padding-bottom: 3rem;
}
}
@media screen and (max-width: 430px) {
    .member_info {
        width: 75%;
    }
    .member_interview {
        padding: 2rem;
    }
}