@charset "utf-8";

/* common
-------------------------------------------------------*/

#wrapper {
    overflow: hidden;
}

.sp {
    display: none;
}

.area {
    padding: 70px 20px;
    box-sizing: border-box;
}

.inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
}

.ttl01 {
    text-align: center;
    margin: 0 auto 40px;
    line-height: 1.3;
    max-width: 455px;
}

.ttl01 span {
    font-size: 30px;
    color: #53005e;
    font-weight: bold;
    margin: 0 0 10px;
    display: block;
}

.ttl02 {
    margin: 0 0 40px;
}

.ttl02 > * {
    display: block;
    line-height: 1.3;
    color: #53005e;
    font-size: 20px;
}

.ttl02 b {
    border-bottom: 1px solid #53005e;
    font-size: 40px;
    padding: 0 0 15px;
    margin: 0 0 15px;
}

.ttl02 span {
    letter-spacing: 2px;
}

.contact {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.serif {
    font-family: 'Noto Serif JP', 'Noto Serif KR', serif;
}

.btn {
    width: 100%;
    max-width: 800px;
    height: 100px;
    border-radius: 10px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top center, #E3B000 5%, #E3B000 20%, #ac6a00 70%, #ac6a00 100%);
    color: #fff;
    font-size: 30px;
    font-family: 'Noto Serif JP', 'Noto Serif KR', serif;
    font-weight: 500;
}

.btn_purple .btn {
    margin: 0;
    max-width: 380px;
    height: 80px;
    background: radial-gradient(circle at top center, #760086 5%, #710080 20%, #53005E 70%, #53005E 100%);
    font-size: 26px;
}

.box_slash {
    background: url(../img/bg03.png);
    padding: 10px;
    box-sizing: border-box;
    max-width: 960px;
    margin: 0 auto;
}

.box_slash .wrap {
    background: #fff;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    height: 100%;
    padding: 70px 60px;
    box-sizing: border-box;
}

.box_slash .wrap .img img {
    max-width: 380px;
    min-width: 380px;
    margin: 0 40px 0 0;
}

.box_slash .wrap .txt > * {
    display: block;
    font-size: 20px;
}

.box_slash .wrap .txt > b {
    color: #b0a834;
    font-size: 25px;
    font-weight: bold;
    margin: 0 0 25px;
}

.box_slash .wrap .txt span {
    line-height: 1.8;
}

.box_slash .wrap .txt span:first-of-type {
    margin: 0 0 30px;
}

.box_slash .wrap .txt span b {
    font-weight: bold;
    display: block;
}

a {
    word-break: break-all;
}

@media screen and (max-width:768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .area {
        padding: 30px 20px;
    }

    .inner {
        max-width: 100%;
    }

    .ttl01 {
        margin: 0 auto 25px;
        max-width: 260px;
    }

    .ttl01 span {
        font-size: 120%;
        margin: 0 0 5px;
    }

    .ttl02 {
        margin: 0 0 20px;
    }

    .ttl02 > * {
        font-size: 100%;
    }

    .ttl02 b {
        font-size: 140%;
        padding: 0 0 10px;
        margin: 0 0 10px;
    }

    .ttl02 span {
        letter-spacing: 0;
    }

    .contact {
        flex-flow: column;
    }

    .contact li {
        width: 100%;
        height: 100%;
    }

    .btn {
        height: 60px;
        font-size: 120%;
    }

    .btn_purple .btn {
        height: 60px;
        font-size: 100%;
    }

    .box_slash {
        padding: 5px;
    }

    .box_slash .wrap {
        padding: 30px 20px;
        flex-flow: column;
        align-items: center;
    }

    .box_slash .wrap .img img {
        min-width: auto;
        margin: 0 0 20px;
    }

    .box_slash .wrap .txt > * {
        font-size: 100%;
    }

    .box_slash .wrap .txt > b {
        font-size: 120%;
        margin: 0 0 20px;
    }

    .box_slash .wrap .txt span {
        line-height: 1.4;
    }

    .box_slash .wrap .txt span:first-of-type {
        margin: 0 0 20px;
    }

    .logo {
        max-width: 220px !important;
        margin: 0 auto;
    }
}


/* header
-------------------------------------------------------*/

.header {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 106px;
    padding: 0 35px;
    display: flex;
    align-items: center;
}

.header .inner {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
}

.header nav ul {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-end;
}

.header nav ul li {
    padding: 0 0 0 30px;
    text-align: center;
    line-height: 1.2;
}

.header nav ul li a {
    color: #fff;
    font-size: 20px;
}

#header_fixed {
    position: fixed;
    top: -106px;
    width: 100%;
    transition: .3s;
    background: #53005E;
    z-index: 9;
}

#header_fixed ul li a {
    font-size: 18px;
}

