@charset "UTF-8";

/* ==========================================================
Name:
    module.css

Description:
    サイトで共通使用する汎用モジュールのスタイルを記述する
    アルファベット降順(A->Z)に記述する

Contents:
    layout
    component
    utility
========================================================== */
/* ==========================================================
*
*   layout
*
========================================================== */

.wrapper {
    font-family: "NotoSansCJKjp-Regular";
}

/* ---------------------------------------------
*   contents
--------------------------------------------- */
.contents {
    margin: 0 auto;
}

@media screen and (max-width: 750px) {
    .contents {
        margin: 0 auto;
        width: 100%;
    }
}

/* ---------------------------------------------
*   footer
--------------------------------------------- */
@media screen and (min-width: 751px) {
    #nav-footer {
        min-width: 1100px;
    }

    #footer {
        min-width: 1100px;
    }
}

/* ---------------------------------------------
*   global-nav
--------------------------------------------- */
/* ---------------------------------------------
*   header
--------------------------------------------- */
@media screen and (min-width: 751px) {
    #nav-sd * {
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
    }
}

#nav-sd *::before,
#nav-sd *::after {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
#wrapper {
    overflow: auto;
}

/* ==========================================================
*
*   component
*
========================================================== */

/* ---------------------------------------------
*   c-area
--------------------------------------------- */
.c-area {
    margin: 120px 0 32px;
}

.c-area__heading {
    font-size: 1.6rem;
    font-family: "NotoSansCJKjp-Bold";
    padding-bottom: 8px;
    margin-bottom: 1em;
    border-bottom: 3px solid #FFEF00;
}

.c-area__heading-ttl {}

.c-area__txt {
    margin-bottom: 32px;
}

.c-area__photo {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.c-area__photo li {
    width: 32.5%;
    margin-bottom: 8px;
}

@media screen and (max-width: 750px) {
    .c-area {
        margin: 64px 0 32px;
    }

    .c-area__heading {
        font-size: 4vw;
        line-height: 1.55;
    }

    .c-area__txt {
        font-size: 3.2vw;
        line-height: 1.55;
    }

    .c-area__photo li {
        width: 49%;
    }
}


/* ---------------------------------------------
*   c-block
--------------------------------------------- */
/* ---------------------------------------------
*   c-block-comment
--------------------------------------------- */
.c-block-comment__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    margin-bottom: 36px;
    height: 64px;
    border-radius: 16px 16px 0 0;
    background-color: #005BAB;

    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .c-block-comment__head {
        margin-bottom: 5.6vw;
        height: 13.33333vw;
        border-radius: 2vw 2vw 0 0;
    }
}

.c-block-comment__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 750px) {
    .c-block-comment__wrap {
        -ms-flex-direction: column;
        flex-direction: column;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
    }
}

.c-block-comment__img {
    width: 45%;
}

@media screen and (max-width: 750px) {
    .c-block-comment__img {
        margin-right: auto;
        margin-bottom: 2.8vw;
        margin-left: auto;
        width: 69.33333vw;
    }

    .ie11 .c-block-comment__img {
        height: 54.93333vw;
    }
}

.c-block-comment__txt-wrap {
    margin-top: -7px;
    padding-left: 15px;
    width: 53%;
}

@media screen and (max-width: 750px) {
    .c-block-comment__txt-wrap {
        margin-top: 0;
        padding-right: 2.66667vw;
        padding-left: 2.66667vw;
        width: 100%;
    }
}

.c-block-comment__head-ttl {
    color: #fff;
    letter-spacing: 0.08em;
    font-family: "NotoSansCJKjp-Black";
    font-size: 1.75rem;
}

@media screen and (max-width: 750px) {
    .c-block-comment__head-ttl {
        font-size: 4.26667vw;
    }
}

.c-block-comment__figcaption {
    margin-top: 10px;
    color: #604c40;
    text-align: center;
    letter-spacing: .05em;
    font-family: "NotoSansCJKjp-Black";
    font-size: 1rem;
}

@media screen and (max-width: 750px) {
    .c-block-comment__figcaption {
        margin-top: 2.66667vw;
        font-size: 2.4vw;
    }
}

.c-block-comment__txt {
    text-align: justify;
    letter-spacing: .04em;
    font-size: 1rem;
    line-height: 1.8;
}

@media screen and (max-width: 750px) {
    .c-block-comment__txt {
        font-size: 3.2vw;
        line-height: 1.55;
    }
}

/* ---------------------------------------------
*   c-block-award
--------------------------------------------- */
.c-block-award {}

.c-block-award__ttl {
    padding: .7em 1em .5em;
    margin-bottom: 40px;
    display: block;
    color: #fff;
    font-size: 1.8rem;
    font-family: "NotoSansCJKjp-Bold";
    letter-spacing: .1em;
    text-align: center;
    color: #444;
    background: #ffef00;
}

@media screen and (max-width: 750px) {
    .c-block-award__ttl {
        padding: 1em 1em .8em;
        margin-bottom: 32px;
        font-size: 1.1rem;
    }
}

.c-block-award__ttl--technical {
    color: #fff;
    background: #005BAB;
}

.c-block-award__ttl--idea {
    color: #fff;
    background: #e54363;
}

.c-block-award__toggle {
    display: none;
}

.c-block-award__btn-area {
    display: flex;
    justify-content: center;
    margin: 0 0 120px;
}

.c-block-award__btn-area.is-open {
    display: none;
}

@media screen and (max-width: 750px) {
    .c-block-award__btn-area {
        margin: 0 0 40px;
    }
}

.c-block-award__btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 320px;
    height: 80px;
    background-color: #005BAB;
    ;
    border-radius: 6px;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0em;
    font-family: "NotoSansCJKjp-Bold";
    font-size: 1.25rem;
    cursor: pointer !important;
    transition: .3s;
}

.c-block-award__btn:hover {
    opacity: 0.8;
}

@media screen and (max-width: 750px) {
    .c-block-award__btn {
        width: 72vw;
        height: 12.8vw;
        letter-spacing: 0em;
        font-family: "NotoSansCJKjp-Bold";
        font-size: 3.2vw;
    }
}

.c-block-award__btn--idea {
    background-color: #e54363;
}

@media screen and (max-width: 750px) {
    .c-block-award__btn {}
}

.c-block-award__contents {
    max-width: 820px;
    margin: 16px auto;
    display: none;
    font-family: "NotoSansCJKjp-Bold";
}
.c-block-award__txt {
    margin: 32px 0 64px;
    font-family: "NotoSansCJKjp-medium";
}

@media screen and (max-width: 750px) {
    .c-block-award__txt {
        font-size: 3.2vw;
        line-height: 1.55;
    }
}

.c-block-award__head-ttl-sub {
    font-size: 1.125rem;
    font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
    text-align: center;
    margin: 20px 0 40px;
}

.c-block-award__head-ttl-sub a {
    display: inline;
    padding-right: 0.1em;
    padding-bottom: 2px;
    padding-left: 0.1em;
    border-bottom: 1px solid #0057a0;
    color: #0057a0;
    text-decoration: none;
    letter-spacing: .07em;
}

@media screen and (min-width: 751px) {
    .c-block-award__head-ttl-sub a:hover {
        border-bottom: none;
    }
}

@media screen and (max-width: 750px) {
    .c-block-award__head-ttl-sub {
        font-size: 3.5vw;
        margin: 20px 0;
    }
    
    .c-block-award__head-ttl-sub a {
        display: inline-block;
        margin-top: 8px;
    }
}

.c-block-award__body {
    margin-bottom: 100px;
}

@media screen and (max-width: 750px) {
    .c-block-award__body {
        margin-bottom: 40px;
    }
}

.c-block-award__body-ttl {
    padding: 16px 16px 12px;
    margin-bottom: 28px;
    font-size: 1.5rem;
    color: #005BAB;
    background: #eee;
    border-radius: 16px 16px 0 0;
    text-align: center;
    font-family: "NotoSansCJKjp-Bold";
}

@media screen and (max-width: 750px) {
    .c-block-award__body-ttl {
        padding: 8px 16px 6px;
        font-size: 5vw;
    }
}

.c-block-award__body-ttl-ribon {
    font-size: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 80px;
    margin: 60px 40px;
    padding: 8px 20px;
    color: #fff;
    background: #019FE8;
    font-family: "NotoSansCJKjp-Bold";
}

.c-block-award__body-ttl-ribon::before,
.c-block-award__body-ttl-ribon::after {
    position: absolute;
    top: 0;
    display: block;
    height: 80px;
    content: '';
    border: 40px solid #019FE8;
}

.c-block-award__body-ttl-ribon--mvp {
    background: #005BAB;
}

.c-block-award__body-ttl-ribon--mvp::before,
.c-block-award__body-ttl-ribon--mvp::after {
    border: 30px solid #005BAB;
}

.c-block-award__body-ttl-ribon--technical {
    background: #fc6b6b;
}

.c-block-award__body-ttl-ribon--technical::before,
.c-block-award__body-ttl-ribon--technical::after {
    border: 40px solid #fc6b6b;
}

.c-block-award__body-ttl-ribon::before {
    left: -40px;
    border-left-width: 15px;
    border-left-color: transparent;
}

.c-block-award__body-ttl-ribon::after {
    right: -40px;
    border-right-width: 15px;
    border-right-color: transparent;
}

.c-block-award__body-ttl-ribon span {
    position: relative;
    display: block;
}

@media screen and (max-width: 750px) {
    .c-block-award__body-ttl-ribon {
        font-size: 4vw;
        margin: .3em 50px 1em;
    }
}

.c-block-award__movie {
    width: 640px;
    margin: 0 auto 40px;
}

.c-block-award__movie-inner {
    padding-top: 56.25%;
    position: relative;
}

@media screen and (max-width: 750px) {
    .c-block-award__movie {
        width: 100%;
        margin: 0 auto 20px;
    }
}

.c-block-award__movie-inner iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.c-block-award__wrap {
    display: flex;
    justify-content: space-between;
}

.c-block-award__wrap-item {
    width: 49%;
}

@media screen and (max-width: 750px) {
.c-block-award__wrap {
    flex-direction: column;
    }
}
.c-block-award__inner:not(:last-child) {
    margin-bottom: 56px;
}

@media screen and (max-width: 750px) {
    .c-block-award__inner:not(:last-child) {
        margin-bottom: 24px;
    }
}

.c-block-award__img-wrap {
    display: flex;
    justify-content: space-between;
}

.c-block-award__img-wrap img {
    width: 49%;
}

@media screen and (max-width: 750px) {
    .c-block-award__img-wrap img {
        margin-bottom: 16px;
    }
}

.c-block-award__img,
.c-block-award__comment {
    width: 48%;
}
.c-block-award__img img{
    width: 100%;
    height: auto;
}

@media screen and (max-width: 750px) {
    .c-block-award__img,
    .c-block-award__comment {
        width: 100%;
    }

    .c-block-award__comment {
        margin: 20px 0 0;
    }
}

.c-block-award__comment-label {
    color: #00469B;
    border-left: 4px solid #00469B;
    display: inline-block;
    padding: 4px 24px;
    margin-bottom: 16px;
}

.c-block-award__comment-txt {
    font-family: "NotoSansCJKjp-medium";
}

@media screen and (max-width: 750px) {
    .c-block-award__comment {
        font-size: 3.2vw;
        line-height: 1.55;
    }
}

/* ---------------------------------------------
*   c-block-photo
--------------------------------------------- */

.c-block-photo {
}


.c-block-photo-txt {
    margin: 32px 0 64px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .c-block-photo-txt {
        margin: 24px 0 32px;
        font-size: 3.2vw;
        line-height: 1.55;
    }
}

