@charset "UTF-8";
/* CSS Document */

body {
    font-family: Crossten, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    overflow: auto;
    height: 100%;
    background-color: #fff;
}

html {
    font-size: 62.5%;
    /* -> 10px; */
}

h1, h2, h3, h4, h5, h6 {
    display: none;
}

img {
    width: 100%;
    height: auto;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

p {
    color: #393232;
    margin: 0;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.8;
}

p, li, table {
    letter-spacing: 0.05rem;
}

a, a:hover {
    text-decoration: none;
    transition: .3s;
}

*, *::after, *::before {
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .display-none.min-992 {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .display-none.max-991 {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .display-none.min-768 {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .display-none.max-767 {
        display: none !important;
    }
}

.flex-box {
    display: flex;
}

.effect-fade {
    opacity: 0;
}

.fade-01 {
    transform: translate(0, 45px);
    transition: 1s;
}

.fade-02 {
    transform: translate(0, 45px);
    transition: 1.5s;
}

.fade-03 {
    transform: translate(0, 45px);
    transition: 2s;
}

.fade-04 {
    transform: translate(0, 45px);
    transition: 2.5s;
}

.fade-05 {
    transform: translate(0, 45px);
    transition: 3s;
}

.fade-06 {
    transform: translate(0, 45px);
    transition: 3.5s;
}

.fade-07 {
    transform: translate(0, 45px);
    transition: 4s;
}

.effect-fade.effect-scroll {
    opacity: 1;
    transform: translate(0, 0);
}

/*------------------ヘッダー------------------*/
header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    height: 65px !important;
    left: 0;
    top: 0;
    z-index: 10;
    transition: .5s;
    font-family: "FOT-筑紫A丸ゴシック Std B";
}

.header-wrap {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 65px !important;
}

.header-wrap .default header {
    background: linear-gradient(rgb(0 0 0 / 0.8), rgb(0 0 0 / 0));
}

.header-wrap .black header {
    background: linear-gradient(rgb(255 255 255 / 0.8), rgb(255 255 255 / 0));
}

.header-wrap .white header {
    background: linear-gradient(rgb(0 0 0 / 0.8), rgb(0 0 0 / 0));
}

header .container-fluid {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.main-logo {
    position: fixed;
    top: 26px;
    left: 30px;
    width: 288px;
    height: 19px !important;
    z-index: 1;
}

.main-logo a {
    display: block;
}

.main-logo a img {
    width: auto;
    height: 20px;
}

.main-logo .default svg g {
    fill: #fff;
}

.main-logo .white svg g {
    fill: #fff;
}

.main-logo .black svg g {
    fill: #333;
}

header nav {
    position: fixed;
    /*width: 784px;*/
    height: 65px !important;
    right: 30px;
    top: 0;
    /*top: 15px;*/
    z-index: 1;
    display: flex;
    align-items: center;
}

header nav li {
    float: left;
    padding: 0 30px;
    font-weight: bold;
    font-size: 12px;
    transition: .3s;
}

@media (max-width: 1199px) {
    header nav li {
        padding: 0 15px;
    }
}

header nav li a {
    color: #FFF;
    position: relative;
}

header nav .black li a {
    color: #333;
    position: relative;
}

header nav li a:hover {
    color: #FFF;
    opacity: 0.7;
}

header nav .black li a:hover {
    color: #333;
    opacity: 0.7;
}

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

#header:hover {
    background-color: #24b7d2;
}

#header:hover nav li a {
    color: #fff;
}

#header:hover nav li.header-contact a {
    border: solid 2px #fff;
}

#header:hover .main-logo .default svg g {
    fill: #333;
}

#header:hover nav li a:hover {
    /*color: #44C5FC*/
    ;
}

#header:hover nav li.header-contact a:hover {
    color: #24b7d2;
    background-color: #ffffff;
    border: solid 2px #ffffff;
}

/*---------------------*/
.header-contact {
    padding: 0;
    margin-left: 15px;
}

.header-contact a {
    border: solid 2px #fff;
    padding: 5px 15px;
    border-radius: 50px;
    display: block;
}

.header-contact a:hover {
    background-color: #fff;
    color: #333;
    opacity: 1;
}

header nav .black li.header-contact a {
    border: solid 2px #333;
}

header nav .black li.header-contact a:hover {
    background-color: #333;
    color: #fff;
    opacity: 1;
}

/*-------管理画面用_マージン-------*/
@media (min-width: 783px) {
    .margin-top-32 {
        margin-top: 32px;
    }

    .modal-menu-box.margin-top-32 {
        position: absolute;
    }

    .modal-menu-box.margin-top-32 .modal-btn {
        top: 32px;
    }

    .slide-text-wrap.wpadminbar-32 {
        height: calc(100vh - 32px);
    }

    .hero-news .hero-news-bar .left-tag.wpadminbar-32 {
        bottom: 32px;
    }

    .swiper-container.wpadminbar-32 {
        height: calc(100vh - 32px);
    }
}

@media (max-width: 782px) {
    .margin-top-46 {
        margin-top: 46px;
    }

    .modal-menu-box.margin-top-46 {
        margin-top: 0;
    }

    #header.margin-top-46 {
        position: absolute;
    }

    #wpadminbar {
        position: fixed !important;
        top: 0;
        left: 0;
    }
}

/*-------管理画面用_マージン-------*/
/*------------------ヘッダー------------------*/
.sns-side {
    position: fixed;
    top: calc(85% - 96px);
    left: 30px;
    z-index: 2;
    width: 20px;
    height: 192px !important;
}

@media (max-width: 767px) {
    .sns-side {
        position: fixed;
        top: calc(50% - 96px);
        left: 5px;
        z-index: 2;
        width: 20px;
        height: 192px !important;
    }
}

.sns-side .sns-col:first-of-type {
    margin-bottom: 30px;
}

.sns-side .sns-col a svg .st0 {
    transition: .3s;
}

.sns-side .sns-col a:hover svg .st0 {
    opacity: 0.7;
}

.sns-side .black .sns-col svg .st0 {
    fill: #333;
}

.sns-side .black .sns-col a:hover svg .st0 {
    opacity: 0.7;
}

/*------------------ヒーローイメージ_トップページ------------------*/
.hero-wrap {
    position: relative;
    width: 100%;
    top: 0;
    padding-top: 0;
    margin-top: 0;
    z-index: 1;
}

@media (max-width: 991px) {
    .hero-wrap {
        margin-top: 0;
    }
}

#owl-example .item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    /* height: 100vh; */
    min-height: 100vh;
    display: table;
    text-align: center;
}

#owl-example .item img {
    width: 45%;
    max-width: 570px;
}

@media (min-width: 992px) {
    #owl-example .item {
        height: 100vh;
        min-height: 100vh;
    }
}

@media (max-width: 991px) {
    #owl-example .item {
        height: 100vh;
        min-height: 100vh;
    }
}

@media (max-width: 767px) {
    #owl-example .item {
        height: 100vh;
        min-height: 100vh;
    }
}

#owl-example .item-box {
    display: table-cell;
    vertical-align: middle;
    padding: 0 100px;
    /*background-color: rgba(0, 0, 0, 0.2);*/
}

@media (max-width: 767px) {
    #owl-example .item-box {
        display: table-cell;
        position: relative;
        padding: 0;
    }
}

#owl-example .item-box p {
    font-size: 16px;
    color: #fff;
    text-align: left;
    margin-top: 15px;
}

@media (max-width: 991px) {
    #owl-example .item-box p {
        font-size: 14px;
        color: #fff;
        text-align: center;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    #owl-example .item-box p {
        font-size: 12px;
        color: #fff;
        text-align: center;
        margin-top: 15px;
    }
}

#owl-example .item-box img {
    margin: 0 auto;
    /*height: 250px;*/
    width: auto;
    opacity: 1;
    /*mix-blend-mode: difference;*/
}

@media (max-width: 991px) {
    #owl-example .item-box img {
        margin: 10px auto;
        height: 200px;
        width: auto;
    }
}

@media (max-width: 767px) {
    #owl-example .item-box img {
        /*margin: 10px auto 10px 15px;*/
        /* margin-top: 150px; */
        height: auto;
        width: 85%;
        /*position: absolute;
    top: 100px;
    left: calc(50% - 155px);
    right: calc(50% - 155px);*/
    }
}

@media (max-width: 374px) {
    #owl-example .item-box img {
        height: auto;
        width: 85%;
    }
}

/*.top-image-01 {
    background-image: url("../images/slide/01.jpg");
}
.top-image-02 {
    background-image: url("../images/slide/02.jpg");
}
.top-image-03 {
    background-image: url("../images/slide/03.jpg");
}*/
.top-image-01 {
    background-image: url("../images/archive/award/print_zekkei/01.jpg");
}

.top-image-02 {
    background-image: url("../images/archive/award/print_scene/01.jpg");
}

.top-image-03 {
    background-image: url("../images/archive/award/sns_zekkei/01.jpg");
}

.top-image-04 {
    background-image: url("../images/archive/award/sns_scene/01.jpg");
}

/*------------------ヒーローイメージ_トップページ------------------*/
.section-padding {
    padding: 100px 0;
}

@media (max-width: 767px) {
    .section-padding {
        padding: 80px 15px;
    }
}

@media (max-width: 374px) {
    .section-padding {
        padding: 40px 15px;
    }
}

.section-padding .row {
    /*justify-content: center;*/
}

/*-----------テーマ-----------*/
section.theme {
    background-color: #fff;
}

section.theme p {
    font-size: 14px;
    font-size: 1.4rem;
}

img.theme {
    width: auto;
    height: 80px;
    margin-bottom: 15px;
    transition: .3s;
}

@media (max-width: 991px) {
    img.theme {
        width: auto;
        height: 75px;
    }
}

@media (max-width: 767px) {
    img.theme {
        width: 100%;
        height: 30px;
    }
}

section.theme p.description {
    font-size: 36px;
    font-size: 3.6rem;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: "FOT-筑紫A丸ゴシック Std B";
}

section.theme .period {
    font-size: 24px;
    font-size: 2.4rem;
    margin-top: 0;
    margin-bottom: 30px;
    border: 1px solid #707070;
    display: inline-block;
    padding: 10px 15px;
    line-height: 1;
    font-family: "FOT-筑紫A丸ゴシック Std B";
}