#header_fixed .btn {
    height: 70px;
    width: 180px;
}

#header_fixed.active {
    top: 0;
}

@media screen and (max-width:1175px) {
    .header nav ul li a span {
        display: block;
    }
}

@media screen and (max-width:1100px) {
    #header_fixed {
        padding: 0 20px;
    }

    #header_fixed nav ul li {
        padding: 0 0 0 15px;
    }

    #header_fixed ul li a {
        font-size: 100%;
    }

    #header_fixed .btn {
        width: 150px;
    }
}

@media screen and (max-width:935px) {
    .header {
        padding: 0 20px;
    }

    .header nav ul li {
        padding: 0 0 0 15px;
    }

    .header nav ul li a {
        font-size: 100%;
    }

    #header_fixed .logo {
        max-width: 180px;
    }

    #header_fixed nav ul li {
        padding: 0 0 0 10px;
    }

    #header_fixed ul li a {
        font-size: 90%;
    }

    #header_fixed .btn {
        width: 130px;
    }
}

@media screen and (max-width:768px) {
    .header {
        text-align: center;
        padding: 10px;
    }

    .header {
        height: 40px;
    }

    .header .inner {
        justify-content: center;
    }

    #header_fixed {
        display: none !important;
    }

    .row03 {
        font-size: 2.0rem;
        line-height: 2.4rem;
    }
}


/* nav
-------------------------------------------------------*/

@media screen and (max-width:768px) {
    #btn_nav {
        position: fixed;
        top: 12px;
        right: 10px;
        z-index: 999;
        cursor: pointer;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        height: 18px;
        padding: 0 0 15px;
    }

    #btn_nav span {
        display: inline-block;
        background: #53005E;
        width: 25px;
        height: 2px;
        transition: .5s;
        position: relative;
    }

    #btn_nav.active span {
        background: #fff;
        transform: translateY(8px) rotate(225deg);
    }

    #btn_nav.active span:nth-child(2) {
        transform: scaleX(0);
    }

    #btn_nav.active span:last-child {
        transform: translateY(-8px) rotate(-225deg);
    }

    #btn_nav::after {
        content: "MENU";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
        font-size: 75%;
        color: #53005E;
        transition: .5s;
    }

    #btn_nav.active::after {
        content: "CLOSE";
        color: #fff;
    }

    #nav_sp nav,
    #nav_sp nav::after {
        position: fixed;
        top: 0;
        height: 100%;
        width: 100%;
        overflow: hidden;
    }

    #nav_sp nav {
        display: flex;
        flex-flow: column;
        justify-content: center;
        overflow: auto;
        text-align: center;
        background: rgba(83, 0, 94, 0.6);
        right: -100%;
        z-index: 998;
        transition: .5s;
    }

    #nav_sp nav::after {
        content: "";
        background: rgba(83, 0, 94, 0.9);
        left: -100%;
        z-index: -1;
        transition: .7s;
    }

    #nav_sp nav.active {
        right: 0;
    }

    #nav_sp nav.active::after {
        left: 0;
    }

    #nav_sp ul li:first-child {
        border-top: 1px solid #999;
    }

    #nav_sp ul li {
        border-bottom: 1px solid #999;
    }

    #nav_sp ul li a {
        display: block;
        color: #fff;
        padding: 10px;
    }
}


/* visual
-------------------------------------------------------*/

#visual {
    padding: 0;
    box-sizing: border-box;
}

#visual .inner {
    max-width: 100%;
}

@media screen and (max-width:768px) {}


/* footer
-------------------------------------------------------*/

#footer {
    text-align: center;
    padding: 0 0 150px;
}

#footer nav {
    background: #EEEEEE;
    height: 100px;
    display: flex;
    align-items: center;
}

#footer ul {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}

#footer ul li {
    padding: 0 25px;
}

#footer ul li a {
    color: #53005e;
    font-size: 22px;
    font-weight: 500;
}