.c-block-photo-ttl {
    font-family: "NotoSansCJKjp-Bold";
    font-size: 1.5vw;
    color: #005BAB;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .c-block-photo-ttl {
        font-size: 4vw;
    }
}

.c-block-photo__container {
    margin-bottom: 66px;
}

@media screen and (max-width: 750px) {
    .c-block-photo__container {
        margin-bottom: 6.4vw;
    }
}

.c-block-photo__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    margin: 32px 0;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.c-block-photo__list-item>a {
    transition: .3s;
}

.c-block-photo__list-item>a:hover {
    opacity: .8;
}

@media screen and (max-width: 750px) {
    .c-block-photo__list {
        -ms-flex-pack: justify;
        margin-bottom: 2.66667vw;

        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

.c-block-photo__list-item {
    margin-right: 22px;
    margin-bottom: 20px;
    width: 315px;
}

@media screen and (min-width: 751px) {
    .c-block-photo__list-item:nth-of-type(3n) {
        margin-right: 0;
    }

    .c-block-photo__list-item:nth-of-type(3n+1):nth-last-of-type(-n+3) {
        margin-bottom: 0;
    }

    .c-block-photo__list-item:nth-of-type(3n+1):nth-last-of-type(-n+3)~.c-block-photo__list-item {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 750px) {
    .c-block-photo__list-item {
        margin-right: 0;
        margin-bottom: 2.66667vw;
        width: 49%;
    }

    .c-block-photo__list-item:nth-of-type(2n) {
        margin-right: 0;
    }

    .c-block-photo__list-item:nth-of-type(odd):nth-last-of-type(-n+2) {
        margin-bottom: 0;
    }

    .c-block-photo__list-item:last-of-type {
        margin-bottom: 0;
    }

    .windows .c-block-photo__list-item {
        width: calc(47.1333vw - 14px);
    }
}

/* ---------------------------------------------
*   c-bnr
--------------------------------------------- */
.c-bnr {
    margin-bottom: 15px;
}

@media screen and (max-width: 750px) {
    .c-bnr {
        margin-bottom: 8.667vw;
    }
}

.c-bnr--02 {
    margin-bottom: 30px;
}

@media screen and (max-width: 750px) {
    .c-bnr--02 {
        margin-bottom: 4.66667vw;
    }
}

.c-bnr--movie {
    margin: 0;
    text-align: center;
}

.c-bnr--iframe {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.c-bnr--iframe iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 750px) {
    .c-bnr--movie {}
}

.c-bnr__container {
    margin: 0 auto;
    min-width: 1100px;
}

@media screen and (max-width: 750px) {
    .c-bnr__container {
        min-width: 320px;
        width: 96.8vw;
    }
}

.c-bnr__link {
    display: block;
    margin: 0 auto;
    width: 990px;
}

@media screen and (max-width: 750px) {
    .c-bnr__link {
        width: 100%;
    }
}

@media screen and (min-width: 751px) {
    .c-bnr__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }

    .c-bnr__link:hover {
        opacity: 0.8;
    }
}


.c-bnr__movie-link {
    transition: 0.3s;
}

.c-bnr__movie-link img {
    width: 640px;
}

.c-bnr__movie-link:hover {
    opacity: 0.7;
}

@media screen and (max-width: 750px) {
    .c-bnr__movie-link img {
        width: 100%;
    }
}

/* ---------------------------------------------
*   c-box
--------------------------------------------- */
/* ---------------------------------------------
*   c-box-result
--------------------------------------------- */
.c-box-result {
    background: url(../img/participants/bg_result.png) 0 0 no-repeat;
    background-size: 100% auto;
}

@media screen and (max-width: 750px) {
    .c-box-result {
        background: url(../img/participants/sp/bg_result.png) 0 0 no-repeat;
        background-size: 100% auto;
    }
}

.c-box-result__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: center;
    padding-right: 125px;
    padding-left: 150px;
    height: 200px;

    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .c-box-result__container {
        -ms-flex-direction: column;
        flex-direction: column;
        padding-top: 6.93333vw;
        padding-right: 0;
        padding-bottom: 9.06667vw;
        padding-left: 0;
        height: 46vw;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
    }
}

.c-box-result__container--resultandphotogallery {
    padding-left: 138px;
}

@media screen and (max-width: 750px) {
    .c-box-result__container--resultandphotogallery {
        padding-left: 0;
    }
}

.c-box-result__ttl {
    color: #009cdb;
    letter-spacing: .05em;
    font-family: "NotoSansCJKjp-Black";
    font-size: 1.75rem;
}

@media screen and (max-width: 750px) {
    .c-box-result__ttl {
        text-align: center;
        letter-spacing: .1em;
        font-size: 4.8vw;
        line-height: 1.4;
    }
}

.c-box-result__ttl--lts-narrow {
    letter-spacing: -.04em;
}

@media screen and (max-width: 750px) {
    .c-box-result__ttl--lts-narrow {
        letter-spacing: 0em;
    }
}

.c-box-result__ttl--resultandphotogallery {
    text-align: center;
    letter-spacing: 0.06em;
}

/* ---------------------------------------------
*   c-btn
--------------------------------------------- */

.c-btn.c-btn--about {
    margin: 20px 0 40px;
}

.c-btn.c-btn--entry {
    margin: 20px 0;
}

.c-btn.c-btn--special {
    margin-top: 20px;
}

@media screen and (max-width: 750px) {
    .c-btn.c-btn--about {
        margin: 5vw 0 10vw;
    }

    .c-btn.c-btn--entry {
        margin: 5vw 0;
    }

    .c-btn.c-btn--special {
        margin-top: 5vw;
    }
}

.c-btn__item {}

.c-btn__link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 320px;
    height: 80px;
    background-color: #003f75;
    border-radius: 6px;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0em;
    font-family: "NotoSansCJKjp-Bold";
    font-size: 1.25rem;
    cursor: pointer !important;
}

@media screen and (max-width: 750px) {
    .c-btn__link {
        width: 72vw;
        height: 12.8vw;
        color: #fff;
        letter-spacing: 0em;
        font-family: "NotoSansCJKjp-Bold";
        font-size: 3.2vw;
    }
}

.c-btn__link--long {
    width: 100%;
    max-width: 500px;
}

@media screen and (max-width: 750px) {
    .c-btn__link--long {
        width: 94vw;
    }
}


.c-btn__link--yellow {
    background-color: #FFC800;
    color: #333;
}

.c-btn__link--light-yellow {
    background-color: #FFF000;
    color: #333;
}

.c-btn__link--blue {
    background-color: #0057a0;
}

.c-btn__link--red {
    background-color: #e54363;
}

@media screen and (min-width: 751px) {
    .c-btn__link {
        -webkit-transition: 300ms;
        transition: 300ms;
    }

    .c-btn__link:hover {
        opacity: 0.8;
    }

    .c-btn__link--long:hover {
        opacity: 1 !important;
        box-shadow: 0px 4px 15px 2px rgba(0, 0, 0, 0.3);
    }
}

.c-btn__link--nav {
    width: 190px;
    height: 54px;
    background-color: #003f75;
    color: #fff;
    text-align: center;
    letter-spacing: 0em;
    font-size: 1.25rem;
    line-height: 54px;
}

@media screen and (max-width: 750px) {
    .c-btn__link--nav {
        width: 30vw;
        height: 9.6vw;
        font-size: 3.2vw;
        line-height: 9.6vw;
    }
}

.c-btn__link--nav:hover {
    background-color: #005BAB;
    opacity: 1;
}

.c-btn__link--nav-yellow {
    width: 190px;
    height: 54px;
    background-color: #FFC800;
    color: #333;
    text-align: center;
    letter-spacing: 0em;
    font-size: 1.1rem;
    line-height: 54px;
}

@media screen and (max-width: 750px) {
    .c-btn__link--nav-yellow {
        width: 30vw;
        height: 9.6vw;
        font-size: 2.9vw;
        line-height: 9.6vw;
    }
}

.c-btn__link--nav-yellow:hover {
    background-color: #FFEF00;
    opacity: 1;
}

.c-btn__link--disabled {
    background-color: #ccc;
    color: #fff;
    pointer-events: none;
}

.c-btn__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;

    -webkit-box-pack: center;
    justify-content: center;
    margin: 24px 0;
}

@media screen and (max-width: 750px) {
    .c-btn__container {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: center;

        -webkit-box-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        margin: 0 0 2.667vw;
    }
}

.c-btn__container .c-btn__item {
    margin-right: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 750px) {
    .c-btn__container .c-btn__item {
        margin-right: 0;
        margin-bottom: 2.667vw;
    }
}

.c-btn__container .c-btn__item:last-of-type {
    margin-right: 0;
}

@media screen and (max-width: 750px) {
    .c-btn__container .c-btn__item:last-of-type {
        margin-bottom: 0;
    }
}

/* ---------------------------------------------
*   c-card
--------------------------------------------- */
.c-card {
    margin-bottom: 45px;
}

@media screen and (max-width: 750px) {
    .c-card {
        margin-bottom: 8.53333vw;
    }
}

.c-card__flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;

    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
    .c-card__flex-container {
        -ms-flex-direction: column;
        flex-direction: column;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
    }
}

.c-card__item {
    overflow: hidden;
    width: 480px;
    background: #fff;
    margin-bottom: 32px;
}

@media screen and (max-width: 750px) {
    .c-card__item {
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .c-card__item {
        margin-bottom: 8.8vw;
    }

    .c-card__item:last-of-type {
        margin-bottom: 10px;
    }
}

.c-card__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    height: 96px;
    background-color: #0057a0;

    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .c-card__head {
        height: 14.66667vw;
    }
}

.c-card__head--red {
    background-color: #f57600;
}

.c-card__body {
    padding: 38px 40px;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .c-card__body {
        padding: 6.26667vw 5.33333vw;
    }
}

.c-card__body-top {
    margin-bottom: 20px;
    text-align: center;
}

.c-card__body-top2 {
    margin-top: 80px;
}

@media screen and (max-width: 750px) {
    .c-card__body-top {
        margin-bottom: 2vw;
        height: auto;
    }

    .c-card__body-top2 {
        margin-top: 10vw;
    }
}

.c-card__body-txt {
    text-align: justify;
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 1.7;
}

.ie11 .c-card__body-txt {
    display: inline-block;
    text-align: left;
    word-wrap: break-word;
    word-break: break-all;
}

.c-card__body-bottom p {
    font-size: 14px;
    font-family: "NotoSansCJKjp-Bold";
    letter-spacing: 0.02em;
    line-height: 1.7;
}

.c-card__body-bottom .orange {
    color: #f57600;
    text-align: center;
}

.c-card__body-bottom p:not(:last-child) {
    margin-bottom: 1em;
}

@media screen and (max-width: 750px) {
    .c-card__body-txt {
        font-size: 3.2vw;
    }

    .c-card__body-bottom p {
        font-size: 3.2vw;
    }
}

.c-card__img-wrap {
    margin-bottom: 36px;
}

@media screen and (max-width: 750px) {
    .c-card__img-wrap {
        margin-bottom: 2.53333vw;
    }
}

.c-card__ttl {
    color: #fff;
    letter-spacing: .04em;
    font-family: "NotoSansCJKjp-Bold";
    font-size: 1.75rem;
    text-align: center;
}

.c-card__ttl span {
    display: block;
    font-size: 1rem;
}

@media screen and (max-width: 750px) {
    .c-card__ttl {
        font-size: 4.26667vw;
    }
}

.c-card__sub-ttl {
    color: #0057a0;
    font-family: "NotoSansCJKjp-Bold";
    font-size: 18px;
    line-height: 1.7;
}

@media screen and (max-width: 750px) {
    .c-card__sub-ttl {
        font-size: 3.73333vw;
    }
}

.c-card__sub-ttl--red {
    color: #f57600;
}