@media (max-width: 991px) {
    section.theme p.description {
        font-size: 28px;
        font-size: 2.8rem;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    section.theme .period {
        font-size: 20px;
        font-size: 2.0rem;
        margin-top: 0;
        margin-bottom: 30px;
        border: 1px solid #707070;
        display: inline-block;
        padding: 10px 15px;
        line-height: 1;
        font-family: "FOT-筑紫A丸ゴシック Std B";
    }
}

@media (max-width: 767px) {
    section.theme p.description {
        font-size: 20px;
        font-size: 2.0rem;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    section.theme .period {
        margin-top: 0;
        margin-bottom: 15px;
        border: 1px solid #707070;
        display: block;
        padding: 10px 10px;
        line-height: 1;
        font-family: "FOT-筑紫A丸ゴシック Std B";
    }

    section.theme .period p {
        font-size: 14px;
        font-size: 1.4rem;
    }

    section.theme .period p.date {
        /*text-align: left;
    margin: 0 auto;
    display: inline-block;*/
    }
}

@media (max-width: 374px) {
    section.theme p.description {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

section.theme p.text {
    line-height: 2;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    section.theme p.text {
        font-size: 14px;
        font-size: 1.4rem;
        text-align: left;
        margin-bottom: 30px;
    }
}

section.theme .button-box {
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    section.theme .button-box {
        display: block;
    }
}

section.theme .button-box a {
    font-size: 15px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48%;
    padding: 30px;
}

section.theme .button-box a span {
    font-size: 12px;
    font-size: 1.2rem;
    margin-left: 6px;
}

@media (max-width: 991px) {
    section.theme .button-box a {
        font-size: 16px;
        font-size: 1.6rem;
        display: block;
        width: 48%;
        padding: 20px;
    }
}

@media (max-width: 767px) {
    section.theme .button-box a {
        font-size: 14px;
        font-size: 1.4rem;
        display: block;
        width: 100%;
        padding: 20px;
    }

    section.theme .button-box a:first-of-type {
        margin-bottom: 15px;
    }
}

section.theme .button-box a.left {
    background-color: #2d3c46;
    color: #fff;
}

@media (max-width: 767px) {
    section.theme .button-box a.left {
        color: #fff;
        background-color: #2d3c46;
    }
}

section.theme .button-box a.left:hover {
    color: #fff;
    background-color: #5785a4;
}

section.theme .button-box a.right {
    color: #61BC56;
    border: solid 1px #61BC56;
}

@media (max-width: 767px) {
    section.theme .button-box a.right {
        color: #fff;
        background-color: #61BC56;
    }
}

section.theme .button-box a.right:hover {
    background-color: #61BC56;
    color: #fff;
}

section.theme .visual {
    height: 450px;
    background-position: center bottom !important;
    margin-top: 50px;
}

@media (max-width: 991px) {
    section.theme .visual {
        height: 350px;
    }
}

@media (max-width: 767px) {
    section.theme .visual {
        height: 250px;
    }
}

/*-----------テーマ-----------*/
/*-----------応募部門-----------*/
section.category.photocon {
    background-image: url("../images/category/02.jpg");
    background-size: cover;
    background-position: 75% center;
    position: relative;
    z-index: 1;
}

section.category.photocon:after {
    content: '';
    /*background: #03af47;
background: -webkit-linear-gradient(to right, #0575E6, #03af47);
background: linear-gradient(to right, #0575E6, #03af47);*/
    background: linear-gradient(45deg, rgba(5, 117, 230, 0.8), rgba(15, 191, 183, 0.8), rgba(3, 175, 71, 0.8));
    background-size: 600% 600%;
    animation: AnimationName 10s ease infinite;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

@keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

section.category .container {
    position: relative;
    z-index: 2;
}

section.category .title {
    font-size: 16px;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    section.category .title {
        font-size: 15px;
        font-size: 1.5rem;
        color: #fff;
        margin-bottom: 20px;
    }
}

section.category .category-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

@media (max-width: 991px) {
    section.category .category-box {
        display: block;
    }
}

section.category .category-col {
    width: 40%;
}

@media (max-width: 767px) {
    section.category .category-col {
        width: 100%;
    }
}

section.category .category-col .sub-title {
    font-size: 26px;
    font-size: 2.6rem;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

@media (max-width: 1199px) {
    section.category .category-col .sub-title {
        font-size: 22px;
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    section.category .category-col .sub-title {
        font-size: 18px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    section.category .category-col .sub-title {
        font-size: 16px;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
}

section.category .category-col .sub-title.top {
    font-family: "FOT-筑紫A丸ゴシック Std B";
}

section.category .category-col .description {
    font-size: 14px;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0;
    height: 100px;
    text-align: left;
}

@media (max-width: 1199px) {
    section.category .category-col .description {
        height: 120px;
    }
}

@media (max-width: 991px) {
    section.category .category-col .description {
        height: 140px;
    }
}

@media (max-width: 767px) {
    section.category .category-col .description {
        height: auto;
        margin-bottom: 20px;
        font-size: 13px;
        font-size: 1.3rem;
    }
}

@media (max-width: 991px) {
    section.category .category-line {
        display: none;
    }
}

section.category .category-line img {
    width: 22px;
    height: 100%;
}

section.category .category-col .category-content {
    border: 1px solid #fff;
    padding: 20px 20px;
}

@media (max-width: 991px) {
    section.category .category-col .category-content {
        padding: 20px 20px;
    }
}

section.category .category-col .category-content .title {
    border: solid 1px #fff;
    padding: 5px 30px;
    border-radius: 50px;
    background-color: transparent;
    color: #fff;
    display: inline-block;
    margin-bottom: 0;
}

section.category .category-col .category-content .title.left {
    color: #fff;
}

section.category .category-col .category-content .title.right {
    color: #fff;
}

section.category .category-col .category-content .sub-title {
    font-size: 14px;
    font-size: 1.4rem;
    color: #fff;
    margin-top: 30px;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 991px) {
    section.category .category-col .category-content .sub-title {
        font-size: 14px;
        font-size: 1.4rem;
        margin-top: 15px;
    }
}

section.category .category-col .category-content .sub-description {
    font-size: 14px;
    font-size: 1.4rem;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: justify;
    word-break: break-all;
    text-justify: inter-ideograph;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

section.category .category-col .category-content .sub-description.print {
    margin-top: 30px;
}

@media (max-width: 991px) {
    section.category .category-col .category-content .sub-description.print {
        margin-top: 15px;
    }
}

/*-----------/応募部門-----------*/
/*-----------賞金-----------*/
section.prize {
    background: #fff;
}

section.prize .title {
    font-size: 16px;
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 30px;
}

section.prize .category-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

@media (max-width: 767px) {
    section.prize .category-box {
        display: block;
    }
}

section.prize .category-col {
    width: 40%;
}

@media (max-width: 767px) {
    section.prize .category-col {
        width: 100%;
    }
}

@media (max-width: 1199px) {
    section.prize .category-col {
        height: 635px;
    }
}

@media (max-width: 991px) {
    section.prize .category-col {
        height: 700px;
    }
}

@media (max-width: 767px) {
    section.prize .category-col {
        height: auto;
    }
}

@media (max-width: 767px) {
    section.prize .category-col:first-of-type {
        margin-bottom: 30px;
    }

    /*section.prize .category-col:last-of-type table.sns-event tr:last-child {
    display: none;
}*/
    section.prize .category-col:last-of-type table.sns-event tr:nth-child(3) {
        border-bottom: solid 1px #333;
    }
}

section.prize .category-col .sub-title {
    font-size: 26px;
    font-size: 2.6rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

section.prize .category-col .description {
    font-size: 14px;
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 30px;
    text-align: left;
}

@media (max-width: 1199px) {
    section.prize .category-col .description {
        height: 100px;
    }
}

@media (max-width: 991px) {
    section.prize .category-col .description {
        height: 150px;
        margin-bottom: 20px;
        text-align: justify;
    }
}

@media (max-width: 767px) {
    section.prize .category-col .description {
        height: auto;
        margin-bottom: 20px;
        font-size: 13px;
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    section.prize .category-line {
        display: none;
    }
}

section.prize .category-line img {
    width: 22px;
    height: 100%;
}

section.prize .category-col .category-content {
    border: 1px solid #333;
    padding: 20px 20px;
}

@media (max-width: 1199px) {
    section.prize .category-col .category-content {
        height: 100%;
    }
}

section.prize .category-col .category-content .title {
    border: solid 1px #333;
    padding: 5px 30px;
    border-radius: 50px;
    background-color: #333;
    color: #25B7D0;
    display: inline-block;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    section.prize .category-col .category-content .title {
        font-size: 15px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

section.prize .category-col .category-content .title.left {
    color: #fff;
}

section.prize .category-col .category-content .title.right {
    color: #fff;
}

section.prize .category-col .category-content .sub-title {
    font-size: 14px;
    font-size: 1.4rem;
    color: #333;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
}

section.prize table {
    width: 100%;
}

section.prize table tr {
    border-top: solid 1px #333;
}

section.prize table.sns-event tr:last-child {
    /*border-bottom: solid 1px #333;*/
}

section.prize table tr:last-child {
    /*border-bottom: solid 1px #333;*/
}

/*section.prize table.sns-event tr:last-child {
	border-bottom: none;
}*/
section.prize table td {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 10px 0;
}

section.prize table td.prize-title {
    text-align: left;
}

section.prize table td.prize-title:before {
    content: '\025cf';
    margin-right: 3px;
}

/*section.prize table.sns-event tr:last-child td.prize-title:before {
	content: '';
}*/
section.prize table td.prize-money {
    text-align: left;
}

section.prize table td.item {
    text-align: right;
}

section.prize .visual {
    height: 450px;
    background-position: center center !important;
    margin-top: 50px;
}

@media (max-width: 991px) {
    section.prize .visual {
        height: 350px;
    }
}

@media (max-width: 767px) {
    section.prize .visual {
        height: 250px;
    }
}

/*-----------/賞金-----------*/
/*-----------審査員-----------*/
section.judge {
    background: #FFF;
}

section.section-padding.judge .row {
    justify-content: left;
}

section.judge .title {
    font-size: 16px;
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 50px;
}

section.judge .category-line {
    margin-bottom: 15px;
    width: auto;
}

section.judge .judge-col {
    /* display: flex; */
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 50px;
}

@media (max-width: 374px) {
    section.judge .judge-col {
        display: block;
    }
}

section.judge .judge-col .img-box {
    margin-right: 30px;
}

@media (max-width: 374px) {
    section.judge .judge-col .img-box {
        margin: 0 auto;
        margin-bottom: 15px;
    }
}

section.judge .judge-col img {
    width: 170px;
    height: auto;
}

@media (max-width: 767px) {
    section.judge .judge-col img {
        width: 120px;
        height: auto;
    }
}

@media (max-width: 374px) {
    section.judge .judge-col img {
        width: 100%;
        height: auto;
    }
}

section.judge .judge-col .text-box {
    width: 100%;
}

section.judge .judge-col .text-box .job {
    font-size: 11px;
    font-size: 1.1rem;
    margin-bottom: 5px;
    line-height: 1.6;
}

section.judge .judge-col .text-box .name-jp {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 0;
    line-height: 1.6;
}

section.judge .judge-col .text-box .name-en {
    font-size: 10px;
    font-size: 1.0rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (max-width: 374px) {
    section.judge .judge-col .text-box .name-jp, section.judge .judge-col .text-box .name-en {
        display: inline-block
    }

    section.judge .judge-col .text-box .name-jp {
        margin-right: 10px;
    }
}

section.judge .judge-col .text-box .description {
    font-size: 12px;
    font-size: 1.2rem;
}

/*-----------/審査員-----------*/
/*-----------応募方法-----------*/
section.method {
    background: #2F2F2F;
}

@media (max-width: 767px) {
    section.method.section-padding {
        padding-bottom: 30px
    }
}

section.method .big-col {
    margin-bottom: 50px;
}

section.method .title {
    font-size: 14px;
    font-size: 1.4rem;
    color: #333;
    border: solid 1px #FFF;
    padding: 3px 30px;
    border-radius: 50px;
    background-color: #FFF;
    margin-bottom: 20px;
}

section.method .description {
    font-size: 12px;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
    text-align: left;
}

section.method .category-col {
    width: 100%;
}

section.method .category-col .sub-title {
    font-size: 26px;
    font-size: 2.6rem;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

section.method table {
    width: 100%;
    color: #FFF;
    margin-bottom: 30px;
}

section.method table caption {
    padding-top: 0;
    padding-bottom: 10px;
    color: #fff;
    caption-side: top;
    text-align: center;
    font-size: 14px;
    font-size: 1.4rem;
}

@media (max-width: 767px) {
    section.method table tbody {
        display: block;
    }

    section.method table tr {
        display: block;
        margin-bottom: 10px;
    }
}

section.method table tr:first-child {
    border-top: solid 1px #fff;
}

section.method table td {
    font-size: 12px;
    font-size: 1.2rem;
    padding-top: 10px;
}

section.method table td.koumoku {
    text-align: left;
    vertical-align: text-top;
}

@media (max-width: 767px) {
    section.method table td.koumoku {
        display: block;
    }
}

section.method table td.table-des {
    text-align: left;
}

@media (max-width: 767px) {
    section.method table td.table-des {
        padding-top: 5px;
    }
}

section.method ul {
    text-align: left;
}

section.method li {
    font-size: 12px;
    font-size: 1.2rem;
    padding-bottom: 10px;
    color: #fff;
    padding-left: 1em;
    text-indent: -1em;
}

section.method .button-box {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

section.method .button-box a {
    font-size: 18px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48%;
    padding: 30px;
}

section.method .button-box a span {
    font-size: 12px;
    font-size: 1.2rem;
    margin-left: 6px;
}

@media (max-width: 991px) {
    section.method .button-box a {
        font-size: 16px;
        font-size: 1.6rem;
        display: block;
        width: 48%;
        padding: 20px;
    }
}

@media (max-width: 767px) {
    section.method .button-box {
        display: block;
    }

    section.method .button-box a {
        font-size: 14px;
        font-size: 1.4rem;
        display: block;
        width: 100%;
        padding: 20px;
    }

    section.method .button-box a:first-of-type {
        margin-bottom: 15px;
    }
}

section.method .button-box a.left {
    color: #fff;
    border: solid 1px #44C5FC;
    background-color: #44C5FC;
}

section.method .button-box a.left:hover {
    color: #44C5FC;
    border: solid 1px #44C5FC;
    background-color: #fff;
}

section.method .button-box a.right {
    color: #fff;
    background-color: #61BC56;
}

section.method .button-box a.right:hover {
    color: #ccc;
    background-color: #4d9445;
}

/*-----------/応募方法-----------*/
footer {
    background: #2F2F2F;
    padding: 30px;
}

footer .container-fluid {
    border-top: solid 1px #25B7D2;
    border-bottom: solid 1px #25B7D2;
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (max-width: 991px) {
    footer .container-fluid {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

footer .category-line {
    width: auto;
}

@media (max-width: 991px) {
    footer .category-line {
        width: auto;
        height: 30px;
    }
}

footer p {
    color: #fff;
}

@media (max-width: 991px) {
    footer p {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 1.8;
    }
}

footer .title {
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 15px;
    margin-bottom: 30px;
}

.sns-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sns-flex img {
    width: 26px;
    height: 26px;
}

.sns-flex .sns-col {
    padding: 10px;
}

.sns-flex a {
    transition: .3s;
}

.sns-flex a:hover {
    opacity: 0.7;
}

.phone-title {
    margin-bottom: 20px;
}

.slide-ul li {
    width: 450px;
    height: 300px;
    text-align: center;
}

/*------------------ヒーローイメージ_受賞作品一覧ページ------------------*/
.hero-wrap {
    position: relative;
    width: 100%;
    top: 0;
    padding-top: 0;
    margin-top: 0;
    z-index: 1;
}

@media (max-width: 991px) {
    .hero-wrap {
        margin-top: 0;
    }
}

.archive #owl-example .item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    /* height: 100vh; */
    min-height: 100vh;
    display: table;
    text-align: center;
}

.archive #owl-example .item img {
    width: 45%;
    max-width: 450px;
}

@media (min-width: 992px) {
    .archive #owl-example .item {
        height: 50vh;
        min-height: 50vh;
    }
}

@media (max-width: 991px) {
    .archive #owl-example .item {
        height: 100vh;
        min-height: 100vh;
    }
}

@media (max-width: 767px) {
    .archive #owl-example .item {
        height: 100vh;
        min-height: 100vh;
    }
}

.archive #owl-example .item-box {
    display: table-cell;
    vertical-align: middle;
    padding: 0 100px;
    /*background-color: rgba(0, 0, 0, 0.2);*/
}

@media (max-width: 767px) {
    .archive #owl-example .item-box {
        display: table-cell;
        position: relative;
        padding: 0;
    }
}

.archive #owl-example .item-box p {
    font-size: 16px;
    color: #fff;
    text-align: left;
    margin-top: 15px;
}

@media (max-width: 991px) {
    .archive #owl-example .item-box p {
        font-size: 14px;
        color: #fff;
        text-align: center;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .archive #owl-example .item-box p {
        font-size: 12px;
        color: #fff;
        text-align: center;
        margin-top: 15px;
    }
}

.archive #owl-example .item-box img {
    margin: 0 auto;
    /*height: 250px;*/
    width: auto;
    opacity: 1;
    mix-blend-mode: normal;
}

@media (max-width: 991px) {
    .archive #owl-example .item-box img {
        margin: 10px auto;
        height: 200px;
        width: auto;
    }
}

@media (max-width: 767px) {
    .archive #owl-example .item-box img {
        /*margin: 10px auto 10px 15px;*/
        /* margin-top: 150px; */
        height: auto;
        width: 90%;
        /*position: absolute;
    top: 100px;
    left: calc(50% - 155px);
    right: calc(50% - 155px);*/
    }
}

@media (max-width: 374px) {
    .archive #owl-example .item-box img {
        height: auto;
        width: 85%;
    }
}

.archive .top-image-01 {
    background-image: url("../images/archive/01.jpg");
}

.archive .top-image-02 {
    background-image: url("../images/archive/02.jpg");
}

.archive .top-image-03 {
    background-image: url("../images/archive/03.jpg");
}

.archive .top-image-04 {
    background-image: url("../images/archive/04.jpg");
}

/*------------------ヒーローイメージ_受賞作品一覧ページ------------------*/
#vegas {
    width: 100vw;
    height: 300px;
    background: #000;
}

.vegas-content-scrollable {
    position: relative;
    height: 300px;
    overflow: auto;
    display: table;
    width: 100%;
    text-align: center;
}

@media screen and (max-width:767px) {
    #vegas {
        width: 100vw;
        height: 300px;
        background: #000;
        margin-top: 50px;
    }

    .vegas-content-scrollable {
        position: relative;
        height: 300px;
        overflow: auto;
        display: table;
        width: 100%;
        text-align: center;
    }
}

.vegas-content {
    overflow: visible;
    padding: 0px;
    display: table-cell;
    vertical-align: middle;
}

.vegas-content img {
    height: 150px;
    transform: rotateY(180deg);
    /* Y軸を基準点に回転する */
    animation: rotate_anime 10s infinite;
}

@media screen and (max-width:767px) {
    .vegas-content img {
        height: 180px;
        transform: rotateY(180deg);
        /* Y軸を基準点に回転する */
        animation: rotate_anime 10s infinite;
    }
}

@keyframes rotate_anime {
    0% {
        transform: rotateY(0deg);
        /* アニメーションの進みが0%の時の状態 */
    }

    100% {
        transform: rotateY(360deg);
        /* アニメーションの進みが100%の時の状態 */
    }
}

.archive-sec .title-box {
    margin-bottom: 50px;
}

.archive-sec .category-box {
    /*justify-content: center;*/
    margin-bottom: 50px;
}

.archive-sec .category-box .title {
    font-family: "FOT-筑紫A丸ゴシック Std B";
    font-size: 26px;
    font-size: 2.6rem;
    color: #5f5858;
    margin-bottom: 10px;
    line-height: 1;
    text-align: center;
}

@media screen and (max-width:767px) {
    .archive-sec .category-box .title {
        font-family: "FOT-筑紫A丸ゴシック Std B";
        font-size: 20px;
        font-size: 2.0rem;
    }
}

.archive-sec .category-box .click-size {
    font-size: 12px;
    font-size: 1.2rem;
    color: #393232;
    text-align: center;
}

.archive-sec .award-content .medal {
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
}

.archive-sec .award-content .award {
    font-family: "FOT-筑紫A丸ゴシック Std B";
    font-size: 18px;
    font-size: 1.8rem;
    color: #393232;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1;
}

.archive-sec .award-title .award.bronze {
    font-family: "FOT-筑紫A丸ゴシック Std B";
    font-size: 18px;
    font-size: 1.8rem;
    color: #393232;
    text-align: center;
    line-height: 1;
    margin-bottom: 0;
}

.archive-sec .award-content .prize-box {
    margin-bottom: 30px;
}

.archive-sec .award-content .prize-box .award {
    margin-bottom: 0;
}

.archive-sec .award-content .title {
    font-family: "FOT-筑紫A丸ゴシック Std B";
    font-size: 16px;
    font-size: 1.6rem;
    /*color: #393232;*/
    margin-bottom: 10px;
    text-align: center;
    line-height: 1;
}

.archive-sec .award-content .map {
    font-family: "FOT-筑紫A丸ゴシック Std B";
    font-size: 12px;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1;
}

.archive-sec .award-content .name {
    font-family: "FOT-筑紫A丸ゴシック Std B";
    font-size: 14px;
    font-size: 1.4rem;
    color: #393232;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1;
}

.archive-sec .award-content .name span {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: normal;
}

.archive-sec .award-content.bronze .title {
    font-size: 13px;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.archive-sec .award-content.bronze .map {
    font-size: 11px;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.archive-sec .award-content.bronze .name {
    font-size: 13px;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.gallery .slide-caption {
    font-size: 12px;
    margin: 0 auto;
    margin-top: 10px;
    text-align: justify;
    border: 1px solid #bfbfbf;
    padding: 10px;
}

@media screen and (min-width: 992px) {
    .gallery .slide-caption {
        width: 80%;
    }
}

.gallery .slide-caption span, .gallery .slide-caption br.s-c {
    display: none;
}

.gallery .slide-caption .comment-title, .gallery .slide-caption .comment-text {
    font-size: 13px;
}

.gallery .slide-caption .comment-title {
    margin-bottom: 5px;
}

.pswp--supports-fs .comment-title, .pswp--supports-fs .comment-text {
    color: #fff;
    font-size: 13px;
}

.pswp__caption__center {
    text-align: left;
    max-width: 820px;
    padding: 30px 10px;
}

.award-content {
    margin-bottom: 50px;
}

.medal-image {
    margin-bottom: 15px;
}

.medal-image:before {
    content: '';
    /*何も入れない*/
    display: inline-block;
    /*忘れずに！*/
    width: 40px;
    /*画像の幅*/
    height: 50px;
    /*画像の高さ*/
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    background-position: center center;
}

.medal-image.gold:before {
    background-image: url("../images/archive/gold.svg");
}

.medal-image.silver:before {
    background-image: url("../images/archive/silver.svg");
}

.medal-image.bronze:before {
    background-image: url("../images/archive/bronze.svg");
}

.medal-image.selected:before {
    background-image: url("../images/archive/selected.svg");
}

.medal-image.honourable:before {
    background-image: url("../images/archive/honourable.svg");
}

.medal-image.association:before {
    background-image: url("../images/archive/association.svg");
}

.medal-image.anniversary:before {
    background-image: url("../images/archive/20_anniversary.png");
    width: 180px;
    height: 120px;
}

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

.award-title.bronze {
    margin-bottom: 30px;
}

.pswp__caption__center {
    color: #fff !important;
    border: 1px solid #fff;
    padding: 10px;
    margin: 15px auto;
}

.pswp {
    z-index: 9999;
}

.section-padding .row::before {
    content: '';
    display: inline-block;
}

.section-padding .row::after {
    content: '';
    display: inline-block;
}

.archive-sec .category-box .winner .title {
    font-size: 16px;
    color: #393232;
}

.archive-sec .category-box .bronze .winner .title {
    font-size: 14px;
    margin-bottom: 10px;
}

figure img {
    margin-bottom: 15px;
}

figure img:hover {
    cursor: pointer;
}

.bronze figure img, .selected figure img, .honourable figure img, .association figure img {
    margin-bottom: 15px;
}

@media screen and (min-width: 992px) {
    .bronze figure img, .selected figure img, .honourable figure img {
        width: auto;
        height: 200px;
    }

    .bronze.scene figure img, .association figure img {
        width: auto;
        height: 180px;
    }
}

@media screen and (min-width: 1200px) {
    .bronze figure img, .selected figure img, .honourable figure img {
        width: auto;
        height: 250px;
    }

    .bronze.scene figure img, .association figure img {
        width: auto;
        height: 220px;
    }
}

.pswp__caption span.category {
    font-size: 11px;
}

.pswp__caption span.prize {
    display: block;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.iframe-wrap {
    overflow: hidden;
}

.iframe-wrap .container-fluid {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}

.google-pin {
    margin-bottom: -6px;
}

.google-pin iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.top-winners .winner-content img {
    margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .top-winners .winner-content img {
        width: auto;
        height: 450px;
    }
}

.top-winners .medal-image:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    background-position: center center;
}

.top-winners .medal-image.anniversary:before {
    width: 180px;
    height: 120px;
}

.top-winners .award-content .category {
    width: auto;
    height: 20px;
    margin-bottom: 5px;
}

.top-winners .medal-image {
    margin-bottom: 5px;
}

.top-winners .prize-box {
    margin-bottom: 15px;
}

section.theme.top-winners .name {
    font-size: 14px;
    font-size: 1.4rem;
    font-family: "FOT-筑紫A丸ゴシック Std B";
    color: #393232;
}

section.theme.top-winners .name span {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: normal;
}

section.theme.top-winners .title {
    font-family: "FOT-筑紫A丸ゴシック Std B";
}

section.theme.top-winners .top-news-inner .title {
    font-family: Crossten, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

section.theme.top-winners .award {
    font-size: 13px;
    font-size: 1.3rem;
    font-family: "FOT-筑紫A丸ゴシック Std B";
}

section.theme.top-winners .title-box {
    margin-bottom: 100px;
}

section.theme .title-box p {
    font-family: "FOT-筑紫A丸ゴシック Std B";
    line-height: 1.4;
}

.pswp__caption {
    padding: 0 15px;
}

.gallery .slide-caption.no-comment {
    display: none;
}

.gallery .slide-caption span.photo-comment {
    display: inline-block;
}

.photo-comment.no-comment {
    display: none;
}

.pswp__caption span.prize.no-comment {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

section.theme.sns {
    padding: 0;
}

@media screen and (max-width:767px) {
    section.theme.sns.section-padding {
        padding: 0 15px;
    }
}

header nav li {
    float: left;
    padding: 0 10px;
}

.modal-menu-box {
    text-align: center;
}

@media screen and (max-width:767px) {
    .bronze-no-col {
        display: none;
    }
}

/*-------------------------------------*/
#page-top-scroll {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 995;
    width: 50px;
}

#page-top-scroll.active {
    width: auto;
}

#page-top-scroll a {
    height: 50px;
    width: 100%;
    background-color: rgb(36, 183, 210);
    display: block;
    transition: all 0.3s;
    border-radius: 50%;
}

@media (max-width: 767px) {
    #page-top-scroll a {
        height: 50px;
        width: 100%;
        background-color: rgba(36, 183, 210, 0.7);
    }
}

#page-top-scroll.active a {
    height: 50px;
    width: 100%;
    background-color: rgb(36, 183, 210);
}

#page-top-scroll.active::before {
    /*content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    margin: 0 auto;
    text-align: center;
    background-image: -webkit-linear-gradient(left, transparent, #32C0AA 25%, #88e1d4 50%, #32C0AA 75%, transparent);
    background-image: linear-gradient(to right, transparent, #32C0AA 25%, #88e1d4 50%, #32C0AA 75%, transparent);
    background-position: center;
    background-repeat: no-repeat;*/
}

#page-top-scroll a:hover {
    background-color: rgba(36, 183, 210, 0.7);
}

#page-top-scroll a:before {
    /*content: '';
    width: 15px;
    height: 15px;
    border: 0;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    top: 50%;
    left: calc(50% - 7.5px);
    margin-top: -4px;
    transform: rotate(-45deg);*/
    content: '';
    display: inline-block;
    width: 22px;
    height: 17px;
    background-image: url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    background-position: center;
    position: absolute;
    top: 15px;
    left: 14px;
}

/*-------------------------------------*/
section.theme p.yudo {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #e85757;
}

section.method #method-2 .button-box {
    margin-top: 0;
}

section.method #method-2 p.yudo {
    margin-top: 50px;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #e85757;
}