#footer .logo img {
    max-width: 328px;
    margin: 30px 0;
}

#footer .copy {
    color: #53005e;
}

@media screen and (max-width:768px) {
    #footer nav {
        height: 60px;
    }

    #footer ul li {
        padding: 0 5px;
    }

    #footer ul li a {
        font-size: 100%;
    }

    #footer .logo img {
        margin: 20px 0;
    }
}


/* about
-------------------------------------------------------*/

#about {
    padding-bottom: 122px;
}

#about .btn_wrap {
    padding: 0 20px;
    box-sizing: border-box;
}

#about .head {
    padding: 70px 0 0;
}

#about .head .btn {
    margin: 0 auto 70px;
}

#about .head ul li {
    padding: 0 20px 70px;
    background: url(../img/bg01_1.png)no-repeat right bottom/contain;
}

#about .head ul li.p {
    padding: 0 20px 70px;
    background: url(../img/bg01_1.jpg)no-repeat right bottom/contain;
    background-size: 27vw;
}

#about .head ul li .inner {
    position: relative;
}

#about .head ul li .inner .img {
    position: absolute;
    top: -10px;
    right: -50px;
}

#about .head ul li .inner .txt {
    padding: 0 400px 0 0;
    box-sizing: border-box;
    line-height: 2;
    font-size: 20px;
}

#about .head ul li.rev {
    padding-bottom: 150px;
    background: url(../img/bg01_2.png)no-repeat left bottom/contain;
}

#about .head ul li.rev .inner .txt {
    padding: 0 0 0 400px;
}

#about .head ul li.rev .inner .img {
    top: 30px;
    right: auto;
    left: 0;
}

#about .head ul li.rev .inner .ttl02 {
    text-align: right;
}

#about .foot {
    background: url(../img/bg02_1.png)no-repeat top center /contain #53005E;
    color: #fff;
    position: relative;
}

#about .foot .box {
    padding: 70px 20px 110px;
}

#about .foot .box:last-child {
    padding-bottom: 0;
}

#about .foot .ttl {
    font-size: 40px;
    line-height: 1.3;
    text-align: center;
    border-bottom: 1px solid #fff;
    padding: 0 0 20px;
    margin: 0 0 30px;
}

#about .foot .txt_head {
    text-align: center;
    font-size: 25px;
    line-height: 1.8;
    margin: 0 0 30px;
}

#about .foot .ul01 {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    margin: 0 0 70px;
}

#about .foot .ul01 li {
    padding: 0 10px;
}

#about .foot .txt {
    font-size: 20px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 70px;
}

#about .foot .ul02 {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: center;
}

#about .foot .ul02 li {
    padding: 0 30px;
}

#about .foot .box:last-child {
    background: url(../img/bg02_2.jpg)no-repeat top center/100% auto;
}

#about .foot .ul03 {
    max-width: 710px;
    margin: 0 auto 70px;
    border: 1px solid #ffffff;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0, rgba(255, 255, 255, 0.05) 100%);
    padding: 40px 40px;
    box-sizing: border-box;
}

#about .foot .ul03 li {
    font-size: 25px;
    line-height: 1.3;
}

#about .foot .ul03 li:not(:last-child) {
    margin: 0 0 30px;
}

#about .txt_foot {
    text-align: center;
    font-size: 36px;
    line-height: 1.6;
    margin: 30px 0 0;
    position: relative;
    bottom: -30px;
    z-index: 1;
}

#about .foot::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -122px;
    background: url(../img/arrow.png)no-repeat center/100% 100%;
    width: 100%;
    height: 122px;
}

@media screen and (max-width:900px) {
    #about .head ul li .inner .img {
        top: 90px;
        right: 0;
    }
}

