/* loading */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    overflow: hidden;
    background: #000;
    font-size: 0;
    text-align: center;
}
.loading:before {
    content: '';
    vertical-align: middle;
    display: inline-block;
    height: 100%;
}
.loading_inner {
    width: 30%;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
.loading_bar {
    height: 4px;
    width: 100%;
    margin: 30px 0;
    position: relative;
    background-color: #7e7e7e;
}
.loading_bar:before {
    top: 0;
    left: 0;
    width: 0;
    content: '';
    height: inherit;
    position: absolute;
    background-color: #fff;
    animation: bar 2500ms linear infinite;
}
.loading_text {
    display: block;
    margin: 0 auto;
    width: 30%;
}
@keyframes bar {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
@media screen and (max-width: 750px) {
    .loading_inner {
        width: 50%;
    }
    .loading_bar {
        margin: 13% 0;
    }
    .loading_text {
        width: 70%;
    }
}

/* floating_bg */
.floating_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/home/floating_bg.jpg) no-repeat 50% 0% / cover;
    min-width: 1080px;
}
@media screen and (max-width: 750px) {
    .floating_bg {
        min-width: 320px;
    }
}

/* mv */
.mv {
    position: relative;
    overflow: hidden;
    padding-top: 79.2%;
}
.mv_main {
    position: absolute;
    top: 2%;
    left: 38.5%;
    width: 66.5%;
}
.mv_ttl {
    position: absolute;
    top: 19.6%;
    left: 3.6%;
    width: 48.7%;
    height: auto;
    z-index: 1;
}
@media screen and (max-width: 750px) {
    .mv {
        padding-top: 199.2%;
    }
    .mv_main {
        top: 39.8%;
        left: -1.9%;
        width: 106.6%;
    }
    .txt_entry_wrap {
        width: 45.5%;
    }
    .mv_ttl {
        top: 11.6%;
        left: 6.6%;
        width: 86.3%;
    }
}
/* mv_animation_ready */
.animation_ready .mv_main {
    opacity: 0;
}
.animation_ready .mv_ttl {
    opacity: 0;
}
.animation_ready .txt_entry_wrap {
    clip-path: polygon(100% 0%, 100% 100%, 100% 100%, 100% 0%);
}
/* mv_animation_load */
.animation_load .mv_main {
    transition: opacity 0.2s;
}
.animation_load .mv_ttl {
    transition: opacity 0.2s;
}
.animation_load .txt_entry_wrap {
    transition: clip-path 0.2s;
}
/* mv_animation */
.animation_ready .mv.waypoint_animated .mv_main {
    opacity: 1;
    transition: opacity 2s 0s;
}
.animation_ready .waypoint_animated .mv_ttl {
    opacity: 1;
    transition: opacity 1s 1.5s;
}
.animation_ready .waypoint_animated .txt_entry_wrap {
    clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0% 0%);
    transition: clip-path 0.5s 1s;
}

/* common_animation_ready */
.animation_ready .section_ttl {
    opacity: 0;
    transform: translate3d(30px, 0, 0);
}
/* common_animation_load */
.animation_load .section_ttl {
    transition: opacity 0.2s;
}
/* common_animation */
.animation_ready .section_ttl.waypoint_animated {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.4s 0s, transform 0.8s 0s;
}

