/* 共通
--------------------------------------------------------------------------*/
.main-wrapper {
    margin-top: calc(120 / 750 * 100vw); /* ヘッダーの高さ */
}

.main-container {
    margin: 0 auto 10rem;
    padding-top: 10px;
    width: 100%;
}

@media screen and (min-width: 751px) {
    .main-container {
        width: 60vw;
    }
    .main-wrapper {
        margin-top: calc(100 / 1600 * 100vw);
    }
}

@media screen and (min-width: 1601px) {
    .main-wrapper {
        margin-top: 100px;
    }
}

/**** 見出し ****/
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: inherit;
}

/* コンテンツブロック */
.content-wrapper {
    padding: 10px 5vw;
    width: 100%;
}

/* リンク */
a { color: #4778df; }

/* フッター */
footer a {
    color: #fff;
}

footer a:hover {
    color: rgba(255,255,255,.8);
}

@media screen and (min-width:1601px) {
    footer {
        font-size: 16px;
    }
}

/* パンくずリスト */
.breadcrumb {
    display: flex;
    margin-bottom: 1.5rem;
    font-size: .9em;
    white-space: nowrap;
    line-height: initial;
    overflow: hidden;
}

.breadcrumb__article-name {
    overflow: hidden;
    text-overflow: ellipsis;
}

.media-page__main {
    width: 100%;
}

.media-page-sidemenu {
    border-right: 1px solid rgba(0,16,14,.20);
    position: fixed;
    width: 17%;
    height: 100vh;
    display: none;
    flex-flow: column;
    padding: 20px 28px;
}

@media screen and (min-width:751px) {
    .media-page__main {
        display: grid;
        grid-template-columns: auto 1fr;
        float: right;
        width: 83%;
    }

    .media-page-sidemenu {
        display: flex;
    }
}

.media-page-sidemenu__page-list {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.media-page-sidemenu__page-link {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

/* 右サイドバー
--------------------------------------------------------------------------*/
.media-page__right-sidebar {
    display: none;
    width: 21vw;
    height: 100vh;
    padding-top: 20px;
    margin-right: 24px;
}

@media screen and (min-width:751px) {
    .media-page__right-sidebar {
        display: grid;
        grid-gap: 24px;
        align-content: start;
    }
}

.media-page__right-sidebar-img {
    width: 100%;
}

.reccomend-img__wrapper {
    width: 21vw;
}

.reccomend-img__container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin-top: 16px;
}

.reccomend-img__item {
    margin-left: 8px;
}

.reccomend-img__img {
    width: 100%;
}

.reccomend-img__title {
    font-weight: 600;
    color: #333;
    font-size: 0.8em;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.reccomend-img__date {
    color: #666;
    font-size: 0.8em;
    margin-top: 8px;
}

/* 一覧ページ
--------------------------------------------------------------------------*/
.media-top__section-title {
    font-size: calc(35 / 750 * 100vw);
    font-weight: 700;
    line-height: 1.4em;
    display: grid;
    place-items: center;
}

@media screen and (min-width: 751px) {
    .media-top__section-title {
        font-size: calc(30 / 1600 * 100vw);
    }
}

@media screen and (min-width: 1601px) {
    .media-top__section-title {
        font-size: 3rem;
    }
}

.media-top__heading-wrapper {
    grid-column: 1/4;
}

@media screen and (min-width: 751px) {
    .media-top__heading-wrapper {
        padding: 0 10px;
    }
}

.media-top__heading-container {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width:750px) {
    .media-top__heading-btn {
        width: 42%;
    }
}

/* イベントカード */
.event-list__list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 3rem;
    column-gap: 20px;
}

.event-list__item {
    grid-column: 1/4;
    margin-bottom: 3rem;
    margin-top: 2rem;
    background-color: transparent;
    overflow: visible;
    list-style: none;
}

.event-list__item a:hover{
    text-decoration: none;
}

.event-card {
    box-shadow: 0px 6.6501px 5.32008px rgba(71, 120, 223, 0.0282725), 0px 22.3363px 17.869px rgba(71, 120, 223, 0.0417275), 0px 100px 80px rgba(71, 120, 223, 0.07);
    height: calc(695 / 750 * 100vw);
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    transition: all .4s ease;
    position: relative;
}

.event-card:hover {
    transform: scale(1.1);
}

.event-card__thumb {
    width: 100%;
    height: auto;
    max-height: 50%;
    overflow: hidden;
    position: relative;
}

.event-card__thumb img {
    width: 100%;
}

.event-card__text {
    padding: .8em 1.5em;
    color: #333;
    opacity: .8;
    transition: all .4s ease;
}

.event-card__text .event-date {
    font-size: .9em;
    color: #666;
    margin: .5em 0 1em;
    display: inline-block;
    font-weight: 500;
    border-bottom: 1px solid;
    padding-bottom: 5px;
}

.event-card__text .event-status {
    font-weight: 600;
    color: #4778DF;
    margin-top: 1.2rem;
}

.event-card__text .event-title {
    height: 4.5em;
    line-height: 1.5em;
    overflow: hidden;
    font-weight: 600;
    font-size: 1.2em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.event-list__item:hover .event-card__text {
    opacity: 1;
}

@media screen and (max-width:767px) {
    .event-card__thumb {
        max-height: 55%;
    }
}

@media screen and (min-width:751px) {
    .event-card {
        height: calc(340 / 1600 * 100vw);
    }

    .event-list__item {
        grid-column: auto;
    }

    .event-card__text .event-title {
        font-size: 1.1em;
    }
}

@media screen and (min-width:1600px) {
    .event-card {
        height: 430px;
    }

    .event-card__text {
        font-size: 18px;
    }
}

.article__category {
    font-size: .8rem;
    padding: .3rem 1rem;
    margin: .5rem .5rem 1rem 0;
    width: fit-content;
    border-radius: 1.5rem;
    border: 1px solid;
    display: inline-block;
}

.article__img {
    display: block;
    width: 100%;
    height: auto;
    margin: 1.5rem auto;
}


/* 各記事ページ本文以外
--------------------------------------------------------------------------*/
.article-container {
    margin: 0 auto;
    padding-top: 0;
    width: 100%;
    height: auto;
    font-size: calc(30 / 750 * 100vw);
}

@media screen and (min-width: 751px) {
    .article-container {
        font-size: calc(18 / 1600 * 100vw);
    }
}

@media (min-width: 751px) and (max-width: 990px) {
    .article-container  {
        font-size: calc(20 / 990 * 100vw);
    }
}

@media screen and (min-width: 1601px) {
    .article-container {
        font-size: 1em;
    }
}

.article-preview__body, .article__content {
    line-height: 1.9;
}

.article-preview__body p, .article__content p {
    margin: 0;
}

/* 記事タイトル */
.article__head {
    margin-bottom: 3rem;
}

.article__head h1 {
    font-size: calc(50 / 750 * 100vw);
    line-height: 1.4;
}

@media screen and (min-width: 751px) {
    .article__head h1 {
        font-size: calc(34 / 1600 * 100vw);
    }
}

@media (min-width: 751px) and (max-width: 990px) {
    .article__head h1 {
        font-size: calc(40 / 990 * 100vw);
    }
}

@media screen and (min-width: 1601px) {
    .article__head h1 {
        font-size: 34px;
    }
}

/* 記事共有 */
.article__share {
    margin-top: 10rem;
    padding-top: 5rem;
    border-top: 1px solid #e9ecef;
}

/* 各記事本文
--------------------------------------------------------------------------*/

/* 見出し大 */
.article-preview__body h2,
.article__content h2 {
    font-size: calc(39 / 750 * 100vw);
    margin: 3rem 0 2rem;
    padding: .6em .7em .3em;
    background: linear-gradient(transparent 70%, #eee 70%);
    line-height: 1.3;
}

@media screen and (min-width: 751px) {
    .article-preview__body h2,
    .article__content h2 {
        font-size: calc(26 / 1600 * 100vw);
    }
}

@media (min-width: 751px) and (max-width: 990px) {
    .article-preview__body h2,
    .article__content h2  {
        font-size: calc(30 / 990 * 100vw);
    }
}

@media screen and (min-width: 1601px) {
    .article-preview__body h2,
    .article__content h2 {
        font-size: 26px;
    }
}


/* 見出し中 */
.article-preview__body h3,
.article__content h3 {
    font-size: calc(34 / 750 * 100vw);
    margin: 2.5rem 0 1.5rem;
    padding: .6em .7em .3em;
    background: linear-gradient(transparent 90%, #eee 90%);
    width: fit-content;
}

@media screen and (min-width: 751px) {
    .article-preview__body h3,
    .article__content h3 {
        font-size: calc(23 / 1600 * 100vw);
    }
}

@media (min-width: 751px) and (max-width: 990px) {
    .article-preview__body h3,
    .article__content h3  {
        font-size: calc(23 / 990 * 100vw);
    }
}

@media screen and (min-width: 1601px) {
    .article-preview__body h3,
    .article__content h3 {
        font-size: 23px;
    }
}


/* 見出し小 */
.article-preview__body h4,
.article__content h4 {
    font-size: calc(31 / 750 * 100vw);
    margin-top: 2.5rem;
}

@media screen and (min-width: 751px) {
    .article-preview__body h4,
    .article__content h4 {
        font-size: calc(19 / 1600 * 100vw);
    }
}

@media (min-width: 751px) and (max-width: 990px) {
    .article-preview__body h4,
    .article__content h4  {
        font-size: calc(20 / 990 * 100vw);
    }
}

@media screen and (min-width: 1601px) {
    .article-preview__body h4,
    .article__content h4 {
        font-size: 19px;
    }
}

/* 小文字 */
.article-preview__body small,
.article__content small {
    font-size: 80%;
}

/* cvボタン */
.cv-btn__container {
    display: grid;
    justify-content: center;
    margin: 3.8em;
}

.cv-btn__container .btn--big {
    font-size: inherit;
    padding: 1.65em 1.4rem;
}

 /* インタビュイー紹介欄 */
.ia__interviewees {
    background-color: #EEF5F9;
    margin-top: 3em;
    border-radius: 1em;
}

.ia__interviewees li {
    display: flex;
    flex-wrap: nowrap;
    padding: 1em;
}

.ia__interviewees figure {
    display: flex;
    align-items: center;
}

.ia__interviewees figure div {
    width: calc(110 / 1600 * 100vw);
    height: calc(110 / 1600 * 100vw);
    border-radius: 50%;
    margin-right: 3em;
    overflow: hidden;
}

@media screen and (max-width:750px) {
    .ia__interviewees li {
        flex-wrap: wrap;
        padding: 1.5em;
    }

    .ia__interviewees figure {
        width: 100%;
        justify-content: center;
    }

    .ia__interviewees figure div {
        width: calc(220 / 750 * 100vw);
        height: calc(220 / 750 * 100vw);
        margin: 0;
    }

    .ia__interviewees figure + div {
        margin: 2em auto 0;
    }
}
@media screen and (min-width:1600px) {
    .ia__interviewees {
        font-size: 14px;
    }

    .ia__interviewees figure div {
        width: 150px;
        height: 150px;
    }
}

.ia__interviewees figure img {
    width: 100%;
}

.interviewees__name {
    font-size: 1.2em;
    font-weight: 600;
    display: flex;
    align-items: center;
    background: linear-gradient(transparent 90%, #9fb9ea 90%);
    width: fit-content;
    margin-bottom: .2em;
    padding: 0 .3em;
}

.interviewees__name > span {
    font-size: .5em;
    font-weight: 400;
    padding-left: 1.5em;
}

.interviewees__status {
    font-weight: 550;
    color: #5a5e66;
    padding: 0 0 1.5em .3em;
}

.interviewees__status + p {
    padding-left: .3em;
}

/* ボックス */
.article__card {
    background: #f5f5f0;
    border-radius: 1rem;
    overflow: hidden;
    margin: 2rem 0;
}

.article__card__title {
    padding: .7rem 1.5rem;
    border-bottom: 3px solid #fff;
    background-color: #d4d4cf;
}

.article__card__content {
    padding: 1rem 3rem;
}

/* FAQページ関連
--------------------------------------------------------------------------*/
.category-list__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.category-list__item {
    width: 45%;
    border: 1px solid;
    border-radius: 3px;
}

@media screen and (max-width: 990px) {
    .category-list__item {
        width: 90%;
    }
}

.category-list__head {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    border-bottom: 1px solid;
    align-items: center;
}

.category-list__head p {
    font-size: 2rem;
}

.category-list__head a {
    font-size: 1.3rem;
}

.category-list__article {
    display: flex;
    flex-direction: column;
    padding: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    height: calc(593 / 1600 * 100vw);
}

@media screen and (min-width: 751px){
    .category-list__article {
        height: calc(255 / 1600 * 100vw);
    }
}

@media screen and (min-width: 1024px){
    .category-list__article {
        height: calc(220 / 1600 * 100vw);
    }
}

.category-list__article a {
    margin-top: 8px;
}

.category-list__item--wide {
    width: 100%;
    border: 1px solid;
    border-radius: 3px;
}

.category-list__article--all {
    display: flex;
    flex-direction: column;
    padding: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.category-list__article--all a {
    margin-top: 8px;
}
