

/* header */
.header {
    position: relative;
    height: 5.6rem;
    width: 100%;
    z-index: 10;
}
.header__box {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 1.6rem;
}
.header__box-logo {
    width: 18rem;
}
.header__box-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 5.6rem;
    height: 5.6rem;
    background-color: var(--black);
}
.header__box-btn span {
    position: absolute;
    width: 2.5rem;
    height: 1px;
    background-color: white;
    transition: .3s transform;
}
.header__box-btn span:nth-of-type(1) {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.header.active .header__box-btn span:nth-of-type(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.header__box-btn span:nth-of-type(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.header.active .header__box-btn span:nth-of-type(2) {
    display: none;
}
.header__box-btn span:nth-of-type(3) {
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.header.active .header__box-btn span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.header__content {
    background-color: white;
    transform: translateX(100%);
    padding: 2rem;
    transition: .3s transform;
    overflow-y: scroll;
    height: calc(100vh - 5.6rem);
}
.header.active .header__content {
    transform: translateX(0%);
}
.header__item {
    border-bottom: 1px solid var(--border);
}
.header__link {
    padding: 2rem 0;
    display: block;
    font-size: 1.6rem;
}
.header__link.active {
    pointer-events: none;
}
.header__second-contents {
    padding-top: 5rem;
}
.header__second-logo {
    width: 10.8rem;
    margin-bottom: 2.5rem;
}
.header__second-list {
    display: flex;
    flex-wrap: wrap;
}
.header__second-item {
    width: 50%;
    margin-bottom: 2.5rem;
}
.header__second-item:nth-of-type(even) {
    padding-left: 2rem;
}
.header__second-link {
    position: relative;
    display: block;
    color: var(--gray);
    font-size: 1.3rem;
}
.header__second-link::before {
    position: absolute;
    content: '';
    border: 1px solid var(--green);
    border-bottom: none;
    border-left: none;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(45deg);
    width: 0.6rem;
    height: 0.6rem;
}
@media (min-width: 601px) {
    .header {
        height: auto;
    }
    .header__box,
    .header__second-contents {
        display: none !important;
    }
    .header__content {
        transform: translateX(0%) !important;
        padding: 0;
        height: auto;
    }
    .header__list {
        display: flex;
        justify-content: center;
    }
    .header__item {
        border-bottom: none;
        margin-right: 48px;
    }
    .header__item:last-of-type {
        margin-right: 0;
    }
    .header__link {
        position: relative;
        font-size: 1.8rem;
    }
    .header__link::before {
        position: absolute;
        content: '';
        background-color: var(--borderHeader);
        width: 0;
        height: .8rem;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        transition: .3s width;
    }
    .header__link:hover::before,
    .header__link.active::before {
        width: 100%;
    }
}




/* mainvisual */
.top-mainvisual {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}
.top-mainvisual__bg {
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: .3s opacity;
}
.top-mainvisual__title {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    transition: .3s opacity;
}
.top-mainvisual__anniversary {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    opacity: 0;
    transition: .3s opacity;
    width: 104px;
    height: 96px;
    display: block;
}
.top-mainvisual__anniversary img {
    filter: drop-shadow(2px 4px 12px rgba(0, 0, 0, 0.25));
}

@media (min-width: 601px) {
    .top-mainvisual__anniversary {
        bottom: 70px;
        right: 130px;
    }
}



/* news */
.top-news {
    position: relative;
    padding: 6rem 0 8rem;
}
.top-news__title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 2.4rem;
    text-align: center;
}
.top-news__bg {
    position: relative;
    margin-bottom: 6rem;
}
.top-news__bg::before {
    content: '';
    position: absolute;
    height: 80%;
    width: 100vw;
    background-color: var(--pink);
    left: 0;
    bottom: -10%;
}
.top-news__item {
    padding: 0 3rem;
    height: 100%;
}
.top-news__link {
    display: block;
    background-color: white;
    height: 100%;
    box-shadow: 10px 15px 20px rgba(0, 0, 0, 0.15);
}
.top-news__content {
    padding: 2rem;
    background-color: white;
}
.top-news__images {
    background-color: var(--black);
    height: 236px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top-news__images img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
.top-news__content-time {
    font-family: var(--fontEn);
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}
.top-news__content-text {
    font-size: 1.4rem;
}
.top-news__btn-link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 1.4rem;
    font-weight: bold;
    width: 24rem;
    height: 4.8rem;
    border-radius: 100px;
    border: 1px solid var(--gray);
}
.top-news__btn-link::before {
    position: absolute;
    content: '';
    border: 1px solid var(--gray);
    border-bottom: none;
    border-left: none;
    top: 50%;
    right: 2.4rem;
    transform: translateY(-50%) rotate(45deg);
    width: 0.8rem;
    height: 0.8rem;
}
@media (min-width: 601px) {
    .top-news {
        padding: 12rem 0 11rem;
    }
    .top-news__title {
        font-size: 4rem;
        margin-bottom: 4rem;
    }
    .top-news__bg {
        margin-bottom: 11rem;
    }
    .top-news__bg::before {
        height: 84%;
        bottom: -15%;
    }
    .top-news__list {
        max-width: 1240px;
        margin: 0 auto;
    }
    .top-news__item {
        padding: 0 1rem;
    }
    .top-news__link {
        transition: .3s box-shadow;
    }
    .top-news__link:hover {
        box-shadow: 20px 25px 25px rgba(0, 0, 0, 0.25);
    }
    .top-news__images {
        height: 221px;
    }
    .top-news__btn-link {
        transition: .3s color, .3s background-color ;
        font-size: 1.6rem;
        width: 28rem;
        height: 6rem;
    }
    .top-news__btn-link::before {
        transition: .3s border-color ;
    }
    .top-news__btn-link:hover {
        color: white;
        background-color: black;
    }
    .top-news__btn-link:hover::before {
        border-color: white;
    }
}





/* nav */
.nav {
    padding: 0 0 6rem;
}
.nav__list {
    padding: 0 1.6rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.nav__item {
    width: 48.25%;
    margin-bottom: 3rem;
}
.nav__item:nth-last-of-type(-n + 2) {
    margin-bottom: 0;
}
.nav__link {
    position: relative;
    font-size: 1.4rem;
    padding-left: 1.2rem;
}
.nav__link::before {
    position: absolute;
    content: '';
    display: block;
    border-left: 1px solid var(--gray);
    width: 100%;
    height: 100%;
    top: 0;
}
@media (min-width: 601px) {
    .nav {
        padding: 0 0 5.5rem;
    }
    .nav__list {
        justify-content: center;
    }
    .nav__item {
        margin-bottom: 0;
        width: auto;
    }
    .nav__link {
        padding: 0 2rem;
    }
    .nav__item:first-of-type .nav__link::before {
        display: none;
    }
    .nav__link::after {
        position: absolute;
        content: '';
        background-color: var(--black);
        width: 0;
        bottom: 0;
        left: 2rem;
        height: 1px;
        transition: .3s width;
    }
    .nav__link:hover::after {
        width: calc(100% - 4rem);
    }
}





/* footer */


.footer {
    background-color: var(--grayLight);
    padding: 4rem 0 2rem;
}
.footer__logo {
    margin: 0 auto 3rem;
    width: 16.4rem;
}
.footer__list {
    padding: 0 1.6rem 4rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer__item {
    margin-bottom: 2.4rem;
    width: 47%;
}
.footer__item:nth-last-of-type(-n + 2) {
    margin-bottom: 0;
}
.footer__link {
    position: relative;
    display: block;
    font-size: 1.3rem;
}
.footer__link::before {
    position: absolute;
    content: '';
    border: 1px solid var(--green);
    border-bottom: none;
    border-left: none;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(45deg);
    width: 0.6rem;
    height: 0.6rem;
}
.footer__copy {
    text-align: center;
    font-family: var(--fontEn);
    font-size: 1rem;
    color: var(--grayCopy);
}
@media (min-width: 601px) {
    .footer {
        padding: 5rem 0 2rem;
    }
    .footer__list {
        max-width: 660px;
        padding: 0 0 4rem;
        margin: 0 auto;
        justify-content: flex-start;
    }
    .footer__item {
        margin-bottom: 1.2rem;
        width: 25%;
    }
    .footer__link {
        display: inline-block;
        font-size: 1.2rem;
    }
    .footer__link::before {
        right: -1rem;
        transition: .3s right;
    }
    .footer__link:hover::before {
        right: -1.8rem;
    }
}





/* breadcrumbs */


.breadcrumbs {
    padding: 16px 0 32px;
    width: 92%;
    margin: 0 auto;
}
.breadcrumbs__list {
    display: flex;
    overflow-x: scroll;
    scrollbar-width: none;
}
.breadcrumbs__list::-webkit-scrollbar {
    display: none;
}
.breadcrumbs__item {
    position: relative;
    margin-right: 36px;
}
.breadcrumbs__item::before {
    position: absolute;
    content: '';
    top: 50%;
    right: -18px;
    transform: translateY(-50%) rotate(45deg);
    border-top: 1px solid var(--grayNav);
    border-right: 1px solid var(--grayNav);
    width: 5px;
    height: 5px;
}
.breadcrumbs__item:last-of-type {
    pointer-events: none;
    font-weight: 700;
}
.breadcrumbs__item:last-of-type::before {
    display: none;
}
.breadcrumbs__link {
    font-size: 1.2rem;
    white-space: nowrap;
    word-break: keep-all;
}

@media (min-width: 601px) {
    .breadcrumbs {
        padding: 16px 0 50px;
        max-width: 1080px;
    }
}
/* movie */


.movie__title {
    position: relative;
    text-align: center;
    font-weight: 700;
    font-size: 3rem;
    letter-spacing: 0.1em;
    margin-bottom: 4rem;
}
.movie__nav {
    position: relative;
}
.movie__nav-title {
    font-weight: 700;
    font-size: 2rem;
    line-height: 140%;
    margin-bottom: 1.6rem;
    text-align: center;
}
.movie__nav-btn {
    position: relative;
    width: 16rem;
    height: 3rem;
    border: 1px solid var(--grayNav);
    border-radius: 100rem;
    margin: 0 auto 2.8rem;
    display: block;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 100%;
}
.movie__nav-btn::before {
    position: absolute;
    content: '';
    border: 1px solid var(--black);
    border-top: none;
    border-left: none;
    top: 50%;
    right: 1.2rem;
    transform: translateY(-50%) rotate(45deg);
    width: 0.6rem;
    height: 0.6rem;
}
.movie__nav-list {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 90%;
    background: rgba(245, 245, 245, 0.95);
    border-radius: 1rem;
    padding: 2.4rem 2rem;
    display: flex;
    flex-wrap: wrap;
    z-index: 99;
    pointer-events: none;
    opacity: 0;
    transition: .3s opacity;
}
.movie__nav-list--open {
    pointer-events: all;
    opacity: 1;
}
.movie__detail-link {
    text-align: right;
    padding: 20px 0 25px;
    width: 92%;
    max-width: 896px;
    margin: 0 auto;
}
.movie__detail-link-text {
    font-size: 1.2rem;
    padding-right: 12px;
    position: relative;
    display: inline-block;
}
.movie__detail-link-text::before {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(45deg);
    border-top: 1px solid var(--black);
    border-right: 1px solid var(--black);
    width: 5px;
    height: 5px;
    transition: .3s all;
}
.movie__nav-item {
    margin-right: 0.8rem;
    margin-bottom: 0.8rem;
}
.movie__nav-link {
    background: #FFFFFF;
    border-radius: 5rem;
    color: var(--rainbow-red);
    font-size: 1.2rem;
    font-weight: 400;
    padding: 0.9rem 1.6rem;
    display: block;
}
.movie__nav-link--active {
    color: #fff;
    background: var(--rainbow-red);
}
.movie__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 92%;
    max-width: 89.6rem;
    margin: 0 auto;
    padding-bottom: 5rem;
}
.movie__item {
    width: calc(165 / 345 * 100%);
    margin-bottom: 4rem;
}
.movie__item--empty {
    width: calc(165 / 345 * 100%);
}
.movie__link {
    display: block;
    box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.15);
    transition: .3s all;
}
.movie__link-img {
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 12.4rem;
    overflow: hidden;
}
.movie__link-img img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    transition: .3s all;
}
.movie__link-content {
    position: relative;
    padding: 1.2rem .8rem 1.6rem;
    background-color: white;
    min-height: 9.8rem;
}
.movie__list--all .movie__item:nth-last-of-type(-n + 6) .movie__link-content::before {
    position: absolute;
    content: '';
    background-color: #E69893;
    height: 100%;
    width: .3rem;
    top: 0;
    left: 0;
}
.movie__link-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.movie__link-text {
    font-size: 1.2rem;
    color: var(--grayNav);
}

@media (min-width: 601px) {
    .movie__title {
        font-size: 3.6rem;
        margin-bottom: 6rem;
    }
    .movie__nav {
        position: relative;
    }
    .movie__nav-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 89.6rem;
        margin: 0 auto;
    }
    .movie__nav-title {
        font-size: 2.4rem;
        margin-bottom: 0;
    }
    .movie__nav-btn {
        margin-bottom: 0;
    }
    .movie__nav-list {
        width: 43.6rem;
        left: 16rem;
        transform: translate(-100%, 100%);
    }
    .movie__detail-link {
        padding: 20px 0 40px;
    }
    .movie__detail-link-text:hover::before {
        right: -5px;
    }
    .movie__list {
        padding-bottom: 1rem;
    }
    .movie__item {
        width: calc(206 / 896 * 100%);
        margin-bottom: 6rem;
    }
    .movie__item--empty {
        width: calc(206 / 896 * 100%);
    }
    .movie__link:hover {
        box-shadow: 15px 20px 25px rgba(0, 0, 0, 0.15);
    }
    .movie__link-img {
        height: 15.4rem;
    }
    .movie__link:hover  .movie__link-img img {
        transform: scale(1.1);
    }
    .movie__link-content {
        padding: 1.2rem 1.2rem 2.4rem 1.2rem;
        min-height: 10.6rem;
    }
    .movie__list--all .movie__item:nth-last-of-type(-n + 6) .movie__link-content::before {
        width: .4rem;
    }
}


/* movie-detail */

.movie-detail {
    width: 92%;
    margin: 0 auto;
    max-width: 896px;
}
.movie-detail__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}
.movie-detail__red-text {
    color: var(--redDark);
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 16px;
}
.movie-detail__main-img {
    background-color: var(--black);
    height: 226px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 8px;
}
.movie-detail__main-img img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    transition: .3s all;
}
.movie-detail__img-list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.movie-detail__img-item {
    width: calc(206 / 896 * 100%);
    height: 49px;
    display: flex;
    background-color: var(--black);
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    opacity: .5;
    transition: .3s opacity;
}
.movie-detail__img-item:hover {
    opacity: 1;
}
.movie-detail__img-item--active {
    opacity: 1;
    pointer-events: none;
}
.movie-detail__img-item img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    transition: .3s all;
    pointer-events: none;
}
.movie-detail__modal {
    margin-bottom: 50px;
}
.movie-detail__modal-button {
    position: relative;
    width: 240px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--btnColor);
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin: 0 auto;
    transition: .3s background-color;
}
.movie-detail__modal-button:hover {
    background-color: var(--btnColorHover);
}
.movie-detail__modal-button::before {
    position: absolute;
    content: '';
    right: 24px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border: 1px solid white;
    border-bottom: none;
    border-left: none;
}
.movie-detail-section {
    margin-bottom: 40px;
}
.movie-detail__subtitle {
    position: relative;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 16px;
    padding-left: 14px;
}
.movie-detail__subtitle::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: var(--pinkMovieNav);
}
.movie-detail__text {
    font-size: 1.5rem;
    line-height: 1.8;
}
.movie-detail__dl {
    border-top: 1px solid var(--grayMovie);
    border-bottom: 1px solid var(--grayMovie);
    margin-bottom: 40px;
}
.movie-detail__content {
    border-bottom: 1px dashed #E6EBE8;
    padding: 13px 0;
    display: flex;
}
.movie-detail__dt {
    width: 80px;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.8;
}
.movie-detail__dd {
    width: calc(100% - 80px);
    font-size: 1.2rem;
    line-height: 1.8;
}
.movie-detail__btn-list {
    margin-bottom: 60px;
}
.movie-detail__btn-item {
    position: relative;
    width: 88.4%;
    height: 60px;
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 auto;
    border: 1px solid var(--btnColorHover);
    padding-left: 24px;
}
.movie-detail__btn-item + .movie-detail__btn-item {
    margin-top: 16px;
}
.movie-detail__btn-item::after {
    content: '';
    width: 8px;
    height: 8px;
    display: block;
    background-image: url(/kinoshita/assets/images/icn_link.svg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 8px;
    right: 8px;
}
.movie-detail__btn-item img {
    width: 20px;
    height: 20px;
    display: block;
    margin-right: 6px;
}
.movie-detail__return {
    margin-bottom: 70px;
}
.movie-detail__return-btn {
    position: relative;
    font-size: 1.4rem;
    display: inline-block;
    padding-left: 12px;
}
.movie-detail__return-btn::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(45deg);
    border-bottom: 1px solid var(--black);
    border-left: 1px solid var(--black);
    width: 5px;
    height: 5px;
    transition: .3s all;
}
.movie-detail__return-btn:hover::before {
    left: -5px;
}