/* description */
.description {
    position: relative;
    padding-bottom: 150px;
}
.description:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    padding-top: 20%;
    mix-blend-mode: multiply;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2e3a40+0,2e3a40+100&0+0,0.7+100 */
    background: -moz-linear-gradient(top, rgba(46, 58, 64, 0) 0%, rgba(46, 58, 64, 0.7) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(46, 58, 64, 0) 0%, rgba(46, 58, 64, 0.7) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(46, 58, 64, 0) 0%, rgba(46, 58, 64, 0.7) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002e3a40', endColorstr='#b32e3a40',GradientType=0 ); /* IE6-9 */
}
.description:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2e3a40+0,000000+100&0+0,0.7+0,1+100 */
    background: -moz-linear-gradient(top, rgba(46, 58, 64, 0.7) 0%, rgba(0, 0, 0, 1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(46, 58, 64, 0.7) 0%, rgba(0, 0, 0, 1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(46, 58, 64, 0.7) 0%, rgba(0, 0, 0, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b32e3a40', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
}
.description_inner {
    position: relative;
    padding-top: 1px;
    width: 880px;
    margin: 0px auto;
}
.description_stamp {
    position: relative;
    width: 300px;
    height: auto;
    z-index: 1;
    margin: -153px auto 0;
    display: block;
    padding-left: 15px;
}
.description_ttl {
    width: 967px;
    margin-top: 33px;
    height: auto;
    position: relative;
    z-index: 1;
    margin-left: -45px;
}
.description_add_txt {
    color: #f00;
    text-align: center;
    font-size: 22px;
    line-height: 1.66;
    margin-top: 15px;
}
.description_txt {
    color: #fff;
    width: 97.3%;
    font-size: 32px;
    line-height: 1.66;
    margin: 80px auto 0;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-align: justify;
}
.description_txt_sign {
    color: #fff;
    width: 98.1%;
    line-height: 1.63;
    margin: 80px auto 0;
    font-weight: 700;
}
.description_txt_sign_en {
    display: block;
    font-size: 20px;
    letter-spacing: -0.005em;
}
.description_txt_sign_jp {
    display: block;
    font-size: 38px;
    letter-spacing: 0.18em;
    margin-top: 0.8%;
}
@media screen and (max-width: 750px) {
    .description {
        padding-bottom: 34.3%;
    }
    .description_inner {
        width: auto;
        margin: -1% 7%;
    }
    .description_stamp {
        width: 46%;
        margin: -28% auto 0;
        padding-left: 2%;
    }
    .description_ttl {
        width: 100%;
        margin-top: 5.2%;
        margin-left: auto;
        margin-right: auto;
    }
    .description_inner h2 {
        width: auto;
        margin: 0% 1%;
    }
    .description_add_txt {
        font-size: 2.8vw;
        margin-top: 1%;
    }
    .description_txt {
        width: auto;
        font-size: 4.5vw;
        line-height: 1.76;
        margin: 1.1% auto 0;
        letter-spacing: 0.09em;
    }
    .description_txt_sign {
        width: 100%;
        margin: 11% auto 0;
    }
    .description_txt_sign_en {
        font-size: 2.7vw;
    }
    .description_txt_sign_jp {
        font-size: 5.2vw;
    }
}
/* description_animation_ready */
.animation_ready .description:after,
.animation_ready .description:before {
    opacity: 0;
}
.animation_ready .description_stamp {
    opacity: 0;
}
.animation_ready .description_ttl {
    opacity: 0;
}
.animation_ready .description_add_txt {
    opacity: 0;
}
.animation_ready .description_txt {
    opacity: 0;
}

/* description_animation_load */
.animation_load .description:after,
.animation_load .description:before {
    transition: opacity 0.2s;
}
.animation_load .description_stamp {
    transition: opacity 0.2s;
}
.animation_load .description_ttl {
    transition: opacity 0.2s;
}
.animation_load .description_add_txt {
    transition: opacity 0.2s;
}
.animation_load .description_txt {
    transition: opacity 0.2s;
}

/* description_animation */
.animation_ready .description.waypoint_animated:after,
.animation_ready .description.waypoint_animated:before {
    opacity: 1;
    transition: opacity 0.5s 0s;
}
.animation_ready .description.waypoint_animated .description_stamp {
    opacity: 1;
    transition: opacity 0.5s 0.5s;
}
.animation_ready .description.waypoint_animated .description_ttl {
    opacity: 1;
    transition: opacity 0.5s 1s;
}
.animation_ready .description.waypoint_animated .description_add_txt {
    opacity: 1;
    transition: opacity 0.5s 1s;
}
.animation_ready .description.waypoint_animated .description_txt {
    opacity: 1;
    transition: opacity 0.5s 1.5s;
}

/* ink_bg */
.ink_bg {
    background: #35383a;
    position: relative;
    overflow: hidden;
}
.ink_1 {
    position: absolute;
    top: -16%;
    left: 68.2%;
    width: 432px;
    margin-left: -216px;
}
.ink_2 {
    position: absolute;
    top: 34.9%;
    left: -3.9%;
    width: 653px;
    margin-left: -326px;
}
.ink_3 {
    position: absolute;
    top: -10.5%;
    left: 100.3%;
    width: 570px;
    margin-left: -285px;
}
.ink_4 {
    position: absolute;
    top: 18.1%;
    left: 119.7%;
    width: 574px;
    margin-left: -287px;
}
.ink_5 {
    position: absolute;
    top: 90.9%;
    left: 2.6%;
    width: 648px;
    margin-left: -324px;
}
.ink_6 {
    position: absolute;
    top: 89.9%;
    left: 90.6%;
    width: 422px;
    margin-left: -211px;
}
@media screen and (max-width: 750px) {
    .ink_1 {
        top: -8.7%;
        left: 23.5%;
        width: 59%;
        margin-left: 0;
    }
    .ink_2 {
        top: 90.8%;
        left: -88.2%;
        width: 180%;
        margin-left: 0;
    }
    .ink_3 {
        top: -7.6%;
        left: 60.9%;
        width: 79%;
        margin-left: 0;
    }
    .ink_4 {
        top: 8.7%;
        left: 88.7%;
        width: 78%;
        margin-left: 0;
    }
    .ink_5 {
        top: 17.4%;
        left: -37.6%;
        width: 67%;
        margin-left: 0;
    }
    .ink_6 {
        top: 93.9%;
        left: 70.6%;
        width: 70%;
        margin-left: 0;
    }
}

/* three_points */
.three_points {
    position: relative;
    padding-top: 1px;
}
.three_points_inner {
    position: relative;
    width: 940px;
    margin: 121px auto 72px;
}
.three_points_ttl {
    width: 56.4%;
    height: auto;
}
.three_points_list {
    margin-top: 8.8%;
}
.three_points_list > li {
    width: 99.3%;
    position: relative;
    padding-top: 28.4%;
    margin: 0px auto;
}
.three_points_list > li + li {
    margin-top: 2.5%;
}
.three_points_list > li:nth-child(1) {
    background: url(../img/home/three_points_bg_1.png) no-repeat 50% 0% / 100% auto;
}
.three_points_list > li:nth-child(2) {
    background: url(../img/home/three_points_bg_2.png) no-repeat 50% 0% / 100% auto;
}
.three_points_list > li:nth-child(3) {
    background: url(../img/home/three_points_bg_3.png) no-repeat 50% 0% / 100% auto;
}
.three_points_list_cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    color: #fff;
}
.three_points_list_cover:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
.three_points_subttl {
    font-size: 0px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5.2%;
    width: 41.8%;
    height: 100%;
}
.three_points_subttl:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
.three_points_txt {
    font-size: 20px;
    display: inline-block;
    vertical-align: middle;
    width: 49.7%;
    line-height: 1.75;
    letter-spacing: 0.04em;
}
.three_points_num_wrap {
    display: inline-block;
    vertical-align: middle;
    width: 19.9%;
}
.three_points_num_1 {
    width: 41.2%;
    height: auto;
    margin-left: 0.8%;
}
.three_points_num_2 {
    width: 62.9%;
    height: auto;
    margin-top: -1.2%;
    margin-left: -2.8%;
}
.three_points_num_3 {
    width: 66.3%;
    height: auto;
    margin-left: -2.5%;
}
.three_points_subttl_txt {
    width: 73.1%;
    display: inline-block;
    vertical-align: middle;
}
.three_points_subttl_en {
    display: block;
    font-size: 13px;
    letter-spacing: 0.025em;
    line-height: 1;
    margin-top: -5%;
}
.three_points_subttl_jp {
    display: block;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.195em;
    margin-top: 3.6%;
}
.three_points_jp_inner {
    display: inline;
    padding-bottom: 1.5%;
    background: url(../img/home/three_points_line.png) repeat-x 0% 100% / auto 4px;
}
@media screen and (max-width: 750px) {
    .three_points_list {
        margin-top: 13.1%;
    }
    .three_points_inner {
        width: auto;
        margin: 18.1% 8.8% 10%;
    }
    .three_points_ttl {
        width: 71.4%;
        height: auto;
    }
    .three_points_list > li:nth-child(1) {
        background: url(../img/home/three_points_bg_1_sp.png) no-repeat 50% 0% / 100% auto;
        padding-top: 87%;
    }
    .three_points_list > li:nth-child(2) {
        background: url(../img/home/three_points_bg_2_sp.png) no-repeat 50% 0% / 100% auto;
        padding-top: 98%;
    }
    .three_points_list > li:nth-child(3) {
        background: url(../img/home/three_points_bg_3_sp.png) no-repeat 50% 0% / 100% auto;
        padding-top: 110.5%;
    }
    .three_points_list > li + li {
        margin-top: 7.5%;
    }
    .three_points_list_cover {
        box-sizing: border-box;
        padding: 10% 7%;
    }
    .three_points_subttl {
        display: block;
        margin-left: 0;
        width: 100%;
        height: auto;
    }
    .three_points_list_cover:before {
        display: none;
    }
    .three_points_txt {
        font-size: 20px;
        display: block;
        width: auto;
    }
    .three_points_num_wrap {
        width: 21.8%;
        vertical-align: top;
    }
    .three_points_subttl_txt {
        width: 78%;
    }
    .three_points_num_1 {
        width: 45.2%;
        margin-left: 11.8%;
    }
    .three_points_num_2 {
        width: 70.6%;
        margin-top: -4.2%;
        margin-left: 6.2%;
    }
    .three_points_num_3 {
        width: 70.4%;
        height: auto;
        margin-left: 6.5%;
    }
    .three_points_subttl_en {
        font-size: 3vw;
        letter-spacing: 0.1em;
        margin-top: 0%;
        margin-left: 1%;
    }
    .three_points_subttl_jp {
        font-size: 5.6vw;
        line-height: 1.7;
        letter-spacing: 0.08em;
        margin-top: 2.5%;
    }
    .three_points_txt {
        font-size: 3.6vw;
        display: block;
        width: auto;
        line-height: 1.75;
        letter-spacing: 0.035em;
        margin-top: 11.2%;
    }
}
/* three_points_animation_ready */
.animation_ready .three_points_list > li {
    opacity: 0;
}
/* three_points_animation_load */
.animation_load .three_points_list > li:nth-child(1) {
    transition: opacity 0.2s;
}
.animation_load .three_points_list > li:nth-child(2) {
    transition: opacity 0.2s;
}
.animation_load .three_points_list > li:nth-child(3) {
    transition: opacity 0.2s;
}
/* three_points_animation */
.animation_ready .three_points_list.waypoint_animated > li {
    opacity: 1;
}
.animation_ready .three_points_list.waypoint_animated > li:nth-child(1) {
    transition: opacity 1s 0s;
}
.animation_ready .three_points_list.waypoint_animated > li:nth-child(2) {
    transition: opacity 1s 0.3s;
}
.animation_ready .three_points_list.waypoint_animated > li:nth-child(3) {
    transition: opacity 1s 0.6s;
}

/* steps */
.steps {
    position: relative;
    overflow: hidden;
    padding-bottom: 85px;
    border-bottom: 2px solid #fff;
}
.steps_inner {
    position: relative;
    width: 940px;
    margin: 63px auto 71px;
}
.steps_ttl {
    width: 78.8%;
    height: auto;
}
.step_list {
    font-size: 0;
    text-align: left;
    margin-top: 5.7%;
    width: 110%;
    color: #fff;
}
.step_list > li {
    display: inline-block;
    vertical-align: top;
    position: relative;
    text-align: center;
}
.step_item_1 {
    width: 27.2%;
    margin-left: 1.3%;
}
.step_item_2 {
    width: 25.5%;
    margin-left: 5.3%;
}
.step_item_3 {
    width: 28.5%;
    margin-left: 4.5%;
}
.step_item_img_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.step_1 {
    width: 100%;
    height: auto;
}
.step_2 {
    width: 100%;
    height: auto;
    position: relative;
    top: -1%;
}
.step_3 {
    width: 100%;
    height: auto;
    position: relative;
    top: 1%;
}
.step_item_ttl {
    font-size: 25px;
    font-weight: 700;
}
.step_item_1 .step_item_ttl {
    margin-top: 308px;
    letter-spacing: 0.2em;
    margin-left: -6.6%;
}
.step_item_2 .step_item_ttl {
    margin-top: 310px;
    letter-spacing: 0.1em;
    margin-left: -10.9%;
}
.step_item_3 .step_item_ttl {
    margin-top: 308px;
    letter-spacing: 0.2em;
    margin-left: -12.6%;
}
.step_item_txt {
    font-size: 14px;
    margin-top: 23px;
    line-height: 1.8;
}
.step_item_1 .step_item_txt {
    letter-spacing: 0.2em;
    margin-left: -6.6%;
}
.step_item_2 .step_item_txt {
    letter-spacing: 0.1em;
    margin-left: -10.9%;
}
.step_item_3 .step_item_txt {
    letter-spacing: 0.2em;
    margin-left: -12.6%;
}
@media screen and (max-width: 750px) {
    .steps {
        padding-bottom: 5.5%;
        border-bottom: 1px solid #fff;
    }
    .steps_inner {
        width: auto;
        margin: 10% 7% 10%;
    }
    .steps_ttl {
        width: 94.1%;
        height: auto;
        margin-left: 2.5%;
    }
    .step_list {
        margin-top: 11.7%;
    }
    .step_item_1 {
        width: 100%;
        margin-left: 0;
    }
    .step_item_2 {
        width: 100%;
        margin-left: 0;
        margin-top: 7%;
    }
    .step_item_3 {
        width: 100%;
        margin-left: 0;
        margin-top: 7.4%;
    }
    .step_item_1 .step_item_img_wrap {
        left: 1.1%;
        width: 45.4%;
    }
    .step_item_2 .step_item_img_wrap {
        left: 1.5%;
        width: 42.5%;
    }
    .step_item_3 .step_item_img_wrap {
        left: 1.5%;
        width: 44.6%;
    }
    .step_item_ttl {
        font-size: 4.7vw;
        text-align: left;
    }
    .step_item_txt {
        font-size: 3vw;
        margin-top: 4.7%;
        line-height: 1.8;
        text-align: left;
    }
    .step_item_1 .step_item_ttl {
        margin-top: 8.2%;
        letter-spacing: 0.14em;
        margin-left: 46.7%;
    }
    .step_item_2 .step_item_ttl {
        margin-top: 8.5%;
        letter-spacing: 0.15em;
        margin-left: 47%;
    }
    .step_item_3 .step_item_ttl {
        margin-top: 3.6%;
        letter-spacing: 0.15em;
        margin-left: 46.7%;
    }
    .step_item_1 .step_item_txt {
        letter-spacing: 0.27em;
        margin-left: 47%;
        padding-bottom: 10%;
    }
    .step_item_2 .step_item_txt {
        letter-spacing: 0.26em;
        margin-left: 47.1%;
        padding-bottom: 14%;
    }
    .step_item_3 .step_item_txt {
        letter-spacing: 0.2em;
        margin-left: 46.4%;
        margin-top: 1.8%;
        width: 40%;
        padding-bottom: 8%;
    }
}
/* step_animation_ready */
.animation_ready .step_list > li {
    opacity: 0;
}
/* step_animation_load */
.animation_load .step_list > li:nth-child(1) {
    transition: opacity 0.2s;
}
.animation_load .step_list > li:nth-child(2) {
    transition: opacity 0.2s;
}
.animation_load .step_list > li:nth-child(3) {
    transition: opacity 0.2s;
}
/* step_animation */
.animation_ready .step_list.waypoint_animated > li {
    opacity: 1;
}
.animation_ready .step_list.waypoint_animated > li:nth-child(1) {
    transition: opacity 0.4s 0s;
}
.animation_ready .step_list.waypoint_animated > li:nth-child(2) {
    transition: opacity 0.4s 0.3s;
}
.animation_ready .step_list.waypoint_animated > li:nth-child(3) {
    transition: opacity 0.4s 0.6s;
}

/* instructors */
.instructors {
    position: relative;
    background: #121212;
    padding-top: 1px;
    border-bottom: 2px solid #fff;
}
.instructors_inner {
    position: relative;
    width: 960px;
    margin: 148px auto 160px;
}
.instructors_ttl {
    width: 19.1%;
    height: auto;
    margin-left: 1.3%;
}
.instructors_list {
    font-size: 0;
    margin-top: 8.7%;
    text-align: center;
}
.instructors_list > li {
    display: inline-block;
    vertical-align: top;
    width: 29.9%;
    margin-left: 4.8%;
}
.instructors_list > li:nth-child(3n-2) {
    margin-left: 0;
}
.instructors_list > li:nth-child(n + 4) {
    margin-top: 5%;
}
.instructors_list > li a {
    display: block;
    color: #fff;
    text-decoration: none;
    text-align: left;
}
.instructors_img_wrap {
    position: relative;
}
.instructors_img {
    border: 11px solid transparent;
    transition: border 0.4s;
}
.instructors_img_wrap .instructors_img {
    width: 100%;
    height: auto;
    box-sizing: border-box;
}
.instructors_img_wrap .instructors_img_name {
    position: absolute;
    top: 10px;
    left: 10px;
    max-height: calc(100% - 20px);
    width: auto;
}
.instructors_img_wrap .on_img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    box-sizing: border-box;
}
.instructors_img_wrap .on_img:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
    background: #ff0;
    background: transparent;
    transition: all 0.4s;
}
a:hover .instructors_img_wrap .on_img:before {
    background: #ff0;
}
/* Ie,Edgeの対応 */
.ms_browser a:hover .instructors_img_wrap .on_img:before {
    background: rgba(255, 255, 0, 0.4);
}
a:hover .instructors_img {
    border: 11px solid #ff0;
}
.instructors_img_wrap .on_img .instructors_img_name {
    opacity: 0;
    transition: opacity 0.4s;
}
a:hover .instructors_img_wrap .on_img .instructors_img_name {
    opacity: 1;
}