@media screen and (max-width:768px) {
    #about {
        padding-bottom: 61px;
    }

    #about .head {
        padding: 35px 0 0;
    }

    #about .head .btn {
        margin: 0 auto 35px;
    }

    #about .head ul li {
        padding: 0 20px 35px !important;
        position: relative;
    }

    #about .head ul li::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.7);
        width: 100%;
        height: 100%;
    }

    #about .head ul li .inner .img {
        margin: 0 auto 15px;
        max-width: 150px;
        position: static;
    }

    #about .head ul li .inner .txt {
        padding: 0 !important;
        line-height: 1.3;
        font-size: 100%;
    }

    #about .foot .box {
        padding: 35px 20px;
    }

    #about .foot .ttl {
        font-size: 140%;
        padding: 0 0 20px;
        margin: 0 0 20px;
    }

    #about .foot .txt_head {
        font-size: 120%;
        line-height: 1.4;
        margin: 0 0 20px;
    }

    #about .foot .ul01 {
        margin: 0 0 35px;
        flex-flow: row wrap;
    }

    #about .foot .ul01 li {
        width: 50%;
        padding: 0 10px 0 0;
        box-sizing: border-box;
    }

    #about .foot .ul01 li:nth-child(even) {
        padding: 0 0 0 10px;
    }

    #about .foot .ul01 li:nth-child(n+3) {
        margin: 20px 0 0;
    }

    #about .foot .txt {
        font-size: 100%;
        line-height: 1.4;
        margin: 0 auto 35px;
    }

    #about .foot .ul02 li {
        padding: 0 5px;
    }

    #about .foot .ul03 {
        margin: 0 auto 35px;
        padding: 30px 20px;
    }

    #about .foot .ul03 li {
        font-size: 120%;
        display: flex;
        flex-flow: row nowrap;
        align-items: flex-start;
    }

    #about .foot .ul03 li:not(:last-child) {
        margin: 0 0 20px;
    }

    #about .foot .box:last-child {
        padding-bottom: 30px;
    }

    #about .txt_foot {
        font-size: 120%;
        line-height: 1.3;
        margin: 0;
    }

    #about .foot::after {
        bottom: -61px;
        background: url(../img/arrow.png)no-repeat center/100% 100%;
        width: 100%;
        height: 61px;
    }
}


/* academy
-------------------------------------------------------*/

#academy {
    padding-top: 120px;
}

#academy ul {
    margin: 100px 0 0;
}

#academy ul li .ttl {
    position: relative;
    padding: 0 0 0 246px;
    font-size: 40px;
    color: #827a0e;
    line-height: 1.1;
    margin: 0 0 20px;
}

#academy ul li .ttl > * {
    display: block;
}

#academy ul li .ttl span {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translate(0, -50%);
}

#academy ul li .ttl img {
    max-width: 181px;
}

#academy ul li:not(:last-child) {
    margin: 0 0 110px;
}

#academy ul li:nth-child(2) .ttl {
    padding: 0 246px 0 0;
    text-align: right;
}

#academy ul li:nth-child(2) .ttl span {
    left: auto;
    right: 40px;
}

#academy .head {
    padding-bottom: 70px;
}

#academy .btn {
    margin: 0 auto;
}

#academy .intro {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

#academy .txt_box {
    font-size: 18px;
    line-height: 1.6;
    padding: 10px;
}

#academy .academy_scenery .ba_visual {
    margin: 0 0 50px;
    position: relative;
}

#academy .academy_scenery .ba_visual::before {
    content: "";
    background: url(../img/deco01.png)no-repeat top left/146px 146px;
    width: 146px;
    height: 146px;
    position: absolute;
    left: -30px;
    top: -30px;
}

#academy .academy_scenery .ttl {
    color: #b0a834;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 20px;
    padding: 0 0 20px;
    border-bottom: 1px solid #b0a834;
}

#academy .academy_scenery .ba02 .ttl span {
    font-size: 14px;
}

#academy .academy_scenery .ba01 {
    margin: 0 0 40px;
}

#academy .academy_scenery .ba01 .img {
    display: flex;
    justify-content: space-between;
}

#academy .academy_scenery .ba01 img {
    max-width: 480px;
}

#academy .academy_scenery .ba01 img:first-child {
    padding: 0 20px 0 0;
}

#academy .academy_scenery .ba02 {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 0 70px;
}

#academy .academy_scenery .ba02 .box {
    width: 48%;
}

#academy .academy_scenery .ba02 img {
    max-width: 480px;
}

#academy .academy_scenery .ba02 .box:last-child .img {
    position: relative;
}

#academy .academy_scenery .ba02 .box:last-child .img::after {
    content: "";
    background: url(../img/deco02.png)no-repeat center/146px 146px;
    width: 146px;
    height: 146px;
    position: absolute;
    bottom: -30px;
    right: -30px;
}

