.header {
    border-bottom: 1px solid #ccc;
}
.wrap {
    width: calc(100% - 30px);
    margin: 0 auto;
    margin-top: 110px;
}
.title_mobile {
    width: 100%;
}
.title_mobile .index {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 10px;
}
.color-01 {background-color: #90d0f3;}
.color-02 {background-color: #f3a6ba;}
.color-03 {background-color: #f6d853;}
.color-04 {background-color: #4eb88b;}

.title_mobile h1 {
    font-size: 2.8rem;
}
.title_mobile p {
    font-weight: 400;
    padding: 20px 0 10px 0;
}
.title_pc {display: none;}

.layout {}
.poster {
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 1 / 1.414;
    margin-top: 30px;
}
.poster img {
    width: 100%;
    border: 1px solid #ccc;
}
.info_txt {
    max-width: 790px;
    font-weight: 400;
    line-height: 180%;
    /* text-align: justify; */
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 80px;
}
.tag {
    color: #0272ce;
    font-weight: 500;
    margin-bottom: 5px;
}
.nickname {
    color: #666;
    padding-left: 6px;
}

/** QnA **/
.qna {}
.qna_sec {
    margin-bottom: 60px;
}
.question_box {
    width: 100%;
    border-radius: 10px;
    background-color: #ddf0ff;
    padding: 15px 15px;
    box-sizing: border-box;
    margin-bottom: 20px;
    display: flex;
}
.q_num {
    font-size: 2rem;
    font-weight: bold;
    float: left;
    margin-right: 10px;
    color: #0272ce;
}
.q_txt {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 150%;
    color: #0272ce;
    text-align: left;
}
.answer {
    font-weight: 400;
    line-height: 180%;
}

/** profile **/
.profile {
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 25px 15px;
    box-sizing: border-box;
    margin: 0 auto;
    text-align: left;
}
.profile h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.profile span {
    font-size: 1.6rem;
    font-weight: 400;
    color: #666;
}
.profile p {
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 20px;
}
.sns_link {
    text-align: right;
    align-items: center;
}
.sns_link span {
    display: inline-block;
    height: 34px;
    vertical-align: middle;
    font-size: 1.4rem;
    color: #666;
    margin-right: 10px;
}
.sns_link a {
    font-size: 3.4rem;
}
.sns_link a:hover {
    color: #008eff;
    transition: 0.3s ease;
}
.sns_notopolio {
    display: inline-block;
    width: 34px; height: 34px;
    background: url(../css/img/sns_notopolio_off.svg) no-repeat center;

}
.sns_notopolio:hover {
    background: url(../css/img/sns_notopolio_on.svg);
}

/************ media query_Tablet **************/
@media all and (min-width: 768px) {
    .wrap {
        width: calc(100% - 60px);
        max-width: 960px;
    }
    .profile {
        max-width: 500px;
        padding: 30px;
        border-radius: 20px;
    }
    .qna_sec {
        margin-bottom: 80px;
    }

}


/************ media query_PC **************/
@media all and (min-width: 1024px) {
    .wrap {
        max-width: 1100px;
    }
    .title_mobile {display: none;}
    .layout {
        display: flex;
        gap: 60px;
    }
    .poster, .info {width: 50%;}
    .info {margin-top: 30px;}
    .title_pc {
        display: block;
        width: 100%;
    }
    .title_pc .index {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 400;
    color: #000;
}
    .title_pc h1 {margin-top: 10px;}
    .title_pc p {
        font-weight: 400;
        padding: 20px 0 10px 0;
    }
    .info_txt {margin-top: 30px;}

    .question_box {
        padding: 15px 20px;
    }
    .profile {
        max-width: 100%;
    }
    .qna_sec {
        margin-bottom: 70px;
    }
    
}