/*--ドロップダウンメニュー-----------------------------------*/
.menu-mega {
    /*position: relative;
    width: 100%;
    height: 50px;
    max-width: 1000px;
    margin: 0 auto;*/
}

.menu-mega>li {
    /*float: left;
    width: 25%;
    height: 50px;
    line-height: 50px;
    background: rgb(29, 33, 19);*/
}

.menu-mega>li a {
    display: block;
    color: #fff;
    transition: .2s;
}

.menu-mega>li a:hover {
    color: #44C5FC;
}

ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

ul.menu__third-level {
    visibility: hidden;
    opacity: 0;
}

ul.menu__fourth-level {
    visibility: hidden;
    opacity: 0;
}

.menu-mega>li:hover {
    /*background: #072A24;*/
    -webkit-transition: all .3s;
    transition: all .3s;
}

.menu__second-level li {
    /*border-top: 1px solid #111;*/
}

.menu__third-level li {
    /*border-top: 1px solid #111;*/
}

.menu__second-level li a:hover {
    background: transparent;
}

.menu__third-level li a:hover {
    background: #2a1f1f;
}

.menu__fourth-level li a:hover {
    background: #1d0f0f;
}

/* 下矢印 */
.menu__single:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 0 15px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: relative;
    top: -3px;
    left: -12px;
}

