@charset "utf-8";

/* Web font [Surranna] */
@import url('https://fonts.googleapis.com/css2?family=Suranna&display=swap');
.suranna-regular {
    font-family: "Suranna", serif;
    font-weight: 400;
    font-style: normal;
}
/* ここまで / Web font [Surranna] */

.content-panel {
    position: relative;
    padding-top: 46px;
    padding-bottom: 46px;
    border-top: 1px solid #BABABA;
    cursor: default;
}
@media screen and (min-width: 768px) {
    .content-panel {
        display: flex;
        padding-top: 51px;
        padding-bottom: 51px;
        cursor: pointer;
    }
}

.content-panel::before,
.content-panel::after {
    content: '';
    position: absolute;
    top: 66px;
    right: 0;
    width: 19px;
    height: 0px;
    border-top: 1px solid #000;
}

.content-panel::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 1;
    transition: opacity .4s ease, transform .4s ease;
}

.content-panel.is-active::after {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 0;
}

.content-panel__head {
    margin: 0;
    text-align: left;
    font-size: 32px;
    font-family: "Suranna", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 44px;
    cursor: pointer;
}
@media screen and (min-width: 768px) {
    .content-panel__head {
        width: 120px;
        line-height: 1;
    }
}

.content-panel__body {
    width: 100%;
    max-width: 744px;
}

.post-accordion {
    margin: 0; /* デフォルト打ち消し */
    width: 100%;
}
@media screen and (min-width: 768px) {
    .post-accordion {
        display: flex;
        justify-content: space-between;
    }
}

.post-accordion:not(:first-child) {
    margin-top: 24px;
}

.post-accordion__head,
.post-accordion__body {
    margin: 0; /* デフォルト打ち消し */
    border: none; /* デフォルト打ち消し */
}

.post-accordion__head {
    padding: 0; /* デフォルト打ち消し */
    font-size: 16px;
    font-family: "Suranna", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 32px; /* 本文と文字位置を揃える */
}

.post-accordion__body {
    padding: 0; /* デフォルト打ち消し */
    width: 100%;
    max-width: 680px;
    font-size: 16px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 2;
}

/* BIOGRAPHY、AWARDS共通style */
.navimenu .u-txt-cent {
    margin: 0;
}

.navimenu {
    gap: 0;
}