@charset "UTF-8";

/* Eric Meyer's Reset CSS v2.0 - http://meyerweb.com/eric/tools/css/reset/ */
/* Reset CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
a {
    transition: 0.3s !important;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* common */
* {
    box-sizing: border-box;
}
img {
    max-width: 100%;
}
html {
    font-size: 62.5%;
}
body {
    font-size: 1.6em;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* text */
.m_plus  {
    font-family: "M PLUS 1p", sans-serif;
    font-style: normal;
}
.st_txt {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.8em;
}
.movie_content_txt {
    font-size: 2.5rem;
}
@media (max-width: 599px) {
    .st_txt {
        font-size: 1.2rem;
    }
    .movie_content_txt {
        font-size: 1.25rem;
    }
}


/* layout */
.movie_list {
    max-width: 110rem;
    width: 96%;
    margin: 6rem auto 0;
    position: relative;
}
.movie_list ul {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.movie_list ul li::after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    border-radius: 0.3rem;
}
.movie_list ul li {
    width: 31%;
    margin-bottom: 3rem;
    position: relative;
}
.movie_list figure {
    position: relative;
}
.movie_list figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 102, 255, 0.8);
    font-size: 1.9rem;
    color: #FFF;
    padding: 1em 0;
}
.movie_layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    margin-bottom: 6rem;
}
.movie_photo {
    width: 50%;
    position: relative;
}
.movie_photo::after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 1.4rem;
    left: 1.4rem;
    border-radius: 0.3rem;
}
.movie_txt {
    width: 44%;
    text-align: left;
}
.btn_more {
    position: relative;
    z-index: 3;
}
.btn_more a {
    display: block;
    max-width: 60rem;
    margin: 0 auto;
    font-size: 2.1rem;
    background-color: #ffc700;
    color: #000;
    text-decoration: none;
    border: 2px solid #000;
    padding: 0.8em 0;
}
.btn_more a:hover {
    background-color: #ff8c00;
}
@media (max-width: 768px) {
    .movie_list {
        width: 100%;
        margin-top: 2rem;
    }
    .movie_list ul {
        flex-direction: column;
        align-items: center;
        margin-top: 2rem;
    }
    .movie_list ul li {
        width: 80%;
        margin-bottom: 1rem;
        max-width: 53rem;
    }
    .movie_layout {
        flex-direction: column;
        align-items: center;
        margin-top: 1.5rem;
        margin-bottom: 3.5rem;
    }
    .movie_photo {
        width: 80%;
        margin-bottom: 1.5rem;
    }
    .movie_txt {
        width: 78%;
        text-align: center;
    }

}
@media (max-width: 599px) {
    .movie_list figcaption {
        font-size: 1.4rem;
    }
    .btn_more a {
        max-width: 84vw;
        font-size: 1.0rem;
        padding: 0.9em 0;
        border-width: 1px;
    }
}