@media screen and (max-width:768px) {
    #academy {
        padding-top: 35px;
    }

    #academy ul {
        margin: 30px 0 0;
    }

    #academy ul li .ttl {
        padding: 0 !important;
        font-size: 140%;
        line-height: 1.3;
        text-align: center !important;
    }

    #academy ul li .ttl span {
        position: static;
        transform: none;
        margin: 0 0 20px;
    }

    #academy ul li .ttl img {
        max-width: 150px;
    }

    #academy ul li:not(:last-child) {
        margin: 0 0 30px;
    }

    #academy .head {
        padding-bottom: 35px;
    }

    #academy .btn {
        margin: 30px auto 0;
    }

    #academy .intro {
        font-size: 100%;
    }

    #academy .txt_box {
        font-size: 100%;
    }

    #academy .academy_scenery .ba_visual {
        margin: 0 0 30px;
    }

    #academy .academy_scenery .ttl {
        font-size: 100%;
        margin: 0 0 10px;
        padding: 0 0 10px;
    }

    #academy .academy_scenery .ba01 img:first-child {
        padding: 0 10px 0 0;
    }

    #academy .academy_scenery .ba02 .ttl span {
        font-size: 12px;
    }

    #academy .academy_scenery .ba01 {
        margin: 0 0 20px;
    }

    #academy .academy_scenery .ba02 {
        margin: 0 0 30px;
    }

    #academy .academy_scenery .ba_visual::before {
        background: url(../img/deco01.png)no-repeat top left/100px 100px;
        width: 100px;
        height: 100px;
        position: absolute;
        left: -15px;
        top: -15px;
    }

    #academy .academy_scenery .ba02 .box:last-child .img::after {
        content: "";
        background: url(../img/deco02.png)no-repeat center/100px 100px;
        width: 100px;
        height: 100px;
        position: absolute;
        bottom: -15px;
        right: -15px;
    }
}


/* contests
-------------------------------------------------------*/

#contests {
    background: url(../img/bg04.png)no-repeat center top/100% auto #EEEEEE;
}

#contests .head {
    padding-bottom: 90px;
}

#contests .head ul li {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: flex-start;
}

#contests .head ul li:not(:last-child) {
    margin: 0 0 40px;
}

#contests .head ul li .img img {
    max-width: 386px;
    min-width: 386px;
    margin: 0 20px 0 0;
}

#contests .head ul li .txt > * {
    display: block;
}

#contests .head ul li .txt b {
    color: #6c3072;
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 20px;
    font-weight: bold;
}

#contests .head ul li .txt span {
    line-height: 1.6;
}

#contests .head .img_foot {
    position: relative;
    top: -8px;
    max-width: 946px;
}

#contests .foot .box {
    background: url(../img/bg05_1.png)no-repeat center/cover;
    border: 3px solid;
    border-image: radial-gradient(circle, #C4C4C4 0%, #fff 25%, #C4C4C4 75%, #fff 100%);
    border-image-slice: 1;
    padding: 5px;
    box-sizing: border-box;
    position: relative;
}

#contests .foot .box::before,
#contests .foot .box::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    background: url(../img/bg05_2_1.png.png)no-repeat center/cover;
    width: 146px;
    height: 142px;
}

#contests .foot .box::after {
    left: auto;
    right: 5px;
    background: url(../img/bg05_2_2.png.png)no-repeat center/cover;
    width: 142px;
    height: 146px;
}

#contests .foot .box .wrap {
    border: 1px solid;
    border-image: radial-gradient(circle, #C4C4C4 0%, #fff 25%, #C4C4C4 75%, #fff 100%);
    border-image-slice: 1;
    padding: 140px 90px 200px;
    box-sizing: border-box;
    position: relative;
}

#contests .foot .box .wrap::before,
#contests .foot .box .wrap::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../img/bg05_2_3.png.png)no-repeat center/cover;
    width: 146px;
    height: 142px;
}

#contests .foot .box .wrap::after {
    left: auto;
    right: 0;
    background: url(../img/bg05_2_4.png.png)no-repeat center/cover;
    width: 142px;
    height: 146px;
}

#contests .foot .box .wrap .ttl {
    max-width: 883px;
    margin: 0 auto 40px;
    position: relative;
}