.instructors_name {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin-top: 9.9%;
    margin-left: 1%;
    letter-spacing: 0.15em;
}
.instructors_name_ttl {
    font-size: 17px;
    margin-left: 1.9%;
    letter-spacing: 0.12em;
}
.instructors_date {
    font-size: 13px;
    margin-top: 4%;
    margin-left: -1.1%;
}
@media screen and (max-width: 750px) {
    .instructors_inner {
        position: relative;
        width: auto;
        margin: 21% 11% 7.8%;
    }
    .instructors_ttl {
        width: 25.1%;
        margin-left: -1.7%;
    }
    .instructors_list {
        margin-top: 22.7%;
    }
    .instructors_list > li {
        display: block;
        width: 100%;
        margin-left: 0;
    }
    .instructors_name {
        font-size: 5vw;
        margin-top: 9.9%;
        margin-left: 0%;
        letter-spacing: 0.22em;
    }
    .instructors_date {
        font-size: 3.1vw;
        margin-top: 4%;
        margin-left: 0;
        text-align: right;
        margin-right: 1%;
        margin-top: -5.8%;
    }
    .instructors_list > li + li,
    .instructors_list > li:nth-child(n + 4) {
        margin-top: 16.4%;
    }
}
/* instructors_animation_ready */
.animation_ready .instructors_list > li {
    opacity: 0;
}
/* instructors_animation_load */
.animation_load .instructors_list > li:nth-child(1),
.animation_load .instructors_list > li:nth-child(2),
.animation_load .instructors_list > li:nth-child(3),
.animation_load .instructors_list > li:nth-child(4),
.animation_load .instructors_list > li:nth-child(5),
.animation_load .instructors_list > li:nth-child(6),
.animation_load .instructors_list > li:nth-child(7),
.animation_load .instructors_list > li:nth-child(8),
.animation_load .instructors_list > li:nth-child(9),
.animation_load .instructors_list > li:nth-child(10),
.animation_load .instructors_list > li:nth-child(11),
.animation_load .instructors_list > li:nth-child(12),
.animation_load .instructors_list > li:nth-child(13),
.animation_load .instructors_list > li:nth-child(14) {
    transition: opacity 0.2s;
}