/* header */
.lp_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    z-index: 10;
    transition: 0.5s;
    background-color: #FFF;
    height: 12.2rem;
}
.scrolled {
    position: fixed;
    top: -100%;
    left: 0;
}
.fixed {
    position: fixed;
    top: 0;
    left: 0;
}
.header_logo {
    padding: 1vw;
    width: 30vw;
    max-width: 25rem;
}
.lp_header nav {
    width: 60vw;
}
.header_navi {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    position: relative;
    z-index: 9;
}
.header_navi .btn_open_campus {
    width: 44%;
    max-width: 32rem;
    height: 12.2rem;
}
.header_navi .btn_open_campus a {
    background-color: #ffff33;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.header_navi .btn_head {
    width: 20%;
    max-width: 15rem;
}
.header_navi .btn_head a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    color: #FFF;
    text-decoration: none;
    font-size: 2.1rem;
}
.header_navi .btn_test {
    background-color: #00a0ff;
}
.header_navi .btn_test:hover {
    background-color: #0064ff;
}
.header_navi .btn_doc {
    background-color: #00c5c5;
}
.header_navi .btn_doc:hover {
    background-color: #00ad94;
}
.header_navi .toggle_menu {
    width: 16%;
    max-width: 12rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFF;
    position: relative;
}
.header_navi .toggle_menu.active {
    background-color: #0094dd;
}
.header_navi .toggle_menu span {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.header_navi .toggle_menu::before ,
.header_navi .toggle_menu::after ,
.header_navi .toggle_menu span::before {
    content: " ";
    display: block;
    position: absolute;
    width: 3.5rem;
    height: 0.5rem;
    background-color: #FFF;
    transition: 0.3s;
}
.header_navi .toggle_menu::before {
    top: 36%;
    z-index: 2;
}
.header_navi .toggle_menu::after {
    top: 60%;
    z-index: 2;
}
.header_navi .toggle_menu span::before {
    top: calc(50% - 0.25rem);
    z-index: 1;
}
.header_navi .toggle_menu.active::before {
    transform: rotate(45deg);
    top: calc(50% - 0.25rem);
    background-color: #0094dd;
}
.header_navi .toggle_menu.active::after {
    transform: rotate(-45deg);
    top: calc(50% - 0.25rem);
    background-color: #0094dd;
}
.header_navi .toggle_menu span button {
    width: 6rem;
    height: 6rem;
    background-color: #0094dd;
    border: none;
    cursor: pointer;
}
.header_navi .toggle_menu.active span button {
    background-color: #FFF;
}
.open_menu {
    position: absolute;
    z-index: 8;
    top: -100vh;
    right: 0;
    width: 56%;
    max-width: 42rem;
    background: #FFF;
    padding: 1.5vw 0  1vw 2.5vw;
    transition: 0.3s;
}
.open_menu.active {
    top: 122px;
}
.open_menu a {
    text-decoration: none;
}
.gl_menu {
    margin-bottom: 2.5em;
}
.gl_menu li {
    font-size: 2.1rem;
    margin-bottom: 1.0em;
}
.gl_menu li a {
    color: #000;
}
.gl_menu li a:hover {
    color: #8F8F8F;
}
.sub_menu li {
    font-size: 2.1rem;
    margin-bottom: 0.5em;
}
.sub_menu li a {
    padding: 0.8em;
    color: #000;
    display: block;
}
.sub_menu li.link_open_c a {
    background-color: #FFFF33;
}
.sub_menu li.link_open_c a:hover {
    background-color: #dadd19;
}
.sub_menu li.link_access a {
    background-color: #00c5ff;
}
.sub_menu li.link_access a:hover {
    background-color: #008fff;
}
.sub_menu li.link_doc a {
    background-color: #00c5c5;
}
.sub_menu li.link_doc a:hover {
    background-color: #00acc5;
}
@media (max-width: 768px) {
    .lp_header {
        height: 5.5rem;
    }
    .header_logo {
        position: relative;
        z-index: 10;
        max-width: 16rem;
        padding: 1rem 1rem 0.6rem;
    }
    .header_navi {
        z-index: inherit;
    }
    .header_navi .btn_open_campus {
        display: none;
    }
    .header_navi .btn_head {
        width: 38%;
    }
    .header_navi .btn_head a {
        font-size: 1.4rem;
    }
    .header_navi .toggle_menu {
        width: 24%;
        padding: 1.5rem;
        z-index: 10;
    }
    .header_navi .toggle_menu.active {
        background-color: #0094dd;
    }
    .header_navi .toggle_menu::before,
    .header_navi .toggle_menu::after,
    .header_navi .toggle_menu span::before {
        width: 2rem;
        height: 0.3rem;
        background-color: #000;
    }
    .header_navi .toggle_menu::before {
        top: calc(0% + 1.5rem);
    }
    .header_navi .toggle_menu::after {
        top: calc(100% - 1.8rem);
    }
    .header_navi .toggle_menu span::before {
        top: calc(50% - 0.15rem);
    }
    .header_navi .toggle_menu.active span::before {
        background-color: #FFF;
    }
    .header_navi .toggle_menu.active::before ,
    .header_navi .toggle_menu.active::after {
        top: calc(50% - 0.15rem);
        background-color: #0094dd;
    }
    .header_navi .toggle_menu span button {
        background-color: #FFF;
        width: 2.5rem;
        height: 2.5rem;
    }
    .header_navi .toggle_menu.active span button {
        background-color: #FFF;
    }
    .open_menu {
        max-width: 100%;
        width: 100%;
        z-index: 9;
        padding: 10rem 2.8rem 4rem;
    }
    .open_menu.active {
        top: 0;
    }
    .gl_menu {
        margin-bottom: 1em;
    }
    .gl_menu li {
        font-size: 1.8rem;
    }
    .sub_menu li {
        font-size: 1.8rem;
    }
}
@media (max-width: 599px) {
    .header_logo {
        max-width: 11rem;
    }
    .header_navi .btn_head a {
        font-size: 0.85rem;
    }
}


/* footer */
footer nav {
    width: 90%;
    max-width: 84rem;
    margin: -2vw auto 0;
    position: relative;
    z-index: 6;
}
footer nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
footer nav ul li {
    width: 48%;
    margin-bottom: 4rem;
}
footer nav ul li a {
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 2px 3px 0 #dcdcdc;
    display: flex;
    height: 9rem;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
footer nav ul li.btn a {
    background-color: #0094dd;
    color: #FFF;
    font-size: 2.0rem;
}
footer nav ul li.btn a:hover {
    background-color: #72c4ec;
}
footer nav ul li.bnr a:hover {
    opacity: 0.7;
}
footer nav ul li a:hover {
    box-shadow: none;
}
footer .info {
    margin-top: 3rem;
    padding: 4rem 0 1rem;
    background-color: #0094dd;
    color: #FFF;
    text-align: center;
}
footer .info .footer_logo {
    width: 90%;
    max-width: 33rem;
    margin: 0 auto 2rem;
}
footer .info .address {
    font-size: 1.4rem;
    font-weight: lighter;
    margin-bottom: 3.5rem;
}
footer .info .btn_access {
    margin: 0 auto 4.6rem;
    width: 90%;
    max-width: 33rem;
}
footer .info .btn_access a {
    font-size: 1.8rem;
    color: #000;
    background-color: #FFF;
    border-radius: 50px;
    padding: 0.8em 0;
    display: block;
    text-decoration: none;
}
footer .info .btn_access a:hover {
    background-color: #dcdcdc;
}
footer .info .policy {
    font-size: 1.5rem;
    margin-bottom: 4.6rem;
    font-weight: lighter;
}
footer .info .policy a {
    color: #FFF;
    text-decoration: none;
}
footer .info .policy a:hover {
    color: #33ffff;
}
footer .info .copyright {
    font-size: 1.0rem;
}
@media (max-width: 768px) {
    footer nav ul {
        flex-direction: column;
        align-items: center;
    }
    footer nav ul li {
        width: 84%;
        margin-bottom: 2rem;
    }
    footer nav ul li a {
        height: 6rem;
        width: 27.4rem;
        margin-left: auto;
        margin-right: auto;
    }
    footer nav ul li.btn a {
        font-size: 1.35rem;
    }
    footer .info .footer_logo {
        max-width: 23rem;
        margin-bottom: 1rem;
    }
    footer .info .address {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    footer .info .btn_access {
        max-width: 17.5rem;
        margin-bottom: 2.5rem;
    }
    footer .info .btn_access a {
        font-size: 1.1rem;
    }
    footer .info .policy {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    footer .info .copyright {
        font-size: 0.65rem;
    }
}

/* MV */
#main_visual {
    background: url(/nyushi/weboc/img/bg_mv.svg) no-repeat center bottom;
    background-size: cover;
    padding: 1vw 0 4vw;
}
.main_scrolled {
    margin-top: 12.2rem;
}
.main_img {
    width: 74vw;
    margin: 0 auto;
}
.btn_open_campus_sp {
    display: none;
}
@media (max-width: 768px) {
    #main_visual {
        background: url(/nyushi/weboc/img/bg_mv_sp.svg) no-repeat center bottom;
        background-size: cover;
        padding: 4vw 0 3vw;
    }
    .main_img {
        width: 100vw;
    }
    .btn_open_campus_sp {
        display: inherit;
        width: 88vw;
        max-width: 40rem;
        margin: 2vw auto;
    }
}
@media (max-width: 599px) {
    .main_scrolled {
        margin-top: 5.5rem;
    }
}


/* lead */
#lead {
    padding: 10rem 0 30rem;
    text-align: center;
    background: url(/nyushi/weboc/img/bg_lead.png) no-repeat center top;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

#lead::after {
    content: " ";
    display: block;
    width: 120%;
    height: 18rem;
    background-color: #FFF;
    position: absolute;
    left: -10%;
    bottom: 0;
    transform: rotate(-6.55deg);
}
#lead h2 img {
    max-width: 74rem;
    margin-bottom: 5rem;
}
#lead .photo {
    position: absolute;
    bottom: 8rem;
    right: 0;
    width: 100%;
    z-index: 1;
}
#lead .photo span {
    display: block;
    width: 100%;
    max-width: 94rem;
    margin: 0 auto;
    text-align: right;
}
#lead .photo img {
    width: 29.5rem;
}
@media (max-width: 768px) {
    #lead h2 img {
        max-width: 28rem;
        margin-bottom: 3rem;
    }
    #lead .photo {
        right: 5vw;
        max-width: 50vw;
        bottom: 4rem;
    }
}
@media (max-width: 599px) {
    #lead {
        background: url(/nyushi/weboc/img/bg_lead_sp.png) no-repeat center top;
        background-size: cover;
        padding: 3rem 0 15rem;
    }
    #lead::after {
        height: 4.6rem;
    }
    #lead .photo {
        bottom: 0;
    }
}

