 /*パンくず下余白*/
#breadcrumbs {
    margin-bottom: 120px;
}

/*---------インタビュー画像 リンクボタン---------*/
.img_btn {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 80px;
    padding-left: 80px;
    padding-right: 80px;
    margin-bottom: 170px;/*sctionのargin-top: 80px;を打ち消す*/
}
.img_btn li {
    position: relative;
}
.img_btn .number{
    display: flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    position: absolute;
    z-index: 1;
    top: -25px;
    left: -70px;
}
.img_btn .number::before {
    display: inline-block;
    content: '';
    background: url(../img/circle.svg) no-repeat;
    background-size: contain;
    background-position: left center;
    width: 72px;
    height: 72px;
    position: absolute;
    top: -11px;
    right: -15px;
    z-index: -1;
}
.img_btn .eng {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 1.2rem;
    color: #0069B6;
    letter-spacing: 0;
}
.img_btn .num {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 3rem;
}
.img_btn img {
    vertical-align: middle;
    width: 100%;
    border-radius: 12px;
    filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.08));
    overflow: hidden;
    transition: 0.3s;
}
.img_btn .caption {
    text-align: right;display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 10px;
}
.img_btn .year {
    font-size: 1.5rem;
    font-weight: 400;
}
.img_btn .shoku {
    font-size: 2rem;
    font-weight: 500;
}
.img_btn a:hover {
    opacity: 0.8;
}
.img_btn a:hover img {
    transform: scale(1.03);
}

/*---------インタビュー画像 リンクボタン---------*/
/*----- レスポンシブ -----*/
@media screen and (max-width:960px) {
    .img_btn {
        grid-template-columns: 1fr 1fr;
        row-gap: 60px;
    }
}
@media screen and (max-width:768px) {
    .img_btn {
        grid-template-columns: 1fr;
        padding-left: 40px;
        padding-right: 40px;
        margin-bottom: 100px;
    }
    .img_btn .number{
        left: -15px;
        top: -40px
    }
}
@media screen and (max-width:480px) {
    .img_btn {
        padding-left: 25px;
        padding-right: 25px;
    }
}

/*---------インタビュー ---------*/
/*-- 上ブロック --*/
.interview_top {
    display: flex;
    gap: 80px;
    margin-bottom: 70px;
}
.interview_top .image {
    width: 40%;
}
.interview_top .image img {
    vertical-align: middle;
    border-radius: 19px;
    width: 100%;
}
.interview_top .txt_box {
    width: 60%;
}
.interview_top .ttl {
    position: relative;
    border-radius: 12px;
    background: white;
    padding: 40px;
    overflow: hidden;
    z-index: 0;
    width: 75%;
}
.interview_top .ttl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; /* 枠の太さ相当 */
    padding: 15px; /* 枠の太さ分 */
    background: linear-gradient(93.82deg, #C7E7FF 0.4%, #E8F5FF 35.36%, #FFEAF4 61.69%);
    border-radius: inherit;
    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}
.interview_top .ttl p {
    font-size: 2.6rem;
    font-weight: 600;
    letter-spacing: 2px;
}
.interview_top .caption {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    padding-top: 20px;
}
.interview_top .caption .shoku {
    font-size: 2rem;
    font-weight: 500;
}
.interview_top .qa_box {
    margin-top: 40px;
}
.interview_top .qa_box .q_num,
.interview_bottom .qa_box .q_num {
    color: #75BFF5;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 3rem;
    padding-right: 10px;
    letter-spacing: 1.8px;
}
.interview_top .qa_box .q_txt,
.interview_bottom .qa_box .q_txt {
    color: #75BFF5;
    font-weight: 600;
    font-size: 2.6rem;
    letter-spacing: 1.8px;
}
.interview_top .qa_box p,
.interview_bottom .qa_box p  {
    padding-top: 15px;
}
/*-- 上ブロック（レスポンシブ） --*/
@media screen and (max-width:768px) {
    .interview_top {
        flex-direction: column-reverse;
        gap: 40px;
        margin-bottom: 40px;
    }
    .interview_top .image {
        width: 100%;
    }
    .interview_top .txt_box {
        width: 100%;
    }
    .interview_top .ttl {
        width: 100%;
        padding: 30px;
    }
    .interview_top .ttl p {
        font-size: 2.4rem;
    }
    .interview_top .qa_box .q_num,
    .interview_bottom .qa_box .q_num {
        font-size: 2.6rem;
    }
    .interview_top .qa_box .q_txt,
    .interview_bottom .qa_box .q_txt {
        font-size: 2.2rem;
    }
    .interview_top .qa_box p,
    .interview_bottom .qa_box p  {
        padding-top: 5px;
    }
}

/*-- 下ブロック --*/
.interview_bottom {
    display: flex;
    gap: 80px;
}
.interview_bottom .txt_box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 55%;
    gap: 60px;
}
.interview_bottom .image {
    width: 45%;

}
.interview_bottom .image img {
    vertical-align: middle;
    border-radius: 12px;
    width: 100%;
}
/*-- 下ブロック（レスポンシブ） --*/
@media screen and (max-width:768px) {
    .interview_bottom {
        flex-direction: column;
        gap: 40px;
    }
    .interview_bottom .txt_box {
        width: 100%;
        gap: 40px;
    }
    .interview_bottom .image {
        width: 100%;
    }
}

/*-- ピンク枠 --*/
.interview_fav {
    background: rgba(255, 243, 249, 0.7);
    box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    text-align: center;
    padding: 50px 80px;
    margin-top: 70px;
    margin-bottom: 170px;/*sctionのargin-top: 80px;を打ち消す*/
}
.interview_fav.last {
    margin-bottom: 120px;
}
.interview_fav .ttl {
    position: relative;
    font-size: 2.6rem;
    font-weight: 500;
    padding-left: 35px;
    letter-spacing: 0.06em;
    padding-bottom: 5px;
}
.interview_fav .ttl::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 8px;
    background: #A2D8FF;
    background: linear-gradient(90deg, #A2D8FF 0%, #FFC4E0 100%);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.interview_fav p {
    text-align: left;
    padding-top: 25px;
}
/*-- ピンク枠（レスポンシブ） --*/
@media screen and (max-width:768px) {
    .interview_fav {
        margin-top: 40px;
        padding: 30px 24px;
        margin-bottom: 120px;
    }
    .interview_fav .ttl {
        font-size: 2rem;
        padding-bottom: 4px;
    }
}
@media screen and (max-width:450px) {
    .interview_fav .ttl {
        font-size: 1.64rem;
        padding-left: 18px;
        padding-bottom: 3px;
    }
    .interview_fav .ttl::before {
        width: 15px;
        height: 15px;
        left: -5px;
    }
}