/* instructors_animation */
.animation_ready .instructors_list.waypoint_animated > li {
    opacity: 1;
}
.animation_ready .instructors_list.waypoint_animated > li:nth-child(1) {
    transition: opacity 0.4s 0s;
}
.animation_ready .instructors_list.waypoint_animated > li:nth-child(2) {
    transition: opacity 0.4s 0.2s;
}
.animation_ready .instructors_list.waypoint_animated > li:nth-child(3) {
    transition: opacity 0.4s 0.4s;
}
.animation_ready .instructors_list.waypoint_animated > li:nth-child(4) {
    transition: opacity 0.4s 0.6s;
}
.animation_ready .instructors_list.waypoint_animated > li:nth-child(5) {
    transition: opacity 0.4s 0.8s;
}
.animation_ready .instructors_list.waypoint_animated > li:nth-child(6) {
    transition: opacity 0.4s 1s;
}
.animation_ready .instructors_list.waypoint_animated > li:nth-child(7) {
    transition: opacity 0.4s 1.2s;
}
.animation_ready .instructors_list.waypoint_animated > li:nth-child(8) {
    transition: opacity 0.4s 1.4s;
}
.animation_ready .instructors_list.waypoint_animated > li:nth-child(9) {
    transition: opacity 0.4s 1.6s;
}
.animation_ready .instructors_list.waypoint_animated > li:nth-child(10) {
    transition: opacity 0.4s 1.8s;
}
.animation_ready .instructors_list.waypoint_animated > li:nth-child(11) {
    transition: opacity 0.4s 2s;
}
.animation_ready .instructors_list.waypoint_animated > li:nth-child(12) {
    transition: opacity 0.4s 2.2s;
}
.animation_ready .instructors_list.waypoint_animated > li:nth-child(13) {
    transition: opacity 0.4s 2.4s;
}
.animation_ready .instructors_list.waypoint_animated > li:nth-child(14) {
    transition: opacity 0.4s 2.6s;
}