@media (min-width: 601px) {
    .movie-detail__title {
        font-size: 3.6rem;
    }
    .movie-detail__red-text {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    .movie-detail__main-img {
        height: 578px;
        margin-bottom: 20px;
    }
    .movie-detail__img-list {
        margin-bottom: 30px;
    }
    .movie-detail__img-item {
        height: 135px;
    }
    .movie-detail__subtitle {
        font-size: 2.4rem;
    }
    .movie-detail__text {
        font-size: 1.6rem;
        line-height: 2;
    }
    .movie-detail__dl {
        display: grid;
    }
    .movie-detail__dl {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        grid-column-gap: 24px;
        grid-row-gap: 0px;
    }
    .movie-detail__content:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
    }
    .movie-detail__content:nth-child(2) {
        grid-area: 2 / 1 / 3 / 2;
    }
    .movie-detail__content:nth-child(3) {
        grid-area: 3 / 1 / 4 / 2;
        border-bottom: none;
    }
    .movie-detail__content:nth-child(4) {
        grid-area: 1 / 2 / 2 / 3;
    }
    .movie-detail__content:nth-child(5) {
        grid-area: 2 / 2 / 4 / 3;
        border-bottom: none;
    }
    .movie-detail__dt {
        line-height: 2;
    }
    .movie-detail__dd {
        line-height: 2;
    }
    .movie-detail__btn-list {
        display: flex;
        justify-content: center;
        margin-bottom: 80px;
    }
    .movie-detail__btn-item {
        margin: 0 12px 0 0;
        width: 24%;
    }
    .movie-detail__btn-item:last-of-type {
        margin-right: 0;
    }
    .movie-detail__btn-item + .movie-detail__btn-item {
        margin-top: 0;
    }
}


