<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* インタビュー区切り */
.job-interview-list .views-row{
    margin-bottom:30px;
    padding:20px 0;
    border-bottom:solid 1px #eee;
}
.job-interview-list .views-row:last-child{
    border-bottom:none;
}
/* インタビュー 情報 */
.int-info-warp{
    display:flex;
    gap:20px;
}
@media only screen and (max-width : 991px ) { 

    .int-info-warp{
        display: flex;
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
}
.int-info-warp .int-info-image{
    max-width:450px;
}
.int-info-warp .int-info-image img{
    width: 100%;
    height: auto;
}

.int-info-warp .field--name-field-int-jobyear{
    color: var(--first-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom:20px;
}

.int-info-warp .field--name-field-int-introduction{
    color: var(--first-color);
    font-size: 1.5rem;
    margin-bottom:20px;
    line-height: 1.5;
}

.int-detail .field--name-field-int-detail{
    color: var(--first-color);
    font-size: 1.5rem;
    margin-top:20px;
    margin-bottom:60px;
    line-height: 1.5;
}

#interview-summary{
    line-height: 1.5;
}

/* 続きを読む */
.grad-wraps .interview-wrap {
    position: relative;
    padding: 0 10px;
}
.grad-trigger {
    display: none;
}
.grad-btn {
    z-index: 2;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 148px;
    margin: auto;
    padding: .5em 0;
    border-radius: 3px;
    background: var(--link-color);
    color: var(--white-color);
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    transition: .2s ease;
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
}
.grad-btn::before {
    content: "続きを読む" !important;
    width: auto !important;
    height: auto !important;
    font-size: 15px !important;
    display: block !important;
    vertical-align: middle;
    text-align: center;

    color: #fff !important;
    padding: auto !important;
    border-radius: 0px;
    border: none !important;
    background: none !important;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.grad-item {
    position: relative;
    overflow: hidden;
    height: 180px;
    /*隠した状態の高さ*/
}
.grad-item::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    /*グラデーションで隠す高さ*/
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
    background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
    content: "";
    z-index: 1;
}
.grad-trigger {
    display: none;
    /*チェックボックスは常に非表示*/
}
.grad-trigger:checked ~ .grad-btn::before {
    content: "閉じる" !important;
}
.grad-trigger:checked ~ .grad-item {
    height: auto;
    /*チェックされていたら、高さを戻す*/
    padding-bottom:80px;
}
.grad-trigger:checked ~ .grad-item::before {
    display: none;
    /*チェックされていたら、grad-itemのbeforeを非表示にする*/
}
@media only screen and (max-width: 479px) {
    .grad-btn {
        bottom: -10px;
    }
}

.int-item {
    display: flex;
    gap: 20px;
    margin-bottom:20px;
    align-items: flex-start;
}
/* qes */
.int-text {
    /*width: calc(100% - 105px);*/
    display: block;
    position: relative;
    /* margin: 5px 0 0; */
    padding: 17px 13px;
    border-radius: 12px;
    background: #efefef;
    color: #454545;
    line-height: 1.8;
}
.int-text:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 18px;
    left: -24px;
    border: 12px solid transparent;
    border-right: 12px solid #efefef;
}

.int-text p{
    margin: 0 !important;
}

/* ans */
.int-item.ans{
    display:flex;
    flex-direction: row-reverse;
    align-items: flex-start;
}
.int-item.ans .int-text{
    background: #D4ECFC;
    color: #454545;
    line-height: 1.8;
}
 .int-item.ans .int-text:after{
    position: absolute;
    top: 18px;
    left: auto;
    right: -24px;
    border: 12px solid transparent;
    border-left: 12px solid #D4ECFC;
     
}
.int-ans-name{
    text-align:center;
}


/*インタビューサムネイル*/
.int-img img {
    max-width: 62px;
    height: 62px;
    border: solid 3px #efefef;
    border-radius: 50%;
    object-fit: cover;
}</pre></body></html>