/* movie01 */
#movie01 {
    margin-top: -19rem;
    padding: 10rem 0 30rem;
    background: url(/nyushi/weboc/img/bg_movie01.png) no-repeat center top;
    background-size: cover;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
#movie01::after {
    content: " ";
    display: block;
    width: 120%;
    height: 18rem;
    background-color: #FFF;
    position: absolute;
    left: -10%;
    bottom: 0;
    transform: rotate(-6.55deg);
}
#movie01 h2 img {
    max-width: 60rem;
    margin-bottom: 3rem;
}
#movie01 .people {
    width: 100%;
    position: absolute;
    z-index: 2;
    bottom: -9rem;
}
#movie01 .people .photo {
    max-width: 110rem;
    width: 96%;
    margin: 0 auto 0;
    text-align: left;
}
#movie01 .people .photo img {
    width: 36rem;
}
#movie01 .movie_list ul li {
    border: 3px solid #ff93c6;
}
#movie01 .movie_list ul li::after {
    background-color: #ff93c6;
}
@media (max-width: 768px) {
    #movie01 h2 {
        width: 94vw;
        margin-left: auto;
        margin-right: auto;
    }
    #movie01 .people {
        bottom: -10vw;
    }
    #movie01 .people .photo img {
        max-width: 50vw;
    }
}
@media (max-width: 599px) {
    #movie01 {
        background: url(/nyushi/weboc/img/bg_movie01_sp.png) no-repeat center top;
        background-size: cover;
        margin-top: -4.5rem;
        padding: 2rem 0 11rem;
    }
    #movie01::after {
        height: 4.6rem;
    }
    #movie01 h2 img {
        max-width: 30rem;
        margin-bottom: 1rem;
    }
    #movie01 .people {
        bottom: -8.5rem;
    }
}