header.white-bg .menu__single:after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

header:hover .menu__single:after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

/* floatクリア */
.menu-mega:before,
.menu-mega:after {
    content: " ";
    display: table;
}

.menu-mega:after {
    clear: both;
}

.menu-mega {
    *zoom: 1;
}

/*------シングルメニュー------*/
.menu-mega>li.menu__single {
    position: relative;
    height: 65px !important;
    line-height: 65px;
    color: #fff;
    padding: 0 40px;
}

#header:hover .menu-mega>li.menu__single {
    color: #fff;
}

header.white-bg .menu-mega>li.menu__single {
    color: #fff;
}

li.menu__single ul.menu__second-level {
    position: absolute;
    top: 38px;
    width: 100%;
    background: #FFF;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

li.menu__single ul.menu__second-level {
    top: 40px;
    left: -3px;
    display: block;
    padding: 25px 0 20px 10px;
}

li.menu__single ul.menu__second-level {
    top: 65px;
    left: 15px;
    /*visibility: visible;*/
    opacity: 0;
    display: block;
    padding: 5px 0 15px 10px;
    background-color: #24b7d2;
    color: #fff;
    line-height: 1;
}

li.menu__single:hover ul.menu__second-level {
    top: 65px;
    left: 15px;
    visibility: visible;
    opacity: 1;
    display: block;
    padding: 5px 10px 15px 10px;
    background-color: #24b7d2;
    color: #fff;
    line-height: 1;
}

#header:hover li.menu__single:hover ul.menu__second-level li {
    display: flex;
    align-items: center;
    justify-content: center;
    float: none;
}

#header:hover li.menu__single:hover ul.menu__second-level li::before {
    transition: .3s;
}

#header:hover li.menu__single:hover ul.menu__second-level li:hover::before {
    color: #393232;
}

#header:hover li.menu__single:hover ul.menu__second-level a {
    color: #fff;
    transition: .3s;
}

#header:hover li.menu__single:hover ul.menu__second-level a:hover {
    color: #393232;
}

header {
    position: fixed;
    z-index: 9999;
    width: 100%;
    top: 0;
    display: block;
}

#header.white-bg {
    background-color: #24b7d2;
}

.main-logo svg {
    fill: white;
}

#header.white-bg .main-logo svg {
    fill: #fff;
}

#header:hover .main-logo svg {
    fill: #fff;
}

#header.white-bg .menu-mega>li a {
    display: block;
    color: #fff;
}

#header.white-bg .menu-mega>li .menu__second-level a {
    display: block;
    color: #FFF;
}

#header.white-bg .menu-mega>li a:hover {
    color: #393232;
}

.menu-mega>li.menu__single:hover {
    background-color: transparent;
}

header.white-bg .header-contact a {
    border: solid 2px #fff;
    padding: 5px 15px;
    border-radius: 50px;
    display: block;
}

.menu__second-level li {
    margin-top: 15px;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.menu__second-level li:first-child {
    margin-top: 0;
}

header .menu-mega .menu__second-level li::before {
    content: '-';
    margin-right: 5px;
}

header.white-bg .menu-mega .menu__second-level li::before {
    content: '-';
    margin-right: 5px;
}

#header.white-bg .menu-mega>li.menu__single a:hover {
    color: #393232;
    opacity: 1;
}

#header.white-bg .menu-mega>li.menu__single .menu__second-level a:hover {
    opacity: 0.7;
}

#header:hover nav li a:hover {
    color: #393232;
}

#header:hover nav li.menu__single a:hover {
    color: #393232;
    opacity: 1;
}

#vegas {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../images/vegas/05.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

#vegas.vegas-junior {
    background-image: url("../images/vegas/junior.jpg");
}

#vegas img {
    width: auto;
    height: 180px;
    filter: drop-shadow(0 0px 3px rgba(0, 0, 0, .9));
    /*transform: rotateY(180deg);
    animation: rotate_anime 10s infinite;*/
}

@media screen and (max-width: 767px) {
    #vegas img {
        /*width: 65%;*/
    }
}

section.theme.top-winners .map {
    font-size: 13px;
    font-size: 1.3rem;
    font-family: "FOT-筑紫A丸ゴシック Std B";
    color: #393232;
}

.modal-nav ul.second-ul {
    margin-top: 20px;
    margin-bottom: 0;
}

.modal-nav ul.second-ul li {
    line-height: 2;
    margin-bottom: 15px;
}

.modal-nav ul.second-ul li:last-child {
    margin-bottom: 0;
}

.modal-nav ul.second-ul a {
    font-size: 14px;
}

.first-arc {
    display: inline-block;
    font-size: 18px;
    color: #fff;
}

.modal-nav ul.second-ul a::before {
    content: '-';
    margin-right: 5px;
}

.modal-nav li.first {
    line-height: 3;
    margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
    .slide-owl-sp {
        display: none;
    }
}

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

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .main-logo {
        position: fixed;
        top: 23px;
        left: 30px;
        width: 270px;
        height: 19px !important;
        z-index: 1;
    }

    #header .main-logo svg {
        fill: #fff;
        width: 270px;
    }

    #header.white-bg .main-logo svg {
        fill: #fff;
        width: 270px;
    }
}

.top-news-inner {
    text-align: center;
}

.top-news-inner ul {
    margin-top: 30px;
    margin-bottom: 30px;
}

.top-news-inner li {
    padding: 15px 5px;
    letter-spacing: 0.2rem;
}

.top-news-inner li a {
    color: #333;
    transition: .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
}

@media screen and (max-width: 767px) {
    .top-news-inner li a {
        justify-content: center;
    }
}

.top-news-inner li a:hover time, .top-news-inner li a:hover p.title, .top-news-inner li a:hover time:after {
    color: #24b7d2;
}

.top-news-inner li time {
    color: #393232;
    padding-right: 10px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    transition: .3s;
}

@media screen and (max-width: 767px) {
    .top-news-inner li time {
        font-size: 12px;
    }
}

.top-news-inner li time:after {
    content: '|';
    padding-left: 10px;
    color: #333;
    transition: .3s;
}

.top-news-inner li a p.title {
    color: #333;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: .3s;
}

@media screen and (max-width: 767px) {
    .top-news-inner li a p.title {
        font-size: 14px;
    }
}

.top-news-inner a.link {
    background: #2d3c46;
    color: #FFF;
    font-size: 15px;
    transition: .3s;
    padding: 30px;
    display: block;
    /*line-height: 1;*/
    text-align: center;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .top-news-inner a.link {
        font-size: 14px;
        padding: 20px;
    }
}