#contests .foot .box .wrap .ttl::after {
    content: "";
    display: block;
    background: url(../img/grand_prix_benefits_item.png)no-repeat center/contain;
    width: 140px;
    height: 16px;
    margin: 30px auto 0;
}

#contests .foot .box .wrap .txt > * {
    display: block;
    color: #fff;
    font-size: 25px;
}

#contests .foot .box .wrap .txt b {
    margin: 0 0 30px;
    font-weight: bold;
    line-height: 1.5;
}

#contests .foot .box .wrap .txt span:first-of-type {
    margin: 0 0 70px;
}

#contests .foot .box .wrap .txt span span {
    display: block;
    line-height: 1.3;
}

#contests .foot .box .wrap .txt span span:not(:last-child) {
    margin: 0 0 10px;
}

#contests .foot .box .wrap ul {
    margin: 50px 0 0;
    color: #fff;
}

#contests .foot .box .wrap ul li:not(:last-child) {
    margin: 0 0 50px;
}

#contests .foot .box .wrap ul li .benefit {
    font-size: 25px;
    margin: 0 0 20px;
    line-height: 1.3;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
}

#contests .foot .box .wrap ul li .txt {
    padding: 0 0 0 40px;
    line-height: 1.3;
}

@media screen and (max-width:768px) {
    #contests .head {
        padding-bottom: 35px;
    }

    #contests .head ul li {
        flex-flow: column-reverse;
        align-items: center;
    }

    #contests .head ul li:not(:last-child) {
        margin: 0 0 20px;
    }

    #contests .head ul li .img img {
        min-width: auto;
        margin: 20px 0 0;
    }

    #contests .head ul li .txt {
        width: 100%;
    }

    #contests .head ul li .txt b {
        font-size: 100%;
    }

    #contests .head ul li .txt span {
        line-height: 1.3;
    }

    #contests .head .img_foot {
        top: 0;
        margin: 20px 0 0;
    }

    #contests .foot .box::before,
    #contests .foot .box::after {
        width: 73px;
        height: 71px;
    }

    #contests .foot .box::after {
        width: 71px;
        height: 73px;
    }

    #contests .foot .box .wrap {
        padding: 70px 40px;
    }

    #contests .foot .box .wrap::before,
    #contests .foot .box .wrap::after {
        width: 73px;
        height: 71px;
    }

    #contests .foot .box .wrap::after {
        width: 71px;
        height: 73px;
    }

    #contests .foot .box .wrap .ttl {
        margin: 0 auto 20px;
    }

    #contests .foot .box .wrap .ttl::after {
        width: 70px;
        height: 8px;
    }

    #contests .foot .box .wrap .txt > * {
        font-size: 120%;
    }

    #contests .foot .box .wrap .txt b {
        margin: 0 0 20px;
        line-height: 1.3;
    }

    #contests .foot .box .wrap .txt span:first-of-type {
        margin: 0 0 35px;
    }

    #contests .foot .box .wrap ul {
        margin: 30px 0 0;
    }

    #contests .foot .box .wrap ul li:not(:last-child) {
        margin: 0 0 30px;
    }

    #contests .foot .box .wrap ul li {}

    #contests .foot .box .wrap ul li .benefit {
        font-size: 120%;
        margin: 0 0 15px;
    }

    #contests .foot .box .wrap ul li .txt {
        font-size: 90%;
        padding: 0 0 0 28px;
    }

    #contests .foot .box .wrap .ttl {
        max-width: 400px;
    }
}


/* voice
-------------------------------------------------------*/

#voice {
    padding: 100px 20px 0;
}

#voice .box_slash {
    background: url(../img/bg06.png);
}

#voice .box_slash
/*:first-of-type*/

    {
    margin: 0 auto 60px;
}

#voice .box_slash .txt > b {
    color: #53005e;
}

#voice .box_slash .txt b {
    line-height: 1.6;
}

#voice .box_slash .txt .category {
    font-size: 18px;
    line-height: 1.6;
}

@media screen and (max-width:900px) {
    #voice .box_slash .wrap {
        padding: 30px 20px;
        flex-flow: column;
        align-items: center;
    }

    #voice .box_slash .wrap .img img {
        margin: 0 0 30px 0;
    }
}

@media screen and (max-width:768px) {
    #voice {
        padding: 35px 20px 0;
    }

    #voice .box_slash

    /*:first-of-type*/
        {
        margin: 0 auto 30px;
    }

    #voice .box_slash .txt .category {
        font-size: 100%;
    }
}