/* movie02 */
#movie02 {
    margin-top: -19rem;
    padding: 4rem 0 30rem;
    background: url(/nyushi/weboc/img/bg_movie02.png) no-repeat center top;
    background-size: cover;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 3;
}
#movie02::after {
    content: " ";
    display: block;
    width: 120%;
    height: 18rem;
    background-color: #FFF;
    position: absolute;
    left: -10%;
    bottom: 0;
    transform: rotate(-6.55deg);
}
#movie02 h2 img {
    max-width: 57.8rem;
    margin-bottom: 3rem;
}
#movie02 .movie_photo {
    border: 5px solid #0099ff;
}
#movie02 .movie_photo::after {
    background-color: #0099ff;
}
@media (max-width: 768px) {
    #movie02 {
        margin-top: -27.5vw;
        padding: 9vw 0 28vw;
    }
    #movie02 h2 {
        width: 94vw;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 599px) {
    #movie02 {
        background: url(/nyushi/weboc/img/bg_movie02_sp.png) no-repeat center top;
        background-size: cover;
        margin-top: -4.5rem;
        padding: 0 0 10rem;
    }
    #movie02::after {
        height: 4.6rem;
    }
    #movie02 h2 img {
        max-width: 30rem;
        margin-bottom: 1rem;
    }
}

