/*--ページ全体のフォント--*/
body {
    font-family: "A+EqpB-游ゴシック体 Pr6N M", "Yu Gothic", 游ゴシック体, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, verdana, sans-serif;
}
/*-------------------------------------　ヘッダー部分のデザイン　-------------------------------------*/
/*--ヘッダー部分のデザイン--*/
.top_header {
    white-space: nowrap;
    display: flex;
    background-color: #F5F5F5;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    justify-content: space-between;
}
.logo {
    margin-left: 30px;
    margin-top: 28px;
}
.logo img{
    width: 150px;
}
/*--タブのデザイン--*/
.top_tab {
    display: flex;
    align-items: center;
    margin-right: 50px;
}
.consultation-link,
 .member-link, 
 .aboutus-link,
 .service-link,
 .doctor_search-link,
 .lifeplan-link,
 .colum-link {
    text-decoration: none;
}
/*--タブの間隔とフォントサイズ--*/
.consultation>.consultation-link,
.member_login>.member-link,
.our_story>.aboutus-link,
.service>.service-link,
.product_search>.product_search-link,
.life_plan>.lifeplan-link,
.column>.colum-link {
    margin-left: 50px;
    font-size: 15px;
    font-weight: bold;
    color: #4D4D4D;
    transition: color 0.3s ease;
    text-decoration: none;
}
/*--タブ押すの色変え--*/
.consultation > .consultation-link:hover,
.member_login > .member-link:hover,
.our_story > .aboutus-link:hover,
.service > .service-link:hover,
.product_search > .product_search-link:hover,
.life_plan > .lifeplan-link:hover,
.column > .colum-link:hover {
    color:#FDB2B7
}

/* ドロップダウンのデザイン */
.member_login {
    position: relative;
}
/* ドロップダウンの大きさと配置 */
.dropdown_content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 110px;
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.2);
    z-index: 1;
    left: 50%; 
    transform: translateX(-50%); 
    margin-top: 10px; 
    margin-left: 25px;
}

.dropdown_content a {
    color: #4D4D4D;
    padding: 10px 10px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}
.member_login_general {
    padding-bottom: 5px;
}
.member_login_doctor {
    padding-top: 5px;
}
.dropdown_content a:hover {
    color: #FDB2B7;
}

/* ドロップダウンの様式 */
.show {
    display: block;
}

/* アカウント */
.member-name {
    margin: 0;
    color: #4D4D4D;
    font-size:15px;
    font-weight: bold;
}
.account_button {
    display: flex;
    align-items: center;
    margin-left: 50px;
    padding-block: 0.5rem;
    padding-inline: 1rem;
    border-radius: 9999px;
    /* border-width: 1px;
    border-color: rgb(229, 233, 240); */
    border: 1px solid rgb(193, 193, 194);
    background: rgb(255, 255, 255);
    text-decoration: none;
    transition: 0.3s;
}
.account_button:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/*-------------------------------------　メインー部分のデザイン　-------------------------------------*/
/*--個人情報のタイトル--*/
.personal-infomation-content-container {
    margin-top: 150px;
}
.personal-infomation-content-title {
    color: #616161;
    font-size: x-large;
    font-weight: bold;
    
    text-align: center;
    margin-bottom: 40px;
}
/*--個人情報本文の仕組み--*/
.personal-infomation-content-container-inner {
    max-width: 800px;  
    width: 100%;  
    padding: 30px; 
    margin: auto;
    box-sizing: border-box;  
}
.content-list {
    margin-bottom: 45px;
}
.content-list-item {
    line-height: 30px;
    font-size: 15px;
    color: #616161;
    
    list-style-type: none;
    margin-bottom: 10px;
}
.personal-infomation-content-text {
    margin-left: 40px;
    line-height: 30px;
    font-size: 15px;
    color: #616161;
    
}
.personal-infomation-email {
    text-decoration: none;
    font-size: 15px;
    color: #616161;
    
}
.content-ps-list {
    text-align: center;
    list-style-type: none;
    font-size: 15px;
    color: #616161;
    
    margin-bottom: 50px;
}
/*--お問い合わせフォームを戻るボタン--*/
.back-button {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    text-align: center;
}
.back-to-customer-form {
    position: relative;
    padding: 19px 28px;
    width: 392px;
    text-decoration: none;
    background-color: white;
    border: 1px solid #FF838C;
    overflow: hidden; 
}
/* トランジションの効果を設置 */
.back-to-customer-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #FF838C;
    transition: width 0.5s ease; /* トランジションの効果を設置 */
    z-index: 0; 
}
/* フォーカスするときwidthを100％に */
.back-to-customer-form:hover::before {
    width: 100%; 
}
/* フォーカスするとき文字色をwhiteに */
.back-to-customer-form:hover .back-button-text {
    color: white; 
}
/* フォーカスするとき矢印の色をwhiteに */
.back-to-customer-form:hover .back-button-text::after {
    border-top-color: white; 
    border-right-color: white; 
}
/* 文のデザイン */
.back-button-text {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    color: #FF838C;
    
    box-sizing: border-box;
    z-index: 1; 
    transition: color 0.5s ease; 
}
/* 矢印のデザイン */
.back-button-text::after {
    position: absolute;
    top: 50%;
    left: 230px;
    content: '';
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: 2px solid #FF838C;
    border-right: 2px solid #FF838C;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);   
    box-sizing: border-box;
    transition: border-color 0.5s ease; 
}


body {
    opacity: 0;
    animation: fadeIn 0.3s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