.top-news-inner a.link:hover {
    background: #5785a4;
    color: #fff;
}

.top-news-inner a.link::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    content: '';
    background: #2fa8aa;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
}

.top-news-inner a.link span {
    position: relative;
    z-index: 2;
}

/*---------*/
.news-container {
    padding-top: 80px;
    padding-bottom: 50px;
    margin-top: 0;
}

@media screen and (max-width: 767px) {
    .news-container {
        padding-top: 30px;
        padding-bottom: 15px;
        margin-top: 0;
    }
}

.archive-title-wrap {
    text-align: center;
    margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
    .archive-title-wrap {
        text-align: center;
        margin-bottom: 30px;
    }
}

.archive-title {
    display: block;
    font-size: 14px;
    margin-bottom: 0;
}

.archive-title span {
    font-size: 36px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: #333;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.news-container main {
    padding-right: 40px;
}

@media screen and (max-width: 991px) {
    .news-container main {
        padding-right: 15px;
        margin-bottom: 50px;
    }
}

.news-single-sec .article-header {
    margin-bottom: 30px;
    letter-spacing: 0.2rem;
}

.news-single-sec .article-header {
    border-bottom: 1px solid #bbb;
    padding-bottom: 20px;
}

.news-single-sec .article-header time {
    color: #333;
    padding-right: 10px;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}

.news-single-sec .article-header .title {
    color: #333;
    margin-top: 15px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 900;
}

.news-single-sec .article-text-wrap {
    text-align: justify;
}

.pager {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.pager a {
    font-size: 14px;
    color: #208858;
    border-bottom: 1px solid #208858;
}

.pager a[rel="prev"]::before {
    font-family: 'Font Awesome 6 Pro';
    content: '\f104';
    font-weight: 900;
    margin-right: 0.625em;
}

.pager a[rel="next"]::after {
    font-family: 'Font Awesome 6 Pro';
    content: '\f105';
    font-weight: 900;
    margin-left: 0.625em;
}

.news-container aside .widget {
    border: 1px solid #bbb;
    padding: 15px;
}

.news-container aside .widget {
    border: 1px solid #bbb;
    padding: 15px;
}

.monthly-archive-title {
    display: block;
    line-height: 1;
    color: #333;
    font-size: 12px;
    background: #ffffff;
    border-bottom: 1px solid #bbb;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.monthly-archive-title span {
    font-size: 16px;
    color: #8d8d8d;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

@media screen and (max-width: 767px) {
    .monthly-archive-title span {
        font-size: 14px;
    }
}

.archive-list {
    padding-left: 0;
}

.archive-list .year {
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.2rem;
}

.archive-list .year {
    cursor: pointer;
}

.archive-list>li:not(.acv_open)::before {
    font-family: 'Font Awesome 6 Pro';
    content: '\f105';
    font-weight: 900;
    margin-right: 0.625em;
}

.archive-list>li:not(.acv_open)>ul {
    display: none;
}

.archive-list>li.acv_open::before {
    font-family: 'Font Awesome 6 Pro';
    content: '\f107';
    font-weight: 900;
    margin-right: 0.5em;
}

.month-archive-list>li {
    padding-left: 17.5px;
    letter-spacing: 0.2rem;
}

.breadcrumb-inner {
    position: relative;
    top: 0;
    display: block;
    width: 100%;
    padding: 15px 0;
    z-index: 21;
    /* background-color: #fff; */
}

.breadcrumb-inner ul {
    white-space: nowrap;
}

.breadcrumb-inner li {
    display: inline;
    margin-right: 7px;
    vertical-align: middle;
    font-size: 12px;
    color: #333;
}

.breadcrumb-inner li a {
    color: #333;
}

.breadcrumb-inner li:after {
    content: '\03e';
    font-size: 12px;
    display: inline-block;
    line-height: 1;
    margin-left: 7px;
}

#left_slide {
    padding: 0;
}

#header.other {
    background-color: #24b7d2;
}

.news-container img.theme {
    width: auto;
    height: 50px;
    margin-bottom: 15px;
    transition: .3s;
}

@media screen and (max-width: 767px) {
    .news-container img.theme {
        width: 100%;
        height: 30px;
    }
}

.news-visual-wrap {
    padding: 0;
    position: relative;
}

.news-visual {
    height: 450px;
    background-position: center center !important;
    /*margin-top: 100px;*/
}

@media screen and (max-width: 767px) {
    .news-visual {
        height: 300px;
        background-position: center center !important;
        /*margin-top: 15px;*/
    }
}

.section-padding.news {
    margin-top: 0;
    padding: 0;
}

@media screen and (max-width: 767px) {
    .section-padding.news {
        margin-top: 0;
        padding: 15px;
    }
}

.news-archive-sec li {
    padding: 25px 10px;
    letter-spacing: 0.2rem;
}

.news-container .news-archive-sec li {
    border-top: 1px solid #bbb;
    /*font-family: "FOT-筑紫A丸ゴシック Std B";*/
}

.news-container .news-archive-sec li a {
    color: #333;
    transition: .3s;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 0;
}

.news-container .news-archive-sec li time {
    color: #24b7d2;
    padding-right: 10px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    transition: .3s;
}

@media screen and (max-width: 767px) {
    .news-container .news-archive-sec li time {
        font-size: 12px;
    }
}

.news-container .news-archive-sec li a:hover time, .news-container .news-archive-sec li a:hover time:after, .news-container .news-archive-sec li a:hover p.title {
    color: #24b7d2;
}

.news-container .news-archive-sec li time:after {
    content: '|';
    padding-left: 10px;
    color: #333;
    transition: .3s;
}

.news-container .news-archive-sec li a p.title {
    color: #333;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: .3s;
    /*font-family: "FOT-筑紫A丸ゴシック Std B";*/
}

@media screen and (max-width: 767px) {
    .news-container .news-archive-sec li a p.title {
        font-size: 14px;
    }
}

.top-news-inner li a p.new-tag {
    white-space: nowrap;
    background-color: #000000;
    line-height: 1;
    padding: 5px 7.5px;
    color: #fff;
    font-size: 11px;
    margin-left: 10px;
    margin-top: 2px;
    animation: flash 2s linear infinite;
    border-radius: 3px;
}

.news-container .news-archive-sec li a p.new-tag {
    white-space: nowrap;
    background-color: #ff6767;
    line-height: 1;
    padding: 5px 7.5px;
    color: #fff;
    font-size: 11px;
    margin-left: 10px;
    margin-top: 2px;
    animation: flash 2s linear infinite;
    border-radius: 3px;
}

.news-single-sec .article-text-wrap a, .month-archive-list a {
    text-decoration: underline;
    color: #24b7d2;
}

.modal-nav-inner {
    position: relative;
}

.madal-footer {
    position: relative;
    left: 0;
    bottom: 0;
    height: 50px;
    background-color: #2F2F2F;
}

.top-news-inner .sp-news li {
    text-align: left;
    border-bottom: 1px solid #aaa;
}

.top-news-inner .sp-news li:first-child {
    border-top: 1px solid #aaa;
}

.top-news-inner .sp-news li a {
    display: block;
}

.top-news-inner .sp-news li .news-new {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.top-news-inner .sp-news li time:after {
    content: '';
    padding-left: 0;
}

.top-news-inner .sp-news li a p.new-tag {
    margin-top: 0;
    margin-left: 0;
    padding: 3px 5px;
}

.news-container .news-archive-sec li.sp-news a {
    display: block;
}

.news-container .news-archive-sec li.sp-news time:after {
    content: '';
    padding-left: 0;
}

.news-container .news-archive-sec li.sp-news .news-new {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.news-container .news-archive-sec li.sp-news a p.new-tag {
    display: inline-block;
    margin-left: 0;
    margin-top: 0;
    padding: 3px 5px;
}

.news-container .news-archive-sec li.sp-news {
    /*border-bottom: 1px solid #aaa;*/
    padding: 15px 5px;
}

.news-container .news-archive-sec li.sp-news:last-of-type {
    border-bottom: 1px solid #aaa;
}

.winner-content figure {
    margin-top: 50px;
}

.winner-content figure:first-child {
    margin-top: 0;
}

.pc-news {
    display: none;
}

.modal-nav li.first-arc {
    line-height: 1;
}

.judge-link {
    font-size: 10px;
    font-size: 1.0rem;
    margin: 5px 0;
    margin-top: 0;
    /*display: inline-block;*/
}

.judge-link.second {
    margin-bottom: 0;
}

.judge-link a {
    color: #56789c;
    display: inline-block;
    padding: 3px 5px;
    /*background-color: #007bff;*/
    border-radius: 3px;
    border: 1px solid #56789c;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    /*font-weight: 600;*/
    transition: .3s;
}

.judge-link a:hover {
    color: #FFF;
    background-color: #007bff;
    border: 1px solid #007bff;
}

.judge-link a span {
    /*margin-left: 2px;*/
}

.judge-link a i {
    margin-left: 5px;
}

.judge-col-sp {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

@media screen and (max-width: 767px) {
    section.theme.top-winners .title-box {
        margin-bottom: 50px;
    }
}

/*------------------パンくずリスト------------------*/
.breadcrumb-wrap {
    margin-top: 0;
    background-color: transparent;
}

.other-page .breadcrumb-wrap {
    margin-top: 60px;
    background-color: transparent;
}

@media screen and (max-width: 991px) {
    .breadcrumb-wrap {
        margin-top: 0;
        background-color: transparent;
    }
}

.breadcrumb-inner {
    position: relative;
    top: 0;
    display: block;
    width: 100%;
    padding: 15px 0;
    z-index: 21;
    /*background-color: #fff;*/
    text-align: center;
}

.breadcrumb-inner ul {
    white-space: nowrap;
    overflow: scroll;
}

.breadcrumb-inner li {
    display: inline;
    margin-right: 7px;
    vertical-align: middle;
    font-size: 12px;
    color: #333;
}

.breadcrumb-inner li:after {
    content: '\03e';
    font-size: 12px;
    display: inline-block;
    line-height: 1;
    margin-left: 7px;
}

.breadcrumb-inner li:last-child:after {
    display: none;
}

.breadcrumb-inner li a {
    color: #24b7d2;
    text-decoration: underline;
    transition: .3s;
}

.breadcrumb-inner li a:hover {
    color: #302e30;
}

.news-visual-wrap .overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/footer/news-banner/bg_dots.png");
    background-size: 15px 15px;
    background-color: rgba(51, 126, 101, .2);
}

.news-visual-title {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 40%;
    height: auto;
    margin: 0 auto;
    line-height: 450px;
}

@media screen and (max-width: 767px) {
    .news-visual-title {
        width: 70%;
        line-height: 300px;
    }
}

/*------------20220621_追加------------*/

@media screen and (max-width: 1199px) {
    section.prize .category-col {
        height: auto;
    }
}

section.method table caption {
    text-align: left;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: bold;
}

section.method table caption::before {
    content: '';
}

.main-logo {
    position: fixed;
    top: 22px;
    left: 30px;
    width: 255px;
    height: 18px !important;
    z-index: 1;
}

section.method #method-2 p.yudo {
    color: #fbf074;
}

section.top-winners {
    background: #FFF;
}

section.theme.top-winners .title-box p, section.theme.top-winners .title, section.theme.top-winners .award {
    color: #393232;
}

section.theme.top-winners .button-box a.left {
    background-color: #44C5FC;
    color: #fff;
}

/*------------20220628_追加------------*/
.article-text-wrap p {
    margin-bottom: 30px;
}

.pager a {
    font-size: 14px;
    color: #24b7d2;
    border-bottom: 1px solid #24b7d2;
}

/*-----------20220629_追加-----------*/
.wp-caption {
    width: 100% !important;
}

.wp-caption-text {
    text-align: center;
}

/*-----------20221208_追加-----------*/
.news-container th, .news-container td {
    border: 1px solid #999;
}

.news-container table {
    border-collapse: collapse;
    width: 100%;
}

.news-container th {
    width: 80px;
    text-align: left;
    padding: 5px 10px;
}

.news-container td {
    text-align: left;
    padding: 5px 10px;
}



.col-border .container {
    border-bottom: 1px solid #ddd;
    padding-bottom: 100px;
}


/*-----------20230320_追加-----------*/
.movie {
    background-color: #24b7d2;
}

.video {
    width: 100%;
    position: relative;
    padding-top: 56.25%;

    margin-top: 30px;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #FFF;
}

.movie .title {
    color: #fff;
}

@media screen and (min-width: 992px) {
    section.movie {
        padding: 100px 0;
    }

    section.top-winners {
        padding-top: 100px;
    }
}

/*-----------20230615_追加-----------*/
.loader .logo {
    overflow: hidden;
}

/*きらっと光る*/

.demo {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 40.5rem;
    height: 60rem;
    margin-left: -20.25rem;
    margin-top: -30rem;
    perspective: 1000px;
    transform-style: preserve-3d;
    -webkit-animation: rotateReverse 2s infinite linear;
    animation: rotateReverse 2s infinite linear;
}

.demo__content {
    position: relative;
    height: 100%;
    transform-style: preserve-3d;
    -webkit-animation: rotate 2s infinite linear;
    animation: rotate 2s infinite linear;
    transform: rotateX(10deg) rotateZ(0);
    background: #fff;
}

.demo__content:before {
    content: "";
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*box-shadow: 0 5rem 10rem rgba(0, 0, 0, 0.4);*/
}

.demo__img {
    overflow: hidden;
    position: absolute;
    left: -10.55rem;
    top: 13.15rem;
    width: 58.6rem;
    height: 22.7rem;
    transform: translateZ(5rem) scale(0.95);
}

.demo__img:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/slide/loading_main_2023_1.svg");
    background-size: cover;
}