/* foot_area
-------------------------------------------------------*/

.foot_area ul li:not(:last-child) {
    margin: 0;
}

.btn_purple {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    margin: 0 0 30px;
}

.btn_purple li {
    padding: 0 20px 0 0;
    width: 100%;
    max-width: 380px;
}

.btn_purple li:last-child {
    padding: 0 0 0 20px;
}

@media screen and (max-width:768px) {
    .btn_purple {
        flex-flow: column;
        align-items: center;
        margin: 0;
    }

    .btn_purple li {
        padding: 0;
    }

    .btn_purple li:last-child {
        padding: 20px;
    }
}


/*エントリーボタン無効*/

.btn.noent {
    background: #727272;
}

a.noent {
    pointer-events: none;
}


/* flow
-------------------------------------------------------*/

#flow {
    background: url("../img/flow_bg.png")no-repeat center/cover;
}

#flow h3 {
    text-align: center;
    font-size: 230%;
    font-weight: 500;
    line-height: 1.3;
    padding: 0 0 30px;
    margin: 0 auto 50px;
    border-bottom: 5px solid #53005e;
    max-width: 770px;
}

#flow ul {
    /*max-width: 850px;*/
    max-width: 1020px;
    margin: 0 auto;
}

#flow ul li {
    background: #fff;
    border: 2px solid #53005e;
    padding: 40px 0 30px;
    position: relative;
    text-align: center;
    min-height: 210px;
    box-sizing: border-box;
}

#flow ul li:not(:last-child) {
    margin: 0 0 60px;
    position: relative;
}

#flow ul li:not(:last-child)::after {
    position: absolute;
    display: block;
    content: "";
    background: url("../img/flow_arrow.png")no-repeat center/39px 34px;
    width: 39px;
    height: 34px;
    right: 50%;
    bottom: -30px;
    transform: translate(50%, 50%);
}

#flow ul li .num {
    position: absolute;
    top: -40px;
    left: -20px;
}

#flow ul li .num img {
    max-width: 73px;
}

#flow ul li .ttl {
    font-size: 160%;
    color: #53005e;
    padding: 0 0 20px;
    margin: 0 0 20px;
    position: relative;
    font-weight: 500;
    line-height: 1.4;
}

#flow ul li .ttl::after {
    position: absolute;
    display: block;
    content: "";
    width: 65px;
    height: 2px;
    background: #53005e;
    bottom: 0;
    right: 50%;
    transform: translate(50%, 50%);
}

#flow ul li .txt {
    font-size: 110%;
    line-height: 1.6;
}

#flow ul li .caution {
    font-size: 80%;
    margin: 20px 0 0;
    line-height: 1.5;
}

#video {
    background: url("../img/video_bg.png")no-repeat center/ cover;
}

#video.area {
    padding: 80px 20px;
}

#video h3 {
    color: #fff;
    font-size: 230%;
    text-align: center;
    margin: 0 0 40px;
    font-weight: 500;
}

@media screen and (max-width:768px) {
    #flow {
        background: url("../img/flow_bg.png")no-repeat top/cover;
    }

    #flow.area {
        padding: 30px;
    }

    #flow h3 {
        font-size: 130%;
        padding: 0 0 20px;
        margin: 0 auto 30px;
        border-bottom: 3px solid #53005e;
    }

    #flow ul li {
        padding: 20px;
        min-height: inherit;
    }

    #flow ul li .num img {
        max-width: 60px;
    }

    #flow ul li .ttl {
        font-size: 140%;
    }

    #flow ul li .ttl::after {
        width: 50px;
    }

    #flow ul li .txt {
        font-size: 90%;
    }

    #flow ul li .caution {
        line-height: 1.2;
    }

    #video.area {
        padding: 30px 20px;
    }

    #video h3 {
        font-size: 140%;
        margin: 0 0 30px;
    }
}

#flow ul li span {
    display: block;
}

#flow ul li span.mb15 {
    margin-bottom: 15px;
}

.mrs_logo {
    display: block;
    max-width: 200px;
    padding-top: 15px;
}