/* profile */

.profile__header{
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
    font-size: 3rem;
    letter-spacing: 0.1em;
}
.profile__subtitle{
    position: relative;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 2rem;
    line-height: 140%;
}
.profile__subtitle::after{
    display: block;
    content: "";
    width: 80px;
    height: 2px;
    margin-top: 16px;
    background-color: var(--rainbow-red);
}
.profile__subtitle--border-none::after{
    display: none;
}
.profile__img{
    display: block;
    width: 100%;
    max-width: 465px;
    margin-bottom: 40px;
    flex-shrink: 0;
}
.profile__big-img{
    display: block;
    width: 100%;
    max-width: 708px;
    margin: 0 auto;
}
.profile__img-caption{
    margin-top: 4px;
    text-align: right;
    font-size: 1.1rem;
    line-height: 160%;
    color: var(--darkGray);
}
.profile__text{
    color: var(--black);
    font-size: 1.5rem;
    line-height: 180%;
    margin-bottom: 30px;
}
.profile__text--mb0{
    margin-bottom: 0px!important;
}
.profile-section{
    display: block;
    width: 92%;
    max-width: 1080px;
    margin: 0 auto;
}
.profile-about{
    margin: 0 auto 50px auto;
    padding: 40px 0 0 0;
}
.profile-about__text{
    width: 100%;
    max-width: 522px;
    color: var(--black);
    font-size: 1.5rem;
    line-height: 180%;
    margin-bottom: 30px;
}
.profile-message{
    display: block;
    padding: 50px 0 60px 0;
    background-color: var(--bgRed);
}
.profile-message__block{
    display: block;
    width: 92%;
    max-width: 708px;
    margin: 0 auto;
}
.profile-message__text{
    display: block;
    margin: 0 auto 30px auto;
    padding: 36px 30px;
    font-family: 'Noto Serif JP';
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 180%;
    border: 1px solid var(--rainbow-red);
}
.profile-detail{
    margin: 0 auto;
    padding: 50px 0;
}
.profile-biography{
    display: block;
    margin-bottom: 50px;
    padding: 60px 0;
    background-color: var(--bgRed);
}
.profile-biography__dl{
    display: block;
    word-wrap: 92%;
    max-width: 1080px;
}
.profile-biography__content{
    display: flex;
    padding: 11px 0;
    border-top: 1px dashed var(--grayMovie);
}
.profile-biography__content:last-of-type{
    border-bottom: 1px dashed var(--grayMovie);
}
.profile-biography__dt{
    display: flex;
    align-items: center;
    width: 7.4rem;
    height: fit-content;
    margin-right: 1.5rem;
    font-family: var(--fontEn);
    color: var(--redDark);
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 160%;
    flex-shrink: 0;
}
.profile-biography__dt-small{
    margin-left: 0.2rem;
    font-size: 1.2rem;
}
.profile-biography__dd{
    display: block;
    font-size: 1.4rem;
    line-height: 160%;
}
.profile-biography__dd-text--mt12{
    margin-top: 1.2rem;
}
.profile-biography__dd-annotation{
    display: block;
    margin-top: 0.4rem;
    font-size: 1.1rem;
    line-height: 160%;
    color: var(--darkGray);
}

