html {
    height: 100%;
    background-color:#fff;
    width:100%;
    max-width:100%;
}
 
body {  
    font-family: "Noto Sans JP",sans-serif;
    width: 100%;
    font-size: 16px;
    color: #000;
    line-height: 1.5;
    height: 100%;
    overflow-x: hidden;
    position: relative;
}

.section-title {
    font-weight: 600;
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    line-height: 1.5;
}

.section-title h3 {
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}

.section-title__line {
    width: 170px;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width:768px){
    .section-title {
        font-size: 26px;
        margin-bottom: 22px;
    }

    .section-title h3 {
        margin-bottom: 16px;
    }

    .section-title__line {
        width: 120px;
    }
}

/*--------------------------header----------------------------*/
.header {
    max-width: 1176px;
    margin: 0 auto;
    width: 90%;
    padding: 10px 0;
}

.header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.header-logo {
    max-width: 317px;
    width: 60%;
    margin-right: 28px;
    display: block;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.header-logo:hover {
    opacity: 0.7;
}

.header-logo img {
    width: 100%;
    display: block;
}

.header-en__btn {
    width: 117px;
    border: #00AEBC 2px solid;
    padding: 2px 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    font-weight: 600;
    color: #00AEBC;
    font-size: 18px;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.header-en__btn:hover {
    opacity: 0.7;
}

.header-en__btn img {
    display: block;
    width: 10px;
    top: 0;
    bottom: 0;
    position: absolute;
    right: 8px;
    margin: auto;
}

@media screen and (max-width:768px){
    .header-logo {
        max-width: 270px;
    }

    .header-en__btn {
        font-size: 16px;
    }

    .header {
        padding: 18px 0;
    }
}

@media screen and (max-width:450px){
    .header-en__btn {
        font-size: 14px;
        width: 95px;
    }

    .header-en__btn img {
        width: 6px;
        right: 6px;
    }
}

/*--------------------------sideBtn----------------------------*/
.sideBtn {
    position: fixed;
    top: 20%;
    right: 0;
    z-index: 99;
}

.sideBtn-inner {
    width: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    background-image: url(../images/side_btn_background_pc.png);
    background-size: 100% 100%;
    padding: 20px 12px 52px;
    font-weight: bold;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 2px;
    position: relative;
    border: #fff solid 2px;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.sideBtn-inner:hover {
    opacity: 0.8;
}

.sideBtn-arrow {
    width: 13px;
    bottom: 16px;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
}

@media screen and (max-width:768px){
    .sideBtn {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
    }

    .sideBtn-inner {
        width: 100%;
        -webkit-writing-mode: horizontal-tb;
            -ms-writing-mode: lr-tb;
                writing-mode: horizontal-tb;
        background-image: url(../images/side_btn_background_sp.png);
        padding: 18px 46px 24px 16px;
        font-size: 17px;
    }

    .sideBtn-arrow {
        right: 20px;
        top: 0;
        bottom: 0;
        left: auto;
    }

    .sideBtn-text__br_pc {
        display: none;
    }
}

@media screen and (max-width:370px){
    .sideBtn-inner {
        letter-spacing: 1px;
        font-size: 16px;
    }
}

@media screen and (max-width:340px){
    .sideBtn-inner {
        font-size: 15px;
    }
}

/*--------------------------mainvisual----------------------------*/
.mainvisual {
    position: relative;
}

.mainvisual-pc {
    width: 100%;
    display: block;
}

.mainvisual-sp {
    display: none;
    width: 100%;
}

.mainvisual-text {
    position: absolute;
    left: 5%;
    width: 50%;
    top: 0;
    bottom: 0;
    margin: auto;
    padding-bottom: 5%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

@media screen and (max-width:768px){
    .mainvisual-text {
        width: 45%;
    }
}

@media screen and (max-width:600px){
    .mainvisual-pc {
        width: 100%;
        display: none;
    }

    .mainvisual-sp {
        display: block;
    }

    .mainvisual-text {
        width: 89%;
        padding-bottom: 13%;
    }
}

/*--------------------------intro----------------------------*/
.intro {
    background-image: url("../images/intro_background_pc.png");
    background-size: contain;
}

.intro-inner {
    max-width: 900px;
    margin: 0 auto;
    width: 90%;
    padding: 60px 0 80px;
}

.intro-title {
    max-width: 583px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 44px;
}

.intro-title__pc {
    display: block;
    width: 100%;
}

.intro-title__sp {
    display: none;
    width: 100%;
}

.intro-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.intro-list {
    width: 49%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.intro-list:not(:first-of-type, :nth-of-type(2)) {
    margin-top: 30px;
}

.intro-list__text {
    color: #fff;
    font-weight: 600;
    font-size: 23px;
    width: calc(100% - 30px);
}

.intro-list__icon {
    width: 22px;
    margin: 12px 8px 0 0;
}

.intro-list__icon img {
    width: 100%;
    display: block;
}

@media screen and (max-width:880px){
    .intro-list__text {
        font-size: 20px;
    }

    .intro-list__icon {
        margin: 8px 8px 0 0;
    }
}

@media screen and (max-width:768px){
    .intro-title {
        margin-bottom: 32px;
    }

    .intro-inner {
        padding: 50px 0;
    }

    .intro-list {
        width: 100%;
    }

    .intro-list:nth-of-type(2) {
        margin-top: 30px;
    }

    .intro-content {
        max-width: 530px;
        margin: 0 auto;
    }

    .intro-title__pc {
        display: none;
    }

    .intro-title__sp {
        display: block;
    }

    .intro-title {
        max-width: 370px;
    }

    .intro-list__text {
        font-size: 16px;
    }

    .intro-list__icon {
        margin: 3px 8px 0 0;
    }

    .intro-br__pc {
        display: none;
    }

    .intro-list1 {
        -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
                order: 0;
    }

    .intro-list2 {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }

    .intro-list3 {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }

    .intro-list4 {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
    }
}

/*--------------------------menu----------------------------*/
.menu {
    background-color: #F5F5F5;
    padding: 80px 0;
}

.menu-inner {
    margin: 0 auto;
    width: 80%;
    max-width: 960px;
}

.menu-title {
    max-width: 293px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 38px;
}

.menu-title_sub {
    color: #00AEBC;
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    position: relative;
    margin-bottom: 16px;
    width: 120%;
    display: inline-block;
}

.menu-title_sub::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    width: 3px;
    height: 100%;
    -webkit-transform: rotate(-30deg);
        -ms-transform: rotate(-30deg);
            transform: rotate(-30deg);
    background-color: #00AEBC;
}

.menu-title_sub::after {
    content: "";
    position: absolute;
    right: -16px;
    top: 0;
    width: 3px;
    height: 100%;
    -webkit-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
            transform: rotate(30deg);
    background-color: #00AEBC;
}

.menu-title_balloon {
    position: absolute;
    left: -370px;
    width: 284px;
    bottom: 0;
}

.menu-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    z-index: 5;
}

.menu-content::before {
    content: "";
    position: absolute;
    background-color: #CEEDF0;
    width: 106%;
    height: 100%;
    top: 10%;
    left: -3%;
}

.menu-item {
    width: 19.2%;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.menu-item:hover {
    opacity: 0.7;
}

.menu-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #fff;
    width: 100%;
    height: 100%;
    padding: 28px 18px 50px;
    text-align: center;
    font-weight: 600;
    color: #00AEBC;
    position: relative;
    font-size: 17px;
}

.menu-btn__arrow {
    width: 28px;
    display: block;
    margin: auto;
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
}

.menu-btn__small {
    font-size: 12px;
}

.menu-item1, .menu-item2, .menu-item3, .menu-item4, .menu-item5 {
    margin-bottom: 10px;
}

@media screen and (max-width:1132px){
    .menu-item a {
        font-size: 15px;
        padding: 20px 9px 42px;
    }
}

@media screen and (max-width:1070px){
    .menu-title_balloon {
        left: -290px;
        width: 240px;
    }
}

@media screen and (max-width:950px){
    .menu-title_balloon {
        position: relative;
        margin: 0 auto;
        left: auto;
        margin-top: 10px;
    }

    .menu-title {
        margin-bottom: 8px;
    }
}

@media screen and (max-width:950px){
    .menu-item {
        width: 49%;
    }

    .menu-item a {
        font-size: 17px;
    }

    .menu-item6, .menu-item7, .menu-item8  {
        margin-bottom: 10px;
    }

    .menu-content::before {
        height: 94%;
        width: 108%;
        left: -4%;
    }
}

@media screen and (max-width:768px){
    .menu {
        padding: 40px 0 70px;
    }

    .menu-title {
        max-width: 240px;
    }

    .menu-title h3 {
        max-width: 192px;
        width: 100%;
        margin: 0 auto;
        display: block;
    }

    .menu-title_sub {
        font-size: 16px;
        margin-bottom: 12px;
        width: 90%;
    }

    .menu-title_sub::after {
        width: 2px;
        top: 5%;
        height: 94%;
    }

    .menu-title_sub::before {
        width: 2px;
        top: 5%;
        height: 94%;
    }
}

@media screen and (max-width:580px){
    .menu-content::before {
        height: 94%;
        width: 110%;
        left: -5%;
    }
}

@media screen and (max-width:500px){
    .menu-item {
        width: 100%;
    }

    .menu-item br {
        display: none;
    }

    .menu-item a {
        padding: 20px 50px 20px 20px;
        text-align: left;
        -webkit-box-pack: left;
            -ms-flex-pack: left;
                justify-content: left;
    }

    .menu-btn__arrow {
        top: 0;
        bottom: 0;
        right: 16px;
        margin: auto;
        left: auto;
    }

    .menu-item9  {
        margin-bottom: 10px;
    }

    .menu-content::before {
        height: 98%;
        width: 112%;
        left: -6%;
        top: 5%;
    }
}

@media screen and (max-width:400px){
    .menu-content::before {
        height: 97%;
    }
}

/*--------------------------point----------------------------*/
.point {
    background-color: #65CDD5;
    position: relative;
    padding: 45px 0 60px;
    overflow-x: hidden;
}

.point::before {
    content: "";
    background-image: url(../images/border.png);
    width: 100%;
    height: 12px;
    background-size: auto 100%;
    display: block;
    background-repeat: repeat-x;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 2;
}

.point::after {
    content: "";
    background-image: url(../images/border.png);
    width: 100%;
    height: 12px;
    background-size: auto 100%;
    display: block;
    background-repeat: repeat-x;
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: 3;
}

.point-background {
    width: 100%;
    position: absolute;
    top: 0;
    height: 40%;
    min-width: 920px;
    left: -100%;
    right: -100%;
    margin: auto;
}

.point-inner {
    position: relative;
    z-index: 6;
    max-width: 920px;
    margin: 0 auto;
    width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.point-text {
    color: #fff;
    width: 48%;
    position: relative;
    margin-top: 25px;
}

.point-text__balloon {
    position: absolute;
    width: 240px;
    top: -100px;
    left: -20px;
    display: block;
    max-block-size: none;
    z-index: 17;
}

.point-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1.3;
}

.point-movie {
    width: 49%;
    -webkit-box-shadow: 10px 10px 0px 0 rgb(0, 174, 188);
            box-shadow: 10px 10px 0px 0 rgb(0, 174, 188);
}

.point-movie__inner {
    position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.point-movie__inner iframe {
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width:1000px){
    .point-text__balloon {
        width: 200px;
        top: -85px;
    }
}

@media screen and (max-width:900px){
    .point-title {
        font-size: 28px;
    }

    .point-text {
        font-size: 15px;
        margin-top: 50px;
    }
}

@media screen and (max-width:768px){
    .point {
        padding: 4px 0 50px;
    }

    .point-inner {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .point-text {
        width: 100%;
        margin-top: 0;
        font-size: 16px;
    }

    .point-text__balloon {
        position: relative;
        margin: 0 auto;
        top: auto;
        width: 220px;
        left: auto;
    }

    .point-title {
        text-align: center;
        margin-top: 6px;
    }

    .point-movie {
        width: 100%;
        margin-top: 30px;
    }

    .point::before {
        height: 8px;
    }

    .point::after {
        height: 8px;
    }
}

/*--------------------------check----------------------------*/
.check {
    background-color: #F5F5F5;
    padding: 80px 0;
    position: relative;
}

.check-background {
    position: absolute;
    top: 15%;
    left: 0;
    width: 100%;
    display: block;
    z-index: 0;
}

.check-inner {
    width: 90%;
    margin: 0 auto;
    max-width: 960px;
    position: relative;
    z-index: 5;
}

.check-title__balloon {
    background-color: #00AEBC;
    color: #fff;
    text-align: center;
    max-width: 824px;
    margin: 0 auto;
    position: relative;
    font-size: 35px;
    font-weight: 600;
    padding: 8px 20px 12px;
    position: relative;
}

.check-title {
    position: relative;
    margin-bottom: 50px;
}

.check-title__decoration {
    position: absolute;
    right: -120px;
    width: 109px;
    display: block;
    bottom: 0;
    max-block-size: none;
}

.check-title__balloon_tail {
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 30px;
    right: 0;
    margin: auto;
}

.check-item {
    background-color: #fff;
    padding: 30px;
    font-weight: 400;
}

.check-item1__text {
    width: 36%;
}

.check-item1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 20px;
}

.check-item1__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    width: 62%;
}

.check-item1__image_contents {
    width: 49%;
}

.check-item1__image1 {
    display: block;
    width: 49%;
    position: relative;
}

.check-item1__balloon1 {
    position: absolute;
    left: -80px;
    width: 290px!important;
    bottom: -60px;
    display: block;
}

.check-item1__image2 {
    position: relative;
    display: block;
    width: 49%;
}

.check-item1__image5, .check-item1__image6 {
    display: block;
    width: 100%;
}

.check-item1__balloon2 {
    position: absolute;
    right: -55px;
    width: 280px!important;
    display: block;
    top: -50px;
}

.check-item1__image1 img, .check-item1__image2 img {
    width: 100%;
    display: block;
}

.check-item__title {
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #00AEBC;
}

.check-item2__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 15px;
}

.check-item2__text {
    width: 49%;
}

.check-item2__movie_text_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.check-item2__movie_text {
    color: #00AEBC;
    font-weight: 600;
    text-align: center;
    font-size: 18px;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.check-item2__movie_text::before {
    content: "";
    left: -10px;
    bottom: 0;
    width: 2px;
    height: 75%;
    position: absolute;
    background-color: #00AEBC;
    display: block;
    -webkit-transform: rotate(-25deg);
        -ms-transform: rotate(-25deg);
            transform: rotate(-25deg);
}

.check-item2__movie_text::after {
    content: "";
    right: -10px;
    bottom: 0;
    width: 2px;
    height: 75%;
    position: absolute;
    background-color: #00AEBC;
    display: block;
    -webkit-transform: rotate(25deg);
        -ms-transform: rotate(25deg);
            transform: rotate(25deg);
}

.check-item2__movie {
    width: 49%;
    margin-top: 20px;
}

.check-item2__movie_inner {
    position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.check-item2__movie iframe {
    width: 100%;
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.check-item2__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.check-item2__image__contents {
    width: 49%;
    position: relative;
}

.check-item2__image_pc {
    width: 100%;
    display: block;
}

.check-item2__image_sp {
    display: none;
    width: 100%;
}

.check-item2__balloon {
    position: absolute;
    left: -330px;
    top: -90px;
    width: 380px;
    max-block-size: none;
}

.check-item1:not(:first-of-type) {
    margin-top: 20px;
}

.check-item__small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.check-item__title_small {
    font-size: 15px;
}

.check-item3 {
    width: 49%;
}

.check-item4 {
    width: 49%;
}

.check-moreover {
    border: 2px solid #65CDD5;
    background-color: #E0F8FA;
    position: relative;
    margin-top: 14px;
    padding: 30px 40px 25px;
}

.check-moreover__corner1 {
    position: absolute;
    left: -2px;
    top: -2px;
    width: 24px;
}

.check-moreover__corner2 {
    position: absolute;
    right: -2px;
    top: -2px;
    width: 24px;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
}

.check-moreover__corner3 {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 24px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

.check-moreover__corner4 {
    position: absolute;
    left: -2px;
    bottom: -2px;
    width: 24px;
    -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
            transform: rotate(270deg);
}

.check-moreover__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1.5;
}

.check-moreover__text {
    width: 60%;
}

.check-moreover__text h4 {
    font-size: 25px;
    font-weight: 600;
    position: relative;
    margin-left: 125px;
    line-height: 1.5;
    padding-right: 20px;
}

.check-moreover__text h4:not(:first-of-type) {
    margin-top: 15px;
}

.check-moreover__text h4::before {
    content: "";
    width: 30px;
    height: 2px;
    left: -45px;
    top: 20px;
    position: absolute;
    background-color: #00AEBC;
    display: block;
}

.check-moreover__text h4 span {
    font-size: 15px;
}

.check-moreover__btn {
    width: 38%;
    -webkit-box-shadow: 10px 10px 0px 0 rgb(160, 224, 230);
            box-shadow: 10px 10px 0px 0 rgb(160, 224, 230);
}

.check-moreover__btn a {
    display: block;
    width: 100%;
    padding: 20px;
    background-image: url("../images/check_btn_background.png");
    background-size: 100% 100%;
    color: #fff;
    font-weight: 600;
    text-align: center;
    font-size: 22px;
    position: relative;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.check-moreover__btn a:hover {
    opacity: 0.8;
}

.check-moreover__arrow {
    position: absolute;
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 18px;
    display: block;
}

.check-moreover__balloon {
    position: absolute;
    top: 42px;
    left: -48px;
    display: block;
    width: 158px;
}

.check-br__sp {
    display: none;
}

.check-item2__balloon_pc {
    display: block;
}

.check-item2__balloon_sp {
    display: none;
}

@media screen and (max-width:1080px){
    .check-title__balloon {
        max-width: 624px;
    }
}

@media screen and (max-width:1050px){
    .check-moreover__balloon {
        width: 140px;
        left: -24px;
    }
}

@media screen and (max-width:1030px){
    .check-item1__balloon1 {
        left: -40px;
        bottom: -40px;
    }

    .check-item2__balloon {
        top: -70px;
    }
}


@media screen and (max-width:960px){
    .check-title__balloon {
        font-size: 33px;
        max-width: 564px;
    }

    .check-item1 {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .check-item1__text {
        width: 100%;
        -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
                order: 0;
    }

    .check-item1__image {
        width: 100%;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        margin-top: 30px;
    }

    .check-item1__balloon1 {
        left: -20px;
        bottom: -20px;
    }

    .check-item1__balloon2 {
        right: -20px;
        top: -20px;
    }

    .check-item2__flex {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .check-item2__text {
        width: 100%;
    }

    .check-item2__movie {
        width: 100%;
    }

    .check-item2__image {
        margin-top: 70px;
    }

    .check-item2__balloon {
        width: 350px;
        left: -200px;
        top: -60px;
    }
}

@media screen and (max-width:920px){
    .check-moreover__text h4 {
        font-size: 20px;
    }

    .check-moreover__text h4 {
        width: 100%;
        margin-left: 40px;
    }

    .check-moreover__text h4::before {
        width: 24px;
        left: -35px;
        top: 15px;
    }

    .check-moreover__text h4::after {
        width: 24px;
        left: -35px;
    }

    .check-moreover {
        margin-top: 30px;
        padding: 46px 20px 30px;
    }

    .check-moreover__balloon {
        width: 132px;
        top: -23px;
        left: 38px;
    }

    .check-moreover__btn {
        width: 50%;
    }

    .check-moreover__inner {
        margin: 0 auto;
        max-width: 650px;
    }
}

@media screen and (max-width:840px){
    .check-title__decoration {
        bottom: 86px;
        right: 20px;
    }
}

@media screen and (max-width:768px){
    .check {
        padding: 40px 0 50px;
    }

    .check-title {
        margin-bottom: 30px;
    }

    .check-title__decoration {
        bottom: 50px;
        right: 4px;
        width: 90px;
    }

    .check-title__balloon {
        font-size: 19px;
        max-width: 350px;
        padding: 8px 10px 10px;
    }

    .check-title__balloon_tail {
        width: 24px;
        bottom: -12px;
    }

    .check-item {
        padding: 30px 20px;
    }

    .check-item1__image {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .check-item1__image_contents {
        width: 100%;
    }

    .check-item__top .check-item1__image1 {
        margin-bottom: 72px;
    }

    .check-item1__balloon1 {
        left: -30px;
        width: 87%!important;
        bottom: -33px;
    }

    .check-item1__balloon2 {
        right: -10px;
        top: -33px;
        width: 80%!important;
    }

    .check-item__title {
        padding-bottom: 10px;
    }

    .check-item__bottom .check-item1__image1 {
        margin-bottom: 18px;
    }

    .check-item1__image6 {
        margin-top: 18px;
    }

    .check-item2__image {
        margin-top: 0;
    }

    .check-br__sp {
        display: block;
    }

    .check-item2__movie_text::before {
        height: 60%;
    }

    .check-item2__movie_text::after {
        height: 60%;
    }

    .check-item2__image_sp {
        display: block;
    }

    .check-item2__image_pc {
        display: none;
    }

    .check-item2__image {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .check-item2__image__contents {
        width: 100%;
    }

    .check-item2__image__contents:first-of-type {
        margin-bottom: 90px;
    }

    .check-item2__balloon {
        left: -10px;
        top: -80px;
        width: calc(100% + 20px);
        max-width: 400px;
    }

    .check-item__small {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .check-item__title {
        font-size: 20px;
    }

    .check-item3 {
        width: 100%;
    }

    .check-item3:first-of-type {
        margin-bottom: 10px;
    }

    .check-item1:not(:first-of-type) {
        margin-top: 10px;
    }

    .check-item1 {
        margin-bottom: 10px;
    }

    .check-item__title_small {
        font-size: 12px;
    }

    .check-moreover__inner {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .check-moreover__text {
        width: 100%;
    }

    .check-moreover__text h4 {
        font-size: 16px;
        width: calc(100% - 40px);
        padding-right: 0;
    }

    .check-moreover__text h4 span {
        font-size: 12px;
    }

    .check-moreover__btn a {
        font-size: 19px;
    }

    .check-moreover__btn {
        width: 100%;
        margin-top: 30px;
        -webkit-box-shadow: 5px 5px 0px 0 rgb(160, 224, 230);
                box-shadow: 5px 5px 0px 0 rgb(160, 224, 230);
    }
    
    .check-item2__balloon_pc {
        display: none;
    }

    .check-item2__balloon_sp {
        display: block;
    }

    .check-moreover__text h4::before {
        top: 12px;
    }
}

@media screen and (max-width:360px){
    .check-title__balloon {
        font-size: 17px;
    }

    .check-title__decoration {
        bottom: 45px;
    }

    .check-item__title_small {
        font-size: 11px;
    }
}

/*--------------------------number----------------------------*/
.number {
    background-color: #65CDD5;
    position: relative;
    padding: 70px 0 80px;
}

.number-inner {
    margin: 0 auto;
    max-width: 840px;
    width: 90%;
}

.number-title {
    color: #fff;
    max-width: 715px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.number-title__decoration {
    width: 160px;
    position: absolute;
    right: -165px;
    bottom: 40px;
    display: block;
}

.number-background {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.number-inner {
    position: relative;
    z-index: 7;
}

.number-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.number-item {
    width: 48%;
    background-color: #fff;
    padding: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-shadow: 10px 10px 0px 0 rgb(0, 174, 188);
            box-shadow: 10px 10px 0px 0 rgb(0, 174, 188);
}

.number-item1, .number-item2 {
    margin-bottom: 20px;
}

.number-item3 {
    padding: 22px 40px 7px!important;
}

.number-item__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 28px;
}

.number-item3 .number-item__title {
    margin-bottom: 10px;
}

.number-item1 .number-item__image {
    max-width: 147px;
    display: block;
    margin: 0 auto;
    width: 60%;
}

.number-item2 .number-item__image {
    max-width: 328px;
    display: block;
    margin: 0 auto;
    width: 100%;
}

.number-item3 .number-item__image {
    max-width: 309px;
    display: block;
    margin: 0 auto;
    width: 100%;
}

.number-item4 .number-item__image {
    max-width: 316px;
    display: block;
    margin: 0 auto;
    width: 100%;
}

.number-item__parentheses {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
}

.number-item__title h4 {
    font-weight: 600;
    font-size: 20px;
    margin-left: 12px;
}

.number-item__icon1 {
    width: 34px;
    display: block;
}

.number-item__icon2 {
    width: 30px;
    display: block;
}

.number-item__icon3 {
    width: 47px;
    display: block;
}

.number-item__icon4 {
    width: 42px;
    display: block;
}

.number-item__year {
    margin-top: 12px;
}

.number-item__year_contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
}

.number-item__year_contents:not(:first-of-type) {
    margin-top: 4px;
}

.number-item__year_blue {
    background-color: #E0F8FA;
    color: #00AEBC;
    font-weight: 600;
    font-size: 12px;
    padding: 0 3px;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.number-item__year_gray {
    background-color: #F5F5F5;
    padding-left: 5px;
    font-size: 12px;
    width: 100%;
}

.number-item__attention {
    font-size: 12px;
    margin-top: 4px;
}

.number-item__image_sp {
    display: none!important;
}

@media screen and (max-width:1080px){
    .number-title {
        max-width: 410px;
    }

    .number-title__decoration {
        right: -125px;
    }
}

@media screen and (max-width:950px){
    .number-item {
        padding: 40px 20px;
    }

    .number-item3 {
        padding: 22px 12px 7px!important;
    }
}

@media screen and (max-width:768px){
    .number {
        padding: 50px 0;
    }

    .number-title {
        margin-bottom: 22px;
        max-width: 255px;
    }

    .number-title__decoration {
        width: 130px;
        z-index: -1;
        right: -42px;
        bottom: 90px;
    }

    .number-item {
        width: 49%;
        padding: 20px 8px;
        -webkit-box-shadow: 5px 5px 0px 0 rgb(0, 174, 188);
                box-shadow: 5px 5px 0px 0 rgb(0, 174, 188);
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: start;
    }

    .number-item3 {
        width: 100%;
        padding: 20px 8px 28px!important;
    }

    .number-item4 {
        width: 100%;
        margin-top: 10px;
    }

    .number-item1, .number-item2 {
        margin-bottom: 10px;
    }

    .number-item1 .number-item__image {
        max-width: 67px;
    }

    .number-item2 .number-item__image {
        max-width: 128px;
    }

    .number-item3 .number-item__image {
        max-width: 244px;
    }

    .number-item4 .number-item__image {
        max-width: 268px;
        width: 90%;
    }

    .number-item__image_sp {
        display: block!important;
    }

    .number-item__image_pc {
        display: none!important;
    }

    .number-item__title {
        margin-bottom: 12px;
    }

    .number-item__title h4 {
        font-size: 14px;
        margin-left: 5px;
    }

    .number-item__icon1 {
        width: 19px;
    }

    .number-item__icon2 {
        width: 17px;
    }

    .number-item__icon3 {
        width: 25px;
    }

    .number-item__icon4 {
        width: 23px;
    }
}

@media screen and (max-width:400px){
    .number-item__title h4 {
        font-size: 12px;
    }
}

@media screen and (max-width:380px){
    .number-title__decoration {
        right: -12px;
    }
}

@media screen and (max-width:370px){
    .number-item__icon1 {
        width: 16px;
    }

    .number-item__icon2 {
        width: 14px;
    }

    .number-item__icon3 {
        width: 22px;
    }

    .number-item__icon4 {
        width: 20px;
    }

    .number-item__attention {
        font-size: 11px;
    }
}

/*--------------------------department----------------------------*/
.department {
    background-color: #F5F5F5;
    padding: 70px 0 80px;
}

.department-inner {
    margin: 0 auto;
    width: 90%;
    max-width: 960px;
}

.department-title {
    max-width: 180px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.department-title__decoration {
    width: 185px;
    position: absolute;
    right: -180px;
    bottom: 40px;
    display: block;
    max-inline-size: none;
}

.department-content {
    background-color: #fff;
    padding: 36px 30px;
}

.department-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.department-item:first-of-type {
    margin-bottom: 50px;
}

.department-item__image {
    width: 49%;
}

.department-item__image img {
    width: 100%;
}

.department-text {
    width: 49%;
}

.department-text__title {
    color: #fff;
    background-color: #00AEBC;
    padding: 2px 28px 4px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 26px;
}

.department-image {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    margin-top: 40px;
}

.department-image img {
    width: 32%;
    display: block;
}

.department-balloon1 {
    width: 214px!important;
    right: -20px;
    display: block;
    top: -20px;
    position: absolute;
}

.department-balloon2 {
    width: 246px!important;
    left: -40px;
    display: block;
    bottom: -47px;
    position: absolute;
}

.department-attempt {
    border: 4px #00AEBC solid;
    background-color: #fff;
    margin-top: 40px;
    position: relative;
}

.department-attempt__top {
    background-color: #00AEBC;
    color: #fff;
    font-size: 26px;
    text-align: center;
    font-weight: 600;
    padding: 12px 24px 18px;
    position: relative;
    line-height: 1.5;
}

.department-attempt__top::after {
    content: "";
    position: absolute;
    display: block;
    border: #A0E0E6 2px solid;
    width: calc(100% - 10px);
    height: calc(100% - 14px);
    top: 5px;
    left: 5px;
}

.department-corner1 {
    width: 28px;
    left: -5px;
    top: -5px;
    position: absolute;
    display: block;
}

.department-corner2 {
    width: 28px;
    right: -5px;
    top: -5px;
    position: absolute;
    display: block;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
}

.department-corner3 {
    width: 22px;
    left: 5px;
    top: 5px;
    position: absolute;
    display: block;
    z-index: 13;
}

.department-corner4 {
    width: 22px;
    right: 5px;
    top: 5px;
    position: absolute;
    display: block;
    z-index: 13;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
}

.department-corner5 {
    width: 25px;
    left: -4px;
    bottom: -5px;
    position: absolute;
    display: block;
    z-index: 13;
}

.department-corner6 {
    width: 25px;
    right: -5px;
    bottom: -4px;
    position: absolute;
    display: block;
    z-index: 13;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
}

.department-attempt__bottom {
    padding: 30px;
}

.department-attempt__title {
    text-align: center;
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 20px;
}

.department-attempt__text {
    margin-bottom: 18px;
    text-align: center;
}

.department-attempt_image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.department-attempt_image img {
    width: 32.5%;
    display: block;
}

.department-blue {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 30px;
}

.department-blue__item {
    background-color: #E0F8FA;
    border: #A0E0E6 2px solid;
    width: 49%;
    padding: 20px 16px;
}

.department-blue__image_pc {
    display: block;
    width: 100%;
}

.department-blue__image_sp {
    display: none;
    width: 100%;
}

.department-blue__item_title {
    margin: 20px 0 26px;
    text-align: center;
    font-weight: 600;
    font-size: 23px;
}

.department-blue__item_title span {
    font-size: 17px;
}

.department-balloon1_sp {
    display: none!important;
}

.department-balloon2_sp {
    display: none!important;
}

.department-corner7 {
    display: none;
}

.department-corner8 {
    display: none;
}

@media screen and (max-width:800px){
    .department-blue__item_title span {
        font-size: 15px;
    }
}

@media screen and (max-width:768px){
    .department {
        padding: 50px 0;
    }

    .department-title {
        width: 120px;
        margin-bottom: 22px;
    }

    .department-content {
        padding: 30px 20px;
    }

    .department-title__decoration {
        right: -112px;
        bottom: 49px;
    }

    .department-item {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .department-item__image {
        width: 100%;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }

    .department-text {
        width: 100%;
        -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
                order: 0;
        margin-bottom: 20px;
    }

    .department-item:first-of-type {
        margin-bottom: 30px;
    }

    .department-text__title {
        font-size: 20px;
        padding: 0 22px 2px;
    }

    .department-image {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .department-image img {
        width: 100%;
    }

    .department-image img:not(:first-of-type) {
        margin-top: 10px;
    }

    .department-balloon1 {
        display: none!important;
    }

    .department-balloon2 {
        display: none!important;
    }

    .department-balloon1_sp {
        display: block!important;
        position: absolute;
        top: -27px;
        left: -30px;
        display: block;
        width: 78%!important;
        max-width: 350px;
    }

    .department-balloon2_sp {
        display: block!important;
        position: absolute;
        bottom: -18px;
        display: block;
        right: -18px;
        max-width: 350px;
        width: 68%!important;
    }

    .department-image {
        margin-top: 20px;
    }

    .department-attempt {
        margin-top: 30px;
    }

    .department-attempt__top {
        font-size: 20px;
    }

    .department-blue {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .department-blue__item {
        width: 100%;
        padding: 20px 16px 30px;
    }

    .department-blue__item:first-of-type {
        margin-bottom: 10px;
    }

    .department-attempt__top {
        padding: 24px;
    }

    .department-attempt__bottom {
        padding: 20px;
    }

    .department-attempt__title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .department-attempt__text {
        font-size: 16px;
    }

    .department-attempt_image {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .department-attempt_image img {
        width: 100%;
    }

    .department-attempt_image img:not(:first-of-type) {
        margin-top: 10px;
    }

    .department-blue__image_pc {
        display: none;
    }

    .department-blue__image_sp {
        display: block;
    }

    .department-blue__item_title {
        font-size: 18px;
        margin: 16px 0 16px;
    }

    .department-blue__item_title span {
        font-size: 12px;
    }

    .department-attempt {
        border: 2px #00AEBC solid;
    }

    .department-corner5 {
        display: none;
    }

    .department-corner6 {
        display: none;
    }

    .department-corner7 {
        width: 25px;
        left: -2px;
        bottom: -3px;
        position: absolute;
        display: block;
        z-index: 13;
    }

    .department-corner8 {
        width: 25px;
        right: -3px;
        bottom: -2px;
        position: absolute;
        display: block;
        z-index: 13;
        -webkit-transform: rotate(-90deg);
            -ms-transform: rotate(-90deg);
                transform: rotate(-90deg);
    }
}

@media screen and (max-width:400px){
    .department-title__decoration {
        right: -82px;
        width: 160px;
    }
}

@media screen and (max-width:380px){
    .department-attempt__top {
        font-size: 17px;
    }
}

@media screen and (max-width:340px){
    .department-attempt__top {
        font-size: 16px;
    }
}

/*--------------------------movie----------------------------*/
.movie {
    background-color: #65CDD5;
    padding: 70px 0 80px;
    position: relative;
}

.movie::before {
    content: "";
    background-image: url(../images/border.png);
    width: 100%;
    height: 12px;
    background-size: auto 100%;
    display: block;
    background-repeat: repeat-x;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 2;
}

.movie::after {
    content: "";
    background-image: url(../images/border.png);
    width: 100%;
    height: 12px;
    background-size: auto 100%;
    display: block;
    background-repeat: repeat-x;
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: 3;
}

.movie-title {
    margin: 0 auto;
    max-width: 800px;
    color: #fff;
    margin-bottom: 50px;
}

.movie-title__decoration {
    position: absolute;
    right: -80px;
    bottom: 45px;
    width: 94px;
}

.movie-slick {
    width: 100%;
}

.movie-item {
    margin: 0 22px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-shadow: 10px 10px 0px 0 rgb(0, 174, 188);
            box-shadow: 10px 10px 0px 0 rgb(0, 174, 188);
}

.slick-list {
    padding-bottom: 10px!important;
}

.movie-video__wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    display: inline-block;
}

.video-overlay-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: url('../images/play-icon.png') no-repeat center center;
  background-size: 80px 80px;
  border-radius: 50%;
  cursor: pointer;
}

.movie-video__wrapper iframe,
.movie-video__wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    -o-object-fit: cover;
       object-fit: cover;
}

.movie-item__text {
    background-color: #CEEDF0;
    font-weight: 600;
    font-size: 22px;
    text-align: center;
    padding: 12px;
    line-height: 1.5;
}

.movie-item__text p {
  font-size: 12px;
  font-weight: 500;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 35%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.slick-prev {
    left: 26%;
}

.slick-next {
    right: 26%;
}

.slick-prev img,
.slick-next img {
    width: 97px;
    height: auto;
}

.slick-dots {
  text-align: center;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}


.slick-dots li {
  display: inline-block;
  margin: 0 10px;
}

.slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background-color: #fff;
  cursor: pointer;
  padding: 0;
}

.slick-dots li.slick-active button {
  background-color: #333333;
  opacity: 1;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.movie-br__sp {
    display: none;
}

@media screen and (max-width:1000px){
    .video-overlay-play-button {
  width: 60px;
  height: 60px;
  background: url('../images/play-icon.png') no-repeat center center;
  background-size: 60px 60px;
}
}

@media screen and (max-width:980px){
    .slick-prev img, .slick-next img {
        width: 70px;
    }

    .movie-title {
        max-width: 450px;
    }
}

@media screen and (max-width:768px){
    .movie {
        padding: 50px 0;
    }

    .movie::before {
        height: 8px;
    }

    .movie::after {
        height: 8px;
    }

    .movie-br__sp {
        display: block;
    }

    .movie-title {
        max-width: 270px;
        margin-bottom: 20px;
    }

    .movie-title__decoration {
        right: 10px;
        bottom: 89px;
    }

    .movie-item {
        margin: 10px;
        -webkit-box-shadow: 5px 5px 0px 0 rgb(0, 174, 188);
                box-shadow: 5px 5px 0px 0 rgb(0, 174, 188);
    }

    .slick-prev img, .slick-next img {
        width: 65px;
    }

    .slick-prev {
        left: 5%;
    }

    .slick-next {
        right: 5%;
    }

    .slick-list {
        padding-bottom: 5px!important;
    }

    .slick-dots {
        display: none!important;
    }

    .slick-prev, .slick-next {
        top: 42%;
    }

    .movie-item__text {
        font-size: 14px;
        padding: 6px 12px 8px;
    }

    .video-overlay-play-button {
    display: none;
  }
}

@media screen and (max-width:450px){
    .slick-prev img, .slick-next img {
        width: 60px;
    }

    .slick-prev {
        left: 2%;
    }

    .slick-next {
        right: 2%;
    }
}

/*--------------------------favorite----------------------------*/
.favorite {
    padding: 70px 0;
    background-color: #F5F5F5;
}

.favorite-inner {
    margin: 0 auto;
    width: 90%;
    max-width: 850px;
}

.favorite-title {
    max-width: 850px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.favorite-title span {
    color: #00AEBC;
}

.favorite-title__decoration {
    position: absolute;
    right: -85px;
    bottom: 45px;
    display: block;
    width: 92px;
}

.favorite-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.favorite-item:not(:first-of-type) {
    margin-top: 40px;
}

.favorite-item__image {
    width: 46%;
    position: relative;
    z-index: 13;
    -webkit-box-shadow: 10px 10px 0px 0 rgb(101, 205, 213);
            box-shadow: 10px 10px 0px 0 rgb(101, 205, 213);
}

.favorite-item__image img {
    width: 100%;
    display: block;
}

.favorite-item__text {
    width: 50%;
    max-width: 374px;
    background-color: #CEEDF0;
    border-radius: 20px;
    margin-left: 6%;
    padding: 20px 20px 24px;
    position: relative;
}

.favorite-item__text > img {
    position: absolute;
    left: -10%;
    width: 10%;
    bottom: 0;
    top: 0;
    margin: auto;
    display: block;
}

.favorite-item__title {
    font-weight: 600;
    color: #00AEBC;
    font-size: 20px;
    margin-bottom: 4px;
}

.favorite-item2 {
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
}

.favorite-item2 .favorite-item__text {
    margin-left: 0;
    margin-right: 5%;
}

.favorite-item2 .favorite-item__text > img {
    right: -110%;
    left: 0;
}

.favorite-br__sp {
    display: none;
}

.favorite-item__text .favorite-item__tail_sp {
    display: none;
}

@media screen and (max-width:1050px){
    .favorite-title {
        max-width: 450px;
    }

    .favorite-title__decoration {
        right: -75px;
    }
}

@media screen and (max-width:768px){
    .favorite {
        padding: 50px 0;
    }

    .favorite-title {
        max-width: 290px;
        margin-bottom: 20px;
    }

    .favorite-title__decoration {
        right: -26px;
        bottom: 87px;
        width: 75px;
    }

    .favorite-item {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .favorite-item:not(:first-of-type) {
        margin-top: 30px;
    }

    .favorite-item__top {
        margin: 0!important;
    }

    .favorite-item__image {
        -webkit-box-shadow: 5px 5px 0px 0 rgb(101, 205, 213);
                box-shadow: 5px 5px 0px 0 rgb(101, 205, 213);
        width: 100%;
        -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
                order: 0;
        margin-bottom: 30px;
    }

    .favorite-item__text {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        padding: 20px 16px 24px;
        z-index: 10;
    }

    .favorite-item__text .favorite-item__tail_sp {
        display: block!important;
        top: -15px;
        bottom: auto;
        left: 40px;
        -webkit-transform: rotate(270deg);
            -ms-transform: rotate(270deg);
                transform: rotate(270deg);
        right: auto;
        z-index: -1;
        position: absolute;
    }

    .favorite-item__text .favorite-item__tail_pc {
        display: none;
    }

    .favorite-item2 .favorite-item__text {
        margin-right: 0;
    }

    .favorite-item2 .favorite-item__text > img {
        top: -15px;
        bottom: auto;
        left: 40px;
        -webkit-transform: rotate(270deg);
            -ms-transform: rotate(270deg);
                transform: rotate(270deg);
        right: auto;
        z-index: -1;
    }

    .favorite-br__sp {
        display: block;
    }
}

@media screen and (max-width:380px){
    .favorite-title__decoration {
        right: 4px;
    }
}

/*--------------------------interview----------------------------*/
.interview {
    background-color: #65CDD5;
    padding: 80px 0 90px;
    position: relative;
}

.interview::before {
    content: "";
    background-image: url(../images/border.png);
    width: 100%;
    height: 12px;
    background-size: auto 100%;
    display: block;
    background-repeat: repeat-x;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 2;
}

.interview::after {
    content: "";
    background-image: url(../images/border.png);
    width: 100%;
    height: 12px;
    background-size: auto 100%;
    display: block;
    background-repeat: repeat-x;
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: 3;
}

.interview-inner {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
}

.interview-title {
    max-width: 220px;
    margin: 0 auto;
    margin-bottom: 50px;
    color: #fff;
}

.interview-title__decoration {
    position: absolute;
    right: -140px;
    width: 137px;
    bottom: 45px;
}

.interview-item {
    background-color: #CEEDF0;
    margin: 0 15px;
    padding: 12px 12px 32px;
    -webkit-box-shadow: 10px 10px 0px 0 rgb(0, 174, 188);
            box-shadow: 10px 10px 0px 0 rgb(0, 174, 188);
}

.interview-item__top {
    background-color: #00AEBC;
    color: #fff;
    padding: 7px 12px;
    line-height: 1.5;
}

.interview-item__university {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
}

.interview-item__department {
    font-size: 13px;
    font-weight: 600;
}

.interview-item__image {
    width: 100%;
    position: relative;
}

.interview-item__image > img {
    width: 100%;
    display: block;
}

.interview-item__btn {
    width: 160px;
    background-color: #fff;
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 6px 8px 9px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.interview-item__btn:hover {
    opacity: 0.8;
}

.interview-item__btn img {
    width: 7px;
    display: block;
}

.interview-item__about {
    margin-top: 20px;
    line-height: 1.5;
}

.interview-item__name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.interview-item__school {
    font-size: 14px;
}

.interview-popup__wrapper {
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.interview-popup__inner {
    position: relative;
    padding: 14px 12px 40px;
    height: 100%;
}

.interview-popup__close {
    cursor: pointer;
    display: block;
    width: 70px;
    position: absolute;
    right: -28px;
    top: -28px;
    z-index: 9999999;
}

.interview-popup {
    width: 100%;
    background: #fff;
    z-index: 1000;
    -webkit-box-shadow: 10px 10px 0px 0 rgb(0, 174, 188);
            box-shadow: 10px 10px 0px 0 rgb(0, 174, 188);
    overflow-y: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    max-height: 100%;
}

.interview-popup::-webkit-scrollbar{
  display: none;
}

.interview-popup__cover {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 40px 0;
    height: 100%;
}

.interview-popup__center {
    position: relative;
    max-width: 550px;
    width: 90%;
    margin: 0 auto;
    height: 100%;
}

.interview-popup__about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #CEEDF0;
    padding: 20px;
    line-height: 1.5;
}

.interview-popup__text {
    display: block;
    width: 100%;
    padding: 30px 20px 0;
    font-weight: 400;
}

.interview-popup__about_image {
    width: 45%;
}

.interview-popup__about_text {
    width: 55%;
}

.interview-popup__about_top {
    background-color: #00AEBC;
    color: #fff;
    padding: 16px 20px;
    font-weight: 600;
}

.interview-item__about_university {
    font-size: 18px;
}

.interview-item__about_department {
    font-size: 13px;
}

.interview-popup__name {
    margin: 10px 18px 8px;
    font-size: 22px;
    font-weight: 600;
}

.interview-popup__blue {
    color: #00AEBC;
    margin: 0 20px 2px;
    font-weight: 600;
    font-size: 12px;
}

.interview-popup__school {
    font-weight: 400;
    margin-left: 20px;
    font-size: 12px;
}

.interview-content .slick-prev {
    left: -40px;
}

.interview-content .slick-next {
    right: -40px;
}

.interview-content .slick-prev, .interview-content .slick-next {
    top: 50%;
}

.interview .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.interview .slick-slide {
    height: auto !important;
}

@media screen and (max-width:950px){
    .interview-item {
        margin: 0 13px;
    }
}

@media screen and (max-width:768px){
    .interview {
        padding: 50px 0;
    }

    .interview-item {
        -webkit-box-shadow: 5px 5px 0px 0 rgb(0, 174, 188);
                box-shadow: 5px 5px 0px 0 rgb(0, 174, 188);
    }

    .interview-title {
        max-width: 180px;
        margin-bottom: 20px;
    }

    .interview-title__decoration {
        width: 130px;
        right: -70px;
        bottom: 48px;
    }

    .interview-popup {
        -webkit-box-shadow: 5px 5px 0px 0 rgb(0, 174, 188);
                box-shadow: 5px 5px 0px 0 rgb(0, 174, 188);
    }

    .interview-inner {
        width: 100%;
    }

    .interview-content .slick-prev {
        left: 5%;
    }

    .interview-content .slick-next {
        right: 5%;
    }

    .interview-popup__inner {
        padding: 14px 12px 20px;
    }

    .interview-popup__about {
        padding: 12px;
    }

    .interview-popup__about_top {
        padding: 8px 8px 11px;
    }

    .interview-item__about_university {
        font-size: 16px;
    }

    .interview-item__about_department {
        font-size: 12px;
    }

    .interview-popup__name {
        margin: 2px 9px 1px;
        font-size: 16px;
    }

    .interview-popup__blue {
        margin: 0 9px 1px;
    }

    .interview-popup__school {
        margin-left: 9px;
    }

    .interview-popup__text {
        padding: 20px 0 0;
    }

    .interview-popup__close {
        width: 28px;
        right: -12px;
        top: -12px;
    }

    .interview-popup__cover {
        padding: 30px 0;
    }

    .interview::before {
        height: 8px;
    }

    .interview::after {
        height: 8px;
    }
}

@media screen and (max-width:450px){
    .interview-content .slick-prev {
        left: 2%;
    }

    .interview-content .slick-next {
        right: 2%;
    }
}

@media screen and (max-width:380px){
    .interview-item__about_department {
        font-size: 11px;
    }

    .interview-popup__school {
        font-size: 11px;
    }

    .interview-title__decoration {
        right: -40px;
    }
}

@media screen and (max-width:350px){
    .interview-title__decoration {
        width: 120px;
        right: -60px;
    }

    .interview-item {
        padding-bottom: 20px;
    }

    .interview-item__about {
        margin-top: 12px;
    }

    .interview-item__department {
        font-size: 13px;
    }

    .interview-item__about_department {
        font-size: 10px;
    }

    .interview-popup__school {
        font-size: 10px;
    }
}

/*--------------------------school----------------------------*/
.school {
    background-color: #CEEDF0;
    position: relative;
    padding: 70px 0 80px;
}

.school-background {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.school-inner {
    position: relative;
    z-index: 10;
    margin: 0 auto;
    width: 90%;
    max-width: 960px;
}

.school-title {
    max-width: 580px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.school-title__decoration {
    position: absolute;
    right: -94px;
    bottom: 45px;
    width: 91px;
}

.school-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.school-item {
    background-color: #fff;
    padding: 20px 30px 40px;
    width: 50%;
    position: relative;
    -webkit-box-shadow: 10px 10px 0px 0 rgb(101, 205, 213);
            box-shadow: 10px 10px 0px 0 rgb(101, 205, 213);
}

.school-item:first-of-type::after {
    content: "";
    width: 4px;
    background-color: #E0F8FA;
    height: 95%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.school-item:first-of-type > img {
    max-width: 416px;
    margin-top: 16px;
} 

.school-item > img {
    max-width: 420px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

.school-item__bottom {
    margin-top: 30px;
    width: 100%;
}

.school-item__title {
    font-weight: 600;
    font-size: 22px;
    margin: 30px 0 12px;
}

.school-item__bottom_title {
    font-weight: 600;
    font-size: 25px;
    text-align: center;
    margin-bottom: 24px;
}

.school-item__blue {
    font-weight: 600;
    font-size: 18px;
    color: #00AEBC;
}

.school-item__blue:not(:first-of-type) {
    margin-top: 8px;
}

.school-item .school-item__graph_sp {
        display: none;
}

@media screen and (max-width:800px){
    .school-title {
        max-width: 370px;
    }
}

@media screen and (max-width:768px){
    .school {
        padding: 50px 0;
    }

    .school-title {
        max-width: 230px;
        margin-bottom: 20px;
    }

    .school-title__decoration {
        right: -30px;
        bottom: 53px;
        z-index: -1;
        width: 80px;
    }

    .school-item:first-of-type > img {
        margin-top: 0;
    }

    .school-item {
        width: 100%;
        -webkit-box-shadow: 5px 5px 0px 0 rgb(101, 205, 213);
                box-shadow: 5px 5px 0px 0 rgb(101, 205, 213);
        padding: 30px 20px;
    }

    .school-item:first-of-type {
        margin-bottom: 20px;
    }

    .school-item:first-of-type::after {
        display: none;
    }

    .school-item .school-item__graph_pc {
        display: none;
    }

    .school-item .school-item__graph_sp {
        display: block;
    }

    .school-item__bottom_title {
        margin-bottom: 18px;
    }

    .school-item__bottom {
        margin-top: 20px;
    }

    .school-item__title {
        font-size: 20px;
        margin: 30px 0 8px;
    }
}

/*--------------------------club----------------------------*/
.club {
    padding: 70px 0 120px;
    background-color: #F5F5F5;
}

.club-inner {
    margin: 0 auto;
    max-width: 960px;
    width: 90%;
}

.club-title {
    max-width: 430px;
    margin:  0 auto;
    margin-bottom: 40px;
}

.club-title__decoration {
    position: absolute;
    right: -65px;
    width: 62px;
    bottom: 45px;
    display: block;
}

.club-text {
    width: 100%;
    max-width: 782px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.club-content {
    position: relative;
    z-index: 11;
}

.club-content::before {
    content: "";
    bottom: -40px;
    left: -40px;
    width: calc(100% + 80px);
    background-color: #CEEDF0;
    position: absolute;
    height: 100%;
    z-index: -1;
}

.club-item {
    background-color: #fff;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.club-item:first-of-type {
    margin-bottom: 30px;
}

.club-item__image {
    width: 51%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.club-item__text {
    width: 46%;
}

.club-item__title {
    font-weight: 600;
    font-size: 26px;
    border-bottom: 2px solid #00AEBC;
    padding-bottom: 20px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.club-item__title2 {
    margin-top: 50px;
}

.club-item__image_small {
    width: 49%;
}

.club-item__image_small:first-of-type, .club-item__image_small:nth-of-type(2) {
    margin-bottom: 10px;
}

.club-item__image_sp {
    display: none;
}

@media screen and (max-width:1100px){
    .club-content::before {
        bottom: -20px;
        left: -20px;
        width: calc(100% + 40px);
    }
}

@media screen and (max-width:900px){
    .club-item__title {
        font-size: 20px;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .club-item__title2 {
        margin-top: 30px;
    }
}

@media screen and (max-width:768px){
    .club {
        padding: 50px 0 76px;
    }

    .club-title {
        max-width: 290px;
        margin-bottom: 20px;
    }

    .club-title__decoration {
        right: -22px;
        bottom: 53px;
    }

    .club-item__image_sp {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-top: 20px;
    }

    .club-content {
        margin: 0 20px;
    }

    .club-item {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        padding: 30px 15px 15px;
    }

    .club-item__text {
        width: 100%;
        -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
                order: 0;
    }

    .club-item__image {
        width: 100%;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        margin-top: 20px;
    }

    .club-item:first-of-type {
        margin-bottom: 0;
        padding-bottom: 15px;
    }

    .club-item:nth-of-type(2) {
        padding-top: 15px;
    }

    .club-item__image_small:first-of-type, .club-item__image_small:nth-of-type(2) {
        display: none;
    }

    .club-item__image_sp .club-item__image_small:first-of-type, .club-item__image_sp .club-item__image_small:nth-of-type(2) {
        display: block;
    }
}

@media screen and (max-width:350px){
    .club-title__decoration {
        right: 12px;
    }
}

/*--------------------------uniform----------------------------*/
.uniform {
    background-color: #65CDD5;
    padding: 70px 0 80px;
    line-height: 1.5;
    position: relative;
}

.uniform::before {
    content: "";
    background-image: url(../images/border.png);
    width: 100%;
    height: 12px;
    background-size: auto 100%;
    display: block;
    background-repeat: repeat-x;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 2;
}

.uniform::after {
    content: "";
    background-image: url(../images/border.png);
    width: 100%;
    height: 12px;
    background-size: auto 100%;
    display: block;
    background-repeat: repeat-x;
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: 3;
}

.uniform-title {
    max-width: 330px;
    margin: 0 auto;
    margin-bottom: 40px;
    color: #fff;
}

.uniform-title__decoration {
    position: absolute;
    right: -115px;
    bottom: 30px;
    display: block;
    width: 122px;
}

.uniform-content {
    max-width: 826px;
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.uniform-item {
    width: 48%;
    background-color: #fff;
    -webkit-box-shadow: 10px 10px 0px 0 rgb(0, 174, 188);
            box-shadow: 10px 10px 0px 0 rgb(0, 174, 188);
}

.uniform-item__image_pc {
    width: 100%;
}

.uniform-item__image_sp {
    display: none;
    width: 100%;
}

.uniform-item__text {
    padding: 12px 20px 20px;
}

.uniform-item__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.uniform-image {
    position: relative;
    margin-top: 50px;
}

.uniform-balloon {
    position: absolute;
    top: -24px;
    left: 10%;
    width: 280px;
    display: block;
}

.uniform-image__pc {
    display: block;
    width: 100%;
}

.uniform-image__sp {
    display: none;
    width: 100%;
}

.uniform-balloon_sp {
    display: none;
}

@media screen and (max-width:1000px){
    .uniform-balloon {
        width: 230px;
        top: -30px;
    }
}

@media screen and (max-width:768px){
    .uniform {
        padding: 50px 0;
    }

    .uniform-title {
        max-width: 210px;
        margin-bottom: 20px;
    }

    .uniform-title__decoration {
        right: -80px;
        bottom: 40px;
    }

    .uniform::before {
        height: 8px;
    }
    
    .uniform::after {
        height: 8px;
    }

    .uniform-item {
        -webkit-box-shadow: 5px 5px 0px 0 rgb(0, 174, 188);
                box-shadow: 5px 5px 0px 0 rgb(0, 174, 188);
    }

    .uniform-content {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .uniform-item {
        width: 100%;
    }

    .uniform-item:first-of-type {
        margin-bottom: 20px;
    }

    .uniform-balloon {
        max-width: 260px;
        width: 58%;
        top: -48px;
        left: 5%;
    }

    .uniform-image {
        margin-top: 60px;
    }

    .uniform-item__image_pc {
        display: none;
    }

    .uniform-item__image_sp {
        display: block;
    }

    .uniform-image__pc {
        display: none;
    }

    .uniform-image__sp {
        display: block;
    }

    .uniform-balloon_sp {
        display: block;
    }

    .uniform-balloon_pc {
        display: none;
    }
}

@media screen and (max-width:400px){
    .uniform-title__decoration {
        right: -20px;
    }
}

/*--------------------------event----------------------------*/
.event {
    background-color: #CEEDF0;
    padding: 70px 0 80px;
    overflow: hidden;
}

.event-title {
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.event-title__decoration {
    position: absolute;
    right: -70px;
    bottom: 45px;
    display: block;
    width: 71px;
}

.event-text {
    margin: 0 auto;
    text-align: center;
    width: 90%;
    max-width: 900px;
    font-weight: 400;
}

.event-wrapper {
    margin: 0 auto;
    width: 90%;
    max-width: 900px;
    margin-bottom: 60px;
    margin-top: 40px;
}

.event-top {
    background-color: #A0E0E6;
    padding: 25px 40px 30px;
}

.event-top__title {
    text-align: center;
    font-weight: 600;
    font-size: 21px;
    margin-bottom: 25px;
}

.event-top_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.event-top__item {
    background-color: #fff;
    width: 32.6%;
    font-size: 19px;
    color: #00AEBC;
    padding: 16px 8px;
    text-align: center;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.event-top__item1, .event-top__item2, .event-top__item3 {
    margin-bottom: 10px;
}

.event-top__item1 {
    border-left: #00AEBC 20px solid;
}

.event-top__item2 {
    border-left: #89C582 20px solid;
}

.event-top__item3 {
    border-left: #F2E07E 20px solid;
}

.event-top__item4 {
    border-left: #C498C6 20px solid;
}

.event-top__item5 {
    border-left: #EC858C 20px solid;
}

.event-top__item6 {
    border-left: #199CCC 20px solid;
}

.event-bottom {
    background-color: #00AEBC;
    padding: 28px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.event-bottom__text {
    color: #fff;
    font-size: 20px;
    width: 48%;
    font-weight: 600;
}

.event-bottom__btn {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.event-bottom__btn a {
    width: 100%;
    display: block;
    color: #00AEBC;
    font-weight: 600;
    text-align: center;
    position: relative;
    font-size: 20px;
    padding: 22px;
    background-image: url("../images/event_btn_backgound.png");
    background-size: 100% 100%;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-box-shadow: 10px 10px 0px 0 rgb(2, 118, 128);
            box-shadow: 10px 10px 0px 0 rgb(2, 118, 128);
}

.event-bottom__btn a:hover {
    opacity: 0.8;
}

.event-bottom__btn img {
    position: absolute;
    right: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 15px;
}

.event-title__br_sp {
    display: none;
}

.event-image {
  width: 2130px;
  overflow: hidden;
  position: relative;
}

.event-image__content_left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: scroll-left 40s linear infinite;
            animation: scroll-left 40s linear infinite;
    width: 4305px;
    margin-bottom: 15px;
}

.event-image__content_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: scroll-right 40s linear infinite;
          animation: scroll-right 40s linear infinite;
  width: 4305px;
}

.event-image__item {
  width: 2130px;
  height: auto;
  display: block;
}

@-webkit-keyframes scroll-right {
  0% {
    -webkit-transform: translateX(-2130px);
            transform: translateX(-2130px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes scroll-right {
  0% {
    -webkit-transform: translateX(-2130px);
            transform: translateX(-2130px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-2130px);
            transform: translateX(-2130px);
  }
}

@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-2130px);
            transform: translateX(-2130px);
  }
}


@media screen and (max-width:768px){
    .event {
        padding: 50px 0;
    }

    .event-title {
        max-width: 300px;
        margin-bottom: 20px;
    }

    .event-title__decoration {
        right: 30px;
        bottom: 52px;
    }

    .event-text {
        text-align: left;
    }

    .event-wrapper {
        margin-top: 30px;
        margin-bottom: 40px;
    }

    .event-top {
        padding: 30px 20px;
    }

    .event-top__title {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .event-top_content {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .event-top__item {
        width: 100%;
        padding: 8px 16px;
    }

    .event-top__item4, .event-top__item5 {
        margin-bottom: 10px;
    }

    .event-bottom {
        padding: 30px 20px;
    }

    .event-bottom {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .event-bottom__text {
        width: 100%;
        text-align: center;
    }

    .event-bottom__btn {
        width: 100%;
        line-height: 1.5;
        margin-top: 26px;
    }

    .event-bottom__btn a {
        -webkit-box-shadow: 5px 5px 0px 0 rgb(2, 118, 128);
                box-shadow: 5px 5px 0px 0 rgb(2, 118, 128);
    }
}

@media screen and (max-width:500px){
    .event-image {
        width: 1707px;
    }

    .event-image__content_right {
        -webkit-animation: scroll-right 40s linear infinite;
                animation: scroll-right 40s linear infinite;
        width: 4305px;
    }

    .event-image__content_left {
        -webkit-animation: scroll-left 40s linear infinite;
                animation: scroll-left 40s linear infinite;
        width: 4305px;
    }

    .event-image__item {
        width: 1707px;
    }

    @-webkit-keyframes scroll-right {
    0% {
        -webkit-transform: translateX(-1707px);
                transform: translateX(-1707px);
    }
    100% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    }

    @keyframes scroll-right {
    0% {
        -webkit-transform: translateX(-1707px);
                transform: translateX(-1707px);
    }
    100% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    }

    @-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-1707px);
                transform: translateX(-1707px);
    }
    }

    @keyframes scroll-left {
    0% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-1707px);
                transform: translateX(-1707px);
    }
    }
}

@media screen and (max-width:400px){
    .event-bottom__text {
        font-size: 18px;
    }
}

@media screen and (max-width:360px){
    .event-title__br_sp {
        display: block;
        line-height: 1.5;
    }

    .event-bottom__text {
        font-size: 16px;
    }

    .event-bottom__btn a {
        font-size: 20px;
    }

    .event-bottom__btn img {
        width: 14px;
    }
}

@media screen and (max-width:350px){
    .event-bottom__btn a {
        font-size: 18px;
    }
}

/*--------------------------access----------------------------*/
.access {
    padding: 70px 0 100px;
    background-color: #F5F5F5;
    overflow: hidden;
}

.access-inner {
    max-width: 960px;
    margin: 0 auto;
    width: 90%;
}

.access-title {
    max-width: 160px;
    margin: 0 auto;
    margin-bottom: 57px;
}

.access-title__decoration {
    width: 98px;
    right: -90px;
    bottom: 45px;
    display: block;
    position: absolute;
}

.access-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.access-map {
    width: 50%;
    height: 297px;
    position: relative;
    z-index: 12;
}

.access-map iframe {
    width: 100%;
    height: 100%;
}

.access-text {
    font-weight: 600;
    width: 50%;
    position: relative;
    font-size: 15px;
}

.access-text::before {
    content: "";
    background-color: #fff;
    top: -10%;
    left: -30%;
    height: 120%;
    width: 100vw;
    display: block;
    position: absolute;
}

.access-text p {
    position: relative;
    margin-left: 70px;
}

.access-text p:not(:first-of-type) {
    margin-top: 18px;
}

.access-text p::before {
    content: "";
    width: 30px;
    height: 2px;
    background-color: #00AEBC;
    position: absolute;
    left: -40px;
    top: 18px;
}

.access-text__blue {
    font-size: 18px;
    color: #00AEBC;
}

@media screen and (max-width:980px){
    .access-map {
        width: 50%;
    }

    .access-text {
        width: 50%;
    }
}

@media screen and (max-width:980px){
    .access-text {
        font-size: 14px;
    }

    .access-text__blue {
        font-size: 17px;
    }
}

@media screen and (max-width:768px){
    .access {
        padding: 50px 0 90px;
    }

    .access-title {
        max-width: 130px;
        margin-bottom: 20px;
    }

    .access-title__decoration {
        right: -40px;
        bottom: 48px;
    }

    .access-inner {
        width: 85%;
    }

    .access-content {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .access-text {
        width: 100%;
        padding-top: 30px;
    }

    .access-text::before {
        left: -5%;
        height: 125%;
        width: 110%;
    }

    .access-map {
        width: 100%;
    }

    .access-text p::before {
        width: 26px;
        left: -35px;
    }

    .access-text p {
        margin-left: 35px;
    }
}

@media screen and (max-width:450px){
    .access-map {
        height: 164px;
    }
}

@media screen and (max-width:350px){
    .access-text {
        font-size: 13px;
    }

    .access-text__blue {
        font-size: 16px;
    }
}

/*--------------------------footer----------------------------*/
.footer {
    padding: 14px 0;
    margin: 0 auto;
    max-width: 960px;
    width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.footer-logo {
    width: 49%;
}

.footer-logo__link {
    max-width: 317px;
    display: block;
    width: 100%;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.footer-logo__link:hover {
    opacity: 0.7;
}

.footer-logo__link img {
    width: 100%;
    display: block;
}

.footer-text {
    font-weight: 400;
    width: 49%;
}

.footer-text__blue {
    color: #00AEBC;
    font-size: 18px;
    font-weight: bold;
    margin-right: 6px;
}

a[href^="tel:"] {
    pointer-events: none;
}

@media screen and (max-width:768px){
    .footer {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .footer-logo {
        width: 100%;
    }

    .footer-text {
        width: 100%;
        margin-top: 18px;
    }

    a[href^="tel:"] {
        pointer-events: auto;
    }

    .footer {
        padding: 18px 0 110px;
    }
}

@media screen and (max-width:450px){
    .footer-logo__link {
        max-width: 218px;
    }
}