/* movie03 */
#movie03 {
    margin-top: -19rem;
    padding: 8rem 0 30rem;
    background: url(/nyushi/weboc/img/bg_movie03.png) no-repeat center top;
    background-size: cover;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 3;
}
#movie03::after {
    content: " ";
    display: block;
    width: 120%;
    height: 18rem;
    background-color: #FFF;
    position: absolute;
    left: -10%;
    bottom: 0;
    transform: rotate(-6.55deg);
}
#movie03 .photo {
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
}
#movie03 .photo span {
    display: block;
    width: 100%;
    max-width: 96rem;
    margin: 0 auto;
    text-align: right;
}
#movie03 .photo img {
    width: 22rem;
}
#movie03 h2 img {
    max-width: 74rem;
    margin-bottom: 3rem;
}
#movie03 .movie_photo {
    border: 5px solid #66c733;
}
#movie03 .movie_photo::after {
    background-color: #66c733;
}
@media (max-width: 768px) {
    #movie03 h2 {
        width: 94vw;
        margin-left: auto;
        margin-right: auto;
    }
    #movie03 .photo {
        width: 20vw;
        right: 2vw;
        top: 10vw;
    }
}
@media (max-width: 599px) {
    #movie03 {
        background: url(/nyushi/weboc/img/bg_movie03_sp.png) no-repeat center top;
        background-size: cover;
        margin-top: -4.5rem;
        padding: 2rem 0 10rem;
    }
    #movie03::after {
        height: 4.6rem;
    }
    #movie03 h2 img {
        max-width: 36rem;
        margin-bottom: 1rem;
    }
    #movie03 .photo {
        top: 5vw;
    }
}


/* movie04 */
#movie04 {
    margin-top: -19rem;
    padding: 3rem 0 30rem;
    background: url(/nyushi/weboc/img/bg_movie04.png) no-repeat center top;
    background-size: cover;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 3;
}
#movie04::after {
    content: " ";
    display: block;
    width: 120%;
    height: 18rem;
    background-color: #FFF;
    position: absolute;
    left: -10%;
    bottom: 0;
    transform: rotate(-6.55deg);
}
#movie04 .photo {
    position: absolute;
    width: 100%;
    top: 3rem;
    left: 0;
}
#movie04 .photo span {
    display: block;
    width: 100%;
    max-width: 108rem;
    margin: 0 auto;
    text-align: left;
}
#movie04 .photo img {
    width: 24rem;
}
#movie04 h2 img {
    max-width: 77.4rem;
    margin-bottom: 3rem;
}
#movie04 .card {
    width: 90%;
    max-width: 53rem;
    margin: 3rem auto 0;
    display: block;
    line-height: 0;
}
#movie04 .card img{
	transform: scale(1);
	transition: .3s ease-in-out;
    position: relative;
    z-index: 1;
}
#movie04 .card:hover img{
	transform: scale(1.1);
}
#movie04 .card_bottom {
    margin-top: 12rem;
}
#movie04 .card {
    border: 3px solid #ff66ff;
}
#movie04 .card::after {
    background-color: #ff66ff;
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 1.4rem;
    left: 1.4rem;
    border-radius: 0.3rem;
}
#movie04 .movie_list ul li {
    border: 5px solid #ff66ff;
}
#movie04 .movie_list ul li::after {
    background-color: #ff66ff;
}
@media (max-width: 768px) {
    #movie04 h2 {
        width: 94vw;
        margin-left: auto;
        margin-right: auto;
    }
    #movie04 .photo {
        width: 20vw;
        left: 1vw;
        top: 26vw;
    }
    #movie04 .card {
        width: 80%;
        margin: 1.5rem auto 0;
    }
    #movie04 .card_bottom {
        margin-top: 3.5rem;
    }
}
@media (max-width: 599px) {
    #movie04 {
        background: url(/nyushi/weboc/img/bg_movie04_sp.png) no-repeat center top;
        background-size: cover;
        margin-top: -4.5rem;
        padding: 0 0 10rem;
    }
    #movie04::after {
        height: 4.6rem;
    }
    #movie04 h2 img {
        max-width: 38rem;
        margin-bottom: 1rem;
    }
    #movie04 .photo {
        top: 5vw;
    }
}