/* summary */
.summary {
    overflow: hidden;
    position: relative;
}
.summary_inner {
    position: relative;
    width: 942px;
    margin: 103px auto 93px;
}
.summary_main {
    position: absolute;
    top: 46%;
    left: 2.2%;
    width: 101.2%;
}
.summary_ttl {
    width: 34.6%;
    height: auto;
}
.summary_logo_wrap {
    margin-top: 7.2%;
    text-align: center;
}
.summary_logo {
    width: 52.8%;
    height: auto;
}
.summary_box {
    width: 91.9%;
    box-sizing: border-box;
    margin: 8% auto 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 8.2% 8.2% 5.2%;
    position: relative;
}
.summary_box_ttl {
    color: #fff;
    font-size: 37px;
    font-weight: 700;
    line-height: 1.4;
    text-align: justify;
}
.summary_img {
    width: 96.6%;
    height: auto;
    margin-top: 5.6%;
    margin-left: 0.3%;
}
.summary_add_txt {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 1%;
    color: #f00;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .summary_main {
        top: 54.6%;
        left: -22.2%;
        width: 143.1%;
    }
    .summary_inner {
        width: auto;
        margin: 21.6% 5.4% 10%;
    }
    .summary_ttl {
        width: 39.6%;
        margin-left: 4.2%;
    }
    .summary_logo_wrap {
        margin-top: 25.2%;
    }
    .summary_logo {
        width: 74.8%;
    }
    .summary_box {
        margin: 10.8% auto 25%;
        padding: 10.2% 4.2% 12.2%;
    }
    .summary_box_ttl {
        font-size: 4.5vw;
        line-height: 1.5;
        text-align: center;
    }
    .summary_img {
        width: 98%;
        margin-top: 10.3%;
        margin-left: 1.4%;
    }
    .summary_add_txt {
        font-size: 2.5vw;
    }
}
/* summary_animation_ready */
.animation_ready .summary_logo_wrap {
    opacity: 0;
}
.animation_ready .summary_main {
    transform: translate3d(0, 100%, 0);
    opacity: 0;
}
.animation_ready .summary_box {
    opacity: 0;
}