.demo__img:after {
    content: "";
    z-index: 2;
    overflow: hidden;
    position: absolute;
    left: -20%;
    top: 0;
    width: 80%;
    padding-bottom: 80%;
    border-radius: 50%;
    background: radial-gradient(ellipse farthest-corner at center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    transform: translateY(-100%);
    -webkit-animation: shiny 2s infinite ease-in-out;
    animation: shiny 2s infinite ease-in-out;
}

@-webkit-keyframes rotate {
    100% {
        transform: rotateX(10deg) rotateZ(360deg);
    }
}

@keyframes rotate {
    100% {
        transform: rotateX(10deg) rotateZ(360deg);
    }
}

@-webkit-keyframes rotateReverse {
    100% {
        transform: rotateZ(-360deg);
    }
}

@keyframes rotateReverse {
    100% {
        transform: rotateZ(-360deg);
    }
}

@-webkit-keyframes shiny {
    25% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(60rem);
    }

    50.1% {
        transform: translate(75%, 60rem);
    }

    75% {
        transform: translate(75%, -100%);
    }
}

@keyframes shiny {
    25% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(60rem);
    }

    50.1% {
        transform: translate(75%, 60rem);
    }

    75% {
        transform: translate(75%, -100%);
    }
}

@media screen and (max-width: 767px) {
    .demo__img {
        overflow: hidden;
        position: absolute;
        left: 3rem;
        top: 18.15rem;
        width: 34.6rem;
        height: 12.7rem;
        transform: translateZ(5rem) scale(0.95);
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    .sns-side {
        left: 10px;
    }
}

@media screen and (min-width: 992px) {
    section.theme .button-box a {
        /*margin-bottom: 15px;*/
    }

    section.theme .button-box:last-of-type a {
        margin-bottom: 0;
    }

    section.category .category-col .category-content .sub-description {
        /*text-align: left;*/
        margin-top: 0;
        padding-left: 1em;
        text-indent: -1em;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #333;
        color: #333;
    }

    section.category .category-col .category-content .sub-description:last-of-type {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    section.category .category-col .category-content .sub-description span {
        font-weight: 600;
    }

    section.category .category-col .category-content .sub-description-wrap {
        margin-top: 15px;
        padding: 0 10px;
    }

    section.category .category-col .category-content {
        background-color: #fff;
    }

    section.category .category-col .category-content .title {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    section.category.photocon .category-col .category-content .title:after {
        content: '';
        background: linear-gradient(45deg, rgba(5, 117, 230, 0.8), rgba(15, 191, 183, 0.8), rgba(3, 175, 71, 0.8));
        background-size: 600% 600%;
        animation: AnimationName 10s ease infinite;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        border-radius: 50px;
    }

    section.category .category-col .category-content .title span {
        font-size: 12px;
        margin-left: 5px;
        margin-right: 5px;
    }

    section.judge .judge-col.tokubetsu img {
        width: 220px;
        height: auto;
    }

    section.judge .judge-col.shusai .img-box {
        float: left;
        margin-right: 30px;
        margin-bottom: 15px;
    }

    section.judge .judge-col.shusai img {
        width: 100px;
        height: auto;
    }

    section.judge .judge-col.shusai .content-box .job {
        font-size: 11px;
        font-size: 1.1rem;
        margin-bottom: 5px;
        line-height: 1.6;
        margin-top: 30px;
    }

    section.judge .judge-col.shusai .content-box .name-jp {
        font-size: 14px;
        font-size: 1.4rem;
        margin-bottom: 0;
        line-height: 1.6;
    }

    section.judge .judge-col.shusai .content-box .name-en {
        font-size: 10px;
        font-size: 1.0rem;
        margin-bottom: 10px;
        line-height: 1.6;
    }

    section.judge .judge-col.shusai .content-box .description {
        font-size: 12px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .shinsain {
        text-align: left;
        color: #ffffff;
        background: #2d3d46;
        font-size: 12px;
        padding: 5px 7.5px;
        line-height: 1;
        margin-bottom: 8px;
    }

    section.judge .judge-col.shusai .content-box {
        position: relative;
    }

    section.judge .judge-col.shusai .content-box .shinsain {
        width: calc(100% - 130px);
        margin-right: 0;
        position: absolute;
        right: 0;
    }

    section.judge .judge-col .text-box .description {
        margin-bottom: 10px;
    }

    section.category .category-col .category-content:first-of-type {
        margin-bottom: 50px;
    }

    section.category.junior {
        background-image: url("../images/category/junior_01.jpg");
        background-size: cover;
        background-position: 75% center;
        position: relative;
        z-index: 1;
    }

    section.category.junior:after {
        content: '';
        background: rgb(146 146 146 / 10%);
        background-size: 600% 600%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
    }

    section.category.junior .category-col .category-content .title {
        background-color: #f5c040;
    }

    section.prize.junior {
        /*background-image: url("../images/category/junior_01.jpg");
    background-size: cover;
    background-position: 75% center;
    position: relative;    
    z-index: 1;*/
    }

    section.prize.junior:after {
        content: '';
        background: rgb(146 146 146 / 20%);
        background-size: 600% 600%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
    }

    section.prize .category-line {
        margin-bottom: 15px;
        width: auto;
    }

    section.category .title.main {
        font-size: 32px;
        font-size: 3.2rem;
        font-family: "FOT-筑紫A丸ゴシック Std B";
        line-height: 1.4;
        margin-bottom: 50px;
    }

    section.category.photocon .title.main {
        /*text-shadow: 1px 1px 5px #618f7e;*/
    }

    section.category.junior .title.main {
        /*text-shadow: 1px 1px 5px #618f7e;*/
    }

    img.theme {
        width: auto;
        height: 50px;
    }

    section.theme.top-winners .title-box {
        margin-bottom: 50px;
    }

    section.judge .title {
        margin-bottom: 30px;
    }

    section.judge .sub-description {
        margin-bottom: 50px;
    }

    .judge-shosai-col {
        border: 1px solid #333;
        padding: 10px;
    }

    .j-title {
        text-align: center;
        border-bottom: 1px solid #333;
        margin-bottom: 15px;
        padding-bottom: 10px;
        font-size: 16px;
        font-size: 1.6rem
    }

    .j-shinsa {
        font-size: 12px;
        display: flex;
        margin-right: 10px;
        align-items: center;
    }

    .judge-shosai-col .j-shinsa:last-of-type {
        margin-right: 0;
    }

    .j-shinsa::before {
        content: '\025cf';
        margin-right: 2px;
        font-size: 10px;
    }

    .j-shinsa-col {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    section#news.theme {
        padding-top: 100px;
    }

    section#theme.theme {
        padding-bottom: 100px;
    }

    section#prize.prize {
        padding-top: 100px;
    }

    section#judge.judge {
        padding-bottom: 100px;
    }

    section.method {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    section.method #method .category-line {
        margin-bottom: 50px;
        width: auto;
        height: 50px;
    }

    section.method .button-box a {
        /*margin-bottom: 15px;*/
    }

    section.method .button-box:last-of-type a {
        margin-bottom: 0;
    }

    section.method #method-2.big-col {
        margin-bottom: 0;
    }

    section.method table td.koumoku {
        width: 110px;
        padding-left: 15px;
    }

    .menu__second-level li {
        justify-content: left;
        white-space: nowrap;
    }

    #header:hover li.menu__single:hover ul.menu__second-level li {
        justify-content: left;
    }

    li.menu__single.work ul.menu__second-level {
        transform: translate(-35px, 0);
        width: 180px;
    }

    li.menu__single.work:hover ul.menu__second-level {
        transform: translate(-35px, 0);
    }

    li.menu__single.method ul.menu__second-level {
        transform: translate(-60px, 0);
        width: 200px;
    }

    li.menu__single.method:hover ul.menu__second-level {
        transform: translate(-60px, 0);
    }

    .menu-mega>li.menu__single {
        padding: 0 10px;
        padding-right: 0;
    }

    .boshu-button-box-wrap {
        display: flex;
        align-items: center;
        justify-content: space-around;
        max-width: 800px;
        margin: 0 auto;
    }

    .boshu-button-box-wrap .button-box {
        width: 48%;
    }

    section.theme .button-box a {
        width: 100%;
    }

    section.method .button-box a {
        width: 100%;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    img.theme {
        width: auto;
        height: 35px;
    }

    section.theme .button-box a {
        font-size: 14px;
        font-size: 1.4rem;
        width: 55%;
    }

    section.theme .button-box a {
        margin-bottom: 15px;
    }

    section.theme .button-box:last-of-type a {
        margin-bottom: 0;
    }

    section.category .category-col {
        width: 100%;
        margin-bottom: 30px;
    }

    section.category .category-col:last-of-type {
        margin-bottom: 0;
    }

    section.category .category-col .category-content {
        background-color: #fff;
    }

    section.category .category-col .category-content .title {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    section.category.photocon .category-col .category-content .title:after {
        content: '';
        background: linear-gradient(45deg, rgba(5, 117, 230, 0.8), rgba(15, 191, 183, 0.8), rgba(3, 175, 71, 0.8));
        background-size: 600% 600%;
        animation: AnimationName 10s ease infinite;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        border-radius: 50px;
    }

    section.category .category-col .category-content .sub-description {
        text-align: left;
        margin-top: 0;
        padding-left: 1em;
        text-indent: -1em;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #333;
        color: #333;
    }

    section.category .category-col .category-content .sub-description span {
        font-weight: 600;
    }

    section.category .category-col .category-content .sub-description-wrap {
        margin-top: 15px;
        padding: 0 10px;
    }

    section.category .category-col .category-content .sub-description:last-of-type {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    section.category.junior {
        background-image: url("../images/category/junior_01.jpg");
        background-size: cover;
        background-position: 75% center;
        position: relative;
        z-index: 1;
    }

    section.category .title.main {
        font-size: 26px;
        font-size: 2.6rem;
        font-family: "FOT-筑紫A丸ゴシック Std B";
        line-height: 1.4;
        margin-bottom: 20px;
    }

    section.category.junior .category-col .category-content .title {
        background-color: #f5c040;
    }

    section.prize .category-box {
        display: block;
    }

    section.prize .category-col {
        width: 100%;
        margin-bottom: 30px;
    }

    section.prize .category-col .category-content .title {
        display: block;
    }

    section.prize .table-wrap {
        padding: 0 10px;
    }

    section.prize table tr:first-of-type {
        border-top: none;
    }

    section.prize table tr:first-of-type td {
        padding-top: 0;
    }

    section.prize .category-col .category-content .title {
        margin-bottom: 15px;
    }

    section.prize table tr:last-of-type td {
        padding-bottom: 0;
    }

    section.prize .category-line {
        margin-bottom: 15px;
        width: auto;
    }

    .shinsain {
        text-align: left;
        color: #ffffff;
        background: #2d3d46;
        font-size: 12px;
        padding: 5px 7.5px;
        line-height: 1;
    }

    section.judge .judge-col .text-box .description {
        margin-bottom: 15px;
    }

    section.judge .judge-col .content-box {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .shinsain {
        margin-bottom: 8px;
    }

    .judge-shosai-col {
        border: 1px solid #333;
        padding: 10px;
    }

    .j-title {
        text-align: center;
        border-bottom: 1px solid #333;
        margin-bottom: 15px;
        padding-bottom: 10px;
        font-size: 16px;
        font-size: 1.6rem;
    }

    .j-shinsa-col {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .j-shinsa {
        font-size: 12px;
        display: flex;
        margin-right: 10px;
        align-items: center;
    }

    .j-shinsa::before {
        content: '\025cf';
        margin-right: 2px;
        font-size: 10px;
    }

    .shinsain-ichiran {
        margin-bottom: 20px;
    }

    .shinsain-ichiran:last-of-type {
        margin-bottom: 0;
    }

    section#category .phone-title {
        width: auto;
    }

    section#category-junior .phone-title {
        width: auto;
    }

    section.method .button-box a {
        width: 55%;
        font-size: 14px;
        font-size: 1.4rem;
    }

    .boshu-button-box-wrap .button-box {
        margin-bottom: 15px;
    }

    .boshu-button-box-wrap .button-box:last-of-type {
        margin-bottom: 0;
    }
}

/*------ムービー------*/
@media screen and (max-width: 767px) {
    .video {
        margin-top: 15px;
    }
}

/*------ムービー------*/
/*------お知らせ------*/
@media screen and (min-width: 992px) {
    section .title-jp {
        font-size: 20px !important;
        font-size: 2.0rem !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    section .title-jp {
        font-size: 16px !important;
        font-size: 1.6rem !important;
    }

    .top-news-inner a.link {
        padding: 20px;
        font-size: 14px;
        font-size: 1.4rem;
    }
}

/*------お知らせ------*/
/*------募集テーマ------*/
@media screen and (min-width: 992px) {
    section#theme.theme p.description span {
        font-size: 18px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    section#theme.theme p.description span {
        font-size: 14px;
    }
}

@media screen and (min-width: 768px) {
    section#theme.theme p.description {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    section#theme.theme p.description span {
        font-size: 12px;
    }
}

/*------募集テーマ------*/
/*------賞金------*/
section.prize .category-col {
    border: 1px solid #333;
}

section.prize .category-col .category-content {
    border: none;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    section.prize .category-col .category-content {
        padding: 10px;
    }
}

@media screen and (min-width: 992px) {
    section.prize .category-col {
        /* width: 32%; */
    }

    section.prize .category-box {
        align-items: stretch;
    }

    section.prize .category-col .category-content .title {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
    }

    section.prize table tr:first-of-type {
        border-top: none;
    }

    section.prize .category-col:first-of-type table tr:last-child td {
        padding-bottom: 0;
    }

    section.prize .category-col .category-content .table-wrap {
        padding: 0 10px;
    }

    section.prize .category-col:nth-of-type(2) table tr:last-child {
        border-bottom: solid 1px #333;
    }

    section.prize .category-col:last-of-type table tr:last-child {
        border-bottom: solid 1px #333;
    }

    section.prize .title {
        font-size: 20px;
        font-size: 2.0rem;
    }
}

@media screen and (max-width: 991px) {
    section.prize .category-box {
        align-items: flex-start;
    }

    section.prize table td.prize-title {
        width: 70%;
    }

    section.prize table td.prize-money {
        width: 20%;
    }

    section.prize table td.item {
        width: 10%;
    }

    section.prize .category-col .category-content .title {
        display: block;
    }

    section.prize .category-col {
        width: 100%;
        margin-bottom: 30px;
    }

    section.prize .category-col:last-of-type {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 767px) {
    section.prize table td {
        font-size: 14px;
        font-size: 1.4rem;
    }

    section.prize table tr {
        display: block;
    }

    section.prize table td.prize-title {
        width: 100%;
        display: block;
        padding-bottom: 0;
    }

    section.prize table td.prize-money {
        width: 20%;
        text-align: right;
        padding-top: 5px;
    }

    section.prize table td.item {
        width: 5%;
        padding-top: 5px;
    }

    section.prize table tr:last-child td.prize-money {
        padding-bottom: 0;
    }

    section.prize table tr:last-child td.item {
        padding-bottom: 0;
    }

    section.prize .category-col:last-of-type table.sns-event tr:nth-child(3) {
        border-bottom: none;
    }
}

/*------賞金------*/
/*------審査員------*/
@media screen and (min-width: 992px) {
    section.judge .judge-col-sp .tablet-dis {
        display: none;
    }

    section.judge .title {
        font-size: 20px;
        font-size: 2.0rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    section.judge .judge-col-sp .pc-phone-dis {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    section.judge .title {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    section.judge .judge-col-sp .tablet-dis {
        display: none;
    }

    section.judge .judge-col .img-box {
        float: left;
        margin-right: 20px;
        margin-bottom: 15px;
    }

    section.judge .judge-col .content-box .description {
        font-size: 12px;
        font-size: 1.2rem;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .shinsain {
        text-align: left;
        color: #ffffff;
        background: #2d3d46;
        font-size: 12px;
        padding: 5px 7.5px;
        line-height: 1;
        margin-bottom: 8px;
    }

    section.judge .judge-col.shusai .content-box {
        position: relative;
    }

    section.judge .judge-col.shusai .content-box .shinsain {
        width: calc(100% - 140px);
        margin-right: 0;
        position: absolute;
        right: 0;
    }

    section.judge .judge-col.shusai .content-box .job {
        font-size: 11px;
        font-size: 1.1rem;
        margin-bottom: 5px;
        line-height: 1.2;
        margin-top: 32px;
    }

    .judge-shosai-col {
        border: 1px solid #333;
        padding: 10px;
    }

    .j-title {
        text-align: center;
        border-bottom: 1px solid #333;
        margin-bottom: 15px;
        padding-bottom: 10px;
        font-size: 16px;
        font-size: 1.6rem;
    }

    .j-shinsa-col {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .j-shinsa {
        font-size: 12px;
        display: flex;
        margin-right: 10px;
        align-items: center;
    }

    .j-shinsa::before {
        content: '\025cf';
        margin-right: 2px;
        font-size: 10px;
    }

    .shinsain-ichiran {
        margin-bottom: 20px;
    }

    .shinsain-ichiran:last-of-type {
        margin-bottom: 0;
    }

    .judge-link {
        margin-bottom: 5px;
    }

    .tokubetsu .judge-col-sp {
        display: block;
    }

    section.judge .judge-col.tokubetsu .img-box {
        width: 100%;
        margin: 0;
        float: none;
        margin-bottom: 15px;
    }

    section.judge .judge-col.tokubetsu img {
        width: 100%;
        height: auto;
    }

    section.judge .judge-col .text-box .description {
        font-size: 12px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    section.judge .judge-col.shusai .content-box .name-en {
        font-size: 10px;
        font-size: 1.0rem;
        line-height: 1;
    }
}

/*------審査員------*/
/*------応募方法------*/
section.method .big-col .title {
    margin-bottom: 10px;
}

section.method .big-col .category-col {
    padding: 10px;
}

section.method .big-col .category-col.separate {
    border: 1px solid #818181;
    border-radius: 15px;
    margin-bottom: 10px;
}

section.method .big-col .category-col.separate:last-of-type {
    margin-bottom: 0;
}

.separate-category-title {
    color: #fff;
    font-weight: 600;
    /* border-bottom: 1px solid #818181; */
    padding-bottom: 5px;
    padding-top: 5px;
    margin-bottom: 10px;
    background-color: #626262;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

section.method table caption {
    padding-left: 10px;
    padding-right: 10px;
}

section.method .big-col .category-col .text {
    font-size: 12px;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
}

section.method .big-col .category-col .text:last-of-type {
    margin-bottom: 10px;
}

section.method table:last-of-type {
    margin-bottom: 10px;
}

section.method table tr:first-child {
    border-top: 1px solid #818181;
}

section.method table:last-of-type caption {
    border-top: 1px solid #818181;
    padding-top: 7.5px;
}

section.method .list-title {
    color: #FFF;
    font-size: 12px;
    font-size: 1.2rem;
    padding-bottom: 10px;
    padding-left: 1em;
    text-indent: -1em;
    text-align: left;
}

section.method ul {
    padding-left: 15px;
}

section.method li {
    line-height: 1.8;
    text-align: justify;
}

section.method table td {
    line-height: 1.8;
    text-align: justify;
}

section.method .description {
    padding-left: 10px;
    padding-right: 10px;
}

section.method #method-2.big-col .category-list {
    border-bottom: 1px solid #818181;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

section.method #method-2.big-col .category-list:first-of-type {
    border-top: 1px solid #818181;
}

section.method #method-2.big-col .category-list:last-of-type {
    border-bottom: none;
}

section.method .button-box a.left {
    color: #fff;
    border: solid 1px #24b7d2;
    background-color: #24b7d2;
}

section.method .button-box a.left:hover {
    color: #24b7d2;
    border: solid 1px #24b7d2;
    background-color: #fff;
}

@media screen and (min-width: 992px) {
    section.method .button-box a.left {
        font-size: 15px;
        font-size: 1.5rem;
    }

    section.method .title {
        font-size: 20px;
        font-size: 2.0rem;
    }
}

@media screen and (max-width: 991px) {
    section.method table tbody {
        display: block;
    }

    section.method table td.koumoku {
        display: block;
    }

    section.method table tr {
        display: block;
        margin-bottom: 10px;
    }

    section.method #method-2 p.yudo {
        margin-top: 0;
    }

    section.method .category-line {
        margin-bottom: 50px;
        width: auto;
        height: 35px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    section.method .title {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 767px) {
    section.category .category-col {
        width: 100%;
        margin-bottom: 30px;
    }

    section.category .category-col:last-of-type {
        margin-bottom: 0;
    }

    section.category .category-col .category-content {
        background-color: #fff;
        padding: 10px;
    }

    section.category .category-col .category-content .title {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    section.category.photocon .category-col .category-content .title:after {
        content: '';
        background: linear-gradient(45deg, rgba(5, 117, 230, 0.8), rgba(15, 191, 183, 0.8), rgba(3, 175, 71, 0.8));
        background-size: 600% 600%;
        animation: AnimationName 10s ease infinite;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        border-radius: 50px;
    }

    section.category .category-col .category-content .sub-description {
        text-align: left;
        margin-top: 0;
        padding-left: 1em;
        text-indent: -1em;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #333;
        color: #333;
    }

    section.category .category-col .category-content .sub-description span {
        font-weight: 600;
    }

    section.category .category-col .category-content .sub-description-wrap {
        margin-top: 15px;
        padding: 0 5px;
    }

    section.category .category-col .category-content .sub-description:last-of-type {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    section.category.junior {
        background-image: url("../images/category/junior_01.jpg");
        background-size: cover;
        background-position: 75% center;
        position: relative;
        z-index: 1;
    }

    section.category .title.main {
        font-size: 20px;
        font-size: 2.0rem;
        font-family: "FOT-筑紫A丸ゴシック Std B";
        line-height: 1.4;
        margin-bottom: 20px;
    }

    section.category.junior .category-col .category-content .title {
        background-color: #f5c040;
    }

    section.method .phone-title {
        width: auto;
        height: 30px;
    }

    section.method ul {
        padding-left: 0;
    }
}

/*------応募方法------*/
/*------結果発表------*/
section.top-winners.wanted {
    background: #24b7d2;
    padding-top: 100px;
    padding-bottom: 100px;
}

.col-border .container {
    border-bottom: none;
    padding-bottom: 0;
}

section.theme.top-winners.wanted .title-box p {
    color: #FFF;
}

section.theme.top-winners.wanted .button-box a.left {
    background-color: #2d3c46;
    border: solid 1px #2d3c46;
    width: 48%;
}

section.theme.top-winners.wanted .button-box a.left:hover {
    color: #24b7d2;
    border: solid 1px #24b7d2;
    background-color: #fff;
}

section.theme.top-winners.wanted .title, section.theme.top-winners.wanted .award, section.theme.top-winners.wanted .name, section.theme.top-winners.wanted .map {
    color: #FFF;
}

@media screen and (max-width: 991px) {
    section.theme.top-winners .title-box {
        margin-bottom: 50px;
    }

    section.top-winners.wanted {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    section.theme.top-winners.wanted .button-box a.left {
        width: 55%;
    }
}

@media screen and (max-width: 767px) {
    section.theme.top-winners.wanted .button-box a.left {
        width: 100%;
    }
}

/*------結果発表------*/
header nav li {
    font-size: 14px;
    font-size: 1.4rem;
}

.modal-nav ul {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    height: 95%;
}

.modal-nav li.first {
    line-height: 2;
    margin-bottom: 20px;
}

.modal-nav li.first-arc {
    line-height: 1;
    border-top: 1px solid #79d4e6;
    border-bottom: 1px solid #79d4e6;
    padding-top: 20px;
    padding-bottom: 20px;
}

.logo img {
    /*filter: blur(100px);*/
    animation: blur-anim2 1s linear forwards;
}

@keyframes blur-anim2 {
    100% {
        filter: blur(0);
    }
}

/*お知らせ*/
@media screen and (min-width: 768px) and (max-width: 991px) {
    .news-container img.theme {
        width: auto;
        height: 35px;
    }
}

.wp-pagenavi {
    margin-top: 15px;
    margin-top: 20px;
    text-align: center;
}

.wp-pagenavi a, .wp-pagenavi span {
    text-decoration: none;
    border: 1px solid #aaa;
    margin: 2px;
    padding: 10px 12px !important;
    font-size: 14px !important;
    font-size: 1.4rem !important;
    color: #24b7d2;
}

.wp-pagenavi span.current {
    background-color: #24b7d2;
    border: 1px solid #24b7d2 !important;
    color: #fff;
}

.wp-pagenavi span.pages {
    color: #333 !important;
}

.month-archive-list {
    margin-bottom: 5px;
}

.month-archive-list>li {
    line-height: 2;
    font-size: 12px;
}

/*お知らせ*/

/*20240123_追加*/
#junior .pswp__caption span.prize {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

#junior .gallery .slide-caption {
    display: none;
    border: none;
}

section.top-winners.junior {
    background-image: url("../images/category/junior_01.jpg");
    background-size: cover;
    background-position: 75% center;
    position: relative;
    z-index: 1;
}

.winner-content figure img {
    border: 1px solid #eaeaea;
}

.archive-winners-box .winners-box {
    margin-bottom: 50px;
    padding: 50px;
    padding-bottom: 0;
}

@media screen and (max-width: 767px) {
    .archive-winners-box .winners-box {
        margin-bottom: 30px;
        padding: 15px;
    }
}

.archive-winners-box .winners-box a {
    display: block;
    transition: .3s;
}

.archive-winners-box .winners-box a:hover {
    opacity: 0.6;
}

.archive-winners-box .button-box {
    margin-top: 30px;
}

section.theme.archive-winners-box .button-box a {
    width: auto;
    padding: 15px 30px;
}

@media screen and (max-width: 767px) {
    section.theme.archive-winners-box .button-box a {
        width: 100%;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 768px) {
    .win-img-box {
        padding: 30px;
        padding-bottom: 0;
    }
}

@media screen and (min-width: 992px) {
    section.theme.archive-winners-box {
        /*margin-top: 85px;*/
        padding-bottom: 0;
    }
}

@media screen and (max-width: 991px) {
    section.theme.archive-winners-box {
        padding-bottom: 0;
    }
}

.archive-sec .category-box .winners-box .title {
    margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
    section.theme.archive-winners-box .button-box {
        display: flex;
    }

    section.theme.archive-winners-box .button-box a {
        width: auto;
    }
}

.archive-breadcrumb {
    margin-top: 65px;
}

.breadcrumb-sec a {
    color: #212529;
    transition: .3s;
}

.breadcrumb-sec a:hover {
    color: #24b7d2;
}

.menu-mega>li.menu__single a {
    display: inline-block;
}

#header.white-bg .menu-mega>li.menu__single a {
    display: inline-block;
}

.modal-nav li.first-arc.archive {
    margin-bottom: 0;
    border-bottom: none;
}

#header.white-bg .menu-mega>li.menu__single:hover a, #header.white-bg .menu-mega>li.menu__single.method:hover {
    color: #393232;
}

#header.white-bg .menu-mega>li.menu__single:hover::after {
    border-right: 1px solid #393232;
    border-bottom: 1px solid #393232;
}

/*------------------ヒーローニュース_トップページ------------------*/
.hero-news {
    /*position: absolute;*/
    position: relative;
    bottom: 0;
    left: 0;
    z-index: 1;
    /*width: 100%;*/
}

.hero-news .container-fluid {
    padding: 0;
}

.hero-news .container-fluid>div.hero-news-bar {
    position: relative;
    width: 100%;
    /*padding: 15px 0 15px 0;*/
    color: #fff;
    background-color: #fff;
}

.hero-news .hero-news-bar .left-tag {
    background-color: #FFF;
    /*padding: 15px 0;*/
    position: absolute;
    left: 80px;
    bottom: 30px;
    padding: 0 30px;
    text-align: center;
    /*width: 100%;*/
    height: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 991px) {
    .hero-news .hero-news-bar .left-tag {
        /*display: block;*/
        padding: 10px 30px;
        height: auto;
        /*background-color: #4E9AA0;*/
        overflow: hidden;
    }
}

.hero-news .hero-news-bar .left-tag p {
    color: #393232;
    font-size: 12px;
    font-weight: normal;
    white-space: nowrap;
}

.hero-news .hero-news-bar .left-tag a.hero-news-flex p, .hero-news .hero-news-bar .left-tag a.hero-news-flex time {
    transition: .3s;
}

.hero-news .hero-news-bar .left-tag a.hero-news-flex:hover p, .hero-news .hero-news-bar .left-tag a.hero-news-flex:hover time {
    color: #24b7d2;
}

@media (min-width: 992px) {
    .hero-news .hero-news-bar .left-tag p {
        /*font-size: calc(0.625rem + ((1vw - 9.92px) * 0.9615));*/
    }
}

@media (min-width: 1200px) {
    .hero-news .hero-news-bar .left-tag p {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .hero-news .hero-news-bar .left-tag p.whats-new {
        display: none;
    }
}

.hero-news .hero-news-bar .left-tag a.w-news-archives {
    color: #fff;
    font-size: 12px;
    transition: .3s;
    border: 1px solid #fff;
    padding: 5px 20px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0.2rem;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .hero-news .hero-news-bar .left-tag a.w-news-archives {
        display: none;
    }
}

.w-news-tag {
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 991px) {
    .hero-news .w-news-tag:first-of-type {
        margin-bottom: 0;
    }
}

.w-news-tag-line {
    margin: 0 30px;
    width: 1px;
    height: 30px;
    background-color: #393232;
}

@media (max-width: 991px) {
    .w-news-tag-line {
        height: 10px;
    }
}

@media (max-width: 767px) {
    .w-news-tag-line {
        display: none;
    }
}

.hero-news .hero-news-bar .center-tag {
    padding: 0 50px;
    background-color: #393232;
    width: 68%;
    position: absolute;
    bottom: 0;
    left: 20%;
    height: 55px;
    display: flex;
    align-items: center;
    overflow-x: scroll;
}

@media (max-width: 767px) {
    .hero-news .hero-news-bar .center-tag {
        padding: 0 15px;
        background-color: #393232;
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        height: 55px;
        display: flex;
        align-items: center;
    }
}

.hero-news .hero-news-bar .center-tag p {
    font-size: 12px;
}

@media (max-width: 767px) {
    .hero-news .hero-news-bar .center-tag p {
        font-size: 10px;
    }
}

@media (min-width: 992px) {
    .hero-news .hero-news-bar .center-tag p {
        /*font-size: calc(0.625rem + ((1vw - 9.92px) * 0.9615));*/
    }
}

@media (min-width: 1200px) {
    .hero-news .hero-news-bar .center-tag p {
        font-size: 12px;
    }
}

.hero-news .hero-news-bar .right-tag {
    background-color: #bb1319;
    position: absolute;
    right: 0;
    width: 12%;
    bottom: 0;
    text-align: center;
    transition: .3s;
}

.hero-news .hero-news-bar .right-tag a {
    color: #393232;
    font-size: 12px;
    /*padding: 18px 0;*/
    width: 100%;
    transition: .3s;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .hero-news .hero-news-bar .right-tag a {
        /*font-size: calc(0.625rem + ((1vw - 9.92px) * 0.9615));*/
    }
}

@media (min-width: 1200px) {
    .hero-news .hero-news-bar .right-tag a {
        font-size: 12px;
    }
}

.hero-news .hero-news-bar .right-tag:hover {
    background-color: #de242c;
}

.hero-news .hero-news-bar p {
    font-size: 12px;
}

.hero-news time, .hero-news p, .hero-news a {
    display: inline-block;
    margin: 0;
    font-size: 12px;
    font-weight: normal;
    white-space: nowrap;
}

.hero-news a.hero-news-flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: .3s;
}

@media (min-width: 992px) {
    .hero-news time, .hero-news p, .hero-news a {
        /*font-size: calc(0.625rem + ((1vw - 9.92px) * 0.9615));*/
    }
}

@media (min-width: 1200px) {
    .hero-news time, .hero-news p, .hero-news a {
        font-size: 12px;
    }
}

.hero-news .hero-news-bar time {
    color: #393232;
    margin-right: 15px;
    line-height: 1.8;
}

@media (max-width: 767px) {
    .hero-news .hero-news-bar time {
        font-size: 12px;
    }
}

.hero-news .category {
    background-color: transparent;
    border: 1px solid #fff;
    padding: 5px 10px;
    font-size: 10px;
    color: #393232;
    margin: 0;
    margin-right: 15px;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .hero-news .category {
        display: none;
    }
}

.hero-news .category span {
    font-size: 10px;
}

.hero-news #ticker ul {
    position: relative;
}

.hero-news #ticker ul li {
    position: relative !important;
}

@media screen and (max-width: 767px) {
    .hero-news {
        width: calc(100% - 56px);
        margin: 0 auto;
        margin-bottom: -42px;
    }

    .hero-news-bar {
        width: 100%;
    }

    .hero-news .hero-news-bar .left-tag {
        position: relative;
        left: 0;
        bottom: 60px;
        padding: 10px 15px;
    }
}

/*------------------ヒーローニュース_トップページ------------------*/