@charset "utf-8";

* {
    padding: 0;
    margin: 0;
}

ul,
li {
    list-style: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

html,
body {
    font-size: 62.5%;
    position: relative;
    font-family: "Noto Sans JP", sans-serif;
}


.container {
    width: 90%;
    max-width: 90%;
}

.font-tit {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.l-header {
    position: relative;
    top: 6rem;
    width: 100%;
    z-index: 111;
}

.l-header .row .col-lg-2 .l-header--logo {
    position: relative;
    z-index: 1;
}

.l-header .l-header--logo>a {
    display: inline-block;
}

.l-header .l-header--logo>a>img {
    max-width: 240px;
    height: auto;
}

.l-header .l-header--nav {
    display: flex;
    justify-content: end;
    margin-top: 3rem;
}

.l-header .l-header--nav>li {}

.l-header .l-header--nav>li>a {
    display: block;
    padding: 0 2rem;
    font-size: 1.6rem;
    color: #ef8285;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 52px;
    height: 52px;
    position: relative;
    box-sizing: border-box;
}


.l-header .l-header--nav>li:last-child {
    margin-left: 2rem;
}

.l-header .l-header--nav>li:last-child>a {
    background: #ef8285;
    color: #fff;
    border-radius: 999px;
    width: 20rem;
    text-align: center;
    line-height: 52px;
}

.l-header .l-header--nav>li.cur>a::after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: url('../images/cur.png') no-repeat center/cover;
}

.l-header .l-header--nav>li:last-child>a::after {
    display: none;
}

.l-header .l-header--nav>li.cur>a {
    color: #707070;
}

.l-header .l-header--nav>li.cur:last-child>a {
    color: #fff;
}

.l-banner {
    position: relative;
    margin-top: -10rem;
}

.l-banner .swiper-slide img {
    width: 100%;
}

.l-new {
    position: absolute;
    left: 0;
    bottom: 5rem;
    width: 100%;
    z-index: 1;
}

.l-new .l-new--con {}

.l-new .l-new--item {}

.l-new .l-new--item>a {
    display: block;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
}

.l-new .l-new--item>a .cate {
    font-size: 1.8rem;
    color: #ef8285;
    letter-spacing: 1px;
    font-weight: 700;
    margin-right: 1rem;
}

.l-new .l-new--item>a .date {
    font-size: 1.8rem;
    color: #75757c;
    margin: 0 2rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.l-new .l-new--item>a .tit {
    font-size: 1.8rem;
    color: #000;
    font-weight: 600;
}

.l-sidenav {
    position: fixed;
    right: 3rem;
    bottom: 2rem;
    z-index: 11;
}

.l-sidenav .l-sidenav--con {
    background-color: #ef8285cc;
    border-radius: 999px;
    color: #fff;
    position: relative;
    width: 180px;
    height: 180px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.l-sidenav .l-sidenav--con p:nth-child(1) {
    font-size: 1.6rem;
    letter-spacing: 2px;
}

.l-sidenav .l-sidenav--con p:nth-child(2) {
    font-size: 2rem;
    line-height: 1.5;
}

.l-sidenav .l-sidenav--con .arrow {}

.l-sidenav .l-sidenav--con .arrow>img {
    width: 60px;
}

.l-sidenav .l-sidenav--con .close {
    position: absolute;
    right: 3rem;
    top: 10px;
    opacity: 1;
    cursor: pointer;
}

.l-sidenav .l-sidenav--con .close>img {
    width: 30px;
}


.l-title .en {
    font-size: 3.5rem;
    color: #EF8285;
    letter-spacing: 2px;
}

.l-title .jp {
    margin-left: 2rem;
    vertical-align: super;
    font-weight: 500;
    color: #707070;
    font-size: 1.8rem;
}

.l-title .jp::before,
.l-title .jp::after {
    display: inline-block;
    content: '';
    width: 6px;
    height: 6px;
    background: #75757C;
    border-radius: 999px;
    margin: 0 10px;
}

.l-button {
    text-align: right;
    margin-top: 6rem;
}

.l-button>a {
    font-size: 2.2rem;
    color: #EF8285;
    letter-spacing: 2.2px;
}

.l-button>a span {
    /*    vertical-align: text-bottom;*/
    margin-left: 10px;
}

.l-button>a span img {
    width: 56px;
    transition: all .2s;
    -webkit-transition: all .2s;
}

.l-button>a:hover {}

.l-button>a:hover span img {
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
}

.l-message {
    margin-top: 16rem;
    margin-bottom: 10rem;
    padding: 0 5%;
}

.l-message .l-message--con {
    width: 90%;
    margin: 4rem auto;
    display: flex;
    justify-content: space-around;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    -o-justify-content: space-around;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
}

.l-message .l-message--con_l {
    width: 50%;
    max-width: 531px;
}

.l-message .l-message--con_l>img {
    width: 100%;
}

.l-message .l-message--con_r {
    margin-left: 10rem;
    margin-top: 3rem;
}

.l-message .l-message--con_r h2 {
    font-size: 2.2rem;
    color: #EF8285;
    letter-spacing: 3.2px;
    line-height: 1.5;
}

.l-message .l-message--con_r p {
    font-size: 1.4rem;
    color: #000000;
    letter-spacing: 2.4px;
    line-height: 1.5;
    font-weight: 300;
    margin-top: 3rem;
}


@media (max-width: 768px) {
    .l-message .l-message--con_r p {
        font-size: 1.8rem;
    }
}




.l-message .l-message--con_txt {
    margin-top: 3rem;
}

.l-message .l-message--con_txt p {
    font-size: 1.6rem;
    color: #EF8285;
    letter-spacing: 2.4px;
    line-height: 2;
    text-align: center;
    margin-top: 10rem;
    font-weight: 400;
}

.l-message .l-message--con_pic {
    margin-top: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    display: none;
}

.l-message .l-message--con_pic>img {
    max-width: 600px;
    width: 80%;
    margin: 0 auto;
}


.l-interview {
    padding-top: 12rem;
    padding-bottom: 30rem;
    position: relative;
    background: rgba(239, 130, 133, 0.15);
}

.l-interview .l-title {
    text-align: center;
    margin-bottom: 8rem;
}

.l-interview .l-interview--con {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: end;
    -webkit-justify-content: end;
    -moz-justify-content: end;
    -ms-justify-content: end;
    -o-justify-content: end;
}

.l-interview .l-interview--con_l {
    width: 50%;
    position: absolute;
    left: 0;
    top: 58%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.l-interview .l-interview--con_l>img {
    width: 100%;
}

.l-interview .l-interview--con_r {
    width: 46%;
}

.l-interview .l-interview--con_r h2 {
    font-size: 2.2rem;
    color: rgba(112, 112, 112, 1);
    letter-spacing: 3.2px;
    line-height: 1.5;
}

.l-interview .l-interview--con_r p {
    font-size: 1.4rem;
    color: rgba(112, 112, 112, 1);
    letter-spacing: 2.4px;
    line-height: 1.5;
    font-weight: 400;
    margin-top: 3rem;
}


.l-aboutus {
    padding-top: 12rem;
    padding-bottom: 32rem;
    position: relative;
    background: rgba(249, 248, 246, 1);
}

.l-aboutus .l-title {
    margin-bottom: 6rem;
}

.l-aboutus .l-aboutus--con {
    width: 90%;
    margin: 0 auto;
    display: flex;
}

.l-aboutus .l-aboutus--con_l {
    width: 50%;
    position: absolute;
    right: 0;
    top: 12rem;
}

.l-aboutus .l-aboutus--con_l>img {
    width: 100%;
}

.l-aboutus .l-aboutus--con_r {
    width: 46%;
}

.l-aboutus .l-aboutus--con_r h2 {
    font-size: 2.2rem;
    color: rgba(112, 112, 112, 1);
    letter-spacing: 3.2px;
    line-height: 1.5;
    font-weight: 400;
}

.l-aboutus .l-button {
    margin-right: 6rem;
}


.l-movie {
    padding: 10rem 0 0 0;
    margin-bottom: 35rem;
}

.l-movie .l-title {
    text-align: center;
}

.l-movie h2 {
    font-size: 2.2rem;
    color: rgba(112, 112, 112, 1);
    max-width: 810px;
    margin: 6rem auto;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 2px;
}

.l-movie .l-movie--con {
    margin-top: -10rem;
    position: relative;
    bottom: -10rem;
}

.l-movie .l-movie--con ul {
    display: flex;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
}

.l-movie .l-movie--con ul li {
    width: 480px;
    height: 480px;
    background: rgba(239, 130, 133, 0.8);
    border-radius: 30px;
    margin: 0 4rem;
}

.l-movie .l-movie--con ul li video {
    margin-left: 5rem;
    margin-top: 5%;
}

.l-links {
    margin-bottom: 28rem;
}

.l-links .l-links--item {
    display: block;
}

.l-links .l-links--item>a {
    width: 80%;
    display: block;
    border: 1px solid rgba(112, 112, 112, 1);
    border-radius: 999px;
    max-width: 600px;
    margin: 5rem auto;
    text-align: center;
    padding: 2rem 0 3rem 0;
    color: rgba(112, 112, 112, 1);
}



.l-links .l-links--item .l-title {
    margin-bottom: 0rem;
}

.l-links .l-links--item .l-title span {
    display: inline-block;
}

.l-links .l-links--item>a:hover {
    background-color: #EF8285;
    color: #fff;
    transition: all .2s;
    -webkit-transition: all .2s;
    border-color: #EF8285;
}

.l-links .l-links--item>a:hover .l-title span {
    color: #fff;
}

.l-links .l-links--item>a:hover .l-title.l-title .jp::before,
.l-links .l-links--item>a:hover .l-title.l-title .jp::after {
    background: #fff;
}

.l-footer {
    background: rgba(112, 112, 112, 1);
    padding: 10rem 0 8rem 0;
}

.l-footer .l-sns {
    margin-bottom: 8rem;
}

.l-footer .l-sns ul {
    display: flex;
    justify-content: center;
}

.l-footer .l-sns ul li {}

.l-footer .l-sns ul li>a {
    display: block;
    margin: 0 2rem;
}

.l-footer .l-sns ul li>a img {
    max-width: 60px;
}

.l-footer .addr {
    font-size: 2.8rem;
    letter-spacing: 2.8px;
    color: #fff;
    font-weight: 200;
}

.l-footer .addr span {
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 200;
    margin-left: 4rem;
}

.l-footer .l-footer--con {
    border-top: 1px solid #fff;
    padding-top: 2rem;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
}

.l-footer .l-footer--con .copyright {
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 200;
}

.l-footer .l-footer--con .nav {
    margin-right: 12rem;
    width: 100%;
}

.l-footer .l-footer--con .nav li {}

.l-footer .l-footer--con .nav li>a {
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 200;
}

.l-footer .l-footer--con .nav li>a::after {
    content: '';
    height: 18px;
    width: 1px;
    background: #fff;
    margin: 0 2rem;
    display: inline-block;
    vertical-align: middle;
}

.l-footer .l-footer--con .nav li:last-child>a::after {
    display: none;
}

.messagePage .l-title,
.interviewPage .l-title,
.interviewDetail .l-title,
.aboutPage .l-title,
.requirePage .l-title,
.newPage .l-title,
.faqPage .l-title,
.entryPage .l-title {
    text-align: center;
    margin-bottom: 10rem;
}

.messagePage .l-title span,
.interviewPage .l-title span,
.interviewDetail .l-title span,
.aboutPage .l-title span,
.requirePage .l-title span,
.newPage .l-title span,
.faqPage .l-title span,
.entryPage .l-title span {
    display: block;
}


.messagePage .l-message .l-message--con {
    width: 100%;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
}

.l-message .l-message--con_l {
    max-width: 595px;
}

.l-message .l-message--con_r {
    width: 50%;
}



.p-message {
    margin-top: 0rem;
    margin-bottom: 12rem;
}

.p-message .p-button {
    font-size: 2.4rem;
    color: #707070;
    letter-spacing: 3.2px;
    margin-top: 5rem;
}

.p-message .p-button>a {
    display: block;
    color: #707070;
    text-align: center;
}

.p-message .p-button>a img {
    width: 68px;
}

.p-message .p-button>a:hover img {
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transition: all .2s;
    -webkit-transition: all .2s;
}

.p-message .l-homeButt {
    margin-top: 1rem;
}

.p-message .l-homeButt>a {
    display: block;
    background: #707070;
    max-width: 250px;
    margin: 7rem auto;
    color: #fff;
    text-align: center;
    line-height: 50px;
    border-radius: 999px;
    font-size: 2rem;
    letter-spacing: 2.8px;
    font-weight: 200;
}

.p-message .l-homeButt>a:hover {
    background: #EF8285;
}

.interviewPage {
    background: #EF828526;
    padding: 8rem 5%;
    margin-top: 10rem;
}

.interviewPage .p-interview--con {
    width: 90%;
    margin: 0 auto;
}

.interviewPage .p-interview--item {
    background: url('../images/ibg.png') no-repeat center/cover;
    background-size: 668px 100%;
    position: relative;
    max-width: 668px;
    width: 90%;
    padding-bottom: 9rem;
    padding-top: 20rem;
    margin-bottom: 10rem;
}

.interviewPage .p-interview--item:nth-child(2n+2) {
    margin-left: auto;
    margin-top: -2rem;
}

.interviewPage .p-interview--item:nth-child(3n+3) {
    margin-left: 15rem;
}

.interviewPage .p-interview--item .img {
    position: absolute;
    right: -2rem;
    top: 0;
    width: 50%;
    text-align: right;
    max-width: 240px;
}

.interviewPage .p-interview--item .img>img {
    width: 100%;
}

.interviewPage .p-interview--item .info {
    width: 80%;
    margin-left: 7%;
    position: relative;
}

.interviewPage .p-interview--item .info h2 {
    font-size: 4rem;
    color: #EF8285;
    letter-spacing: 4.8px;
    font-family: "Righteous", sans-serif;
}




@media (max-width: 768px) {
    .interviewPage .p-interview--item .info h2 {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }
}







.interviewPage .p-interview--item .info P {
    font-size: 2.2rem;
    color: #707070;
    letter-spacing: 2.2px;
}

.interviewPage .p-interview--item .l-button {
    margin-top: 22rem;
    text-align: center;
}

.interviewDetail {
    margin-top: 10rem;
    padding: 0 5%;
}

.interviewDetail .interviewDetail-con {}

.interviewDetail .interviewDetail-con--t {
    position: relative;
}

.interviewDetail .interviewDetail-con--t .img {

    max-width: 1000px;
    margin: 0 auto;
}

.interviewDetail .interviewDetail-con--t .img>img {
    width: 100%;
}

.interviewDetail .interviewDetail-con--t .info {
    position: absolute;
    right: 15%;
    top: 27%;
}

.interviewDetail .interviewDetail-con--t .info h2 {
    font-size: 3.6rem;
    color: #EF8285;
    letter-spacing: 2.8px;
    font-family: "Righteous", sans-serif;
}

.interviewDetail .interviewDetail-con--t .info p {
    font-size: 2.2rem;
    color: #707070;
    letter-spacing: 2.2px;
}

.interviewDetail .interviewDetail-con--t .txt {
    background: #EF8285;
    border-radius: 150px;
    padding: 6rem 8rem;
    position: absolute;
    bottom: 0;
    right: 2%;
    max-width: 600px;
}

.interviewDetail .interviewDetail-con--t .txt p {
    color: #FFFFFF;
    font-size: 2rem;
    letter-spacing: 2.5px;
    text-align: left;
}

.interviewDetail .con {
    margin-top: 15rem;

}

.interviewDetail .con h4 {
    font-size: 2.2rem;
    color: #000000;
    letter-spacing: 2.8px;
    margin-top: 12rem;
    margin-bottom: 5rem;
}

.interviewDetail .con h4::before,
.interviewDetail .interviewDetail--item .txt h2::before {
    content: '';
    display: inline-block;
    width: 36px;
    height: 1px;
    background-color: #707070;
    vertical-align: middle;
    margin-right: 2rem;
}

.interviewDetail .con p {
    font-size: 1.6rem;
    color: #000000;
    letter-spacing: 2.4px;
    margin-top: 5rem;
    font-weight: 300;
}

.interviewDetail .interviewDetail-con--b {}

.interviewDetail .interviewDetail--item {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 15rem;
}

.interviewDetail .interviewDetail--item .img {
    width: 80%;
    margin-top: 5rem;
    max-width: 600px;
}

.interviewDetail .interviewDetail--item .img>img {
    width: 100%;
}

.interviewDetail .interviewDetail--item .txt {
    width: 40%;
    position: absolute;
    right: 0;
}

.interviewDetail .interviewDetail--item .txt h2 {
    font-size: 2.2rem;
    color: #000000;
    line-height: 1.8;
}

.interviewDetail .interviewDetail--item .txt p {
    margin-top: 5rem;
    font-size: 1.6rem;
    color: #000000;
    line-height: 1.8;
    letter-spacing: 2.4px;
    font-weight: 300;
}

.interviewDetail .interviewDetail--item:nth-child(2n+2) {}

.interviewDetail .interviewDetail--item:nth-child(2n+2) .img {
    margin-left: auto;
    margin-top: 20rem;
}

.interviewDetail .interviewDetail--item:nth-child(2n+2) .txt {
    left: 0;
}

.interviewDetail-other {
    margin-top: 18rem;
    display: flex;
    justify-content: space-between;
}

.interviewDetail-other--item {
    position: relative;
    padding: 3%;
    width: calc(100% / 2 - 5%);
    border-radius: 30px;
    border: 1px solid #EF8285;
}

.interviewDetail-other--item .img {
    position: absolute;
    right: -2rem;
    bottom: 0;
    width: 30%;
    max-width: 120px;
}

.interviewDetail-other--item .img>img {
    width: 100%;
}

.interviewDetail-other--item .info {
    position: relative;
}

.interviewDetail-other--item .info h2 {
    font-size: 4.2rem;
    color: #EF8285;
    letter-spacing: 2.1px;
    margin-bottom: 2rem;
    font-family: "Righteous", sans-serif;
}

@media (max-width: 767px) {
    .interviewDetail-other--item .info h2 {
        font-size: 3.2rem;
    }
}





.interviewDetail-other--item .info p {
    font-size: 1.8rem;
    color: #707070;
    line-height: 2;
}

.interviewDetail-other--item .l-button {
    text-align: center;
}

.interviewDetail .p-message {
    margin-bottom: 15rem;
}

.aboutPage,
.newDetail {
    margin: 16rem auto 0 auto;
    padding: 0 5%;
    max-width: 1200px;
}

.aboutPage .aboutPage-top {
    display: flex;
    justify-content: space-between;
    margin-top: 15rem;
}

.aboutPage .aboutPage-top-l {
    width: 50%;
}

.aboutPage .aboutPage-top-l h2,
.aboutPage .aboutPage-b h2 {
    font-size: 2.2rem;
    color: #EF8285;
}

.aboutPage .aboutPage-top-l .txt,
.aboutPage .aboutPage-b .txt {
    margin-top: 3rem;
}

.aboutPage .aboutPage-top-l .txt p,
.aboutPage .aboutPage-b .txt p {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 3rem;
    line-height: 1.8;
}


@media (max-width: 768px) {

    .aboutPage .aboutPage-top-l .txt p,
    .aboutPage .aboutPage-b .txt p {
        font-size: 1.8rem;
    }
}




.aboutPage .aboutPage-top-r {
    width: 40%;
}

.aboutPage .aboutPage-top-r .img {
    margin-bottom: 2rem;
}

.aboutPage .aboutPage-top-r .img>img {
    width: 100%;
    max-width: 400px;
}

.aboutPage-b {
    margin-top: 0rem;
    text-align: center;
}

.aboutPage-b .txt img {
    width: 90%;
}

.requirePage {
    margin-top: 16rem;
    padding: 0 5%;
}

.requirePage nav {
    margin-top: 10rem;
}

.requirePage nav ul {
    display: flex;
    justify-content: space-around;
}

.requirePage nav ul li {
    width: 30%;
    max-width: 400px;
}

.requirePage nav ul li>a {
    display: block;
    font-size: 2rem;
    color: #707070;
    padding: 5% 3%;
    border: 1px solid #707070;
    border-radius: 999px;
    text-align: center;
}

.requirePage nav ul li>a:hover,
.requirePage nav ul li.cur>a,
.requirePage nav ul li.cur>a:hover {
    border-color: #EF8285;
    color: #EF8285;
}

.requirePage .requirePage-con {
    margin-top: 10rem;
    margin-bottom: 10rem;
}



@media (max-width: 768px) {
    .requirePage .requirePage-con {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }
}



.requirePage .requirePage-con table,
.requirePage .requirePage-con table tbody {
    width: 100%;
    display: block;
}

.requirePage .requirePage-con table tr {
    border-bottom: 1px solid #707070;
    display: flex;
    padding: 2% 0;
    width: 100%;
}

.requirePage .requirePage-con table tr td:nth-child(1) {
    font-size: 1.8rem;
    color: #707070;
    width: 250px;
}

.requirePage .requirePage-con table tr td:nth-child(2) {
    font-size: 1.6rem;
    color: #000000;
    margin-left: 3%;
    line-height: 2;
    width: calc(100% - 3% - 250px);
}

.requirePage .requirePage-con table tr td img {
    width: 100%;
}

.requirePage .l-links {
    margin-bottom: 5rem;
}

.requirePage .p-message {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.newPage {
    margin-top: 16rem;
    padding: 0 5%;
}

.newPage .newPage-con {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.newPage .newPage-item {
    width: 48%;
    margin-bottom: 5rem;
}

.newPage .newPage-item>a {
    display: flex;
    width: 100%;
    align-items: center;
}

.newPage .newPage-item>a .img {
    width: 30%;
    max-width: 110px;
}

.newPage .newPage-item>a .img>img {
    width: 100%;
}

.newPage .newPage-item>a .txt {
    margin-left: 6%;
}

.newPage .newPage-item>a .txt .cate {
    font-size: 1.8rem;
    color: #707070;
}

.newPage .newPage-item>a .txt h2 {
    font-size: 2.2rem;
    color: #000000;
    margin-bottom: 1rem;
}

.newPage .newPage-item>a .txt .date {
    font-size: 1.6rem;
    color: #7C7C7C;
    margin-bottom: 0;
}

.l-prevnext {
    margin-top: 8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.l-prevnext .first {}

.l-prevnext .first>a {
    font-size: 2rem;
    color: #EF8285;
}

.l-prevnext .first>a img {
    display: inline-block;
    width: 15px;
    vertical-align: sub;
    margin-right: 10px;
}

.l-prevnext .arrow {}

.l-prevnext .arrow>a {
    display: inline-block;
    vertical-align: middle;
    border-radius: 5px;
    border: 2px solid #EF8285;
    padding: 6px;
    margin-right: 2;
    margin: 0 6px;
}

.l-prevnext .arrow>a img {
    width: 20px;
    vertical-align: sub;
    display: inline-block;
}

.l-prevnext .arrow>a img.cur {
    display: none;
}

.l-prevnext .arrow>a span {
    color: #fff;
    opacity: 0;
    filter: opacity(0%);
    transition: all .3s;
    line-height: 1;
    vertical-align: text-bottom;
    font-size: 0;
}

.l-prevnext .arrow>a:hover {
    background: #EF8285;
}

.l-prevnext .arrow>a:hover span {
    opacity: 1;
    filter: opacity(100%);
    font-size: 1.6rem;
}

.l-prevnext .arrow>a:nth-child(1):hover span {
    margin-left: 10px;
}

.l-prevnext .arrow>a:nth-child(2):hover span {
    margin-right: 10px;
}

.l-prevnext .arrow>a:hover img:not(.cur) {
    display: none;
}

.l-prevnext .arrow>a:hover img.cur {
    display: inline-block;
}

.newPage .p-message {
    margin-top: 10rem;
}

.faqPage {
    margin-top: 16rem;
    padding: 0 5%;
}

.faqPage .faqPage-con {}

.faqPage .faqPage-con h2 {
    font-size: 2.2rem;
    color: #707070;
    font-weight: 500;
    margin-bottom: 5rem;
    margin-top: 15rem;
}

.faqPage .faqPage-con ul li h4 {
    font-size: 1.8rem;
    color: #707070;
    position: relative;
    border-bottom: 1px solid #EF8285;
    padding-bottom: 2%;
    cursor: pointer;
}

.faqPage .faqPage-con ul li h4 span {
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    border: 1px solid #EF8285;
    border-radius: 999px;

}


@media (max-width: 768px) {

    /* 适用于移动设备 */
    .faqPage .faqPage-con ul li h4 span {
        width: 20px;
        height: 20px;

        top: -5px;
    }
}


.faqPage .faqPage-con ul li h4 span::before,
.faqPage .faqPage-con ul li h4 span::after {
    content: '';
    width: 50%;
    height: 2px;
    display: inline-block;
    background: #EF8285;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faqPage .faqPage-con ul li h4 span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faqPage .faqPage-con ul li h4.cur span::after {
    display: none;
}

.faqPage .faqPage-con ul li .info {
    margin-top: 2%;
    display: none;
    padding-bottom: 10px;
}

.faqPage .faqPage-con ul li .info p {
    font-size: 1.6rem;
    color: #707070;
}

.entryPage {
    margin-top: 16rem;
    padding: 0 5%;
}

.entryPage-con {
    max-width: 900px;
    margin: 0 auto;
}

.entryPage-con form {}

.entryPage-con form .item {
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid #e0e0e0;
}

.entryPage-con form .item label {
    font-size: 2rem;
    color: #000;
    margin-bottom: 2%;
}

.entryPage-con form .item label span {
    font-size: 1.3rem;
    color: #fff;
    padding: 3px 6px;
    background: #EF8285;
    vertical-align: middle;
    border-radius: 5px;
    margin-right: 10px;
}

.entryPage-con form .item input {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    padding: 10px;
    font-size: 2rem;
    color: #333;
}

.entryPage-con form .item textarea {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    padding: 8px;
    height: 300px;
    font-size: 2rem;
    color: #333;
}

.entryPage-con form .item:last-child {
    border: none;
    text-align: center;
    margin-bottom: 15rem;
    margin-top: 8rem;
}

.entryPage-con form .item button {
    width: 80%;
    max-width: 300px;
    color: #fff;
    background: #0e6eb8;
    text-align: center;
    line-height: 50px;
    border-radius: 999px;
    border: none;
    font-size: 2rem;
    letter-spacing: 2px;
    cursor: pointer;
}

.entryPage-con form .item input:focus-visible {
    border-color: #EF8285;
    outline: #EF8285;
}

.entryPage-con form .item button:hover {
    opacity: .8;
    filter: opacity(80%);
}

.newDetail .aboutPage-top-l {
    width: 100%;
    text-align: center;
}

.newDetail .aboutPage-top-l p.date {
    font-size: 1.6rem;
    color: #707070;
    margin-bottom: 2rem;
}

.l-header .menu {
    display: none;
}

.requireList {
    
    text-align: center;
	margin-top: 16rem;
    padding: 0 5%;
}

.requireList .l-title .jp {
    display: block;
}

.requireList .requireList-t {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 10rem;
}

.requireList .requireList-t--l {
    width: 80%;
    max-width: 600px;
}

.requireList .requireList-t--l img {
    width: 100%;
}

.requireList .requireList-t--r {
    text-align: left;
    width: 35%;
}

.requireList .requireList-t--r>p {
    font-size: 2.2rem;
}

.requireList .requireList-t--r .nav {
    margin-top: 4rem;
    width: 100%;
}

.requireList .requireList-t--r .nav>li {
    width: 100%;
    margin-bottom: 3rem;
}

.requireList .requireList-t--r .nav>li>a {
    display: block;
    font-size: 2.8rem;
    color: #707070;
    font-weight: 300;
    width: 100%;
    position: relative;
}



@media (max-width: 768px) { 
    .requireList {
        margin-top: 10rem;
    }
}




.requireList .requireList-t--r .nav>li>a span {
    display: inline-block;
    width: 250px;
	margin-bottom: 1.5rem;
}

.requireList .requireList-t--r .nav>li>a img {
    display: inline-block;
    margin-left: 30px;
    width: 68px;
    transition: all .2s;
    -webkit-transition: all .2s;
}

.requireList .requireList-t--r .nav>li>a:hover img {
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
}

.requireList .requireList-m {
    margin-top: 8rem;
}

.requireList .requireList-m h3 {
    font-size: 3rem;
    color: #EF8285;
    letter-spacing: 1px;
}

.requireList .requireList-m h3::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 36px;
    background: #EF8285;
    transform: rotate(-45deg);
    margin-right: 30px;
    vertical-align: middle;
}

.requireList .requireList-m h3::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 36px;
    background: #EF8285;
    transform: rotate(45deg);
    margin-left: 30px;
    vertical-align: middle;
}

.requireList .requireList-m--con {
    width: 90%;
    background: #EF8285;
    border-radius: 30px;
    padding: 1%;
    margin: 4rem auto;
}

.requireList .requireList-m--con>div {
    border-radius: 20px;
    padding: 2%;
    border: 1px solid #fff;
}

.requireList .requireList-m--con p:nth-child(1) {
    font-size: 2.4rem;
    color: #fff;
    font-weight: 500;
}



@media (max-width: 768px) { 
    .requireList .requireList-m--con p:nth-child(1) {
        font-size: 1.4rem;
    }
}




.requireList .requireList-m--con p:nth-child(2) {
    font-size: 3rem;
    color: #fff;
    font-weight: 600;
}



.requireList .requireList-m--con p:nth-child(2) span {
    font-size: 3rem;
    font-weight: 500;
    display: inline-block;
    margin: 0 5px;
}

.requireList .requireList-m--con p:nth-child(2) span i {
    font-style: normal;
    font-size: 1.2rem;
    vertical-align: middle;
    margin-left: 3px;
    letter-spacing: 3px;
}

.requireList .requireList-b {
    margin-top: 12rem;
    margin-bottom: 12rem;
}

.requireList .requireList-b h2 {
    color: #EF8285;
    font-size: 3rem;
    text-align: center;
    letter-spacing: 1px;
}

.requireList .requireList-b h2 span {
    font-size: 1.6rem;
    color: #000000;
    font-weight: 400;
    margin-left: 3%;
}

.requireList .requireList-b--con {
    width: 90%;
    margin: 3rem auto;
    display: flex;
    flex-wrap: wrap;
}

.requireList .requireList-b--item {
    display: flex;
    width: 46%;
    margin: 2%;
    border: 1px solid #707070;
    border-radius: 30px;
    padding: 30px;
}

.requireList .requireList-b--l {
    width: 32px;
}

.requireList .requireList-b--l img {
    width: 100%;
}

.requireList .requireList-b--r {
    margin-left: 3rem;
}

.requireList .requireList-b--r h3 {
    text-align: left;
    font-size: 2.4rem;
    color: #707070;
    line-height: 1;
    margin-bottom: 3rem;
}

.requireList .requireList-b--r p {
    font-size: 1.8rem;
    color: #000000;
    text-align: left;
}

.requireList .requireList-b--r p span {}

.requireList .l-links {
    margin-bottom: 10rem;
}

@media (max-width: 1400px) {

    html,
    body {
        font-size: 52.5%;
    }

    .l-header .l-header--logo>a>img {
        max-width: 240px;
        height: auto;
    }

    .l-header .l-header--nav>li>a {}

    .l-header .l-header--nav {
        margin-top: 1rem;
    }

    .l-header .l-header--nav>li:last-child>a {}
}

@media (max-width: 1200px) {

    html,
    body {
        font-size: 42.5%;
    }

    .l-header .l-header--logo>a>img {
        max-width: 140px;
        height: auto;
    }

    .l-header .l-header--nav>li>a {}

    .l-header .l-header--nav {
        margin-top: 0;
    }

    .l-header .l-header--nav>li:last-child>a {
        width: 18rem;
    }
}

@media (max-width: 992px) {

    html,
    body {
        font-size: 42.5%;
    }

    .container {
        width: 100%;
        max-width: 100%;
    }

    .l-header {
        top: 0;
    }

    .l-header.open {
        position: fixed;
        top: 0;
        z-index: 111;
        background: rgba(239, 130, 133, 1);
        width: 100%;
        height: 100vh;
    }

    .l-header .row>div.col-lg-2 {
        display: flex;
        display: inline-flex;
        align-items: center;
        margin-top: 3rem;
    }

    .l-header .menu {
        display: block;
        width: 60px;
        margin-left: auto;
    }

    .l-header .menu span {
        display: block;

    }

    .l-header .menu span::before,
    .l-header .menu span::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: #333;
        margin: 8px 0;
        transition: all .3s;

    }

    .l-header.open .menu span::before {
        transform: translateY(10px) rotate(45deg);
        -webkit-transform: translateY(10px) rotate(45deg);
    }

    .l-header.open .menu span::after {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }

    .l-header .l-header--nav {
        width: 100%;
        height: 100vh;
        padding-top: 6rem;
        position: absolute;
        left: 0;
        display: none;
        transition: all .3s;
    }

    .l-header .l-header--nav li {
        width: 100%;
        text-align: center;
        margin: 2rem 0;
        padding-bottom: 2rem;
        border-bottom: 1px solid #ffffff3d;
    }

    .l-header .l-header--nav li:last-child {
        margin-left: 0;
    }

    .l-header .l-header--nav>li:last-child>a {
        background-color: transparent;
        width: 100%;
    }

    .l-header .l-header--nav>li>a {
        color: #fff;
    }

    .l-header.open .l-header--nav {
        display: block;
    }

    .l-sidenav {
        right: 2rem;
        bottom: 5rem;
    }

    .l-sidenav .l-sidenav--con {
        width: 100px;
        height: 100px;
    }

    .l-sidenav .l-sidenav--con p:nth-child(1),
    .l-sidenav .l-sidenav--con p:nth-child(2) {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .l-sidenav .l-sidenav--con .arrow>img {
        width: 30px;
    }

    .l-sidenav .l-sidenav--con .close {
        top: 0;
        right: -1rem;
    }

    .l-sidenav .l-sidenav--con .close>img {
        width: 30px;
    }

    .l-title {
        text-align: center;
    }

    .l-title>span {
        display: block;
    }

    .l-message .l-message--con,
    .l-aboutus .l-aboutus--con,
    .l-aboutus .l-aboutus--con_r {
        display: block;
        width: 100%;
    }

    .l-message .l-message--con>div {
        width: 100%;
        margin-top: 6rem;
        margin-left: 0;
    }

    .l-button {
        text-align: center;
    }

    .l-message .l-message--con_txt p {
        font-size: 2.2rem;
        text-align: left;
    }

    .l-interview,
    .l-aboutus {
        padding-bottom: 12rem;
    }

    .l-interview .l-interview--con_l,
    .l-interview .l-interview--con,
    .l-interview .l-interview--con_r,
    .l-aboutus .l-aboutus--con_l,
    .l-movie .l-movie--con ul,
    .l-movie .l-movie--con ul li,
    .l-footer .l-footer--con,
    .aboutPage .aboutPage-top,
    .aboutPage .aboutPage-top>div,
    .interviewDetail .interviewDetail-con--t .txt,
    .interviewDetail .interviewDetail--item,
    .interviewDetail .interviewDetail--item .img,
    .interviewDetail .interviewDetail--item .txt,
    .interviewDetail-other--item,
    .interviewDetail-other,
    .newPage .newPage-con,
    .newPage .newPage-item,
    .requirePage .requirePage-con table tr,
    .requireList .requireList-t,
    .requireList .requireList-t--l {
        display: block;
        width: 100%;
        position: static;
        transform: none;
        margin-top: 10rem;
    }

    .l-interview .l-interview--con_r h2,
    .l-aboutus .l-aboutus--con_r h2,
    .l-movie h2 {
        font-size: 2rem;
        text-align: center;
    }

    .l-interview .l-interview--con_r p {
        font-size: 1.8rem;
        text-align: center;
    }

    .l-interview .l-interview--con_l,
    .l-aboutus .l-aboutus--con_l {
        margin-top: 8rem;
    }

    .l-movie .l-movie--con ul li {
        margin: 0 0 5rem 0;
    }

    .l-movie .l-movie--con {
        margin-top: -10rem;
    }

    .l-movie .l-movie--con ul li {
        width: 90%;
        height: 350px;
    }

    .l-links .l-links--item .l-title span {
        display: block;
    }

    .l-movie {
        margin-bottom: 25rem;
    }

    .l-links {
        margin-bottom: 18rem;
    }

    .l-links .l-links--item>a,
    .aboutPage .aboutPage-top-r {
        margin: 6rem auto;
    }

    .l-footer .l-sns ul li>a img {
        width: 50px;
    }

    .l-footer .l-footer--con .copyright,
    .l-footer .l-footer--con .nav li>a {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .l-footer .addr,
    .interviewDetail .interviewDetail-con--t .txt p {
        font-size: 2rem;
        text-align: center;
    }


    .l-footer .addr span {
        display: block;
        margin-left: 0;
        font-size: 1.8rem;
        margin-top: 1rem;
    }

    .aboutPage-b {
        margin-top: 0rem;
    }

    .aboutPage-b .txt img {
        width: 100%;
    }

    .interviewPage .p-interview--item {
        width: 100%;
        max-width: 100%;
        background-size: 100% 100%;
    }

    .interviewPage .p-interview--item:nth-child(2n+2),
    .interviewPage .p-interview--item:nth-child(3n+3) {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 10rem;
        margin-top: 0;
    }

    .interviewPage .p-interview--item .img>img {
        max-width: 170px;
    }

    .interviewDetail .interviewDetail-con--t .txt {
        margin-top: 3rem;
        padding: 5rem 4rem;
    }

    .interviewDetail .interviewDetail-con--t .info p {
        text-align: right;
    }

    .interviewDetail .con h4,
    .interviewDetail .interviewDetail--item .txt h2,
    .requirePage nav ul li>a {
        font-size: 2.2rem;
    }

    .interviewDetail .con p,
    .interviewDetail .interviewDetail--item .txt p {
        font-size: 1.6rem;
    }

    .interviewDetail .interviewDetail--item .img {
        margin: 6rem 0;
    }

    .interviewDetail .interviewDetail--item:nth-child(2n+2) .img {
        margin-top: 6rem;
    }

    .interviewDetail-other--item {
        margin: 12rem 0;
        position: relative;
        padding: 8%;
    }

    .interviewDetail-other--item .l-button {
        margin-top: 4rem;
    }

    .aboutPage,
    .newDetail,
    .newPage,
    .l-message,
    .requirePage,
    .entryPage,
    .faqPage {
        margin-top: 10rem;
    }

    .requirePage .requirePage-con table tr {
        margin-bottom: 3rem;
    }

    .requirePage .requirePage-con table tr td:nth-child(1),
    .requirePage .requirePage-con table tr td:nth-child(2) {
        width: 100%;
        display: block;
        margin-left: 0;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .l-header .l-header--nav>li.cur:last-child>a {
        color: #707070;
    }

    .requireList .requireList-m h3 {
        font-size: 1.8rem;
    }

    .requireList .requireList-m h3::before {
        height: 28px;
        margin-right: 22px;
    }

    .requireList .requireList-m h3::after {
        height: 28px;
        margin-left: 22px;
    }

    .requireList .requireList-b h2 span {
        display: block;
        margin-left: 0;
        margin-top: 2rem;
    }

    .requireList .requireList-t--r {
        display: block;
        width: 100%;
        margin-top: 5rem;
    }

    .requireList .requireList-b--con {
        display: block;
        margin-top: 5rem;
    }

    .requireList .requireList-b--item {
        width: 100%;
        margin-bottom: 4rem;
        margin-left: 0;
    }
}



@media (max-width: 768px) {

    .aboutPage .aboutPage-top-l h2,
    .aboutPage .aboutPage-b h2 {
        text-align: center;
    }
}


@media (max-width: 768px) {
    .faqPage .faqPage-con ul li h4 {
        padding-right: 6rem;
        line-height: 1.8;
    }
}



@media (max-width: 768px) { 
    .requireList .requireList-m--con > div {
        border-radius: 10px;
    }
}


@media (max-width: 768px) { 
    .requireList .requireList-m--con {
        width: 100%;
        border-radius: 10px;
    }
}


@media (max-width: 768px) { 
    .requireList .requireList-m--con p:nth-child(2) {
        font-size: 2.4rem !important;
    }
    .requireList .requireList-m--con p:nth-child(2) span {
        font-size: 2rem !important;
    }
}


@media (max-width: 768px) { 
    .requireList .requireList-b--r h3 {
        font-size: 2.2rem;
    }
}


@media (max-width: 768px) {
    .requireList .requireList-t--r .nav {
        text-align: center;
    }
}

@media (max-width: 768px) { 
    .requireList .requireList-t--r > p {
        text-align: center;
    }
}