@charset "UTF-8";

/* --- 共通の幅 --- */
.profile_inner {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

/* --- ヘッダーセクション --- */
.profile_header_section {
    background-color: #1cb4b8;
    padding: 80px 0 80px;
    text-align: center;
    color: #fff;
}

.profile_title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 25px;
}

.profile_titles_box p {
    font-size: 16px;
    margin-bottom: 5px;
    opacity: 0.9;
}

/* --- ショートプロフィール --- */
.short_profile_section {
    padding: 80px 0;
    background-color: #fff;
}

.pro_flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.pro_img_large {
    flex: 1;
}

.pro_img_large img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pro_text_box {
    flex: 1.5;
}

.pro_name_main {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1cb4b8;
}

.pro_name_main span {
    font-size: 16px;
    color: #888;
    margin-left: 10px;
    font-weight: normal;
}

.pro_intro_text {
    font-size: 16px;
    line-height: 1.8;
}

/* --- メッセージ詳細 --- */
.message_detail_section {
    padding: 100px 0;
    background-color: #f8fcfc;
}

.section_title {
    font-size: 28px;
    text-align: center;
    color: #1cb4b8;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section_title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #e4d149;
}

.message_content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 2.2;
}

.message_content p {
    margin-bottom: 30px;
}

.message_content strong {
    color: #1cb4b8;
}

.message_footer {
    border-top: 1px solid #ddd;
    padding-top: 30px;
    font-weight: bold;
    color: #1cb4b8;
    text-align: justify;
}

/* --- 経歴・資格グリッド --- */
.history_qual_section {
    padding: 100px 0;
}

.profile_grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.sub_title {
    font-size: 22px;
    font-weight: bold;
    color: #1cb4b8;
    margin-bottom: 30px;
    border-left: 5px solid #e4d149;
    padding-left: 15px;
}

.history_list, .qual_list {
    list-style: none;
    padding: 0;
}

.history_list li, .qual_list li {
    font-size: 15px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.history_list li::before, .qual_list li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #1cb4b8;
}

/* --- レスポンシブ --- */
@media screen and (max-width: 780px) {
    .pro_flex { flex-direction: column; text-align: center; }
    .pro_name_main span { display: block; margin-left: 0; margin-top: 5px; }
    .profile_grid { grid-template-columns: 1fr; gap: 60px; }
    .message_content { font-size: 15px; line-height: 1.8; }
    .profile_title { font-size: 30px; }
    .contact_actions{
        width: 90%;
        margin: 0 auto;
    }
}