/* movie05 */
#movie05 {
    margin-top: -19rem;
    padding: 9rem 0 30rem;
    background: url(/nyushi/weboc/img/bg_movie05.png) no-repeat center top;
    background-size: cover;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 3;
}
#movie05::after {
    content: " ";
    display: block;
    width: 120%;
    height: 18rem;
    background-color: #FFF;
    position: absolute;
    left: -10%;
    bottom: 0;
    transform: rotate(-6.55deg);
}
#movie05 .photo {
    position: absolute;
    top: 2rem;
    right: 0;
    width: 100%;
}
#movie05 .photo span {
    display: block;
    width: 100%;
    max-width: 98rem;
    margin: 0 auto;
    text-align: right;
}
#movie05 .photo img {
    width: 30rem;
}
#movie05 h2 img {
    max-width: 62rem;
    margin-bottom: 3rem;
}
#movie05 .movie_list li {
    border: 3px solid #ff6666;
}
#movie05 .movie_list li::after {
    background-color: #ff6666;
}
.schedule {
    display: flex;
    flex-direction: column;
    margin: 5rem auto 3rem;
    width: 90%;
    max-width: 68rem;
}
.schedule dl {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
    margin-bottom: 3rem;
}
.schedule dl dt {
    font-size: 2.1rem;
    text-align: center;
    width: 6em;
    background-color: #FF6666;
    border: 2px solid #000;
    border-radius: 50px;
    padding: 0.6em 0;
}
.schedule dl dd {
    font-size: 2.0rem;
    text-align: left;
    line-height: 1.6;
}
@media (max-width: 768px) {
    #movie05 {
        margin-top: -37.5vw;
        padding: 22vw 0 34vw;
    }
    #movie05 h2 {
        width: 94vw;
        margin-left: auto;
        margin-right: auto;
    }
    #movie05 .photo {
        width: 34vw;
        right: 1vw;
        top: 12vw;
    }
    .schedule {
        margin-top: 3.5rem;
        margin-bottom: 1rem;
    }
    .schedule dl {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    .schedule dl dt {
        font-size: 1.2rem;
        border-width: 1px;
        min-width: 7.5rem;
    }
    .schedule dl dd {
        font-size: 1.2rem;
    }
}
@media (max-width: 599px) {
    #movie05 {
        background: url(/nyushi/weboc/img/bg_movie05_sp.png) no-repeat center top;
        background-size: cover;
        margin-top: -4.5rem;
        padding: 2rem 0 10rem;
    }
    #movie05::after {
        height: 4.6rem;
    }
    #movie05 h2 img {
        max-width: 32rem;
        margin-bottom: 1rem;
    }
    #movie05 .photo {
        top: 0;
    }
}

/* movie06 */
#movie06 {
    margin-top: -19rem;
    padding: 4rem 0 30rem;
    background: url(/nyushi/weboc/img/bg_movie06.png) no-repeat center top;
    background-size: cover;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 3;
}
#movie06::after {
    display: block;
    width: 120%;
    height: 18rem;
    background-color: #FFF;
    position: absolute;
    left: -10%;
    bottom: 0;
    transform: rotate(-6.55deg);
}
#movie06 .photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
#movie06 .photo span {
    display: block;
    width: 100%;
    max-width: 98rem;
    margin: 0 auto;
    text-align: left;
}
#movie06 .photo img {
    width: 15rem;
}
#movie06 h2 img {
    max-width: 74.8rem;
    margin-bottom: 3rem;
}
#movie06 .movie_photo {
    border: 3px solid #ff9600;
}
#movie06 .movie_photo::after {
    background-color: #ff9600;
}
@media (max-width: 768px) {
    #movie06 h2 {
        width: 94vw;
        margin-left: auto;
        margin-right: auto;
    }
    #movie06 .photo {
        width: 14vw;
        left: 2vw;
        top: 14vw;
    }
}
@media (max-width: 599px) {
    #movie06 {
        background: url(/nyushi/weboc/img/bg_movie06_sp.png) no-repeat center top;
        background-size: cover;
        margin-top: -4.5rem;
        padding: 0 0 10rem;
    }
    #movie06::after {
        height: 4.6rem;
    }
    #movie06 h2 img {
        max-width: 36rem;
        margin-bottom: 1rem;
    }
    #movie06 .photo {
        top: 5vw;
    }
}