@media (min-width: 601px) {
    .profile__header{
        margin-bottom: 60px;
        font-size: 3.6rem;
        line-height: 140%;
    }
    .profile__subtitle{
        font-size: 2.4rem;
    }
    .profile__subtitle--reverse{
        width: calc(50% - 10px);
        max-width: 520px;
        margin-left: auto;
    }
    .profile__subtitle::after{
        margin-top: 20px;
    }
    .profile__img{
        width: calc(50% - 70px);
        margin-bottom: 0;
    }
    .profile__img--reverse{
        position: absolute;
        top: 50%;
        left: 0%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    }
    .profile__text{
        margin-bottom: 40px;
        font-size: 1.6rem;
        line-height: 200%;
    }

    .profile-about{
        margin: 0 auto 80px auto;
        padding: 70px 0 0 0;
    }
    .profile-about__block{
        position: relative;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        margin-bottom: 80px;
    }
    .profile-about__block--reverse{
        flex-direction: column;
        margin-bottom: 0;
    }
    .profile-about__text{
        font-size: 1.6rem;
        line-height: 200%;
    }
    .profile-about__text--left{
        width: 52%;
        margin: 0 9% 0 0;
    }
    .profile-about__text-block{
        width: calc(50% - 10px);
        max-width: 522px;
        margin: 0 0 0 auto;
    }

    .profile-message{
        padding: 80px 0;
    }
    .profile-message__text{
        margin: 0 auto 40px auto;
        padding: 36px 60px;
        font-size: 1.8rem;
        line-height: 200%;
    }

    .profile-detail{
        padding: 80px 0;
    }

    .profile-biography{
        margin-bottom: 70px;
        padding: 100px 0;
    }
    .profile-biography__content{
        padding: 11px 93px;
    }
    .profile-biography__dt{
        width: 150px;
        margin-right: 36px;
    }
    .profile-biography__dd-text--mt12{
        margin-top: 12px;
    }
    .profile-biography__dd-annotation{
        font-size: 1.1rem;
        line-height: 160%;
    }
}