.c-card__caption {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    letter-spacing: -.04em;
    font-family: "NotoSansCJKjp-Bold";
    font-size: 1rem;
}

@media screen and (max-width: 750px) {
    .c-card__caption {
        margin-bottom: 1.6vw;
        font-size: 2.66667vw;
    }
}

.c-card__caption:before {
    position: absolute;
    top: calc(50% - 1px);
    left: -58px;
    width: 47px;
    height: 3px;
    background-color: #333333;
    content: '';
}

.windows .c-card__caption:before {
    top: calc(50% - 2px);
}

@media screen and (max-width: 750px) {
    .c-card__caption:before {
        display: none;
    }
}

.c-card__caption:after {
    position: absolute;
    top: calc(50% - 1px);
    right: -58px;
    width: 47px;
    height: 3px;
    background-color: #333333;
    content: '';
}

.windows .c-card__caption:after {
    top: calc(50% - 2px);
}

@media screen and (max-width: 750px) {
    .c-card__caption:after {
        display: none;
    }
}

/* ---------------------------------------------
*   c-participants-card
--------------------------------------------- */
.c-participants-card {
    margin-bottom: 80px;
}

@media screen and (max-width: 750px) {
    .c-participants-card {
        margin-bottom: 9.6vw;
    }
}

.c-participants-card__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    margin-bottom: 48px;
    height: 64px;
    border-radius: 16px 16px 0 0;
    background-color: #aaaaaa;

    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .c-participants-card__head {
        margin-bottom: 5.6vw;
        height: 13.33333vw;
        border-radius: 2vw 2vw 0 0;
    }
}

.c-participants-card__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;

    -webkit-box-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.c-participants-card__item {
    margin-right: 35px;
    margin-bottom: 56px;
    width: 221px;
}