/* movie_special */
#movie_special {
    margin-top: -26rem;
    padding: 21rem 0 20rem;
    background: url(/nyushi/weboc/img/bg_movie_special.png) no-repeat center 11rem;
    background-size: cover;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 5;
}
#movie_special::before {
    content: " ";
    display: block;
    width: 120%;
    height: 8rem;
    background-color: #FFF;
    position: absolute;
    left: -10%;
    top: 9em;
    transform: rotate(-6.55deg);
}
#movie_special::after {
    content: " ";
    display: block;
    width: 120%;
    height: 24rem;
    background-color: #FFF;
    position: absolute;
    left: -10%;
    bottom: -12rem;
    transform: rotate(-6.55deg);
}
#movie_special .photo {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
}
#movie_special .photo span {
    margin: 0 auto;
    max-width: 100rem;
    width: 100%;
    display: block;
    text-align: right;
}
#movie_special .photo img {
    width: 16rem;
}
#movie_special h2 {
    position: relative;
    z-index: 5;
}
#movie_special h2 img {
    max-width: 74.8rem;
    margin-bottom: 3rem;
}
.movie_list .special_movie_list li {
    width: 48%;
    margin-bottom: 4.6rem;
}

#movie_special .movie_list li .border {
    border: 5px solid #ff0066;
    overflow: visible;
}
#movie_special .movie_list figure {
    z-index: 2;
}
#movie_special .border .btn_pop::before {
    z-index: 3;
}
#movie_special .movie_list li .border::after {
    background-color: #ff0066;
    content: " ";
    display: block;
    width: 100%;
    height: 74%;
    position: absolute;
    top: 1.4rem;
    left: 1.0rem;
    border-radius: 0.3rem;
}
.movie_list .special_movie_list .profile {
    background-color: #ff0066;
    color: #FFF;
    width: 80%;
    margin: 0 auto;
    padding: 1em;
    position: relative;
    z-index: 2;
}
.movie_list .special_movie_list .profile p {
    font-size: 1.5rem;
    margin-bottom: 0.8em;
}
.movie_list .special_movie_list .profile p:last-of-type {
    margin-bottom: 0;
}
/*
#movie_special .btn_pop::before {
    display: none;
}*/
@media (max-width: 768px) {
    #movie_special h2 {
        width: 94vw;
        margin-left: auto;
        margin-right: auto;
    }
    #movie_special .photo {
        width: 16vw;
        right: 4vw;
        top: 0;
    }
    .movie_list .special_movie_list li {
        width: 80%;
        margin-bottom: 2rem;
    }
    .movie_list .special_movie_list .profile {
        width: 100%;
        padding: 0.5em;
    }
}
@media (max-width: 599px) {
    #movie_special {
        margin-top: -6rem;
        margin-bottom: 2rem;
        padding: 6rem 0 8rem;
        background: url(/nyushi/weboc/img/bg_movie_special_sp.png) no-repeat center 5rem;
        background-size: cover;
    }
    #movie_special::after {
        height: 5.6rem;
        bottom: -2rem;
    }
    #movie_special::before {
        display: none;
    }
    #movie_special h2 img {
        max-width: 36rem;
        margin-bottom: 1rem;
    }
    .movie_list .special_movie_list .profile p {
        font-size: 1.0rem;
    }
}



/* anim */
.fade_in {
    opacity: 0;
    transform: translateY(50%);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.visible {
    opacity: 1;
    transform: translateY(0);
}
.photo_rotate img {
    animation: rotate 0.5s infinite alternate;
}
@keyframes rotate {
    50% {
        transform: rotate(-3deg);
    }
    100% {
    transform: rotate(3deg);
    }
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 5px;
    z-index: 9999;
    padding: 2rem;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}
.close {
    display: block;
    width: 50%;
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
    background: #2d5b87;
    padding: 1.0rem;
    margin: 1.4rem auto 0;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}
.close:hover {
    opacity: 0.8;
}
.btn_pop {
    transition: 0.3s;
    cursor: pointer;
    overflow: hidden;
    line-height: 0;
    display: block;
    position: relative;
    z-index: 1;
}
.btn_pop::before {
    content: " ";
    display: block;
    width: 4.6rem;
    height: 4.6rem;
    position: absolute;
    top: calc(50% - 2.3rem);
    left: calc(50% - 2.3rem);
    background: url(/nyushi/weboc/img/icon_movie_arrow.png) no-repeat center center;
    background-size: cover;
    z-index: 1;
    transition: 0.3s;
}
.btn_pop img{
    transform: scale(1);
    transition: .3s ease-in-out;
}
.btn_pop:hover img{
    transform: scale(1.1);
}
.btn_pop:hover::before {
    opacity: 0.7;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@media (max-width: 768px) {
    .popup {
        width: 94%;
        padding: 1rem;
    }
    .popup iframe {
        width: 100%;
        height: auto;
    }
    .close {
        font-size: 1.2rem;
    }
}