/* profile-nav */

.profile-nav-list{
    display: flex;
    width: 92%;
    margin: 0 auto;
}
.profile-nav-item{
    display: block;
    width: calc((100% / 3) - 9px);
    margin-right: 18px;
}
.profile-nav-item:last-of-type{
    margin-right: 0!important;
}
.profile-nav-item-link{
    position: relative;
    display: block;
    padding-bottom: 24px;
    text-align: center;
    font-size: 12px;
    line-height: 100%;
}
.profile-nav-item-link::after{
    position: absolute;
    display: block;
    content: "";
    width: 12px;
    height: 9px;
    background-repeat: no-repeat;
    background-image: url(/kinoshita/assets/images/arrow_bottom.svg);
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

@media (min-width: 601px) {
    /* profile-nav */
    .profile-nav-list{
        max-width: 800px;
    }
    .profile-nav-item{
        display: block;
        width: calc((100% / 3) - 18px);
        margin-right: 36px;
    }
    .profile-nav-item:hover > .profile-nav-item-link::after{
        bottom: -2px;
    }
    .profile-nav-item-link{
        width: fit-content;
        margin: 0 auto;
        padding-bottom: 22px;
        font-size: 1.6rem;
        line-height: 200%;
    }
    .profile-nav-item-link::after{
        width: 14px;
        height: 12px;
        transition: .3s all;
    }
}

/* to-top */


.to-top {
    padding: 50px 0;
}
.to-top__btn {
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    border-top: 2px solid var(--black);
    border-left: 2px solid var(--black);
    margin: 0 auto;
    display: block;
    position: relative;
    transition: .3s top;
    top: 0;
}
.to-top__btn:hover {
    top: -10px;
}

@media (min-width: 601px) {
    .to-top {
        padding: 80px 0;
    }
}



/* fade-in-up */

.fade-in {
    opacity: 0;
    transition-duration: 500ms;
    transition-property: opacity, transform;
}
.fade-in-up {
    transform: translate(0, 50px);
}
.scroll-in {
    opacity: 1;
    transform: translate(0, 0);
}




/* detail-modal */

.detail-modal {
    display: flex;
    background: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    overscroll-behavior: contain;
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
    transition: .3s opacity;
}
.detail-modal--open {
    opacity: 1;
    pointer-events: all;
}
.detail-modal__no-scroll {
    height:calc(100vh + 1px) ;
    width: 1px;
    background-color: transparent;
}
.detail-modal__inner {
    background-color: white;
    width: 92%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 56px 0;
}
.detail-modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 30px;
    height: 30px;
    background: transparent;
}
.detail-modal__close::before,
.detail-modal__close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: white;
}

.detail-modal__close::before {
    width: 1px;
    height: 100%;
}
.detail-modal__close::after {
    height: 1px;
    width: 100%;
}
.detail-modal__item {
    width: 88.4%;
    margin: 0 auto;
    height: 60px;
}
.detail-modal__item + .detail-modal__item {
    margin-top: 16px;
}
.detail-modal__link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    border: 1px solid var(--btnColorHover);
    padding-left: 24px;
}
.detail-modal__link::after {
    content: '';
    width: 8px;
    height: 8px;
    display: block;
    background-image: url(/kinoshita/assets/images/icn_link.svg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 8px;
    right: 8px;
}
.detail-modal__link img {
    width: 20px;
    height: 20px;
    display: block;
    margin-right: 6px;
}

@media (min-width: 601px) {
    .movie-detail__modal {
        margin-bottom: 80px;
    }
    .detail-modal__inner {
        max-width: 712px;
        padding: 80px 6.4% 64px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .detail-modal__item {
        width: 48%;
        margin: 0 0 16px 0;
    }
    .detail-modal__item + .detail-modal__item {
        margin-top: 0;
    }
    .detail-modal__link {
        justify-content: center;
        padding-left: 0;
    }
}