.fab_logo {
    display: block;
    max-width: 160px;
    padding-top: 15px;
}
.u-body {
    font-family: 'Noto Serif JP', 'Noto Serif KR', serif !important;
}
.u-font-montserrat.u-custom-font {
    font-family: 'Noto Serif JP', 'Noto Serif KR', serif !important;
}
@media screen and (max-width:768px) {
    .mrs_logo {
        display: block;
        max-width: 100%;
        padding-top: 15px;
    }

    .mrs_logo img {
        display: block;
        width: 160px;
        margin: 0 auto;
    }

    .fab_logo {
        display: block;
        max-width: 100%;
        padding-top: 15px;
    }

    .fab_logo img {
        display: block;
        width: 140px;
        margin: 0 auto;
    }

    #academy .academy_scenery .ba01 .img {
        display: block;
    }

    #academy .academy_scenery .ba01 img:first-child {
        padding: 0 0px 0 0;
    }

    #academy .academy_scenery .ba01 img {
        max-width: 100%;
        margin-bottom: 10px;
    }

    #academy .academy_scenery .ba02 {
        display: block;
    }

    #academy .academy_scenery .ba02 .box {
        width: 100%;
    }

    #academy .academy_scenery .ba02 img {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

.video iframe {
    width: 100%;
    height: 600px;
}

@media screen and (max-width:768px) {
    .video iframe {
        width: 100%;
        height: 300px;
    }
}

.pg_img {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 30px;
    padding: 0px 20px;
}

.topu_txt {
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 40px;
    padding: 30px 0px;
    border-top: 3px #bc7e00 double;
    border-bottom: 3px #bc7e00 double;
}

.topu_txt p {
    text-align: center;
    line-height: 1.5;
    font-size: 152%;
    font-weight: bolder;
    font-family: 'Noto Serif JP', 'Noto Serif KR', serif;
    color: #53005e;
}

@media screen and (max-width:768px) {
    .topu_txt {
        margin-bottom: 30px;
        padding: 20px 4%;
    }

    .topu_txt p {
        text-align: center;
        font-size: 100%;
    }
}

p.caution_red {
    border: 1px solid #ff0000;
    padding: 15px;
    box-sizing: border-box;
    line-height: 1.5;
    width: 80%;
    margin: 0 auto;
    margin-top: 20px;
    color: #ff0000;
    font-weight: bolder;
}

p.caution_red a {
    color: #53005e;
}

.left_txt {
    display: inline-block;
    text-align: left;
    margin-left: 30px;
}

@media screen and (max-width:768px) {
    .left_txt {
        display: inline-block;
        text-align: left;
        margin-left: 0px;
    }
}

.co_caution {
    text-align: center;
    color: #53005e;
    margin-bottom: 30px;
    font-size: 140%;
    line-height: 1.5;
}

@media screen and (max-width:768px) {
    .co_caution {
        font-size: 90%;
    }
}

a.btn_none {
    pointer-events: none;
}

.boshu_end {
    border-top: 3px solid #53005e;
    border-bottom: 3px solid #53005e;
    padding-top: 30px;
    padding-bottom: 30px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 50px;
}

.boshu_end p {
    text-align: center;
    font-size: 200%;
    font-weight: bolder;
    font-weight: bolder;
    font-family: 'Noto Serif JP', 'Noto Serif KR', serif;
    line-height: 1.5;
}

.ttl_h3 {
    font-size: 90px;
    font-weight: 400;
    color: #53005e;
}

.ttl_h3 .span {
    font-size: 2rem;
    color: #53005e;
    font-weight: bold;
    margin: 0 0 0px;
    display: block;
}

.ttl04 {
    text-align: center;
    color: #ffffff;
    font-size: 2rem;
    line-height: 2.6rem;
}

.row03 {
    font-size: 3.4rem;
    line-height: 3.4rem;
}

#contests .foot .box .wrap .txt span:first-of-type {
    margin: 0 0 10px;
}

@media screen and (max-width:768px) {
    .boshu_end {
        border-top: 2px solid #53005e;
        border-bottom: 2px solid #53005e;
        padding-top: 15px;
        padding-bottom: 15px;
        margin-top: 20px;
    }

    .boshu_end p {
        text-align: center;
        font-size: 120%;
        font-weight: bolder;
        font-weight: bolder;
        font-family: 'Noto Serif JP', 'Noto Serif KR', serif;
        line-height: 1.5;
    }

    .row03 {
        font-size: 2.0rem;
        line-height: 2.4rem;
    }
}