@media screen and (min-width: 751px) {
    .c-participants-card__item:nth-of-type(4n) {
        margin-right: 0;
    }

    .c-participants-card__item:nth-of-type(4n+1):nth-last-of-type(-n+4) {
        margin-bottom: 0;
    }

    .c-participants-card__item:nth-of-type(4n+1):nth-last-of-type(-n+4)~.c-participants-card__item {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 750px) {
    .c-participants-card__item {
        margin-right: 4vw;
        margin-bottom: 6.13333vw;
        width: 45.33333vw;
    }

    .c-participants-card__item:nth-of-type(2n) {
        margin-right: 0;
    }

    .c-participants-card__item:nth-of-type(odd):nth-last-of-type(-n+2) {
        margin-bottom: 0;
    }

    .c-participants-card__item:last-of-type {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 750px) {
    .windows .c-participants-card__item {
        margin-right: calc(4vw - 9px);
        width: calc(45.3333vw - 4px);
    }

    .windows .c-participants-card__item:nth-of-type(2n) {
        margin-right: 0;
    }

    .windows .c-participants-card__item:nth-of-type(odd):nth-last-of-type(-n+2) {
        margin-bottom: 0;
    }

    .windows .c-participants-card__item:last-of-type {
        margin-bottom: 0;
    }
}

.c-participants-card__top {
    margin-bottom: 6px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .c-participants-card__top {
        margin-bottom: 0.13333vw;
    }
}

.c-participants-card__center {
    margin-bottom: 29px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .c-participants-card__center {
        margin-bottom: 4.53333vw;
    }
}

.c-participants-card__center2 {
    margin-bottom: 22px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .c-participants-card__center2 {
        margin-bottom: 2.93333vw;
    }
}

.c-participants-card__center2 img {
}

.c-participants-card__img {
    margin-bottom: 17px;
}

@media screen and (max-width: 750px) {
    .c-participants-card__img {
        margin-bottom: 2.66667vw;
    }
}

.c-participants-card__head-ttl {
    color: #fff;
    font-family: "NotoSansCJKjp-Black";
    font-size: 1.75rem;
}

@media screen and (max-width: 750px) {
    .c-participants-card__head-ttl {
        font-size: 4.26667vw;
    }
}

.c-participants-card__txt {
    color: #333333;
    text-align: justify;
    font-size: 1rem;
    line-height: 1.5;
}

.c-participants-card__txt img{
    margin-top: 12px;
}

@media screen and (max-width: 750px) {
    .c-participants-card__txt {
        letter-spacing: .02em;
        font-size: 3.2vw;
        line-height: 1.55;
    }

    .c-participants-card__txt.js-acc-target {
        display: none;
    }
}

.c-participants-card__txt--name {
    text-align: center;
    letter-spacing: .05em;
    font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
}

@media screen and (max-width: 750px) {
    .c-participants-card__txt--name {
        letter-spacing: 0em;
        font-size: 4.26667vw;
        line-height: 1.7;
    }
}

.c-participants-card__txt--name-blue {
    color: #0057a0;
    text-align: center;
    letter-spacing: .07em;
    font-family: "NotoSansCJKjp-Black";
    font-size: 1.125rem;
}

@media screen and (max-width: 750px) {
    .c-participants-card__txt--name-blue {
        letter-spacing: 0em;
        font-size: 3.73333vw;
        line-height: 1.7;
    }
}

.c-participants-card__txt--name-red {
    color: #e54363;
    text-align: center;
    letter-spacing: .07em;
    font-family: "NotoSansCJKjp-Black";
    font-size: 1.125rem;
}

@media screen and (max-width: 750px) {
    .c-participants-card__txt--name-red {
        letter-spacing: 0em;
        font-size: 3.73333vw;
        line-height: 1.7;
    }
}

.c-participants-card__txt--caption {
    text-align: center;
    font-family: "NotoSansCJKjp-Black";
    font-size: 0.875rem;
}

@media screen and (max-width: 750px) {
    .c-participants-card__txt--caption {
        letter-spacing: 0em;
        font-size: 2.66667vw;
        line-height: 1.3;
    }
}

.c-participants-card__txt--caption2 {
    text-align: center;
    letter-spacing: .1em;
    font-family: "NotoSansCJKjp-Black";
    font-size: 0.875rem;

    -webkit-font-feature-settings: "palt" 1;
    font-feature-settings: "palt" 1;
}

@media screen and (max-width: 750px) {
    .c-participants-card__txt--caption2 {
        font-size: 2.66667vw;
        line-height: 1.3;
    }
}

.c-participants-card__link {
    display: inline;
    padding-right: .1em;
    padding-bottom: 4px;
    padding-left: .1em;
    border-bottom: 1px solid #0057a0;
    color: #0057a0;
    text-decoration: none;
    letter-spacing: .07em;
    font-size: 0.875rem;
}

@media screen and (max-width: 750px) {
    .c-participants-card__link {
        padding-bottom: 0.53333vw;
        font-size: 2.66667vw;
        line-height: 1.7;
    }
}

@media screen and (min-width: 751px) {
    .c-participants-card__link:hover {
        padding-bottom: 5px;
        border-bottom: none;
    }
}

.c-participants-card__label {
    display: block;
    margin-right: auto;
    margin-bottom: 8px;
    margin-left: auto;
    padding-top: 2px;
    padding-bottom: 1px;
    width: 145px;
    border-radius: 12px;
    background-color: #eeeeee;
    text-align: center;
    letter-spacing: -.05em;
    font-family: "NotoSansCJKjp-Black";
    font-size: 0.875rem;
}

@media screen and (max-width: 750px) {
    .c-participants-card__label {
        margin-bottom: 1.06667vw;
        padding-top: 0.26667vw;
        padding-bottom: 0.26667vw;
        width: 100%;
        border-radius: 2.26667vw;
        font-size: 2.66667vw;
    }
}

@media screen and (max-width: 750px) {
    .c-participants-card__label--sp-acc-blue {
        position: relative;
        margin-bottom: 1.73333vw;
    }

    .c-participants-card__label--sp-acc-blue:before {
        position: absolute;
        top: 50%;
        right: 2vw;
        width: 2.4vw;
        height: 0.53333vw;
        background-color: #0057a0;
        content: '';
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }

    .c-participants-card__label--sp-acc-blue:after {
        position: absolute;
        top: 45%;
        right: 2vw;
        width: 2.4vw;
        height: 0.53333vw;
        background-color: #0057a0;
        content: '';
        -webkit-transition: -webkit-transform .3s;
        transition: -webkit-transform .3s;
        transition: transform .3s;
        transition: transform .3s, -webkit-transform .3s;
        -webkit-transform: rotate(90deg) translate(0%, 0%);
        transform: rotate(90deg) translate(0%, 0%);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}

.c-participants-card__label--sp-acc-blue.is-open:after {
    -webkit-transform: rotate(0deg) translate(0%, 0%);
    transform: rotate(0deg) translate(0%, 0%);
}

@media screen and (max-width: 750px) {
    .c-participants-card__label--sp-acc-red {
        position: relative;
        margin-bottom: 1.73333vw;
    }

    .c-participants-card__label--sp-acc-red:before {
        position: absolute;
        top: 50%;
        right: 2vw;
        width: 2.4vw;
        height: 0.53333vw;
        background-color: #e54363;
        content: '';
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }

    .c-participants-card__label--sp-acc-red:after {
        position: absolute;
        top: 45%;
        right: 2vw;
        width: 2.4vw;
        height: 0.53333vw;
        background-color: #e54363;
        content: '';
        -webkit-transition: -webkit-transform .3s;
        transition: -webkit-transform .3s;
        transition: transform .3s;
        transition: transform .3s, -webkit-transform .3s;
        -webkit-transform: rotate(90deg) translate(0%, 0%);
        transform: rotate(90deg) translate(0%, 0%);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}

.c-participants-card__label--sp-acc-red.is-open:after {
    -webkit-transform: rotate(0deg) translate(0%, 0%);
    transform: rotate(0deg) translate(0%, 0%);
}

/* ---------------------------------------------
*   c-contestant
--------------------------------------------- */
.c-contestant {
    margin-top: 62px;
    margin-bottom: 40px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .c-contestant {
        margin-top: 10vw;
        margin-bottom: 6vw;
    }
}

.c-contestant__txt {
    letter-spacing: .08em;
    font-size: 1.125rem;
}

.c-contestant__txt--2em {
    margin-bottom: 2em !important;
}

@media screen and (max-width: 750px) {
    .c-contestant__txt {
        font-size: 3.2vw;
        line-height: 1.9;
    }
}

/* ---------------------------------------------
*   c-flow
--------------------------------------------- */
.c-flow {
    margin-top: 25px;
    margin-bottom: 10px;
}

@media screen and (max-width: 750px) {
    .c-flow {
        margin-top: 3.33333vw;
        margin-bottom: 2.4vw;
    }
}

.c-flow__container {
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 750px) {
    .c-flow__container {
        flex-direction: column;
        justify-content: center;
    }
}

.c-flow__datalist {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    margin-right: 33px;
    width: 160px;
    height: 160px;
    border-radius: 6px;
    background-color: #c6edfc;
    color: #0057a0;

    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

.c-flow__datalist.c-flow__datalist--yellow {
    background-color: #fcf7c6;
    color: #a05000;
}

.c-flow__datalist.c-flow__datalist--wide {
    width: 240px !important;
}

@media screen and (max-width: 750px) {
    .c-flow__datalist {
        margin-right: 0;
        margin-bottom: 8.66667vw;
        width: 100%;
        height: inherit;
        padding: 2.5vw 0;

        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    }

    .c-flow__datalist.c-flow__datalist--wide {
        width: 100% !important;
    }
}

.c-flow__datalist:after {
    position: absolute;
    top: calc(50% - 6px);
    right: -28px;
    width: 30px;
    height: 29px;
    background: url(../img/ico_flow-arrow.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
}

.c-flow__datalist.c-flow__datalist--yellow::after {
    background-image: url(../img/ico_flow-arrow02.png);
}

@media screen and (max-width: 750px) {
    .c-flow__datalist:after {
        top: auto;
        right: auto;
        bottom: -7.06667vw;
        left: 50%;
        width: 6.93333vw;
        height: 7.73333vw;
        background: url(../img/ico_flow-arrow-sp.png) 0 0 no-repeat;
        background-size: 100% auto;
        -webkit-transform: translateX(-3.6vw);
        transform: translateX(-3.6vw);
    }

    .c-flow__datalist.c-flow__datalist--yellow::after {
        background-image: url(../img/ico_flow-arrow02-sp.png);
    }
}

.c-flow__datalist:last-of-type {
    margin-right: 0;
    width: 200px;
}

@media screen and (max-width: 750px) {
    .c-flow__datalist:last-of-type {
        margin-bottom: 0;
        width: 100%;
    }
}

.c-flow__datalist:last-of-type:after {
    width: 0;
    height: 0;
    background: none;
}

.c-flow__datattl {
    font-weight: bold;
    font-size: 1.125rem;
}

@media screen and (max-width: 750px) {
    .c-flow__datattl {
        font-size: 3.2vw;
    }
}

.c-flow__datadetail {
    text-align: center;
    font-weight: bold;
    font-size: 1.125rem;
    line-height: 1.2;
}

@media screen and (max-width: 750px) {
    .c-flow__datadetail {
        font-size: 3.2vw;
    }
}

.c-flow__datadetail span {
    font-size: 0.8rem;
}

@media screen and (max-width: 750px) {
    .c-flow__datadetail span {
        font-size: 2.8vw;
    }
}

/* ---------------------------------------------
*   c-contests-movie
--------------------------------------------- */

.c-contests-movie {
    margin-bottom: 40px;
}

.c-contests-movie h3 {
    color: #0057a0;
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

@media screen and (max-width: 750px) {
    .c-contests-movie {
        margin-bottom: 10vw;
    }

    .c-contests-movie h3 {
        font-size: 5vw;
        margin-bottom: 4vw;
    }
}


/* ---------------------------------------------
*   c-img
--------------------------------------------- */
/* ---------------------------------------------
*   c-lead
--------------------------------------------- */
.c-lead {
    text-align: center;
}

.c-lead--participants {
    margin-bottom: 34px;
}

@media screen and (max-width: 750px) {
    .c-lead--participants {
        margin-bottom: 4.53333vw;
    }
}

.c-lead--resultandphotogallery {
    margin-bottom: 44px;
}

@media screen and (max-width: 750px) {
    .c-lead--resultandphotogallery {
        margin-bottom: 7.33333vw;
        padding-right: 7.33333vw;
        padding-left: 8vw;
    }
}

.c-lead__txt {
    color: #333333;
    letter-spacing: .07em;
    font-family: "NotoSansCJKjp-Black";
    font-size: 1.75rem;
}

@media screen and (max-width: 750px) {
    .c-lead__txt {
        font-size: 4.8vw;
        line-height: 1.4;
    }
}

.c-lead__txt--resultandphotogallery {
    text-align: left;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 2;
}

@media screen and (max-width: 750px) {
    .c-lead__txt--resultandphotogallery {
        text-align: justify;
        font-size: 3.73333vw;
        line-height: 1.5;
    }
}

/* ---------------------------------------------
*   c-link
--------------------------------------------- */
.c-link {
    padding-bottom: 0px;
    border-bottom: 1px solid #0057a0;
    color: #0057a0;
    text-decoration: none!important;
    cursor: pointer;
}

.windows .c-link {
    padding-bottom: 0;
}

@media screen and (max-width: 750px) {
    .c-link {
        padding-bottom: 0.26667vw;
    }

    .android .c-link {
        padding-bottom: 0.26667vw;
    }
}

.c-link:hover {
    border-bottom: none;
}

.c-link--disabled {
    padding-bottom: 0px;
    border-bottom: none;
    color: inherit;
    pointer-events: none;
}

/* ---------------------------------------------
*   c-mainvisual
--------------------------------------------- */
.c-mainvisual {
    margin-top: 100px;
    margin-bottom: 60px;
}

@media screen and (max-width: 1279px) {
    .c-mainvisual {
        margin-top: 58px;
    }
}

@media screen and (max-width: 750px) {
    .c-mainvisual {
        margin-bottom: 6vw;
    }
}

.c-mainvisual--participants {
    margin-bottom: 60px;
}

@media screen and (max-width: 750px) {
    .c-mainvisual--participants {
        margin-bottom: 9.33333vw;
    }
}

.c-mainvisual--resultandphotogallery {
    margin-bottom: 50px;
}

@media screen and (max-width: 750px) {
    .c-mainvisual--resultandphotogallery {
        margin-bottom: 9.33333vw;
    }
}

.c-mainvisual__bg {
    position: relative;
    background: url(../img/bg_kv.jpg) no-repeat center center / cover;
    min-width: 1100px;
}

@media screen and (max-width: 750px) {
    .c-mainvisual__bg {
        min-width: 320px;
        background: none;
    }
}

.c-mainvisual__img-container {
    position: relative;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    margin: 0 auto;
    padding: 100px 30px;
    width: 100%;
    max-width: 1061px;
}

@media screen and (max-width: 750px) {
    .c-mainvisual__img-container {
        padding: 0;
        min-width: 320px;
    }
}

.c-mainvisual__img-container--participants {
    padding: 56px 0;
    min-width: 320px;
    max-width: 990px;
}

@media screen and (max-width: 750px) {
    .c-mainvisual__img-container--participants {
        padding: 9.06667vw 0;
    }
}

.c-mainvisual__hide-txt {
    overflow: hidden;
    height: 0;
}

.c-mainvisual__ttl {
    color: #ffef00;
    font-family: "NotoSansCJKjp-Black";
    font-size: 2rem;
}

@media screen and (max-width: 750px) {
    .c-mainvisual__ttl {
        text-align: center;
        font-size: 5.6vw;
    }
}

.c-mainvisual__ttl--resultandphotogallery {
    letter-spacing: 0.08em;
}

@media screen and (max-width: 750px) {
    .c-mainvisual__ttl--resultandphotogallery {
        letter-spacing: -0.06em;
    }
}

/* ---------------------------------------------
*   c-pagetitle
--------------------------------------------- */
.c-pagetitle {
    margin-top: 100px;
    margin-bottom: 60px;
    min-width: 1100px;
}

.c-pagetitle__item--sp {
    display: none;
}

.c-pagetitle--pc {
    background-image: url(../img/area/bg_mv.jpg);
}

@media screen and (max-width: 1279px) {
    .c-pagetitle {
        margin-top: 58px;
    }
}

@media screen and (max-width: 750px) {
    .c-pagetitle {
        min-width: 100%;
        margin-bottom: 9.33333vw;
    }

    .c-pagetitle__item--pc {
        display: none;
    }

    .c-pagetitle__item--sp {
        display: block;
        width: 100vw;
    }

    .c-pagetitle--pc {
        background-image: none;
    }
}

.c-pagetitle__inner {
    padding: 56px 0;
    min-width: 320px;
    max-width: 990px;
    margin: 0 auto;
}

@media screen and (max-width: 750px) {
    .c-pagetitle__inner {
        padding: 0;
        min-width: 100%;
        max-width: 100%;
        margin: 0;
    }
}

.c-pagetitle__heading {
    color: #ffef00;
    font-family: "NotoSansCJKjp-Black";
    font-size: 2rem;
}

.c-pagetitle--area {
    background: url(../img/area/bg_title-pc.jpg) no-repeat 0 0 / cover;
}

.c-pagetitle--national {
    background: url(../img/national/bg_title-pc.jpg) no-repeat 0 0 / cover;
}

.c-pagetitle__heading--yellow {
    color: #333;
}

@media screen and (max-width: 750px) {
    .c-pagetitle__heading {
        text-align: center;
        font-size: 5.6vw;
    }

    .c-pagetitle--area {
        background: url(../img/area/bg_title-sp.jpg) no-repeat 0 0 / cover;
        padding: 9.06667vw 0;
    }

    .c-pagetitle--national {
        background: url(../img/national/bg_title-sp.jpg) no-repeat 0 0 / cover;
        padding: 9.06667vw 0;
    }
}

/* ---------------------------------------------
*   c-movie
--------------------------------------------- */
.c-movie--history {
    margin: 50px 0;
}

@media screen and (max-width: 750px) {
    .c-movie--history {
        margin: 4.66667vw 0;
    }
}

.c-movie__head {
    margin-bottom: 30px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .c-movie__head {
        margin-bottom: 3vw;
        padding-right: 0.8vw;
        padding-left: 0.8vw;
    }
}

.c-movie__ttl {
    margin-bottom: 35px;
    color: #009cdb;
    letter-spacing: .08em;
    font-family: "NotoSansCJKjp-Bold";
    font-size: 2rem;
    line-height: 1;
}

@media screen and (max-width: 750px) {
    .c-movie__ttl {
        margin-bottom: 2.93333vw;
        font-size: 4.8vw;
    }
}

.c-movie__txt {
    letter-spacing: .08em;
    line-height: 1.7;
}

@media screen and (max-width: 750px) {
    .c-movie__txt {
        font-size: 3.2vw;
    }
}

.c-movie__body {
    width: 100%;
    height: 557px;
}

@media screen and (max-width: 750px) {
    .c-movie__body {
        padding-right: 5.33333vw;
        padding-left: 5.33333vw;
        height: 47.06667vw;
    }
}

.c-movie__body--resultandphotogallery {
    height: 495px;
}

@media screen and (max-width: 750px) {
    .c-movie__body--resultandphotogallery {
        padding-right: 0;
        padding-left: 0;
        height: 47.06667vw;
    }
}

/* ---------------------------------------------
*   c-box
--------------------------------------------- */
.c-nav {
    position: relative;
    margin-bottom: 12px;
}

@media screen and (max-width: 750px) {
    .c-nav {
        margin-bottom: 4.933vw;
    }
}

.c-nav:before {
    position: absolute;
    top: calc(50% - 6px);
    left: 0;
    z-index: 0;
    width: 100%;
    height: 10px;
    background-color: #a1b1ba;
    content: '';
}

.c-nav--area {
    content: none;
}

@media screen and (max-width: 750px) {
    .c-nav:before {
        display: none;
    }
}

.c-nav__container {
    position: relative;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 1060px;
}

@media screen and (max-width: 750px) {
    .c-nav__container {
        padding-top: 4vw;
        padding-bottom: 4vw;
        width: 100%;
    }
}

.c-nav__inner {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: 1052px;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .c-nav__inner {
        width: 100%;
    }
}

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

.c-nav__inner--area {
    width: 100%;
}

@media screen and (max-width: 750px) {
    .c-nav__list {
        margin: 0 auto;
        width: 100%;

        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.c-nav__list-item {
    margin-right: 5px;
}

@media screen and (max-width: 750px) {
    .c-nav__list-item {
        margin-right: 0.667vw;
        margin-bottom: 2.4vw;
    }

    .c-nav__list-item:nth-of-type(3) {
        margin-right: 0;
    }

    .c-nav__list-item:nth-of-type(n+3) {
        margin-bottom: 0;
    }
}

.c-nav__list-item:last-of-type {
    margin-right: 0;
}

/* ---------------------------------------------
*   c-anchor
--------------------------------------------- */
.c-anchor {
    position: relative;
    margin-bottom: 12px;
}

@media screen and (max-width: 750px) {
    .c-anchor {
        margin-bottom: 4.933vw;
    }
}

.c-anchor:before {
    position: absolute;
    top: calc(50% - 6px);
    left: 0;
    z-index: 0;
    width: 100%;
    height: 10px;
    background-color: #a1b1ba;
    content: '';
}

.c-anchor--area {
    content: none;
}

@media screen and (max-width: 750px) {
    .c-anchor:before {
        display: none;
    }
}

.c-anchor__container {
    position: relative;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 1060px;
}

@media screen and (max-width: 750px) {
    .c-anchor__container {
        padding-top: 4vw;
        padding-bottom: 4vw;
        width: 100%;
    }
}

.c-anchor__inner {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: 1052px;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .c-anchor__inner {
        width: 100%;
    }
}

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

.c-anchor__inner--area {
    width: 100%;
}

@media screen and (max-width: 750px) {
    .c-anchor__list {
        margin: 0 -0.667vw -2.4vw 0;
        width: 100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.c-anchor__list-item {
    margin-right: 5px;
}

@media screen and (max-width: 750px) {
    .c-anchor__list-item {
        margin-right: 0.667vw;
        ;
        margin-bottom: 2.4vw;
    }
}

.c-anchor__list-item:last-of-type {
    margin-right: 0;
}

/* ---------------------------------------------
*   c-news
--------------------------------------------- */
.c-news__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    padding-top: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #dddddd;

    -webkit-box-pack: start;
    justify-content: flex-start;
}

@media screen and (max-width: 750px) {
    .c-news__list-item {
        -ms-flex-direction: column;
        flex-direction: column;
        padding-top: 2.66667vw;
        padding-bottom: 3.33333vw;
        padding-left: 2.66667vw;
        border-bottom: 0.66667vw solid #dddddd;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
    }
}

.c-news__list-item:first-of-type {
    border-top: 1px solid #dddddd;
}

@media screen and (max-width: 750px) {
    .c-news__list-item:first-of-type {
        border-top: 0.66667vw solid #dddddd;
    }
}

.c-news__date {
    padding-left: 30px;
    width: 225px;
    color: #444444;
    font-size: 1.125rem;
}

@media screen and (max-width: 750px) {
    .c-news__date {
        padding-left: 0;
        font-size: 3.2vw;
    }
}

.c-news__ttl {
    width: calc(100% - 260px);
    color: #444444;
    letter-spacing: .1em;
    font-size: 1.125rem;
}

@media screen and (max-width: 750px) {
    .c-news__ttl {
        width: auto;
        font-size: 3.2vw;
    }
}

/* ---------------------------------------------
*   c-overview
--------------------------------------------- */
.c-overview {
    border: 2px solid #005BAB;
}

.c-overview--yellow {
    border: 2px solid #ffef00;
}

.c-overview__container {
    padding-top: 50px;
    padding-right: 50px;
    padding-bottom: 23px;
    padding-left: 50px;
    border-radius: 15px;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .c-overview__container {
        padding-top: 6.66667vw;
        padding-right: 4vw;
        padding-bottom: 3.06667vw;
        padding-left: 4vw;
    }
}

.c-overview__data-list {
    margin-bottom: 56px;
}

@media screen and (max-width: 750px) {
    .c-overview__data-list {
        margin-bottom: 3.33333vw;
    }
}

.c-overview__head {
    margin-bottom: 12px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .c-overview__head {
        margin-bottom: 0.4vw;
    }
}

.c-overview__body {
    margin-bottom: 35px;
    text-align: center;
}

.c-overview__body p:not(:last-child) {
    margin-bottom: 1em;
}

.c-overview__body a {
    text-decoration: underline;
}

.c-overview__body a:hover {
    text-decoration: none;
}

@media screen and (max-width: 750px) {
    .c-overview__body {
        margin-bottom: 6.66667vw;
    }
}

.c-overview__ttl {
    color: #f57600;
    letter-spacing: .04em;
    font-weight: bold;
    font-size: 1.75rem;
}

@media screen and (max-width: 750px) {
    .c-overview__ttl {
        letter-spacing: 0em;
        font-size: 4.26667vw;
    }
}

.c-overview__txt {
    color: #444444;
    letter-spacing: .04em;
    font-weight: bold;
    font-size: 1.5rem;
}

@media screen and (max-width: 750px) {
    .c-overview__txt {
        letter-spacing: -.02em;
        font-size: 3.73333vw;
    }
}

.c-overview__txt .c-link {
    letter-spacing: .1em;
}

@media screen and (max-width: 750px) {
    .c-overview__txt .c-link {
        line-height: 1.7;
    }
}

/* ---------------------------------------------
*   c-special
--------------------------------------------- */
.c-special {
    width: 100%;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 45px;
}

@media screen and (max-width: 750px) {
    .c-special {
        padding: 6.26667vw 5.33333vw;
        margin-bottom: 8.53333vw;
    }
}

.c-special__heading {
    text-align: center;
    color: #604c40;
    letter-spacing: .07em;
    font-family: "NotoSansCJKjp-Bold";
    font-size: 1.5625rem;
    margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
    .c-special__heading {
        text-align: left;
        margin-bottom: 3.2vw;
        font-size: 4.8vw;
    }
}

.c-special__text {
    text-align: center;
}

@media screen and (max-width: 750px) {
    .c-special__text {
        text-align: left;
        font-size: 3.2vw;
    }
}

.c-special__official-line {
    text-align: center;
}

.c-special__img-qr {
    width: 150px;
}

.c-special__img-line {
    width: 95%;
    max-width: 320px;
}

/* ---------------------------------------------
*   c-profile
--------------------------------------------- */
.c-profile__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 750px) {
    .c-profile__container {
        -ms-flex-direction: column;
        flex-direction: column;
        padding-right: 2.66667vw;
        padding-left: 2.66667vw;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
    }
}

.c-profile__img-wrap {
    width: 486px;
}

@media screen and (max-width: 750px) {
    .c-profile__img-wrap {
        margin-bottom: 5.33333vw;
        width: 100%;
    }
}

.c-profile__txt-wrap {
    padding-left: 26px;
    width: 486px;
}

@media screen and (max-width: 750px) {
    .c-profile__txt-wrap {
        padding-left: 0;
        width: 100%;
    }
}

.c-profile__txt-head {
    margin-top: -6px;
}

@media screen and (max-width: 750px) {
    .c-profile__txt-head {
        margin-top: 0;
    }
}

.c-profile__ttl {
    margin-bottom: 17px;
    color: #604c40;
    letter-spacing: .07em;
    font-family: "NotoSansCJKjp-Bold";
    font-size: 1.5625rem;
}

@media screen and (max-width: 750px) {
    .c-profile__ttl {
        margin-bottom: 3.2vw;
        font-size: 4.8vw;
    }
}

.c-profile__txt {
    display: block;
    margin-bottom: 10px;
    color: #444444;
    text-align: justify;
    letter-spacing: .05em;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.7;
}

@media screen and (max-width: 750px) {
    .c-profile__txt {
        font-size: 3.2vw;
    }
}

.c-profile__txt--bold {
    margin-bottom: 2px;
    margin-left: -10px;
    color: #333333;
    font-family: "NotoSansCJKjp-Bold";
    font-size: 1.25rem;
    line-height: 1.6;
}

@media screen and (max-width: 750px) {
    .c-profile__txt--bold {
        margin-bottom: 0.66667vw;
        margin-left: -2.13333vw;
        font-size: 4.26667vw;
    }
}

.c-profile__txt--large {
    margin-bottom: 2px;
    font-size: 1.125rem;
    line-height: 1.6;
}

@media screen and (max-width: 750px) {
    .c-profile__txt--large {
        margin-bottom: 0.8vw;
        font-size: 3.73333vw;
    }
}

.c-profile__txt--small {
    margin-bottom: 18px;
    font-size: 0.875rem;
    line-height: 1.6;
}

@media screen and (max-width: 750px) {
    .c-profile__txt--small {
        margin-bottom: 4.13333vw;
        font-size: 3.2vw;
    }
}

/* ---------------------------------------------
*   c-report
--------------------------------------------- */
.c-report {
    padding-top: 50px;
    padding-bottom: 30px;
    background: url(../img/top/bg_tournament-end.png) 0 0 no-repeat;
    background-size: 100% auto;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .c-report {
        padding-top: 5.6vw;
        padding-bottom: 7.1vw;
        background: url(../img/top/sp/bg_tournament-end.png) 0 0 no-repeat;
        background-size: 100% auto;
    }
}

.c-report__report-ttl {
    margin-bottom: 27px;
    color: #e54363;
    letter-spacing: .04em;
    font-family: "NotoSansCJKjp-Bold";
    font-size: 1.75rem;
}

@media screen and (max-width: 750px) {
    .c-report__report-ttl {
        margin-bottom: 3.467vw;
        letter-spacing: .04em;
        font-size: 4.8vw;
        line-height: 1.4;
    }
}

/* ---------------------------------------------
*   c-section
--------------------------------------------- */
.c-section {
    margin-bottom: 100px;
    min-width: 1100px;
}

@media screen and (max-width: 750px) {
    .c-section {
        margin-bottom: 13.3vw;
        min-width: 320px;
    }
}

.c-section--gray {
    background: #f3f5fa;
    padding: 40px 0;
}

@media screen and (max-width: 750px) {
    .c-section--gray {
        padding: 1vw 0 5vw;
    }
}

.c-section--archive {
    margin-bottom: 0;
    padding: 100px 0;
    background-size: auto auto;
}

.c-section--overview {
    margin-bottom: 0;
    padding-top: 100px;
    padding-bottom: 100px;
    background-size: auto auto;
}

@media screen and (max-width: 750px) {
    .c-section--archive {
        padding: 10.66667vw 0;
    }
    
    .c-section--overview {
        padding-top: 13.33333vw;
        padding-bottom: 10.66667vw;
        background-size: 100% auto;
    }
}

.c-section--point {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f7f6ed;
}

@media screen and (max-width: 750px) {
    .c-section--point {
        padding-top: 13.33333vw;
        padding-bottom: 10.66667vw;
    }
}

.c-section--movie {
    margin-bottom: 53px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #e4f7ff;
}

@media screen and (max-width: 750px) {
    .c-section--movie {
        margin-bottom: 11.73333vw;
        padding-top: 13.33333vw;
        padding-bottom: 13.33333vw;
    }
}

.c-section--participants-lead {
    margin-bottom: 80px;
}

@media screen and (max-width: 750px) {
    .c-section--participants-lead {
        margin-bottom: 13.33333vw;
    }
}

.c-section--participants-result {
    margin-bottom: 64px;
}

@media screen and (max-width: 750px) {
    .c-section--participants-result {
        margin-bottom: 6.4vw;
    }
}

.c-section--resultandphotogallery-lead {
    margin-bottom: 63px;
}

@media screen and (max-width: 750px) {
    .c-section--resultandphotogallery-lead {
        margin-bottom: 10.66667vw;
    }
}

.c-section--comment {
    margin-bottom: 55px;
}

@media screen and (max-width: 750px) {
    .c-section--comment {
        margin-bottom: 9.33333vw;
    }
}

.c-section--digest-movie {
    margin-bottom: 64px;
}

@media screen and (max-width: 750px) {
    .c-section--digest-movie {
        margin-bottom: 6.4vw;
        padding-bottom: 0;
    }
}

.c-section__container {
    margin: 0 auto;
    width: 990px;
}

@media screen and (max-width: 750px) {
    .c-section__container {
        padding-right: 2.667vw;
        padding-left: 2.667vw;
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .c-section__container--sp-pd-none {
        padding-right: 0;
        padding-left: 0;
    }
}

.c-section__container--linkBnr {
    text-align: center;
}

.c-section__container--linkBnr img {
    width: initial;
}

@media screen and (max-width: 750px) {
    .c-section__sponsor-container {
        margin-top: -3.33333vw;
    }
}

.c-section__head {
    margin-bottom: 50px;
}

@media screen and (max-width: 750px) {
    .c-section__head {
        margin-bottom: 8vw;
    }
}

.c-section__head--mb-narrow {
    margin-bottom: 40px;
}

@media screen and (max-width: 750px) {
    .c-section__head--mb-narrow {
        margin-bottom: 7.46667vw;
    }
}

.c-section__head--participants {
    margin-bottom: 56px;
}

@media screen and (max-width: 750px) {
    .c-section__head--participants {
        margin-bottom: 7.46667vw;
    }
}

@media screen and (max-width: 750px) {
    .c-section__head--resultandphotogallery {
        margin-bottom: 10.66667vw;
    }
}

.c-section__ttl-bg-container {
    width: 100%;
    height: 90px;
    background: #005BAB url(../img/national/bg_heading.png) no-repeat center right / auto 100%;
}

.c-section__ttl-bg-container--area {
    background-color: #ffef00;
    background-image: url(../img/area/bg_heading.png);
}

.c-section__ttl-border {
    width: 100%;
    height: auto;
    padding: 16px;
    border: 1px solid #005BAB;
    color: #005BAB;
}

.c-section__ttl-border>.c-section__ttl {
    color: #005BAB;
}

@media screen and (max-width: 750px) {
    .c-section__ttl-border {
        width: 100%;
    }

    .c-section__ttl-border>.c-section__ttl {
        font-size: 5vw;
        line-height: 1.4;
    }
}

@media screen and (max-width: 750px) {
    .c-section__ttl-bg-container {
        height: 18.667vw;
    }
}

.c-section__ttl-bg-container--idea {
    background: #0057a0;
}

.c-section__ttl-bg-container--technical {
    background: #f57600;
}

.c-section__ttl-bg-container--large {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    background: url(../img/national/bg_title-pc.jpg) no-repeat center right / cover;
    height: 140px;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
}


@media screen and (max-width: 750px) {
    .c-section__ttl-bg-container--large {
        height: auto;

    }
}

.c-section__ttl-bg-container--robo-icon {
    position: relative;
}

.c-section__ttl-bg-container--robo-icon:before {
    position: absolute;
    bottom: -35px;
    left: -46px;
    z-index: 1;
    width: 135px;
    height: 137px;
    background: url(../img/resultandphotogallery/img_robo1.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
}

@media screen and (max-width: 750px) {
    .c-section__ttl-bg-container--robo-icon:before {
        top: -3.73333vw;
        bottom: auto;
        left: 0;
        width: 18vw;
        height: 15.6vw;
        background: url(../img/resultandphotogallery/sp/img_robo1.png) 0 0 no-repeat;
        background-size: 100% auto;
    }
}

.c-section__ttl-bg-container--robo-icon:after {
    position: absolute;
    right: -46px;
    bottom: -36px;
    z-index: 1;
    width: 150px;
    height: 128px;
    background: url(../img/resultandphotogallery/img_robo2.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
}

@media screen and (max-width: 750px) {
    .c-section__ttl-bg-container--robo-icon:after {
        top: -4.4vw;
        right: 0;
        bottom: auto;
        width: 20vw;
        height: 17.06667vw;
        background: url(../img/resultandphotogallery/sp/img_robo2.png) 0 0 no-repeat;
        background-size: 100% auto;
    }
}

.c-section__ttl {
    color: #ffef00;
    text-align: center;
    letter-spacing: .05em;
    font-family: "NotoSansCJKjp-Bold";
    font-size: 2rem;
    line-height: 90px;
}

.c-section__ttl--yellow {
    background: url(../img/area/bg_heading.png)#ffef00 no-repeat center right / auto 100%;
    color: #333;
}

@media screen and (max-width: 750px) {
    .c-section__ttl {
        font-size: 5.6vw;
        line-height: 18.667vw;
    }
}

.c-section__ttl--participants {
    color: #fff;
}

.c-section__ttl--large {
    letter-spacing: -0.04em;
    line-height: 1.4;
}

@media screen and (max-width: 750px) {
    .c-section__ttl--large {
        font-size: 5vw;
        letter-spacing: 0.05em;
        line-height: 1.2;
        height: auto;
        padding: 16px;
    }
}

.c-section__ttl--large-wide {
    letter-spacing: 0.08em;
}

.c-section__ttl03 {
    font-family: "NotoSansCJKjp-Bold";
    margin-bottom: 10px;
}

.c-section__national-result-ttl {
    line-height: 60px;
    position: relative;
    height: 60px;
    margin: 2em 50px 1em;
    padding: 0 2rem;
    text-align: center;
    color: #fff;
    background: #E50020;
    font-size: 1.8rem;
    font-family: "NotoSansCJKjp-Bold";
    letter-spacing: .1em;
}

.c-section__national-result-ttl::after,
.c-section__national-result-ttl::before {
    position: absolute;
    top: 0;
    display: block;
    height: 60px;
    content: '';
    border: 30px solid #E50020;
}

.c-section__national-result-ttl::before {
    left: -40px;
    border-left-width: 15px;
    border-left-color: transparent;
}

.c-section__national-result-ttl::after {
    right: -40px;
    border-right-width: 15px;
    border-right-color: transparent;
}

.c-section__national-result-ttl span {
    position: relative;
    display: block;
}

/* ---------------------------------------------
*   c-section-result
--------------------------------------------- */
.c-section-result {
    margin-bottom: 100px;
}

@media screen and (max-width: 750px) {
    .c-section-result {
        margin-bottom: 10.66667vw;
    }
}

.c-section-result__lead {
    margin-bottom: 58px;
}

@media screen and (max-width: 750px) {
    .c-section-result__lead {
        margin-bottom: 6.93333vw;
        padding-right: 2.66667vw;
        padding-left: 2.66667vw;
    }
}

.c-section-result__lead-txt {
    text-align: justify;
    letter-spacing: 0.05em;
    font-size: 1.125rem;
    line-height: 1.8;
}

@media screen and (max-width: 750px) {
    .c-section-result__lead-txt {
        letter-spacing: 0.03em;
        font-size: 3.2vw;
        line-height: 1.5;
    }
}

.c-section-result__head {
    margin-bottom: 50px;
}

@media screen and (max-width: 750px) {
    .c-section-result__head {
        margin-bottom: 8vw;
    }
}

.c-section-result__head--section-sub {
    margin-bottom: 56px;
}

@media screen and (max-width: 750px) {
    .c-section-result__head--section-sub {
        margin-bottom: 4vw;
    }
}

/* ---------------------------------------------
*  c-about-movie
--------------------------------------------- */
.c-about-movie {
    width: 640px;
    margin: 0 auto;
}

.c-about-movie__inner {
    padding-top: 56.25%;
    position: relative;
}

@media screen and (max-width: 750px) {
    .c-about-movie {
        width: 100%;
    }
}

.c-about-movie__inner iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

/* ---------------------------------------------
*   c-sponsor
--------------------------------------------- */
.c-sponsor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;

    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.c-sponsor__list-item {
    margin-right: 45px;
    margin-bottom: 35px;
    max-height: 71px;
}

@media screen and (max-width: 750px) {
    .c-sponsor__list-item {
        margin-right: 6vw;
        margin-bottom: 4.93333vw;
        max-height: 9.33333vw;
    }
}

@media screen and (max-width: 750px) {
    .c-sponsor__list-item:nth-of-type(3) {
        margin-right: 0;
    }
}

.c-sponsor__list-item:nth-of-type(4) {
    margin-right: 0;
}

@media screen and (max-width: 750px) {
    .c-sponsor__list-item:nth-of-type(4) {
        margin-right: 6vw;
    }
}

@media screen and (max-width: 750px) {
    .c-sponsor__list-item:nth-of-type(5) {
        margin-right: 0;
    }
}

.c-sponsor__list-item:last-of-type {
    margin-right: 0;
}

.c-sponsor__img--01 {
    width: 155px;
}

@media screen and (max-width: 750px) {
    .c-sponsor__img--01 {
        width: 20.66667vw;
    }
}

.c-sponsor__img--02 {
    width: 202px;
}

@media screen and (max-width: 750px) {
    .c-sponsor__img--02 {
        width: 26.93333vw;
    }
}

.c-sponsor__img--03 {
    width: 158px;
}

@media screen and (max-width: 750px) {
    .c-sponsor__img--03 {
        padding-bottom: 1.33333vw;
        width: 21.06667vw;
    }
}

.c-sponsor__img--04 {
    width: 122px;
}

@media screen and (max-width: 750px) {
    .c-sponsor__img--04 {
        width: 16.26667vw;
    }
}

.c-sponsor__img--05 {
    width: 358px;
}

@media screen and (max-width: 750px) {
    .c-sponsor__img--05 {
        padding-bottom: 0.8vw;
        width: 47.73333vw;
    }
}

.c-sponsor__img--06 {
    width: 282px;
}

@media screen and (max-width: 750px) {
    .c-sponsor__img--06 {
        padding-bottom: 1.33333vw;
        width: 37.6vw;
    }
}

.c-sponsor__img--07 {
    width: 72px;
}

@media screen and (max-width: 750px) {
    .c-sponsor__img--07 {
        width: 9.6vw;
    }
}

/* ---------------------------------------------
*   c-table
--------------------------------------------- */
.c-table {
    letter-spacing: .08em;
    font-size: 1.125rem;
}

@media screen and (max-width: 750px) {
    .c-table {
        font-size: 3.2vw;
    }
}

.c-table__head {
    margin-bottom: 36px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .c-table__head {
        margin-bottom: 6vw;
    }
}

@media screen and (max-width: 750px) {
    .c-table__head-txt {
        line-height: 1.9;
    }
}

.c-table__datalist {
    padding-top: 34px;
    padding-right: 20px;
    padding-bottom: 22px;
    padding-left: 30px;
    border-bottom: 1px solid #dddddd;
}

@media screen and (max-width: 750px) {
    .c-table__datalist {
        padding-top: 2.13333vw;
        padding-right: 2.53333vw;
        padding-bottom: 1.33333vw;
        padding-left: 2.13333vw;
        border-bottom: 0.66667vw solid #dddddd;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
    }
}

.c-table__datalist:first-of-type {
    padding-top: 22px;
    border-top: 1px solid #dddddd;
}

@media screen and (max-width: 750px) {
    .c-table__datalist:first-of-type {
        padding-top: 2.13333vw;
        border-top: 0.66667vw solid #dddddd;
    }
}

.c-table__datattl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -ms-flex-align: center;
    min-width: 165px;

    -webkit-box-pack: start;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .c-table__datattl {
        display: inline-block;
        margin-bottom: 0.8vw;
        min-width: 0;
        font-size: 3.73333vw;
    }
}

.c-table__datadetail-txt {
    margin-bottom: 12px;
    color: #444444;
    line-height: 1.7;
}

@media screen and (max-width: 750px) {
    .c-table__datadetail-txt {
        margin-bottom: 1.6vw;
    }
}

.c-table__datadetail-txt--mb-none {
    margin-bottom: 0;
}

.c-table__datadetail-txt--fz-small {
    vertical-align: 2px;
    font-size: 0.75rem;
    line-height: 1.6;
}

@media screen and (max-width: 750px) {
    .c-table__datadetail-txt--fz-small {
        vertical-align: 0.26667vw;
        font-size: 2.4vw;
    }
}

.c-table__list-item {
    padding-left: 1.3em;
    text-indent: -1.3em;
}

/* ---------------------------------------------
*   c-ttl
--------------------------------------------- */
.c-ttl {
    color: #009cdb;
    letter-spacing: .1em;
    font-family: "NotoSansCJKjp-Bold";
    font-size: 2rem;
}

@media screen and (max-width: 750px) {
    .c-ttl {
        letter-spacing: .05em;
        font-size: 4.8vw;
    }
}

.c-ttl__container {
    margin-bottom: 37px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .c-ttl__container {
        margin-bottom: 2.66667vw;
    }
}

/* ---------------------------------------------
*   c-txt
--------------------------------------------- */
.c-txt {
    font-size: 0.875rem;
}

@media screen and (max-width: 750px) {
    .c-txt {
        font-size: 0.9375rem;
    }
}

.c-txt__strong {
    text-decoration: underline;
    font-weight: bold;
}

.c-txt__italic {
    font-style: italic;
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ---------------------------------------------
*   c-section-result acc
--------------------------------------------- */
.c-section-result .js-acc-target {
    display: none;
}

.c-section-result .js-acc-trigger.is-open {
    display: none;
}

/* ---------------------------------------------
*   c-block-photo acc
--------------------------------------------- */
.c-block-photo .js-acc-target {
    display: none;
}

.c-block-photo .js-acc-trigger.is-open {
    display: none;
}

/* ---------------------------------------------
*   mfp close btn
--------------------------------------------- */
.js-close-btn {
    position: absolute;
    top: 0;
    right: -40px;
    width: 83px;
    height: 80px;
    cursor: pointer;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.js-close-btn:hover {
    opacity: 0.8;
}

@media screen and (max-width: 750px) {
    .js-close-btn {
        top: 0;
        right: -2.4vw;
        width: 11.06667vw;
        height: 10.66667vw;
    }
}

/* ---------------------------------------------
*   mfp overwriting
--------------------------------------------- */
.mfp-bg {
    z-index: 100000;
}

.mfp-wrap {
    z-index: 100001;
}

@media screen and (max-width: 750px) {
    .mfp-image-holder .mfp-content {
        max-width: 89.33333vw;
    }
}

@media screen and (max-width: 750px) {
    img.mfp-img {
        padding: 5.33333vw 0 5.33333vw;
    }
}

/* ==========================================================
*
*   utility
*
========================================================== */
/* ---------------------------------------------
*   background-color
--------------------------------------------- */
.bg-white {
    background-color: #fff !important;
}

/* ---------------------------------------------
*   font-wight
--------------------------------------------- */
.fw-normal {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.color-red {
    color: red;
}

/* ---------------------------------------------
*   text-align
--------------------------------------------- */
.txt-al-center {
    text-align: center !important;
}

.txt-al-right {
    text-align: right !important;
}

.txt-al-left {
    text-align: left !important;
}

/* ---------------------------------------------
*   letter-spacing
--------------------------------------------- */
.lts-middle {
    letter-spacing: .05em;
}

.lts-wide {
    letter-spacing: .1em;
}

/* ---------------------------------------------
*   anchor
--------------------------------------------- */
#anchor-requirements {
    margin-top: -100px;
    padding-top: 100px;
    height: 0;
}

@media screen and (max-width: 750px) {
    #anchor-requirements {
        margin-top: -4vw;
        padding-top: 4vw;
    }
}

/* ---------------------------------------------
*   <hr> tag as anchor target
--------------------------------------------- */
hr[id^="anchor-"] {
    display: block;
    margin: -90px 0 0 0;
    padding: 90px 0 0 0;
    width: auto;
    height: 0;
    border: 0;
    background: 0;
    pointer-events: none;
}

@media screen and (max-width: 750px) {
    hr[id^="anchor-"] {
        margin: -4vw 0 0 0;
        padding: 4vw 0 0 0;
    }
}

@media screen and (min-width: 751px) {
    .pc-hide {
        display: none !important;
    }
}

@media screen and (max-width: 750px) {
    .sp-hide {
        display: none !important;
    }
}

/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
    margin-top: 0 !important;
}

.mgt-pc--5 {
    margin-top: 5px !important;
}

.mgt-pc--10 {
    margin-top: 10px !important;
}

.mgt-pc--15 {
    margin-top: 15px !important;
}

.mgt-pc--20 {
    margin-top: 20px !important;
}

.mgt-pc--25 {
    margin-top: 25px !important;
}

.mgt-pc--30 {
    margin-top: 30px !important;
}

.mgt-pc--35 {
    margin-top: 35px !important;
}

.mgt-pc--40 {
    margin-top: 40px !important;
}

.mgt-pc--45 {
    margin-top: 45px !important;
}

.mgt-pc--50 {
    margin-top: 50px !important;
}

.mgt-pc--55 {
    margin-top: 55px !important;
}

.mgt-pc--60 {
    margin-top: 60px !important;
}

.mgt-pc--65 {
    margin-top: 65px !important;
}

.mgt-pc--70 {
    margin-top: 70px !important;
}

.mgt-pc--75 {
    margin-top: 75px !important;
}

.mgt-pc--80 {
    margin-top: 80px !important;
}

.mgt-pc--85 {
    margin-top: 85px !important;
}

.mgt-pc--90 {
    margin-top: 90px !important;
}

.mgt-pc--95 {
    margin-top: 95px !important;
}

.mgt-pc--100 {
    margin-top: 100px !important;
}

.mgt-pc--105 {
    margin-top: 105px !important;
}

.mgt-pc--110 {
    margin-top: 110px !important;
}

.mgt-pc--115 {
    margin-top: 115px !important;
}

.mgt-pc--120 {
    margin-top: 120px !important;
}

.mgt-pc--125 {
    margin-top: 125px !important;
}

.mgt-pc--130 {
    margin-top: 130px !important;
}

.mgt-pc--135 {
    margin-top: 135px !important;
}

.mgt-pc--140 {
    margin-top: 140px !important;
}

.mgt-pc--145 {
    margin-top: 145px !important;
}

.mgt-pc--150 {
    margin-top: 150px !important;
}

.mgt-pc--155 {
    margin-top: 155px !important;
}

.mgt-pc--160 {
    margin-top: 160px !important;
}

.mgt-pc--165 {
    margin-top: 165px !important;
}

.mgt-pc--170 {
    margin-top: 170px !important;
}

.mgt-pc--175 {
    margin-top: 175px !important;
}

.mgt-pc--180 {
    margin-top: 180px !important;
}

.mgt-pc--185 {
    margin-top: 185px !important;
}

.mgt-pc--190 {
    margin-top: 190px !important;
}

.mgt-pc--195 {
    margin-top: 195px !important;
}

.mgt-pc--200 {
    margin-top: 200px !important;
}

.mgt-pc--205 {
    margin-top: 205px !important;
}

.mgt-pc--210 {
    margin-top: 210px !important;
}

.mgt-pc--215 {
    margin-top: 215px !important;
}

.mgt-pc--220 {
    margin-top: 220px !important;
}

.mgt-pc--225 {
    margin-top: 225px !important;
}

.mgt-pc--230 {
    margin-top: 230px !important;
}

.mgt-pc--235 {
    margin-top: 235px !important;
}

.mgt-pc--240 {
    margin-top: 240px !important;
}

.mgt-pc--245 {
    margin-top: 245px !important;
}

.mgt-pc--250 {
    margin-top: 250px !important;
}

@media screen and (max-width: 750px) {
    .mgt-sp--0 {
        margin-top: 0 !important;
    }

    .mgt-sp--5 {
        margin-top: 0.66667vw !important;
    }

    .mgt-sp--10 {
        margin-top: 1.33333vw !important;
    }

    .mgt-sp--15 {
        margin-top: 2vw !important;
    }

    .mgt-sp--20 {
        margin-top: 2.66667vw !important;
    }

    .mgt-sp--25 {
        margin-top: 3.33333vw !important;
    }

    .mgt-sp--30 {
        margin-top: 4vw !important;
    }

    .mgt-sp--35 {
        margin-top: 4.66667vw !important;
    }

    .mgt-sp--40 {
        margin-top: 5.33333vw !important;
    }

    .mgt-sp--45 {
        margin-top: 6vw !important;
    }

    .mgt-sp--50 {
        margin-top: 6.66667vw !important;
    }

    .mgt-sp--55 {
        margin-top: 7.33333vw !important;
    }

    .mgt-sp--60 {
        margin-top: 8vw !important;
    }

    .mgt-sp--65 {
        margin-top: 8.66667vw !important;
    }

    .mgt-sp--70 {
        margin-top: 9.33333vw !important;
    }

    .mgt-sp--75 {
        margin-top: 10vw !important;
    }

    .mgt-sp--80 {
        margin-top: 10.66667vw !important;
    }

    .mgt-sp--85 {
        margin-top: 11.33333vw !important;
    }

    .mgt-sp--90 {
        margin-top: 12vw !important;
    }

    .mgt-sp--95 {
        margin-top: 12.66667vw !important;
    }

    .mgt-sp--100 {
        margin-top: 13.33333vw !important;
    }

    .mgt-sp--105 {
        margin-top: 14vw !important;
    }

    .mgt-sp--110 {
        margin-top: 14.66667vw !important;
    }

    .mgt-sp--115 {
        margin-top: 15.33333vw !important;
    }

    .mgt-sp--120 {
        margin-top: 16vw !important;
    }

    .mgt-sp--125 {
        margin-top: 16.66667vw !important;
    }

    .mgt-sp--130 {
        margin-top: 17.33333vw !important;
    }

    .mgt-sp--135 {
        margin-top: 18vw !important;
    }

    .mgt-sp--140 {
        margin-top: 18.66667vw !important;
    }

    .mgt-sp--145 {
        margin-top: 19.33333vw !important;
    }

    .mgt-sp--150 {
        margin-top: 20vw !important;
    }

    .mgt-sp--155 {
        margin-top: 20.66667vw !important;
    }

    .mgt-sp--160 {
        margin-top: 21.33333vw !important;
    }

    .mgt-sp--165 {
        margin-top: 22vw !important;
    }

    .mgt-sp--170 {
        margin-top: 22.66667vw !important;
    }

    .mgt-sp--175 {
        margin-top: 23.33333vw !important;
    }

    .mgt-sp--180 {
        margin-top: 24vw !important;
    }

    .mgt-sp--185 {
        margin-top: 24.66667vw !important;
    }

    .mgt-sp--190 {
        margin-top: 25.33333vw !important;
    }

    .mgt-sp--195 {
        margin-top: 26vw !important;
    }

    .mgt-sp--200 {
        margin-top: 26.66667vw !important;
    }

    .mgt-sp--205 {
        margin-top: 27.33333vw !important;
    }

    .mgt-sp--210 {
        margin-top: 28vw !important;
    }

    .mgt-sp--215 {
        margin-top: 28.66667vw !important;
    }

    .mgt-sp--220 {
        margin-top: 29.33333vw !important;
    }

    .mgt-sp--225 {
        margin-top: 30vw !important;
    }

    .mgt-sp--230 {
        margin-top: 30.66667vw !important;
    }

    .mgt-sp--235 {
        margin-top: 31.33333vw !important;
    }

    .mgt-sp--240 {
        margin-top: 32vw !important;
    }

    .mgt-sp--245 {
        margin-top: 32.66667vw !important;
    }

    .mgt-sp--250 {
        margin-top: 33.33333vw !important;
    }
}

/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb-pc--0 {
    margin-bottom: 0 !important;
}

.mgb-pc--5 {
    margin-bottom: 5px !important;
}

.mgb-pc--10 {
    margin-bottom: 10px !important;
}

.mgb-pc--15 {
    margin-bottom: 15px !important;
}

.mgb-pc--20 {
    margin-bottom: 20px !important;
}

.mgb-pc--25 {
    margin-bottom: 25px !important;
}

.mgb-pc--30 {
    margin-bottom: 30px !important;
}

.mgb-pc--35 {
    margin-bottom: 35px !important;
}

.mgb-pc--40 {
    margin-bottom: 40px !important;
}

.mgb-pc--45 {
    margin-bottom: 45px !important;
}

.mgb-pc--50 {
    margin-bottom: 50px !important;
}

.mgb-pc--55 {
    margin-bottom: 55px !important;
}

.mgb-pc--60 {
    margin-bottom: 60px !important;
}

.mgb-pc--65 {
    margin-bottom: 65px !important;
}

.mgb-pc--70 {
    margin-bottom: 70px !important;
}

.mgb-pc--75 {
    margin-bottom: 75px !important;
}

.mgb-pc--80 {
    margin-bottom: 80px !important;
}

.mgb-pc--85 {
    margin-bottom: 85px !important;
}

.mgb-pc--90 {
    margin-bottom: 90px !important;
}

.mgb-pc--95 {
    margin-bottom: 95px !important;
}

.mgb-pc--100 {
    margin-bottom: 100px !important;
}

.mgb-pc--105 {
    margin-bottom: 105px !important;
}

.mgb-pc--110 {
    margin-bottom: 110px !important;
}

.mgb-pc--115 {
    margin-bottom: 115px !important;
}

.mgb-pc--120 {
    margin-bottom: 120px !important;
}

.mgb-pc--125 {
    margin-bottom: 125px !important;
}

.mgb-pc--130 {
    margin-bottom: 130px !important;
}

.mgb-pc--135 {
    margin-bottom: 135px !important;
}

.mgb-pc--140 {
    margin-bottom: 140px !important;
}

.mgb-pc--145 {
    margin-bottom: 145px !important;
}

.mgb-pc--150 {
    margin-bottom: 150px !important;
}

.mgb-pc--155 {
    margin-bottom: 155px !important;
}

.mgb-pc--160 {
    margin-bottom: 160px !important;
}

.mgb-pc--165 {
    margin-bottom: 165px !important;
}

.mgb-pc--170 {
    margin-bottom: 170px !important;
}

.mgb-pc--175 {
    margin-bottom: 175px !important;
}

.mgb-pc--180 {
    margin-bottom: 180px !important;
}

.mgb-pc--185 {
    margin-bottom: 185px !important;
}

.mgb-pc--190 {
    margin-bottom: 190px !important;
}

.mgb-pc--195 {
    margin-bottom: 195px !important;
}

.mgb-pc--200 {
    margin-bottom: 200px !important;
}

.mgb-pc--205 {
    margin-bottom: 205px !important;
}

.mgb-pc--210 {
    margin-bottom: 210px !important;
}

.mgb-pc--215 {
    margin-bottom: 215px !important;
}

.mgb-pc--220 {
    margin-bottom: 220px !important;
}

.mgb-pc--225 {
    margin-bottom: 225px !important;
}

.mgb-pc--230 {
    margin-bottom: 230px !important;
}

.mgb-pc--235 {
    margin-bottom: 235px !important;
}

.mgb-pc--240 {
    margin-bottom: 240px !important;
}

.mgb-pc--245 {
    margin-bottom: 245px !important;
}

.mgb-pc--250 {
    margin-bottom: 250px !important;
}

@media screen and (max-width: 750px) {
    .mgb-sp--0 {
        margin-bottom: 0 !important;
    }

    .mgb-sp--5 {
        margin-bottom: 0.66667vw !important;
    }

    .mgb-sp--10 {
        margin-bottom: 1.33333vw !important;
    }

    .mgb-sp--15 {
        margin-bottom: 2vw !important;
    }

    .mgb-sp--20 {
        margin-bottom: 2.66667vw !important;
    }

    .mgb-sp--25 {
        margin-bottom: 3.33333vw !important;
    }

    .mgb-sp--30 {
        margin-bottom: 4vw !important;
    }

    .mgb-sp--35 {
        margin-bottom: 4.66667vw !important;
    }

    .mgb-sp--40 {
        margin-bottom: 5.33333vw !important;
    }

    .mgb-sp--45 {
        margin-bottom: 6vw !important;
    }

    .mgb-sp--50 {
        margin-bottom: 6.66667vw !important;
    }

    .mgb-sp--55 {
        margin-bottom: 7.33333vw !important;
    }

    .mgb-sp--60 {
        margin-bottom: 8vw !important;
    }

    .mgb-sp--65 {
        margin-bottom: 8.66667vw !important;
    }

    .mgb-sp--70 {
        margin-bottom: 9.33333vw !important;
    }

    .mgb-sp--75 {
        margin-bottom: 10vw !important;
    }

    .mgb-sp--80 {
        margin-bottom: 10.66667vw !important;
    }

    .mgb-sp--85 {
        margin-bottom: 11.33333vw !important;
    }

    .mgb-sp--90 {
        margin-bottom: 12vw !important;
    }

    .mgb-sp--95 {
        margin-bottom: 12.66667vw !important;
    }

    .mgb-sp--100 {
        margin-bottom: 13.33333vw !important;
    }

    .mgb-sp--105 {
        margin-bottom: 14vw !important;
    }

    .mgb-sp--110 {
        margin-bottom: 14.66667vw !important;
    }

    .mgb-sp--115 {
        margin-bottom: 15.33333vw !important;
    }

    .mgb-sp--120 {
        margin-bottom: 16vw !important;
    }

    .mgb-sp--125 {
        margin-bottom: 16.66667vw !important;
    }

    .mgb-sp--130 {
        margin-bottom: 17.33333vw !important;
    }

    .mgb-sp--135 {
        margin-bottom: 18vw !important;
    }

    .mgb-sp--140 {
        margin-bottom: 18.66667vw !important;
    }

    .mgb-sp--145 {
        margin-bottom: 19.33333vw !important;
    }

    .mgb-sp--150 {
        margin-bottom: 20vw !important;
    }

    .mgb-sp--155 {
        margin-bottom: 20.66667vw !important;
    }

    .mgb-sp--160 {
        margin-bottom: 21.33333vw !important;
    }

    .mgb-sp--165 {
        margin-bottom: 22vw !important;
    }

    .mgb-sp--170 {
        margin-bottom: 22.66667vw !important;
    }

    .mgb-sp--175 {
        margin-bottom: 23.33333vw !important;
    }

    .mgb-sp--180 {
        margin-bottom: 24vw !important;
    }

    .mgb-sp--185 {
        margin-bottom: 24.66667vw !important;
    }

    .mgb-sp--190 {
        margin-bottom: 25.33333vw !important;
    }

    .mgb-sp--195 {
        margin-bottom: 26vw !important;
    }

    .mgb-sp--200 {
        margin-bottom: 26.66667vw !important;
    }

    .mgb-sp--205 {
        margin-bottom: 27.33333vw !important;
    }

    .mgb-sp--210 {
        margin-bottom: 28vw !important;
    }

    .mgb-sp--215 {
        margin-bottom: 28.66667vw !important;
    }

    .mgb-sp--220 {
        margin-bottom: 29.33333vw !important;
    }

    .mgb-sp--225 {
        margin-bottom: 30vw !important;
    }

    .mgb-sp--230 {
        margin-bottom: 30.66667vw !important;
    }

    .mgb-sp--235 {
        margin-bottom: 31.33333vw !important;
    }

    .mgb-sp--240 {
        margin-bottom: 32vw !important;
    }

    .mgb-sp--245 {
        margin-bottom: 32.66667vw !important;
    }

    .mgb-sp--250 {
        margin-bottom: 33.33333vw !important;
    }
}


/* 20240403　追記 */

.main-view {
    width: 70%;
    margin: 0 auto;
}


.c-overview--yellow:first-child {
    margin-bottom: 100px;
}

.c-overview--yellow:not(:last-child) {
    margin-bottom: 30px;
}

.annotation {
    text-align: center;
    margin: 5px;
}

.c-btn.c-btn--about  {
    margin: 20px 0px 0px;
}

.c-btn__container {
    margin: 0px;
}

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

    .main-view {
        width: 100%;
    }

    .c-nav__list {
        display: grid;
        grid-template-columns: 30% 30%;
        gap: 9px 2%;
    }

    .c-nav__list-item {
        margin: 0;
    }

    .c-nav__list-item {
        justify-self: center;
        align-self: center;
    }

    .c-btn__link--yellow {
        font-size: 16px;
    }

    .annotation {
        font-size: 15px
}

}

/* 20240412　追記 */

.c-section--overview {
    padding-bottom: 0px;
}

.c-btn__container .c-btn__item:last-of-type {
    margin-top: 50px;
}

/* 20240418　追記 */

.c-section--overview {
    padding-top: 50px;
}

.pointer-event-none {
    pointer-events: none;
    background-color: #c9c9c9;
}

/* 20240412　追記 */

@media screen and (max-width: 750px) {
.c-section--overview {
    padding-top: 0px;
}
}


/* ------20240626追加-------- */
.c-btn__container .c-btn__item:last-of-type {
    margin-top: 0;
}
.p-entry-txt {
	padding-top: 1em;
	padding-bottom: 2em;
	font-weight: 700;
    font-size: clamp(13px,3vw,20px);
}
.c-nav__list{
	grid-template-columns: auto;
}

/* 20241107 追記・改修 */
.event-announcement {
    text-align: center;
    font-size: 2em;
    font-weight: 700;
    color: #ff0000;
    width: fit-content;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .event-announcement {
        font-size: 1.5em;
    }
}

.c-card__body-top2:nth-of-type(1) {
    margin-top: 0px;
}

.c-card__item .accordion dt {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    width: 100%;
    text-align: center;
    background: #f57600;
    color: #FFF;
    margin: 15px auto 10px;
    padding: 5px 50px;
    position: relative;
}

.c-card__item .accordion dt::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    top: 50%;
    right: 18px;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
    transform: translateY(-50%) rotate(135deg);
    margin-top: -5px;
    transition: all 0.5s ease;
}

.c-card__item .accordion dt.open::after {
    transform: translateY(-50%) rotate(-45deg);
    margin-top: 2px;
}

.c-card__item .accordion dd {
    display: none;
}

#workshop .c-overview__txt.date {
    color: #f57600;
}

#workshop .c-overview__body div {
    display: block;
    width: fit-content;
    margin: 0 auto 20px;
}

#workshop .c-overview__body div .c-overview__txt:nth-of-type(1) {
    padding-left: 5em;
    text-indent: -5em;
}

#workshop .c-overview__body div .c-overview__txt:nth-of-type(2) {
    padding-left: 3em;
    text-indent: -3em;
}

#workshop .c-overview__body div .c-overview__txt:nth-of-type(3) {
    padding-left: 4em;
    text-indent: -4em;
}

#workshop .c-overview__body div .c-overview__txt:nth-of-type(1),
#workshop .c-overview__body div .c-overview__txt:nth-of-type(2),
#workshop .c-overview__body div .c-overview__txt:nth-of-type(3),
#workshop .c-overview__body div .c-overview__txt:nth-of-type(4) {
    text-align: start;
}

#workshop .small {
    font-size: 1rem;
    font-weight: 500;
}
@media screen and (max-width: 750px) {
    #workshop .small {
        font-size: 0.7em;
    }
}

/* 20241223 追記・改修 */
#nakanihon .c-area__photo {
    display: grid;
    grid-template-columns: 31% 34% 34%;
    grid-template-rows: auto auto;
    justify-items: center;
    align-items: center;
}

#nakanihon .c-area__photo li {
    width: 100%;
    margin-bottom: 0%;
}

#nakanihon .c-area__photo li:nth-of-type(1) {
    grid-column: 1 /2;
    grid-row: 1 / 3;
}

#nakanihon .c-area__photo li:nth-of-type(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

#nakanihon .c-area__photo li:nth-of-type(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

#nakanihon .c-area__photo li:nth-of-type(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

#nakanihon .c-area__photo li:nth-of-type(5) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

#higashinihon .c-area__photo {
    justify-content: left;
    gap: 1%;
}

.c-btn__link--nav-yellow {
    font-size: 1.25rem;
}