/* summary_animation_load */
.animation_load .summary_logo_wrap {
    transition: opacity 0.2s;
}
.animation_load .summary_main {
    transition: transform 0.2s, opacity 0.2s;
}
.animation_load .summary_box {
    transition: opacity 0.2s;
}

/* summary_animation */
.animation_load .waypoint_animated.summary_logo_wrap {
    opacity: 1;
    transition: opacity 1s 2s;
}
.animation_load .waypoint_animated.summary_logo_wrap + .summary_main {
    transform: translate3d(0, 0%, 0);
    opacity: 1;
    transition: opacity 1s 0s, transform 2s 0s;
}
.animation_load .waypoint_animated.summary_logo_wrap + .summary_main + .summary_box {
    opacity: 1;
    transition: opacity 1s 3s;
}

/* schedule */
.schedule {
    overflow: hidden;
    position: relative;
}
.schedule:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2e3a40+0,000000+100&0+0,0.7+0,1+100 */
    background: -moz-linear-gradient(top, rgba(46, 58, 64, 0.7) 0%, rgba(0, 0, 0, 1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(46, 58, 64, 0.7) 0%, rgba(0, 0, 0, 1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(46, 58, 64, 0.7) 0%, rgba(0, 0, 0, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b32e3a40', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
}
.schedule_inner {
    position: relative;
    width: 960px;
    margin: 130px auto 156px;
}
.schedule_ttl {
    width: 50.5%;
    height: auto;
    margin-left: 1.3%;
}
.schedule_txt {
    margin-top: 3.8%;
    color: #fff;
    font-size: 16px;
    margin-left: 1.4%;
}
.schedule_after_txt {
    margin-top: 3.8%;
    color: #fff;
    font-size: 16px;
    margin-left: 1.4%;
}
.schedule_list {
    margin: 3.8% auto 0;
    width: 99.6%;
    padding-left: 0.5%;
}
.schedule_list > li {
    background: #121212;
    display: table;
    table-layout: fixed;
    width: 100%;
    color: #fff;
}
.schedule_list > li + li {
    margin-top: 0.83%;
}
.schedule_vol {
    display: table-cell;
    width: 21.2%;
    box-sizing: border-box;
    padding: 2.2% 4.7%;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 700;
    text-align: left;
    letter-spacing: 0.1em;
}
.schedule_date {
    display: table-cell;
    width: 18.2%;
    box-sizing: border-box;
    padding: 2.2% 0;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 700;
    text-align: left;
    letter-spacing: 0.1em;
}
.schedule_date_small {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-left: 12%;
}
.schedule_type {
    display: table-cell;
    width: 18.7%;
    box-sizing: border-box;
    padding: 1.6% 0.3%;
}
.schedule_link {
    display: block;
    border: 2px solid #fff;
    width: 68.1%;
    font-size: 14px;
    color: #fff;
    background: #000;
    box-sizing: border-box;
    line-height: 2.1;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.05em;
}
.schedule_name {
    display: table-cell;
    box-sizing: border-box;
    padding: 2.2% 0;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
    text-align: left;
    letter-spacing: 0.1em;
}
.schedule_profile {
    position: relative;
    display: table-cell;
    width: 13.2%;
}
.schedule_profile_link {
    display: block;
    background: #fdfe02;
    color: #000;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 0;
    text-decoration: none;
}
.schedule_profile_link:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
.schedule_profile_link_cover {
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
    .schedule_inner {
        width: auto;
        margin: 17.4% 9% 25%;
    }
    .schedule_ttl {
        width: 79.2%;
        margin-left: 1.6%;
    }
    .schedule_txt {
        margin-top: 8%;
        font-size: 2.8vw;
    }
    .schedule_after_txt {
        margin-top: 8%;
        font-size: 2.8vw;
    }
    .schedule_list {
        margin: 8% auto 0;
    }
    .schedule_list > li {
        position: relative;
        padding: 0;
        padding-top: 29%;
    }
    .schedule_list > li + li {
        margin-top: 2.33%;
    }
    .schedule_vol {
        position: absolute;
        top: 11%;
        left: 4%;
        display: block;
        padding: 0;
        font-size: 3.5vw;
        line-height: 1.4;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.1em;
    }
    .schedule_date {
        position: absolute;
        top: 10%;
        left: 21.7%;
        display: block;
        padding: 0;
        font-size: 3.6vw;
        line-height: 1.4;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.1em;
        width: 30%;
    }
    .schedule_date_small {
        font-size: 3vw;
        margin-left: 10%;
    }
    .schedule_type {
        position: absolute;
        top: 67%;
        left: 4%;
        display: inline-block;
        padding: 0;
        width: auto;
        word-break: keep-all;
    }
    .schedule_link {
        display: block;
        border: 1px solid #fff;
        width: auto;
        font-size: 3vw;
        line-height: 2.2;
        padding: 0 2vw;
        letter-spacing: 0.2em;
        box-sizing: content-box;
    }
    .schedule_name {
        position: absolute;
        top: 38%;
        left: 4%;
        display: block;
        padding: 0;
        font-size: 3.9vw;
    }
    .schedule_profile {
        position: absolute;
        top: 0;
        right: 0;
        display: block;
        width: 16.6%;
        height: 100%;
    }
    .schedule_profile_link:before {
        display: none;
    }
    .schedule_profile_link_cover {
        font-size: 3.3vw;
        transform: rotate(-90deg);
        margin-top: 66.2%;
        margin-left: -10%;
    }
}
/* schedule_animation_ready */
.animation_ready .schedule_list > li {
    opacity: 0;
}
/* schedule_animation_load */
.animation_load .schedule_list > li:nth-child(1),
.animation_load .schedule_list > li:nth-child(2),
.animation_load .schedule_list > li:nth-child(3),
.animation_load .schedule_list > li:nth-child(4),
.animation_load .schedule_list > li:nth-child(5),
.animation_load .schedule_list > li:nth-child(6),
.animation_load .schedule_list > li:nth-child(7),
.animation_load .schedule_list > li:nth-child(8),
.animation_load .schedule_list > li:nth-child(9),
.animation_load .schedule_list > li:nth-child(10),
.animation_load .schedule_list > li:nth-child(11),
.animation_load .schedule_list > li:nth-child(12),
.animation_load .schedule_list > li:nth-child(13),
.animation_load .schedule_list > li:nth-child(14) {
    transition: opacity 0.2s 0s;
}
/* schedule_animation */
.animation_ready .schedule_list.waypoint_animated > li {
    opacity: 1;
}
.animation_ready .schedule_list.waypoint_animated > li:nth-child(1) {
    transition: opacity 0.6s 1.3s;
}
.animation_ready .schedule_list.waypoint_animated > li:nth-child(2) {
    transition: opacity 0.6s 1.2s;
}
.animation_ready .schedule_list.waypoint_animated > li:nth-child(3) {
    transition: opacity 0.2s 1.1s;
}
.animation_ready .schedule_list.waypoint_animated > li:nth-child(4) {
    transition: opacity 0.6s 1s;
}
.animation_ready .schedule_list.waypoint_animated > li:nth-child(5) {
    transition: opacity 0.6s 0.9s;
}
.animation_ready .schedule_list.waypoint_animated > li:nth-child(6) {
    transition: opacity 0.6s 0.8s;
}
.animation_ready .schedule_list.waypoint_animated > li:nth-child(7) {
    transition: opacity 0.6s 0.7s;
}
.animation_ready .schedule_list.waypoint_animated > li:nth-child(8) {
    transition: opacity 0.6s 0.6s;
}
.animation_ready .schedule_list.waypoint_animated > li:nth-child(9) {
    transition: opacity 0.6s 0.5s;
}
.animation_ready .schedule_list.waypoint_animated > li:nth-child(10) {
    transition: opacity 0.6s 0.4s;
}
.animation_ready .schedule_list.waypoint_animated > li:nth-child(11) {
    transition: opacity 0.6s 0.3s;
}
.animation_ready .schedule_list.waypoint_animated > li:nth-child(12) {
    transition: opacity 0.6s 0.2s;
}
.animation_ready .schedule_list.waypoint_animated > li:nth-child(13) {
    transition: opacity 0.6s 0.1s;
}
.animation_ready .schedule_list.waypoint_animated > li:nth-child(14) {
    transition: opacity 0.6s 0s;
}

/* faq */
.faq {
    background: #000;
    overflow: hidden;
    position: relative;
}
.faq_inner {
    position: relative;
    width: 960px;
    margin: 134px auto 180px;
}
.faq_ttl {
    width: 16.1%;
    height: auto;
    margin-left: 1.3%;
}
.qa_list {
    margin-top: 82px;
    margin-left: 1.5%;
}
.qa_list > li {
    border-left: 6px solid #fff;
}
.qa_list > li + li {
    margin-top: 50px;
}
.qa_list dl {
    display: table;
    table-layout: fixed;
    width: 100%;
}
.qa_list dl + dl {
    margin-top: 4.1%;
}
.qa_list dt,
.qa_list dd {
    display: table-cell;
}
.qa_list dt {
    width: 12.6%;
    text-align: center;
}
.qa_list dd {
    text-align: left;
    vertical-align: top;
    color: #fff;
    font-size: 20px;
    line-height: 1.4;
    padding: 0.5% 0.6%;
}
.qa_list dd .qa_list_attention {
    font-size: 80%;
    line-height: 1.4;
    display: inline-block;
}

.faq_q_1 {
    width: 34%;
    height: auto;
    margin: 5% 0;
}
.faq_q_2 {
    width: 41%;
    height: auto;
    margin: 5% 0;
}
.faq_q_3 {
    width: 41%;
    height: auto;
    margin: 5% 0;
}
.faq_q_4 {
    width: 41%;
    height: auto;
    margin: 5% 0;
}
.faq_q_5 {
    width: 41%;
    height: auto;
    margin: 5% 0;
}
.faq_q_6 {
    width: 41%;
    height: auto;
    margin: 5% 0;
}
.faq_a {
    width: 34%;
    height: auto;
    margin: 5% 0;
}
@media screen and (max-width: 750px) {
    .faq_inner {
        width: auto;
        margin: 20% 7.4% 10%;
    }
    .faq_ttl {
        width: 18.9%;
        margin-left: 2.7%;
    }
    .qa_list {
        margin-top: 12.3%;
        margin-left: 1.7%;
    }
    .qa_list > li {
        border-left: 3px solid #fff;
    }
    .qa_list > li + li {
        margin-top: 7%;
    }
    .qa_list dl,
    .qa_list dt,
    .qa_list dd {
        display: block;
    }
    .qa_list dt {
        width: 13.6%;
        text-align: right;
    }
    .faq_a {
        width: 54%;
    }
    .faq_q_1 {
        width: 50%;
    }
    .faq_q_2 {
        width: 54%;
    }
    .faq_q_3 {
        width: 55%;
    }
    .faq_q_4 {
        width: 54%;
    }
    .faq_q_5 {
        width: 56%;
    }
    .faq_q_6 {
        width: 55%;
    }

    .qa_list dd {
        font-size: 3.8vw;
        line-height: 1.6;
        padding: 1% 5.6%;
        letter-spacing: 0.13em;
    }
    .qa_list dl + dl {
        margin-top: 5.9%;
    }
}

/* menu */
.menu_wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}
.menu_btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    padding-top: 75px;
    cursor: pointer;
}
.menu_btn_line > li {
    position: absolute;
    left: 22%;
    width: 57%;
    border-top: 2px solid #000;
    box-shadow: 0px 0px 6px #fff;
    transition: all 0.4s;
}
.menu_btn_line > li:nth-child(1) {
    top: 36%;
}
.menu_btn_line > li:nth-child(2) {
    top: 56%;
}
.open .menu_btn_line > li {
    top: 50%;
    border-color: #fff;
}
.open .menu_btn_line > li:nth-child(1) {
    transform: rotate(45deg);
}
.open .menu_btn_line > li:nth-child(2) {
    transform: rotate(-45deg);
}
.menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 441px;
    height: 672px;
    background: #000;
    transform: translate3d(-9999%, 0, 0);
    opacity: 0;
    transition: transform 0s 0.4s, opacity 0.4s 0s;
}
.open .menu {
    transform: translate3d(0%, 0, 0);
    opacity: 1;
    transition: transform 0s 0s, opacity 0.4s 0s;
}
.menu_list {
    margin: 99px 55px 99px 59px;
}
.menu_list > li + li {
    margin-top: 33px;
}
.menu_list > li a {
    display: block;
    color: #fff;
    line-height: 3;
    text-decoration: none;
    font-size: 19px;
    font-weight: 700;
    padding: 0 21px;
    letter-spacing: 0.2em;
    position: relative;
}
.menu_list > li a:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/home/menu_hover_bg.jpg) no-repeat 50% 50% / cover;
    opacity: 0;
}
.menu_txt_cover {
    position: relative;
}
.menu_list > li a {
    transition: color 0.4s;
}
.menu_list > li a:before {
    transition: opacity 0.4s;
}
.menu_list > li a:hover {
    color: #000;
}
.menu_list > li a:hover:before {
    opacity: 1;
}
.txt_entry_wrap {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    background: #ff0;
    width: 18.5%;
    max-width: 240px;
    z-index: 5;
}
.txt_entry {
    width: 37%;
    height: auto;
    display: block;
    margin: 9.6% auto 10%;
    padding-right: 1%;
}
@media screen and (max-width: 750px) {
    .menu {
        width: 100vw;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    .txt_entry_wrap {
        width: 45.5%;
    }
    .menu_wrap {
        width: 15%;
        padding-top: 13%;
    }
    .menu_btn {
        width: 100%;
        height: 100%;
        padding-top: 0;
    }
    .menu_btn_line > li {
        left: 15%;
        width: 67%;
        border-top: 1px solid #000;
    }
}

/* popup */
.popup_open {
    overflow: hidden;
}
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 100;
    opacity: 0;
    transform: translate3d(-9999%, 0, 0);
    transition: opacity 0.4s 0s, transform 0s 0.4s;
}
.popup_open .popup {
    opacity: 1;
    transform: translate3d(0%, 0, 0);
    transition: opacity 0.4s 0s, transform 0s 0s;
}
.popup_inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    font-size: 0;
    text-align: center;
    -webkit-overflow-scrolling: touch;
}
.popup_inner:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
.popup_inner_box {
    display: inline-block;
    vertical-align: middle;
    background: url(../img/home/popup_inner_box_bg.jpg) no-repeat 50% 50% / cover;
    max-width: 940px;
    padding: 20px;
    position: relative;
    margin: 30px;
    box-sizing: border-box;
    width: calc(100% - 60px);
}
.popup_close {
    background: #ff0;
    width: 48px;
    padding-top: 48px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    z-index: 5;
}
.popup_close:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    border-top: 1px solid #000;
    transform: rotate(45deg);
}
.popup_close:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    border-top: 1px solid #000;
    transform: rotate(-45deg);
}
.popup_list > li {
    display: none;
    font-size: 10px;
    color: #fff;
}
.popup_list > li.select {
    display: block;
}
.popup_img {
    width: calc(50% - 30px);
    float: left;
}
.popup_txt {
    width: 50%;
    float: right;
    margin-top: 28px;
}
.popup_name_wrap {
    width: 65%;
}
.popup_date_wrap {
    color: #fff;
    display: table;
    table-layout: fixed;
    width: 100%;
    margin-top: 10px;
}
.popup_date_name {
    display: table-cell;
    font-size: 26px;
    font-weight: bold;
    vertical-align: bottom;
    text-align: left;
}
.popup_date {
    display: table-cell;
    font-size: 13px;
    vertical-align: bottom;
    text-align: right;
}
.popup_txt_area {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.4;
    text-align: left;
}
@media screen and (max-width: 750px) {
    .popup_img {
        width: 100%;
        float: none;
    }
    .popup_txt {
        width: 100%;
        float: none;
        margin-top: 7%;
    }
    .popup_list > li {
        font-size: 0vw;
    }
    .popup_name_wrap {
        width: 55%;
    }
    .popup_date_name {
        font-size: 5.8vw;
    }
    .popup_date {
        font-size: 2.8vw;
    }
    .popup_txt_area {
        margin-top: 4%;
        font-size: 4vw;
        line-height: 1.4;
    }
    .popup {
        background: rgba(0, 0, 0, 0.8);
    }
    .popup_inner_box {
        padding: 10px;
        margin: 10px;
        width: calc(100% - 20px);
    }
}
