a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1.5;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


html {
    scroll-behavior: smooth;
}

@media (max-width: 720px) {
    html {
        scroll-behavior: auto;
    }
}

body {
    /* font-family: Hiragino Kaku Gothic ProN, \\30D2\30E9\30AE\30CE\89D2\30B4 ProN,
    Meiryo, メイリオ, MS PGothic, Helvetica, Arial, sans-serif; */
    font-family: "Noto Sans JP", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #242e30;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

:root {
    --theme01-color: #e40f22;
    --theme02-color: #009900;
    --accent-pink: #dd1571;
    --sdkg-color: #007383;
    --dark-gray: #1b1b1b;
}

.header + .page {
    margin-top: 61px;
}

/* --- */
.content {
    /* position: relative; */
    position: static;
}

article.wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: linear-gradient(
        135deg,
        #508aae 0%,
        #2d6ebd 15%,
        #1dafad 30%,
        #db5d93 45%,
        #f1945e 55%,
        #ffb72d 65%,
        #f9fa90 75%,
        #fcc746 85%,
        #92bfab 95%,
        #bf5b82 100%
    );
    background-size: 400% 400%;
    animation: gradientMove 30s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

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

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

/* ======================================
   レインボー背景の上のノイズレイヤー
   ====================================== */

.wrapper::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background-image: url("../../images/noise-white.jpg");
    background-size: 300px 300px;
    background-repeat: repeat;
    opacity: 0.3;
    mix-blend-mode: luminosity;
}

/* ======================================
   コンテンツここから
   ====================================== */

.page-body {
    z-index: 1;
    margin-top: 60px;
}

/* --- */

.container {
    max-width: 920px;
    margin: auto;
}

.container-theme {
    max-width: 860px;
}

a {
    /* color: #00b2e2; */
    color: var(--sdkg-color);
}

@media (max-width: 920px) {
    .container {
        padding: 0 15px;
    }

    .container-theme {
        padding: 0 30px;
    }
}

@media (max-width: 640px) {
    .container-theme .slick-prev {
        left: -25px;
    }

    .container-theme .slick-next {
        right: -15px;
    }
}

.btn {
    display: block;
    padding: 0.6em 1em;
    text-decoration: none;
    color: #fff;
    background: var(--accent-pink);
    text-align: center;
    border-radius: 3px;
    font-weight: 700;
    margin: auto;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.btn_amzn {
    background: #f39d38;
    margin-bottom: -15px;
}

.btn_rktn {
    background: #b02417;
    margin-bottom: -15px;
}

.btn.mode-weak {
    background: #fff;
    border: 1px solid #dae2e3;
    color: #242e30;
}

.btn[disabled] {
    background: #6c7071;
    color: #dae2e3;
}

.btn.btn-red {
    background-color: #e01922;
}

.btn-md {
    max-width: 200px;
}

.btn-sm {
    font-size: 14px;
}

.btn-inline {
    display: inline-block;
}

.btn-inline + .btn-inline {
    margin-left: 30px;
}

.btn-icon {
    font-size: 130%;
    display: inline-block;
    margin-right: 10px;
    opacity: 0.7;
    position: relative;
    top: 2px;
}

@media (max-width: 640px) {
    .btn-inline {
        display: block;
    }

    .btn-inline + .btn-inline {
        margin-left: 0;
        margin-top: 30px;
    }
}

.header {
    padding: 15px 0 13px;
    height: 61px;
    box-sizing: border-box;
    background: #fff;
    z-index: 4;
    position: fixed;
    top: 0;
    width: 100%;
}

.header-logo,
.header .container {
    position: relative;
}

.header-logo {
    display: block;
    float: left;
    top: 2px;
}

.header-logo img {
    width: 120px;
    vertical-align: bottom;
}

.header-nav-base {
    float: right;
}

.header-nav,
.header-nav-item {
    display: inline-block;
}

.header-nav-item {
    margin-right: 15px;
}

.header-nav-item + .no-link a {
    color: #ccc;
    pointer-events: none;
}

.header-nav-item a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 700;
}

.header-entry-btn {
    display: inline-block;
    padding: 0.4em 1em;
    text-decoration: none;
    color: #fff;
    background: #000;
    text-align: center;
    border-radius: 3px;
    font-weight: 700;
    font-size: 13px;
    /* margin-right: 20px; */
}

.header-sns-nav {
    position: relative;
    top: 2px;
}

.header-sns-nav,
.header-sns-nav-item {
    display: inline-block;
}

.header-sns-nav-item a {
    display: block;
    font-size: 18px;
}

.header-sns-nav-item + .header-sns-nav-item {
    margin-left: 15px;
}

.header-my-menu {
    margin-right: 15px;
    cursor: pointer;
}

.header-my-menu span {
    display: inline-block;
    max-width: 170px;
    margin: 0 0.5em 0 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.header-mymenu-content {
    display: none;
    position: absolute;
    top: 62px;
    right: 0;
    background: #fff;
    border: 1px solid #e6eced;
    width: 256px;
    border-radius: 3px;
    z-index: 2;
}

.header-mymenu-content:before {
    border-top: 15px solid transparent;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 15px solid #e6eced;
    top: -30px;
}

.header-mymenu-content:after,
.header-mymenu-content:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    /* left: 50%; */
    left: 80%;
    transform: translate(-50%);
}

.header-mymenu-content:after {
    border-top: 14px solid transparent;
    border-right: 14px solid transparent;
    border-left: 14px solid transparent;
    border-bottom: 14px solid #fff;
    top: -27px;
}

.header-mymenu-content.is-active {
    display: block;
}

.header-status-header {
    padding: 15px;
    padding: 6px 0;
    margin: 0 15px;
    border-bottom: 3px solid #e6eced;
    font-size: 14px;
}

.header-status-header b {
    font-weight: 700;
}

.header-status-num {
    font-size: 160%;
    position: relative;
    top: 2px;
}

.header-status-item a {
    color: #242e30;
    position: relative;
    padding-left: 15px;
    display: block;
    line-height: 1.3;
    font-size: 14px;
}

.header-status-item + .header-status-item {
    margin-top: 10px;
}

.header-status-item-icon {
    color: #00b2e2;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 2px;
}

.header-status-list-base {
    margin: 0 15px 15px;
    overflow: hidden;
}

.header-status-list {
    width: calc(100% + 18px);
    padding: 20px 5px;
    max-height: 200px;
    box-sizing: border-box;
    overflow-y: scroll;
    padding-bottom: 15px;
    border-bottom: 1px solid #e6eced;
    position: relative;
}

.header-status-note {
    margin: 0 20px 15px;
    color: #6c7071;
    font-size: 13px;
    line-height: 1.3;
    position: relative;
}

.header-status-note:before {
    content: "";
    display: block;
    width: calc(100% + 30px);
    height: 20px;
    position: absolute;
    top: -36px;
    left: -15px;
    background-image: linear-gradient(hsla(0, 0%, 100%, 0), #fff);
}

.header-mymenu-navitem a {
    padding: 10px 20px;
    display: block;
    color: #242e30;
    text-decoration: none;
    border-top: 1px solid #e6eced;
}

.header-mymenu-nav-icon {
    color: var(--sdkg-color);
    font-size: 140%;
    display: inline-block;
    margin-right: 10px;
    opacity: 0.8;
    position: relative;
    top: 2px;
}

.header-nav-icon {
    display: none;
    z-index: 1;
}

@media (max-width: 820px) {
    .header-nav-icon {
        display: block;
        width: 30px;
        height: 30px;
        border-top: 3px solid var(--sdkg-color);
        position: absolute;
        right: 10px;
        top: 1px;
        cursor: pointer;
    }

    .header-nav-icon:before {
        top: 9px;
    }

    .header-nav-icon:after,
    .header-nav-icon:before {
        content: "";
        display: block;
        width: 100%;
        height: 3px;
        background: var(--sdkg-color);
        position: absolute;
    }

    .header-nav-icon:after {
        top: 21px;
    }

    .header-nav-base {
        float: none;
        background: #fff;
        top: 61px;
        width: 80%;
        border-left: 1px solid #e6eced;
        height: calc(100% - 61px);
        z-index: -1;
        position: fixed;
        right: -80%;
        transition: right 0.3s;
    }

    .header-nav-inner {
        width: calc(100% + 18px);
        height: 100%;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .header-nav-base.is-active {
        right: 0;
        transition: right 0.3s;
    }

    .header-nav {
        display: block;
        border-top: 1px solid #e6eced;
    }

    .header-nav-item {
        display: block;
        margin-right: 0;
        border-bottom: 1px solid #e6eced;
    }

    .header-my-menu,
    .header-nav-item a {
        display: block;
        padding: 15px;
    }

    .header-my-menu {
        border-bottom: 1px solid #e6eced;
        margin-right: 0;
    }

    .header-my-menu span {
        display: inline;
        max-width: none;
        margin: 0;
        overflow: unset;
        white-space: unset;
        text-overflow: unset;
        vertical-align: unset;
    }

    .header-sns-nav {
        display: block;
        position: relative;
        margin: 15px 0;
        text-align: center;
    }

    .header-sns-nav-item a {
        font-size: 24px;
    }

    .header-sns-nav-item + .header-sns-nav-item {
        margin-left: 30px;
    }

    .header-mymenu-content {
        position: relative;
        top: 0;
        width: 100%;
        border-top: none;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid #e6eced;
    }

    .header-mymenu-content:after,
    .header-mymenu-content:before {
        border: none;
    }

    .header-status-header {
        margin: 0;
        border-top: 2px solid #e6eced;
        border-bottom: 1px solid #e6eced;
        padding: 6px 15px;
    }

    .header-status-list {
        margin: 0;
    }

    .header-status-body {
        padding: 0;
    }

    .header-entry-btn {
        width: 100%;
        border-radius: 0;
        padding: 15px;
        text-align: left;
    }
}

@media (max-width: 920px) {
    .header-nav-item a {
        font-size: 13px;
    }
}

/* 
.page {
  background: #f5f9fa;
  overflow: hidden;
} */

.page-header {
    background: #00b2e2;
    padding: 16px 0;
}

.page-title {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
}

/* 
.page-body {
  padding-top: 30px;
} */

.page-body section .container {
    position: relative;
    overflow: hidden;
}

.page-body .container:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    clear: both;
}

.page-main {
    width: calc(100% - 170px - 15px * 2);
    float: left;
    padding: 0 15px 15px;
}

.page-main,
.page-main-lg {
    background: #fff;
    box-sizing: border-box;
    /* border: 1px solid #e6eced; */
}

.page-main-lg {
    padding: 15px 15px 60px;
}

/* .page-main-title {
  font-size: 24px;
  font-weight: 700;
  padding: 4px 8px 5px;
  border-bottom: 3px solid #e6eced;
  position: relative;
  margin: 30px 0;
  font-family: Verdana;
}

.page-main-title:before {
  content: "";
  display: block;
  width: 160px;
  height: 3px;
  background: #00b2e2;
  position: absolute;
  left: 0;
  bottom: -3px;
}

.page-sub-title {
  font-size: 18px;
  font-weight: 700;
  padding: 3px 0 5px 8px;
  border-bottom: 3px solid #e6eced;
  position: relative;
  margin: 30px 0 15px;
}

.page-sub-title:before {
  content: "";
  display: block;
  width: 160px;
  height: 3px;
  background: #00b2e2;
  position: absolute;
  left: 0;
  bottom: -3px;
} */

.page-side {
    width: 170px;
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
}

.page-side-nav {
    border: 1px solid #e6eced;
    width: 170px;
}

.page-side-nav.is-fixed {
    position: fixed;
    top: 91px;
}

.page-side-nav-nofixed {
    border: 1px solid #e6eced;
    width: 170px;
}

.page-side-navitem a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 13px 0 13px 35px;
    position: relative;
    font-size: 14px;
    background: #fff;
}

.page-side-navitem + .page-side-navitem {
    border-top: 1px solid #e6eced;
}

.page-side-navitem-top {
    border-bottom: 2px solid #e6eced;
}

.page-side-nav-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sdkg-color);
}

@media (max-width: 820px) {
    .page-side {
        width: 100%;
        float: none;
        margin-bottom: 15px;
    }

    .page-side-nav,
    .page-side-nav-nofixed {
        text-align: center;
        border: none;
        width: 100%;
    }

    .page-side-navitem {
        display: inline-block;
        margin-bottom: 10px;
    }

    .page-side-navitem a {
        padding: 10px 15px;
        display: inline-block;
        background: none;
        position: relative;
        padding: 2px 10px;
        color: #00b2e2;
    }

    .page-side-navitem + .page-side-navitem {
        border-top: none;
        border-left: 1px solid #dae2e3;
    }

    .page-side-navitem-top {
        border-bottom: none;
    }

    .page-side-nav-icon {
        display: none;
    }
}

.page-award-base {
    border-bottom: 1px solid #e6eced;
    margin: -30px 20px 15px;
}

.page-award-item {
    overflow: hidden;
    padding: 20px 15px;
    text-align: center;
}

.page-award-item + .page-award-item {
    border-top: 1px solid #e6eced;
}

.page-award-icon {
    width: 60px;
    display: inline-block;
    margin: -3px 2px -3px 0;
    vertical-align: bottom;
}

.page-award-texts {
    display: inline-block;
    padding-bottom: 10px;
}

.page-award-texts + .page-award-icon {
    margin-left: 15px;
}

.page-award-name {
    font-weight: 700;
    display: inline-block;
    margin-right: 5px;
    font-size: 21px;
}

.page-award-number {
    display: inline-block;
    font-size: 16px;
    margin-left: 3px;
}

.page-award-prize {
    display: inline-block;
    font-weight: 700;
}

.page-award-prize span {
    color: #00b2e2;
    font-size: 23px;
    position: relative;
    top: 1px;
}

.grandprix .page-award-icon {
    width: 100px;
}

.grandprix .page-award-texts {
    padding-bottom: 19px;
}

.grandprix .page-award-name {
    font-size: 24px;
}

.grandprix .page-award-prize span {
    font-size: 26px;
    position: relative;
    top: 2px;
}

.kyosan .page-award-icon {
    width: 50px;
}

.kyosan .page-award-name,
.kyosan .page-award-prize span {
    font-size: 16px;
}

.page-award-supplement {
    color: #6c7071;
    font-size: 13px;
    line-height: 1.4;
    padding-left: 1.5em;
    position: relative;
    margin: 0 20px;
}

.page-award-supplement + .page-award-supplement {
    margin-top: 7.5px;
}

.page-award-supplement-icon {
    position: absolute;
    top: 0;
    left: 0;
}

.page-award-history-text {
    font-weight: 700;
    margin-bottom: 1em;
    text-align: center;
}

.page-award-history-btn {
    max-width: 250px;
    margin-bottom: 30px;
}

@media (max-width: 920px) {
    .page-award-icon,
    .page-award-texts + .page-award-icon {
        margin: 0 auto;
        display: block;
    }

    .page-award-base {
        margin: -30px 0 15px;
    }

    .page-award-supplement {
        margin: 0;
    }
}

.page-standard-base {
    overflow: hidden;
    margin: 0 20px;
    display: flex;
    flex-wrap: wrap;
}

.page-standard-outline {
    margin: 0 20px 30px;
}

.page-standard-item {
    width: calc((100% - 15px * 1) / 2);
    text-align: center;
    margin-bottom: 15px;
    border: 1px solid #e6eced;
    box-sizing: border-box;
    padding: 15px;
}

.page-standard-item:nth-child(2n) {
    margin-left: 15px;
}

.page-standard-text {
    margin-bottom: 10px;
    height: 50px;
}

.page-standard-text b {
    font-weight: 700;
    display: block;
}

.page-standard-icon {
    width: 70px;
    height: 70px;
}

@media (max-width: 920px) {
    .page-standard-outline {
        margin: 0 0 30px;
    }

    .page-standard-base {
        margin: 0;
    }
}

@media (max-width: 540px) {
    .page-standard-base {
        border: 1px solid #e6eced;
    }

    .page-standard-item {
        width: 50%;
        border: none;
        margin-bottom: 0;
    }

    .page-standard-item:first-child {
        border-right: 1px solid #e6eced;
        border-bottom: 1px solid #e6eced;
    }

    .page-standard-item:nth-child(2) {
        border-bottom: 1px solid #e6eced;
    }

    .page-standard-item:nth-child(3) {
        border-right: 1px solid #e6eced;
    }

    .page-standard-item:nth-child(2n) {
        margin-left: 0;
    }

    .page-standard-text {
        line-height: 1.4;
        font-size: 14px;
        height: 4.8em;
    }
}

.page-schedule-image {
    display: block;
    width: 100%;
    max-width: 650px;
    margin: 45px 20px 30px;
}

.page-method-list {
    margin: 0 20px;
}

.page-method-item {
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid #e6eced;
    padding: 15px;
}

.page-method-icon {
    display: block;
    width: 80px;
    float: left;
    margin-right: 15px;
}

.page-method-number {
    color: #fff;
    font-weight: 700;
    display: inline-block;
    width: 22px;
    height: 22px;
    text-align: center;
    background: #000;
    margin-right: 5px;
    font-size: 14px;
    padding-top: 1px;
    box-sizing: border-box;
}

.page-method-description {
    width: calc(1 - $gutter-width - $page-method-icon-width);
}

.page-method-title {
    font-weight: 700;
    margin: 5px 0 8px;
}

.page-method-text {
    line-height: 1.4;
}

@media (max-width: 920px) {
    .page-method-list {
        margin: 0;
    }
}

@media (max-width: 820px) {
    .page-method-list {
        border-top: 1px solid #e6eced;
    }

    .page-method-item {
        margin-bottom: 0;
        border: none;
        border-bottom: 1px solid #e6eced;
        padding: 15px 0;
    }

    .page-method-icon {
        width: 60px;
    }

    .page-method-number {
        width: 18px;
        height: 18px;
        font-size: 12px;
        padding-top: 0;
        margin-right: 3px;
    }

    .page-method-title {
        margin: 0 0 5px;
    }

    .page-method-text {
        font-size: 13px;
        overflow: hidden;
    }
}

.page-guidelines {
    margin: 0 20px;
    border-top: 1px solid #e6eced;
}

.page-guidelines tr {
    border-bottom: 1px solid #e6eced;
}

.page-guidelines td,
.page-guidelines th {
    padding: 15px;
}

.page-guidelines th {
    width: 110px;
}

.page-guidelines.form td,
.page-guidelines.form th {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.page-guidelines.form th {
    padding: 15px 15px 0;
    text-align: left;
    font-weight: normal !important;
}

.page-guidelines.form b {
    font-weight: 700;
}

.form-required {
    color: #e60013;
}

.questionnaire_error {
    color: #e60013;
    font-size: 13px;
    margin-top: 5px;
}

@media (max-width: 920px) {
    .page-guidelines {
        margin: 0;
    }
}

@media (max-width: 820px) {
    .page-guidelines td,
    .page-guidelines th {
        width: 100%;
        display: block;
        box-sizing: border-box;
    }

    .page-guidelines th {
        padding: 15px 15px 0;
        text-align: left;
        font-weight: 700;
    }

    .page-guidelines td {
        padding: 5px 15px 15px;
    }
}

.page-note-base {
    overflow: hidden;
}

.page-note-example {
    width: 240px;
    margin-right: 15px;
    float: left;
}

.page-note-example-image {
    width: 220px;
    display: block;
    margin: 0 0 25px 20px;
}

.page-note-text {
    overflow: hidden;
}

.page-note-list {
    counter-reset: note-counter;
    margin: 0 20px 35px 0;
}

.page-note-list li {
    padding-left: 20px;
    position: relative;
    line-height: 1.2;
    font-size: 14px;
}

.page-note-list li:before {
    counter-increment: note-counter;
    content: counter(note-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
}

.page-note-list li + li {
    margin-top: 10px;
}

.page-note-list li.mode-strong {
    color: #e01922;
    font-weight: 700;
}

.page-note-list-md {
    counter-reset: note-counter-md;
    margin: 30px 20px 0;
}

.page-note-list-md li {
    padding-left: 25px;
    position: relative;
    line-height: 1.2;
    font-size: 14px;
}

.page-note-list-md li:before {
    counter-increment: note-counter-md;
    content: counter(note-counter-md);
    position: absolute;
    left: 0;
    top: 0;
    width: 17px;
    height: 17px;
    border: 1px solid #242e30;
    border-radius: 50%;
    padding-top: 1px;
    box-sizing: border-box;
    font-size: 11px;
    text-align: center;
}

.page-note-list-md li + li {
    margin-top: 10px;
}

.page-note-list-lg-icon {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 12px;
}

.page-note-example-download {
    text-align: center;
}

.page-note-example-download-text {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 7px;
}

.page-note-example-btn {
    font-size: 13px;
    display: inline-block;
    padding: 4px 0;
    width: 112px;
}

.page-note-example-btn .fa-download {
    opacity: 0.8;
    font-size: 12px;
}

.page-note-example-btn + .page-note-example-btn {
    margin-left: 8px;
}

@media (max-width: 920px) {
    .page-note-list {
        margin: 0 0 20px;
    }
}

@media (max-width: 640px) {
    .page-note-example {
        width: 100%;
        float: none;
    }
}

@media (max-width: 920px) {
    .page-schedule-image {
        margin: 20px 5px;
    }
}

@media (max-width: 820px) {
    .page-main {
        width: 100%;
        float: none;
    }
}

.mail-content {
    padding-top: 45px;
}

.mail-content-copy {
    display: table;
    margin: 0 auto;
}

.mail-copy-wrapper {
    display: table-cell;
}

.mail-content-address {
    padding: 10px;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 3px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    display: block;
    font-size: 12px;
    width: 275px;
    text-decoration: none;
}

.mail-content-copybtn {
    padding: 0.4em 1em;
    font-size: 13px;
    margin-right: 20px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    display: table-cell;
    cursor: pointer;
    vertical-align: middle;
}

.mail-content-desc {
    margin: 0 auto 20px;
    max-width: 640px;
    text-align: center;
}

.mail-content-announce {
    display: block;
    padding-bottom: 6px;
    color: #111;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
}

.mail-content-text {
    font-size: 15px;
    font-weight: 400;
    padding: 0 20px;
}

.about-ipbusiness {
    display: flex;
}

.merit-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 660px;
    margin: 0 auto 3em;
    border: solid 1px var(--accent-pink);
    border-radius: 10px;
}

.merit-item {
    margin: 15px;
    text-align: center;
    width: 180px;
    height: 180px;
    padding-top: 37px;
    box-sizing: border-box;
    /* --- */
    perspective: 800px;
}

.merit-text {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 7px;
    line-height: 1.4;
    color: var(--accent-pink);
}

.merit-image {
    width: 100px;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
    transform: rotateY(0deg);
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.merit-image.active {
    transform: rotateY(360deg);
}

.merit-image:hover {
    transform: rotateY(720deg);
}

/* -------------- */

.winners-base {
    overflow: hidden;
    margin: 0 auto 60px;
    max-width: 800px;
}

.winners-base + .winners-base {
    margin-top: 75px;
}

.winners-thumbnail {
    display: block;
    width: calc((100% - 15px * 2) / 2);
    float: left;
    margin-right: 30px;
}

.winners-thumbnail img {
    width: 100%;
}

.winners-thumbnail-slide {
    height: 320px;
    width: 100%;
    border: 1px solid #e6eced;
    box-sizing: border-box;
}

.winners-information {
    width: calc((100% - 15px * 2) / 2);
    float: left;
}

.winners-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.winners-definition-item {
    font-size: 13px;
}

.winners-definition-item dt {
    font-weight: 700;
    margin-bottom: 5px;
}

.winners-definition-item + .winners-definition-item {
    margin-top: 15px;
}

.winners-times {
    text-align: center;
    font-weight: 700;
    border-bottom: 3px solid #e6eced;
    padding-bottom: 5px;
    margin-bottom: 30px;
}

.winners-times b {
    font-size: 24px;
}

@media (max-width: 720px) {
    .winners-thumbnail-slide {
        height: 280px;
    }
}

@media (max-width: 640px) {
    .winners-base {
        margin: 0 0 30px;
    }

    .winners-thumbnail {
        width: 100%;
        float: none;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .winners-thumbnail-slide {
        width: 500px;
        height: 400px;
        margin: 0 auto 15px;
        display: block;
    }

    .winners-information {
        width: 100%;
        float: none;
    }

    .winners-base + .winners-base {
        margin-top: 0;
    }
}

@media (max-width: 540px) {
    .winners-thumbnail-slide {
        width: 307px;
        height: 272px;
    }
}

/* ======================================
   FV設定
   ====================================== */

.top-header {
    max-width: 1280px;
    margin: 0px auto;
    background-color: #fff;
}

/* ===== PC FV ===== */
.top-header-pc {
    max-width: 1280px;
    margin: 0px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.top-header-copy img {
    width: 100%;
    height: auto;
    max-width: 920px;
}

.top-header-title img {
    width: 100%;
    height: auto;
    max-width: 571px;
    padding: 0 0 12% 0;
}

.top-header-explanation {
    background-color: var(--dark-gray);
    color: #fff;
    font-weight: bold;
    letter-spacing: 10px;
    font-size: 1.55rem;
    text-align: center;
    width: 90%;
    margin: -2% auto 0;
}

@media screen and (min-width: 721px) {
    .top-header-sp {
        display: none;
    }
}

/* ===== SP FV ===== */

@media (max-width: 720px) {
    .top-header {
        width: 97%;
        margin: 0 auto;
    }
}

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

    .top-header-sp {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sp-logo {
        width: 66%;
        padding-top: 4%;
    }

    .sp-copy {
        width: 93%;
        margin-top: -1%;
    }

    .sp-period {
        width: 80%;
        padding: 3%;
    }

    .top-header-explanation {
        font-size: 1.2em;
        letter-spacing: 3px;
        margin-top: 1em;
    }
}

@media screen and (max-width: 425px) {
    .top-header-explanation {
        font-size: 1.1em;
        letter-spacing: 0;
    }
}

/* .top-header-box {
  width: 37.34375%;
  padding: 2.65625% 2.65625% 2.03125%;
  background-color: #fff;
  position: absolute;
  bottom: 10.15873%;
  right: 7.8125%;
  box-sizing: border-box;}

  .top-header-title {
    text-align: center;
    line-height: 1;
  }

  .top-header-title .is-sp {
    display: none;
  }

  .top-header-title .is-pc {
    display: inline;
  }

  .top-header-titlearea {
    text-align: center;
  }

  .top-header-title img {
    width: 100%;
  } */

/* @media (min-width: 721px) {
    .top-header-text {
      font-size: 15px;
      line-height: 22px;
      letter-spacing: 0.07em;
      margin-top: 8px;
    }

    .top-header-schedule {
      text-align: center;
      margin-top: 28px;
    }

    .top-header-schedule img {
      width: 82.92683%;
    }

    .top-header-btn {
      width: 920px;
      display: flex;
      gap: 20px;
      justify-content: center;
      margin: 0 auto;
    }

    .btn-red,
    .btn-blue {
      width: 50%;
      padding: 16px 1em 15px;
      box-sizing: border-box;
      display: block;
      text-decoration: none;
      color: #fff;
      text-align: center;
      border-radius: 3px;
      font-weight: 700;
      margin: 30px auto;
      font-size: 16px;
      border: none;
      cursor: pointer;
    }

    .btn-blue {
      background-color: #00b2e2;
    }

    .btn-red {
      background-color: #e01922;
    }

  } */

/* .top-header-box {
      width: 85.33333%;
      margin: auto;
      padding: 66.4% 0 0;
      background-color: transparent;
      top: 0;
      bottom: auto;
      left: 0;
      right: 0;
    }

    .top-header-titlearea {
      background-color: #fff;
      padding: 5% 0 5.3125%;
      box-sizing: border-box;
    }

    .top-header-title img {
      width: 68.125%;
    }

    .top-header-title .is-sp {
      display: inline;
    }

    .top-header-title .is-pc {
      display: none;
    }

    .top-header-text {
      font-size: 13px;
      line-height: 18px;
      margin-top: 6px;
    }

    .top-header-schedule {
      margin-top: 13.33333vw;
    }

    .top-header-schedule img {
      width: 100%;
    }

    .top-header-btn {
      padding-top: 0px;
    }

    .top-header-btn .btn {
      margin: 18px auto 0;
      padding: 14px 1em 13px;
    }

    .mail-copy-wrapper {
      width: 67%;
    }

    .mail-content-address {
      width: 100%;
      font-size: 10px;
      padding: 10px 3px;
    }

    .mail-content-copybtn {
      font-size: 10px;
      padding: 0 5px;
      width: 33%;
    }

    .btn-red,
    .btn-blue {
      width: 90%;
      padding: 16px 1em 15px;
      box-sizing: border-box;
      display: block;
      text-decoration: none;
      color: #fff;
      text-align: center;
      border-radius: 3px;
      font-weight: 700;
      margin: 30px auto;
      font-size: 16px;
      border: none;
      cursor: pointer;
    }

    .btn-blue {
      background-color: #00b2e2;
    }

    .btn-red {
      background-color: #e01922;
    } */

/* .top-main-title {
    text-align: center;
    font-size: 100px;
  } */

/* -------------------------------- */

/* 
.top-page {
  background: #f2f8fa;
  overflow: hidden;
} */

/* ======================================
   紙芝居（page-body 内で動く最小セット）
   ====================================== */

#about,
#prize,
#guideline,
#judge {
    position: relative;
    z-index: 1;
}

#about::after,
#guideline::after {
    content: "";
    display: block;
    height: 40vh;
}
@media (max-width: 720px) {
#about::after,
    #guideline::after {
        height: 0vh;
    }
}


.pin-wrap {
    position: relative;
    width: 100%;
}

/* ======================================
   白背景section
   ====================================== */

.top-section {
    padding: 15px 0 60px;
    background-color: rgba(255, 255, 255, 0.98);
    max-width: 1280px;
    margin: 0 auto;
    /* backdrop-filter: blur(10px); */
}

.top-section:first-child {
    padding-top: 30px;
}

@media screen and (max-width: 820px) {
    .top-section {
        width: 97%;
    }
}

/* ======================================
   黒背景section
   ====================================== */

.belt-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 60px 0;
    background-color: var(--dark-gray);
    color: #fff;
    position: relative;
}

@media screen and (max-width: 720px) {
    .belt-section {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

/* ノイズ */
.belt-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../../images/noise-white.jpg");
    background-size: 300px 300px;
    background-repeat: repeat;
    opacity: 0.3;
    filter: invert(1) brightness(0.6);
    mix-blend-mode: normal;
    pointer-events: none;
    z-index: 10;
}

.belt-section > * {
    position: relative;
    z-index: 20;
}

.belt-section h2 {
    color: #fff;
}

.belt-fadein {
    height: 30px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

/* --------- */

.top-section-caution {
    color: #e01922;
    font-weight: 700;
    text-align: center;
}

.top-recommend-base {
    overflow: hidden;
}

.top-recommend-thumbnail {
    width: 230px;
    display: block;
    margin: 0 auto;
    border: 1px solid #e6eced;
}

.top-recommend-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    margin: 18px 0 10px;
    text-align: center;
}

.top-recommend-title small {
    font-size: 13px;
}

.top-recommned-description {
    overflow: hidden;
    font-size: 13px;
}

h2.top-title {
    font-size: 28px;
    text-align: center;
    font-weight: 900;
    padding: 4px 8px 5px;
    position: relative;
    margin: 45px 0;
}

h2.top-title::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    height: 5px;
    width: 400px;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        #477c9d 0%,
        #2866b2 15%,
        #01d7d4 30%,
        #db5d93 45%,
        #f1945e 60%,
        #fcc746 75%,
        #92bfab 90%,
        #bf5b82 100%
    );
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

@media screen and (max-width: 425px) {
    h2.top-title::before {
        width: 300px;
    }
}

h2.top-title.active::before {
    transform: translateX(-50%) scaleX(1);
}

h3.point-title {
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    position: relative;
    /* margin: 20px 0; */
    margin: 80px 0 20px;
}

.point-title::before {
    content: "【 ";
    color: var(--accent-pink);
}

.point-title::after {
    content: " 】";
    color: var(--accent-pink);
}

.belt-section .point-title::before,
.belt-section .point-title::after {
    color: #fff;
}

.point-text {
    width: 660px;
    margin: 0 auto;
}

.point-text p {
    margin-bottom: 15px;
    font-size: 14px;
}

.top-sponsor-list {
    display: flex;
    flex-wrap: wrap;
}

.top-sponsor-item {
    width: calc((100% - 15px * 10) / 6);
    margin-bottom: 15px;
}

.top-sponsor-item a {
    display: block;
    text-decoration: none;
    color: #242e30;
}

.top-sponsor-item:not(:nth-child(6n)) {
    margin-right: 30px;
}

.top-sponsor-logo-base {
    display: block;
    width: 100%;
    height: 0;
    padding-top: 75%;
    margin-bottom: 10px;
    position: relative;
    border: 1px solid #e6eced;
    background: #fff;
    box-sizing: border-box;
}

.top-sponsor-logo-base img {
    display: block;
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top-sponsor-name {
    color: #242e30;
    text-align: center;
    font-size: 13px;
    line-height: 1.3;
}

.top-fellow-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.top-fellow-item {
    width: calc((100% - 15px * 14) / 8);
    margin-bottom: 30px;
}

.top-fellow-item a {
    display: block;
    text-decoration: none;
    color: #242e30;
}

.top-fellow-item:not(:nth-child(8n)) {
    margin-right: 30px;
}

.top-fellow-logo-base {
    display: block;
    width: 100%;
    height: 0;
    padding-top: 75%;
    margin-bottom: 10px;
    position: relative;
    border: 1px solid #e6eced;
    box-sizing: border-box;
    background: #fff;
}

.top-fellow-logo-base img {
    display: block;
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top-fellow-name {
    color: #242e30;
    text-align: center;
    font-size: 13px;
    line-height: 1.3;
}

.top-mail-announce {
    margin-bottom: 10px;
    text-align: center;
}

@media (max-width: 820px) {
    .top-fellow-item {
        width: calc((100% - 15px * 12) / 7);
    }

    .top-fellow-item:not(:nth-child(8n)) {
        margin-right: 0;
    }

    .top-fellow-item:not(:nth-child(7n)) {
        margin-right: 30px;
    }

    .top-sponsor-name {
        font-size: 11px;
    }
}

@media (max-width: 720px) {
    .top-sponsor-item {
        width: calc((100% - 15px * 8) / 5);
    }

    .top-sponsor-item:not(:nth-child(6n)) {
        margin-right: 0;
    }

    .top-sponsor-item:not(:nth-child(5n)) {
        margin-right: 30px;
    }

    .top-fellow-item {
        width: calc((100% - 15px * 10) / 6);
    }

    .top-fellow-item:not(:nth-child(7n)) {
        margin-right: 0;
    }

    .top-fellow-item:not(:nth-child(6n)) {
        margin-right: 30px;
    }
}

@media (max-width: 540px) {
    .top-sponsor-item {
        width: calc((100% - 15px * 4) / 3);
    }

    .top-sponsor-item:not(:nth-child(5n)) {
        margin-right: 0;
    }

    .top-sponsor-item:not(:nth-child(3n)) {
        margin-right: 30px;
    }

    .top-sponsor-name {
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .merit-list + .merit-list {
        margin-top: 2px;
    }

    .merit-item {
        margin: 0 10px;
        width: 148px;
        height: 148px;
        padding-top: 29px;
    }

    .merit-text {
        font-size: 12px;
    }

    .merit-text b {
        font-size: 14px;
    }

    .merit-image {
        width: 70px;
    }

    .top-fellow-item {
        width: calc((100% - 15px * 6) / 4);
    }

    .top-fellow-item:not(:nth-child(6n)) {
        margin-right: 0;
    }

    .top-fellow-item:not(:nth-child(4n)) {
        margin-right: 30px;
    }

    .top-mail-announce {
        text-align: left;
    }
}

@media (max-width: 425px) {
    .merit-item {
        width: 120px;
        height: 170px;
    }
}

.u-text-block {
    margin: 0 auto 3em;
}

.u-text-block p {
    margin-bottom: 15px;
}

.u-text-center {
    text-align: center;
    margin-top: 20px;
}

.u-text-right {
    text-align: right;
}

.u-text-attention {
    color: #e01922;
}

.u-text-attention b {
    font-weight: 700;
}

.u-text-weak {
    color: #6c7071;
    font-size: 13px;
    line-height: 1.4;
}

.u-text-loud {
    font-weight: 700;
}

.u-news-image {
    display: block;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.u-text-red {
    color: #e01922;
}

.u-text-blue {
    color: #00b2e2;
}

.u-text-lead {
    font-size: 20px;
}

.u-mgt-md {
    margin-top: 15px;
    margin-bottom: 50px;
}

.u-mgt-lg {
    margin-top: 30px;
}

.u-mgt-xl {
    margin-top: 45px;
}

.u-mgb-md {
    margin-bottom: 15px;
}

/* .u-mgb-lg {
  margin-bottom: 30px;
} */

.u-mgb-xl {
    margin-bottom: 45px;
}

.u-hidden-pc {
    display: none;
}

.u-text-checkbox {
    margin-left: -1.35em;
}

@media (max-width: 640px) {
    .u-hidden-pc {
        display: inline-block;
    }

    .u-hidden-sp {
        display: none;
    }
}

.u-list {
    margin: 0 20px;
}

.u-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 15px;
}

.u-list li:before {
    content: "";
    width: 3px;
    height: 3px;
    background: #242e30;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 10px;
}

@media (max-width: 920px) {
    .u-list {
        margin: 0;
    }
}

.u-more-link {
    color: #00b2e2;
    font-weight: 700;
}

.u-more-link-icon {
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: 2px;
    font-size: 115%;
}

.performance-group {
    margin: 45px 0 0;
    overflow: hidden;
}

.performance-base {
    width: calc((100% - 15px * 4) / 2);
    float: left;
    padding: 15px;
    box-sizing: border-box;
    /* background: #fff; */
}

.performance-base + .performance-base {
    margin-left: 60px;
}

.performance-title {
    font-size: 17px;
    font-weight: 700;
    margin: 13px 0 25px;
    text-align: center;
    line-height: 1.3;
}

.performance-thumbnail {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.performance-definition-item {
    font-size: 13px;
}

.performance-definition-item dt {
    font-weight: 700;
    margin-bottom: 5px;
}

.performance-definition-item + .performance-definition-item {
    margin-top: 15px;
}

@media (max-width: 920px) {
    .performance-base {
        width: calc((100% - 15px * 2) / 2);
    }

    .performance-base + .performance-base {
        margin-left: 30px;
    }
}

@media (max-width: 640px) {
    .performance-base {
        width: 100%;
        float: none;
    }

    .performance-base + .performance-base {
        margin-left: 0;
        margin-top: 30px;
    }
}

.theme-header {
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #e6eced;
    /* margin-bottom: 30px; */
    position: relative;
}

.theme-header-content {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.theme-header-content article {
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ひだり */
.theme-header-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
}

.theme-header-title {
    display: flex;
    align-items: center;
    width: 100%;
}

/* みぎ画像 */
.theme-header-left img {
    width: 100%;
}

.theme-header-nav {
    width: 100%;
    height: 28px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.theme-header-navitem:first-child {
    position: absolute;
    left: -45px;
}

.theme-header-navitem:first-child a {
    border-top: 4px solid var(--dark-gray);
    border-left: 4px solid var(--dark-gray);
    transform: rotate(-45deg);
}

.theme-header-navitem:last-child {
    position: absolute;
    right: -45px;
}

.theme-header-navitem:last-child a {
    border-top: 4px solid var(--dark-gray);
    border-right: 4px solid var(--dark-gray);
    transform: rotate(45deg);
}

.theme-header-navitem a {
    display: block;
    width: 20px;
    height: 20px;
}

.theme-header-frame {
    display: block;
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
}

.theme-header-frame.top {
    top: 0;
}

/* 
.theme-header-frame.top:before {
  border-top: 5px solid #e01922;
  border-left: 5px solid #e01922;
  left: 0;
} */
/* 
.theme-header-frame.top:after,
.theme-header-frame.top:before {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
} */

/* .theme-header-frame.top:after {
  border-top: 5px solid #00b2e2;
  border-right: 5px solid #00b2e2;
  right: 0;
} */

/* .theme-header-frame.bottom {
  bottom: 2px;
}

.theme-header-frame.bottom:before {
  border-bottom: 5px solid #00b2e2;
  border-left: 5px solid #00b2e2;
  left: 0;
}

.theme-header-frame.bottom:after,
.theme-header-frame.bottom:before {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  position: absolute;
  bottom: 1px;
}

.theme-header-frame.bottom:after {
  border-bottom: 5px solid #e01922;
  border-right: 5px solid #e01922;
  right: 0;
}

.theme-header-frame.bottom {
  bottom: -1px;
} */

.theme-header-logo {
    width: 170px;
    height: 165px;
    float: left;
    margin-right: 20px;
    border: 1px solid #dae2e3;
    position: relative;
    box-sizing: border-box;
}

.theme-header-partner {
    font-weight: 700;
    margin-bottom: 15px;
}

.theme-header-logo-image {
    width: 80%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.theme-header-text {
    /* width: calc(100% - 220px - 120px - 40px); */
    /* float: left; */
    margin-right: 20px;
    padding-top: 20px;
    position: relative;
    z-index: 1;
}

.theme-header-description {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 15px;
    padding: 10px 0;
}

.theme-header-pdf-link {
    /* width: 120px; */
    display: block;
    float: left;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.theme-header-pdf-link img {
    width: 100%;
    border: 1px solid #dae2e3;
    box-sizing: border-box;
}

.theme-header-pdf-link:hover .theme-header-pdf-overlay {
    opacity: 0.4;
    transition: opacity 0.2s;
}

.theme-header-pdf-overlay {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: #242e30;
    opacity: 0;
    transition: opacity 0.2s;
}

.theme-header-pdf-icon {
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    font-size: 42px;
    transform: translate(-50%, -50%);
}

.theme-header-partner-link {
    font-weight: 700;
}

.theme-header-pdf-link-announce {
    font-size: 13px;
}

@media (max-width: 920px) {
    .theme-header-logo {
        width: 198px;
        height: 148.5px;
    }

    .theme-header-text {
        /* width: calc(100% - 220px * 0.9 - 120px * 0.9 - 40px); */
        padding-top: 12px;
    }

    /* .theme-header-pdf-link {
    width: 108px;
  } */

    .theme-header-partner {
        margin-bottom: 12px;
    }

    .theme-header-description {
        margin-bottom: 12px;
        font-size: 20px;
    }
}

@media (max-width: 820px) {
    .theme-header-logo {
        width: 176px;
        height: 132px;
    }

    .theme-header-text {
        width: calc(100% - 220px * 0.8 - 120px * 0.8 - 40px);
        padding-top: 10px;
    }

    .theme-header-pdf-link {
        /* width: 96px; */
        font-size: 13px;
    }

    .theme-header-partner {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .theme-header-description {
        margin-bottom: 10px;
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .theme-header {
        padding-top: 25px;
    }

    .theme-header-logo {
        width: 200px;
        height: 150px;
        float: none;
        margin: 0 auto 15px;
    }

    .theme-header-text {
        padding-top: 0;
        text-align: center;
        margin-bottom: 15px;
    }

    .theme-header-pdf-link,
    .theme-header-text {
        width: 100%;
        float: none;
    }

    .theme-header-description {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .theme-header-pdf-link {
        /* width: 200px; */
        margin: auto;
    }

    .theme-header-frame.top:before {
        border-left: none;
    }

    .theme-header-frame.top:after {
        border-right: none;
    }

    .theme-header-frame.bottom {
        display: none;
    }
}

.theme-section-title {
    margin: -15px -15px 45px;
    border-top: 5px solid var(--accent-pink);
    position: relative;
    padding-top: 45px;
}

.theme-orientation-title,
.theme-section-title {
    text-align: center;
    font-weight: 700;
    font-size: 22px;
}

.theme-orientation-title {
    margin: -13px 0 32px;
}

.theme-orientation-info {
    margin-top: 60px;
    /* border-top: 3px solid #e6eced; */
    /* padding-top: 60px; */
}

.theme-orientation-links {
    overflow: hidden;
    margin: 15px 0 0;
}

.theme-orientation-link-base {
    display: block;
    position: relative;
    box-sizing: border-box;
    /* float: left; */
    max-width: 600px;
    margin: 0 auto;
}

.theme-orientation-link-base img {
    width: 100%;
    vertical-align: bottom;
    border: 2px solid #e6eced;
}

/* .theme-orientation-link-base+.theme-orientation-link-base {
  margin-left: 30px;
} */

.theme-orientation-link {
    display: block;
}

.theme-orientation-subtitle {
    border-left: 3px solid #00b2e2;
    padding: 0 0 0 8px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 18px;
}

.orien-link-pdf {
    max-height: 500px;
}

/* .orien-link-movie {
  width: calc((100% - 15px * 2) * 0.572);
} */

.theme-orientation-link-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1em;
    font-size: 52px;
}

.orien-link-pdf .theme-orientation-link-icon {
    color: #00b2e2;
}

.orien-link-movie-inner {
    width: 100%;
    position: relative;
    height: 0;
    padding-top: 56%;
    overflow: hidden;
    border: 2px solid #e6eced;
}

.orien-link-movie-inner:before {
    content: "";
    display: block;
    background: transparent;
    z-index: 1;
}

.orien-link-movie-inner:before,
.orien-movie {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.theme-orientation-banner img:hover {
    opacity: 0.6;
}

.theme-orien-banner-pc {
    display: block;
}

.theme-orien-banner-sp {
    display: none;
}

.theme-form {
    margin: 0 auto;
    max-width: 528px;
    position: relative;
}

.theme-form + .theme-form {
    padding-top: 30px;
}

.theme-form + .theme-form:before {
    content: "";
    display: block;
    width: calc(100% + 200px);
    margin: 0 -100px;
    height: 2px;
    background: #e6eced;
}

.theme-input-group {
    margin: 30px 0;
    font-size: 18px;
    overflow: hidden;
}

.theme-input-label {
    width: 130px;
    display: block;
    font-weight: 700;
    float: left;
}

.theme-input {
    max-width: 396px;
    display: block;
    float: left;
}

.theme-input-field {
    width: 100%;
}

.theme-input-field[type="text"] {
    border-radius: 3px;
    padding: 5px;
    border: 1px solid #dae2e3;
    font-size: 16px;
}

.theme-input-field[type="text"]::placeholder {
    color: #ccc;
}

.theme-input-error {
    background: #e01922;
    color: #fff;
    font-size: 11px;
    margin-top: 10px;
    position: relative;
    display: inline-block;
    padding: 2px 15px;
    border-radius: 3px;
    font-weight: 700;
}

.theme-input-error:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 5px solid #e01922;
    position: absolute;
    top: -10px;
    left: 15px;
}

.theme-form-attention-base {
    padding: 30px;
    background: #fff0f1;
    margin-bottom: 30px;
    border: 1px solid #ffa7ab;
}

.theme-form-attention-title {
    font-weight: 700;
    font-size: 14px;
    margin: -5px 0 15px;
    color: #e01922;
}

.theme-form-attention-icon {
    font-size: 140%;
    display: inline-block;
    margin-right: 10px;
    position: relative;
    top: 1px;
}

.theme-form-attention-label {
    color: #e01922;
    font-size: 14px;
}

.theme-form-attention-item + .theme-form-attention-item {
    margin-top: 5px;
}

.theme-form-attention-text {
    display: inline-block;
    width: calc(100% - 50px);
    vertical-align: top;
    top: 2px;
    position: relative;
}

.theme-form-frame {
    font-size: 0;
}

.theme-form-btn {
    width: calc((100% - 15px * 2) / 2);
    margin: auto;
    display: inline-block;
    box-sizing: border-box;
}

.theme-form-btn + .theme-form-btn {
    margin-left: 30px;
}

.theme-list {
    display: flex;
    flex-wrap: wrap;
    margin: -7.5px 0 0;
    width: calc(100% + 15px);
    margin-bottom: 30px;
}

.theme-item {
    width: calc((100% - 15px * 4) / 4);
    margin: 0 15px 15px 0;
    background: #fff;
    box-sizing: border-box;
    padding: 15px 15px 80px;
    text-decoration: none;
    color: #242e30;
    position: relative;
}

.theme-item,
.theme-item-logo-image {
    border: 1px solid #e6eced;
    display: block;
}

.theme-item-logo-image {
    width: 100%;
}

.theme-item-task {
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 10px;
    line-height: 1.3;
    font-size: 14px;
}

.theme-item-spocer-name {
    font-size: 12px;
    position: absolute;
    bottom: 13px;
    line-height: 1.2;
}

.theme-pdf-list {
    display: flex;
}

.theme-pdf-item {
    display: block;
    width: calc((100% - 30px) / 3);
    background: #fff;
    border: 1px solid #e6eced;
    box-sizing: border-box;
    padding: 15px 15px 80px;
    text-decoration: none;
    color: #242e30;
    position: relative;
}

.theme-pdf-item + .theme-pdf-item {
    margin-left: 15px;
}

.theme-pdf-thumnail {
    width: 100%;
    border: 1px solid #e6eced;
    margin-bottom: 15px;
}

.theme-pdf-task {
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.theme-pdf-sponcer-name {
    font-size: 13px;
    position: absolute;
    bottom: 15px;
}

.theme-form-tab {
    width: calc(100% - 2px);
    margin: 0 auto -1px;
    display: flex;
}

.theme-form-tabitem {
    width: calc(50% - 1px);
    position: relative;
}

.theme-form-tabitem .theme-form-text {
    display: block;
    background: #6c7071;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    font-weight: 700;
}

.theme-form-tabitem.is-disabled:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #6c7071;
    opacity: 0.6;
}

.theme-form-tabitem:first-child .theme-form-text:after {
    border-left: 22px solid #6c7071;
}

.theme-form-tabitem:first-child.is-active .theme-form-text:after,
.theme-form-tabitem:first-child .theme-form-text:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    border-right: 22px solid transparent;
    position: absolute;
    right: -44px;
    z-index: 1;
    top: 0;
}

.theme-form-tabitem:first-child.is-active .theme-form-text:after {
    border-left: 22px solid var(--accent-pink);
}

.theme-form-tabitem.is-active .theme-form-text {
    background: var(--accent-pink);
}

.theme-form-tabitem.is-active .theme-form-text:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 12px solid var(--accent-pink);
    border-left: 13px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid transparent;
    position: absolute;
    bottom: -24px;
    z-index: 1;
    left: 50%;
    transform: translate(-50%);
}

.theme-orientation-banner {
    display: block;
    margin-bottom: 30px;
}

.theme-orientation-banner img {
    width: 100%;
}

.theme-form-content {
    display: none;
}

.theme-form-content.is-active {
    display: block;
}

.theme-form-content.is-active .theme-form-text {
    cursor: default;
}

.theme-input-group-list {
    margin: 10px 0 20px 120px;
    width: calc(100% - 120px);
}

.theme-input-group-caution {
    margin: 20px 0 10px;
    color: var(--accent-pink);
    font-weight: 700;
    font-size: 15px;
}

.theme-input-group-list div.theme-input-field {
    border-top: 1px solid #e6eced;
    padding: 5px 10px 10px 5px;
    position: relative;
}

.theme-input-group-list div.theme-input-field + div {
    padding: 5px;
    box-sizing: border-box;
}

.theme-input-group-list div.theme-input-field-radio {
    display: inline-block;
    width: 30px;
    margin-left: 5px;
    vertical-align: middle;
    position: absolute;
}

.theme-input-group-list p.theme-input-field-text {
    display: inline-block;
    width: calc(100% - 50px);
    margin-left: 35px;
    margin-bottom: 5px;
}

.theme-input-group-list div.theme-input-field:nth-child(2n) {
    background: #f5f9fa;
}

.theme-input-group-list div.theme-input-field.group-leader {
    background: #b7eefd;
    box-sizing: border-box;
}

.theme-show-input-group-is-leader:before {
    content: "\9023\7D61\7A93\53E3";
    display: inline-block;
    font-size: 14px;
    background: var(--accent-pink);
    padding: 0 5px;
    color: #fff;
    font-weight: 700;
    margin-right: 5px;
}

.participation_group_lavel {
    font-weight: 700;
    font-size: 15px;
}

.participation_group_input_form {
    display: block !important;
    margin-left: 35px;
    margin-bottom: 10px;
}

.participation_individual_lavel {
    word-break: break-all;
}

.participation_group_input_form_input {
    box-sizing: border-box;
}

.theme-input-group-list dl + dl {
    margin-top: 5px;
}

.js-theme-input-field-radio {
    margin-right: 5px;
}

.field_radio_leader {
    display: none;
}

.field_radio_leader + label {
    padding-left: 20px;
    position: relative;
}

.field_radio_leader + label:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #999;
    border-radius: 50%;
}

.field_radio_leader:checked + label {
    color: #009a9a;
}

.field_radio_leader:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 3px;
    width: 11px;
    height: 11px;
    background: #00b2e2;
    border-radius: 50%;
}

@media (max-width: 720px) {
    .theme-item {
        width: calc((100% - 15px * 3) / 3);
    }

    .theme-input-group-list {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .theme-pdf-item {
        width: calc((100% - 15px) / 2);
    }

    .slick-prev {
        left: -15px;
    }

    .slick-next {
        right: -15px;
    }

    .theme-input-label {
        width: 86px;
    }

    .theme-form-attention-base {
        padding: 30px 15px;
    }

    .page-main-lg .theme-pdf-list {
        flex-wrap: wrap;
    }

    .page-main-lg .theme-pdf-item {
        margin-bottom: 15px;
    }

    .page-main-lg .theme-pdf-item + .theme-pdf-item {
        margin-left: 0;
    }

    .page-main-lg .theme-pdf-item:nth-child(2n) {
        margin-left: 15px;
    }

    .theme-orientation-link-base {
        width: 100%;
    }

    .theme-orientation-link-base + .theme-orientation-link-base {
        margin-left: 0;
        margin-top: 30px;
    }

    .theme-orien-banner-pc {
        display: none;
    }

    .theme-orien-banner-sp {
        display: block;
    }
}

@media (max-width: 540px) {
    .theme-item {
        width: calc((100% - 15px * 2) / 2);
    }

    .theme-input-label {
        width: 100%;
        float: none;
        margin-bottom: 5px;
    }

    .theme-input {
        width: 100%;
        float: none;
    }

    .theme-input,
    .theme-input-field {
        box-sizing: border-box;
    }

    .theme-input-group-caution {
        margin-top: 0;
    }
}

.modal {
    display: none;
}

.modal.is-active {
    display: block;
}

.modal-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #242e30;
    opacity: 0.6;
    z-index: 2;
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #e6eced;
    width: 320px;
    padding: 15px;
    background: #fff;
    z-index: 3;
}

.modal-content:before {
    content: "";
    width: 100%;
    height: 4px;
    background: #00b2e2;
    position: absolute;
    top: -1px;
    left: 0;
}

.modal-header {
    text-align: center;
    font-size: 20px;
    margin: 25px 0;
}

.modal-btn {
    display: inline-block;
    padding: 0.4em 1em;
    font-size: 13px;
    width: 80px;
}

.modal-btn + .modal-btn {
    margin-left: 15px;
}

.modal-text {
    text-align: center;
    margin-bottom: 15px;
}

.modal-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    z-index: 4;
    border: 1px solid #e6eced;
    background: #00b2e2;
    width: 25px;
    height: 25px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    box-sizing: border-box;
    font-size: 13px;
    padding-top: 2px;
    padding-left: 1px;
    cursor: pointer;
}

.toast {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
    padding: 16px;
    z-index: 5;
    background: #00bd13;
    border-bottom: 1px solid #00a611;
}

.toast .container {
    position: relative;
    padding-left: 70px;
    box-sizing: border-box;
}

.toast.is-active {
    display: block;
}

.toast-icon {
    position: absolute;
    left: 0;
    top: 50%;
    font-size: 42px;
    line-height: 1em;
    transform: translateY(-50%);
}

.toast-text {
    font-size: 22px;
}

.toast-close-btn {
    position: absolute;
    right: 30px;
    top: 50%;
    line-height: 1;
    background: none;
    border: none;
    cursor: pointer;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
}

.toast-close-btn:before {
    transform: rotate(45deg);
}

.toast-close-btn:after,
.toast-close-btn:before {
    content: "";
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    position: absolute;
    top: 15px;
    left: 0;
}

.toast-close-btn:after {
    transform: rotate(-45deg);
}

@media (max-width: 640px) {
    .toast {
        padding: 16px;
    }

    .toast .container {
        padding-left: 45px;
    }

    .toast-icon {
        font-size: 32px;
    }

    .toast-text {
        font-size: 18px;
    }

    .toast-close-btn {
        width: 20px;
        height: 20px;
    }

    .toast-close-btn:after,
    .toast-close-btn:before {
        content: "";
        width: 20px;
        top: 10px;
    }
}

.slick-next,
.slick-prev {
    width: 30px;
    height: 30px;
}

.slick-prev {
    left: -45px;
}

.slick-next {
    right: -45px;
}

.slick-prev:before {
    border-left: 4px solid #00b2e2;
    transform: rotate(-45deg);
}

.slick-next:before,
.slick-prev:before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    border-top: 4px solid #00b2e2;
}

.slick-next:before {
    border-right: 4px solid #00b2e2;
    transform: rotate(45deg);
}

.history-group {
    overflow: hidden;
    margin: 0 15px 15px;
}

.history-base {
    overflow: hidden;
    margin: 0 auto 60px;
}

.history-award-image {
    display: block;
    margin: 0 auto 5px;
    width: 100px;
}

.history-award-text {
    font-weight: 700;
    text-align: center;
    /* margin-bottom: 15px; */
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.3;
    min-height: 55px;
    place-items: center;
    display: grid;
}

.history-award-img {
    margin-bottom: 0.7em;
    /* min-height: 250px; */
}

.history-award-img img {
    width: 100%;
    border: solid 1px #ddd;
    box-sizing: border-box;
}

.history-award-img p {
    color: #999;
    text-align: center;
    font-size: 0.75rem;
}

.history-base {
    width: calc((100% - 15px * 2) / 2);
    float: left;
}

.history-base.mode-grandprix {
    width: 100%;
}

.history-base .history-award-image {
    width: 70px;
}

.history-base + .history-base {
    margin-left: 30px;
}

.mode-grandprix .history-slide {
    width: calc((100% - 15px * 2) / 2);
    float: left;
    margin-right: 30px;
    height: 272px;
    margin-bottom: 0;
}

.history-slide {
    width: 100%;
    height: 272px;
    margin-bottom: 15px;
    border: 1px solid #e6eced;
    box-sizing: border-box;
}

.mode-grandprix .history-information {
    width: calc((100% - 15px * 2) / 2);
    float: left;
}

.history-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: -3px;
}

.history-definition-item {
    font-size: 13px;
}

.history-definition-item dt {
    font-weight: 700;
    margin-bottom: 2px;
}

.history-definition-item + .history-definition-item {
    margin-top: 10px;
}

.history-login-group {
    border: 4px solid #e6eced;
    padding: 30px 15px;
    margin: 0 15px 30px;
    text-align: center;
}

@media (max-width: 920px) {
    .header-my-menu {
        font-size: 13px;
    }

    .header-my-menu span {
        max-width: 100px;
    }
}

@media (max-width: 720px) {
    .mode-grandprix .history-slide {
        float: none;
    }

    .history-slide,
    .mode-grandprix .history-slide {
        width: 307px;
        height: 272px;
        margin: 0 auto 15px;
        display: block;
    }

    .history-base {
        width: 100%;
        float: none;
    }

    .history-base + .history-base {
        margin-left: 0;
        margin-bottom: 30px;
    }

    .history-information {
        max-width: 300px;
        margin: 0 auto;
    }

    .mode-grandprix .history-information {
        width: auto;
        max-width: 300px;
        margin: 0 auto;
        float: none;
    }

    .history-group {
        margin: 0 0 15px;
    }
}

.judge-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 15px;
}

.judge-item {
    width: calc((100% - 15px * 2) / 2);
    overflow: hidden;
    margin-bottom: 45px;
}

.judge-item:nth-child(2n) {
    margin-left: 30px;
}

.judge-image {
    display: block;
    float: left;
    margin-right: 15px;
    width: 80px;
}

.judge-detail {
    float: left;
    width: calc(100% - 80px - 15px);
}

.advice-checkbox {
    padding-left: 1.35em;
}

.judge-info {
    margin-bottom: 15px;
}

.judge-name {
    font-weight: 700;
}

.judge-shoulder {
    line-height: 1.3;
}

.judge-comment {
    font-size: 13px;
    margin-bottom: 15px;
}

.point-advise {
    font-weight: 700;
    color: #242e30;
    border-bottom: 3px solid #00b2e2;
    margin-bottom: 8px;
}

.mb-6 {
    margin-bottom: -6px;
}

.mt5 {
    margin-top: 5px;
}

.mt10 {
    margin-top: 10px;
}

.mt15 {
    margin-top: 15px;
}

.mt20 {
    margin-top: 20px;
}

@media (max-width: 820px) {
    .judge-item {
        width: 100%;
    }

    .judge-item:nth-child(2n) {
        margin-left: 0;
    }
}

@media (max-width: 540px) {
    .judge-list {
        margin: 0;
    }

    .judge-image {
        width: 70px;
        margin-right: 0;
        float: none;
        margin-bottom: 10px;
    }

    .judge-detail {
        width: 100%;
    }
}

.partner-company {
    font-size: 0;
}

.partner-company-block {
    width: calc(50% - 40px);
    display: inline-block;
    margin: 10px 20px 40px;
    box-sizing: content-box;
    vertical-align: top;
}

.partner-company-image {
    height: 60px;
    margin: 0;
}

.partner-company-image img {
    height: 60px;
    margin-left: 10px;
}

.partner-company-name {
    font-size: 16px;
    font-weight: 700;
    padding: 10px 0;
}

.partner-company-detail {
    font-size: 14px;
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
}

.partner-company-introduction {
    margin-bottom: 20px;
}

.partner-company-introduction a {
    display: block;
}

.partner-company-pr {
    font-weight: 700;
    border-bottom: 3px solid #00b2e2;
    margin-bottom: 5px;
}

.partner-company-pr img {
    width: 25px;
    vertical-align: bottom;
    margin-right: 5px;
}

.line-clamp-text-long {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.partner-more-btn {
    width: 150px;
    display: inline-block;
    padding: 5px 0;
    font-size: 14px;
    margin-bottom: 10px;
}

.partner-index-other-content-wrapper {
    text-align: right;
}

.partner-index-display-partner-company-pr-detail-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    display: none;
    color: #00a9da;
    font-size: 16px;
}

.partner-index-display-partner-company-pr-detail-content {
    margin-right: 10px;
}

@media (max-width: 540px) {
    .partner-company-block {
        width: 100%;
        margin: 10px 0;
    }
}

.faq-group {
    border: 1px solid #e6eced;
    overflow-wrap: break-word;
}

.faq-group + .faq-group {
    margin-top: 30px;
}

.faq-question {
    border-bottom: 1px solid #e6eced;
    border-left: 4px solid #e01922;
}

.faq-answer,
.faq-question {
    padding: 8px 15px 8px 45px;
    position: relative;
}

.faq-answer {
    border-left: 4px solid #00b2e2;
}

.faq-question-icon {
    color: #e01922;
}

.faq-answer-icon,
.faq-question-icon {
    position: absolute;
    top: 7px;
    left: 15px;
    font-size: 140%;
    font-weight: 700;
}

.faq-answer-icon {
    color: #00b2e2;
}

.news-list {
    display: flex;
    flex-wrap: wrap;
    margin: -7.5px;
    width: calc(100% + 15px);
    margin-bottom: 30px;
}

.news-item {
    width: calc((100% - 15px * 4) / 4);
    margin: 0 9px 15px 6px;
    background: #fff;
    box-sizing: border-box;
    padding: 15px 15px 30px;
    text-decoration: none;
    color: #242e30;
}

.news-item,
.news-item-image-base {
    border: 1px solid #e6eced;
    display: block;
    position: relative;
}

.news-item-image-base {
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    margin-bottom: 18px;
    overflow: hidden;
}

.news-item-image {
    display: block;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.news-item-title {
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-item-date {
    font-size: 13px;
    position: absolute;
    bottom: 15px;
}

@media (max-width: 720px) {
    .news-item {
        width: calc((100% - 15px * 2) / 2);
    }
}

.top-news-list {
    display: flex;
    margin-bottom: 15px;
}

.top-news-item {
    width: calc((100% - 15px * 3) / 4);
    border: 1px solid #e6eced;
}

.top-news-item,
.top-news-item > a {
    box-sizing: border-box;
    display: block;
}

.top-news-item > a {
    background: #fff;
    padding: 15px 15px 30px;
    text-decoration: none;
    color: #333;
    position: relative;
}

.top-news-item + .top-news-item {
    margin-left: 15px;
}

.top-news-item-thumbnail {
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 52.5%;
    overflow: hidden;
    border: 1px solid #e6eced;
    margin-bottom: 15px;
}

.top-news-item-thumbnail > img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top-news-item-title {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    font-family: Verdana;
}

.top-news-item-date {
    font-size: 13px;
    position: absolute;
    bottom: 15px;
    left: 15px;
}

@media (max-width: 720px) {
    .top-news-list {
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .top-news-item {
        width: calc((100% - 15px) / 2);
    }

    .top-news-item + .top-news-item {
        margin-left: 0;
    }

    .top-news-item:first-child,
    .top-news-item:nth-child(2) {
        margin-bottom: 15px;
    }

    .top-news-item:nth-child(2n) {
        margin-left: 15px;
    }
}

.entry-done-image {
    width: 100px;
    position: relative;
    left: 7px;
}

.entry-done-group {
    text-align: center;
    margin-bottom: 30px;
}

.entry-done-group .btn + .btn {
    margin-left: 30px;
}

.entry-done-group .btn {
    width: 190px;
    display: inline-block;
    font-size: 14px;
    padding: 0.7em;
}

@media (max-width: 540px) {
    .entry-done-group {
        text-align: center;
        margin-bottom: 30px;
    }

    .entry-done-group .btn + .btn {
        margin-left: auto;
    }

    .entry-done-group .btn {
        display: block;
        margin: 0 auto 30px;
    }
}

.agreement-list > li {
    text-indent: -20px;
}

.agreement-list-number {
    list-style: decimal inside;
    font-weight: 700;
    margin: 0 20px;
}

.agreement-list-number > li {
    margin-bottom: 10px;
}

.agreement-list-black {
    list-style: disc outside;
    margin: 10px 0 10px 2.5rem;
    font-weight: 400;
}

.agreement-order-list-number > li {
    margin: 10px 0 10px 0;
}

.agreement-list-white {
    list-style: circle outside;
    margin: 5px 0 10px 1rem;
    font-weight: 400;
}

.agreement-list-black > li,
.agreement-list-white > li {
    margin-bottom: 5px;
}

.agreement-mail-setting {
    margin: 50px 0 10px;
}

.agreement-mail-title {
    font-size: 18px;
    font-weight: 700;
}

.agreement-btn {
    margin: 20px 0;
}

@media (max-width: 920px) {
    .agreement-list-number {
        margin: 0;
    }
}

@media (min-width: 640px) {
    .top-section-2col {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .top-recommend-base {
        width: 50%;
        padding-bottom: 20px;
    }
}

.footer {
    background: var(--dark-gray);
    padding: 30px 0 77px;
    color: #e6eced;
}

.footer-nav {
    text-align: center;
    margin-bottom: 15px;
}

.footer-nav-item {
    display: inline-block;
    font-size: 13px;
}

.footer-nav-item + .footer-nav-item {
    margin-left: 30px;
}

.footer-nav-item > a {
    color: #e6eced;
    text-decoration: none;
}

.footer-nav-item > a:hover {
    color: #fff;
}

.footer-copywrite {
    font-size: 13px;
    color: #dae2e3;
    text-align: center;
}

/*# sourceMappingURL=main.min.css.map*/

/* ここからiba ----------------------------*/
/* ======================================
   section theme
   ====================================== */
.theme-character {
    display: flex;
    justify-content: space-evenly;
    gap: 1em;
}

.character {
    flex: 1 1 0;
    min-width: 260px;
    max-width: 350px;
    background: #fff;
    border-radius: 10px;
    padding: 30px 50px 20px;
    text-align: center;
    box-shadow: 0 3px 10px 2px rgba(0, 0, 0, 0.1);

    opacity: 0;
    filter: brightness(0.3) blur(10px);
    transform: translateY(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* 登場アニメーション（フォーカス） */
.character.active {
    animation: softIn 0.8s ease-out forwards;
}

@keyframes softIn {
    0% {
        opacity: 0;
        filter: blur(12px);
    }

    40% {
        opacity: 1;
        filter: blur(3px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
    }
}

.character:hover {
    transform: translateY(-10px);
    box-shadow: 0px 5px 10px -1px rgba(0, 0, 0, 0.25);
}

.character img {
    transition: transform 0.3s ease;
}

.character:hover img {
    transform: translateY(-4px);
}

.theme01 img {
    max-width: 279px;
}

.theme02 img {
    max-width: 200px;
    padding: 7px 0;
}

.character p {
    margin-top: 20px;
    padding: 20px 5px;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
}

.character.theme01 p {
    background-color: var(--theme01-color);
}

.character.theme02 p {
    background-color: var(--theme02-color);
}

.character p a.theme-btn {
    display: block;
    max-width: 300px;
    padding: 5px;
    margin: 1em auto 0;
    border: solid 2px #fff;
    border-radius: 10px;
    color: #fff;
    letter-spacing: 4px;
    position: relative;
    text-decoration: none;
}

.character p a.theme-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

@media screen and (max-width: 820px) {
    .character {
        padding: 30px 0 20px;
    }
}

@media screen and (max-width: 720px) {
    .theme-character {
        flex-wrap: wrap;
    }

    .character {
        padding: 30px 20px 20px;
    }
}

@media screen and (max-width: 425px) {
    .character {
        min-width: 250px;
    }

    .theme01 img,
    .theme02 img {
        width: 90%;
    }
}

/* ======================================
   section about
   ====================================== */

#about {
    padding-top: 7px;
}

.about-ipbusiness-p {
    text-align: center;
}

.about-ipbusiness {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 100px;
    max-width: 660px;
}

@media screen and (max-width: 640px) {
    .about-ipbusiness {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.about-ipbusiness ul {
    width: 320px;
    text-align: center;
}

.about-ipbusiness li {
    padding-top: 1em;
}

.about-ipbusiness li:nth-of-type(1) {
    height: 247px;
}

.about-ipbusiness li:nth-of-type(3) {
    font-size: 13px;
}

.about-ipbusiness li:nth-of-type(4) a {
    color: #000;
    text-decoration: underline;
    font-weight: bold;
}

.about-ipbusiness img {
    width: 90%;
    filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.2));
    padding: 2em 0;
}

.about-bnr-pc p img,
.about-bnr-sp p img {
    width: 100%;
    box-shadow: 0px 0px 15px -5px #777777;
}

.about-bnr-pc {
    display: flex;
    flex-flow: column;
    gap: 2em;
}

.about-bnr-sp {
    display: none;
}

@media (max-width: 620px) {
    /* SPで出し分け */
    .about-bnr-pc {
        display: none;
    }

    .about-bnr-sp {
        display: flex;
        flex-flow: column;
        gap: 2em;
    }
}

/* ======================================
   section prize
   ====================================== */

.prize-image {
    width: 400px;
    margin: 0 auto;
}

.prize-image img {
    width: 100%;
    margin-bottom: 1em;
}

@media screen and (max-width: 425px) {
    .prize-image {
        width: 90%;
    }
}

/* ======================================
   section guideline
   ====================================== */

.guideline-detail-dl {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.guideline-detail-dl dt {
    font-size: 15px;
    font-weight: bold;
    color: var(--dark-gray);
    margin: 35px auto 8px;
}

.guideline-detail-dl dd {
    font-size: 16px;
    font-weight: bold;
}

/* 作品制作上の注意 */
.guidelines-production-notes {
    margin: 0 auto;
    max-width: 500px;
    padding: 30px 0;
}

.guidelines-production-notes p {
    width: 250px;
    margin: 0 auto 30px;
}

.guidelines-production-notes p img {
    width: 100%;
}

.guidelines-production-notes ol {
    list-style-type: decimal;
    list-style-position: outside;
    margin-left: 1.5em;
    font-size: 14px;
    line-height: 2;
}

/* 作品応募の注意 */
.guidelines-application-notes {
    list-style-type: disc;
    list-style-position: inside;
    font-size: 14px;
}

.guidelines-application-notes li {
    padding-top: 5px;
}

/* 応募規約 */

.guidelines-teams h4 {
    font-size: 18px;
    border-bottom: 1px solid #000;
    display: inline-block;
    margin: 0.5em 0;
}

.guidelines-teams p {
    text-align: center;
    color: #e01922;
    font-size: 16px;
    font-weight: bold;
}

.guidelines-teams dl {
    font-size: 14px;
    max-height: 350px;
    overflow-y: auto;
    padding: 1.5em;
    border: 1px solid #ddd;
    background: #fff;
    margin: 1em 0 3em;
    scrollbar-gutter: stable;
}

.guidelines-teams dl dt {
    font-weight: bold;
    padding-top: 10px;
}

.guidelines-schedule p {
    font-size: 12px;
    text-align: left;
    width: 500px;
    margin: 2em auto;
}

/* 応募方法*/

ul.guide-line-howto {
    max-width: 500px;
    margin: 0 auto;
}

.guide-line-howto li {
    border: solid 1px var(--dark-gray);
    border-radius: 10px;
    padding: 2em;
    text-align: center;
}

.guide-line-howto li div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    margin: 1.5em;
}

.guide-line-howto li {
    position: relative;
    border: solid 1px var(--dark-gray);
    border-radius: 10px;
    padding: 2em;
    text-align: center;
    margin-bottom: 3em;
    /* --- */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.guide-line-howto li.active {
    opacity: 1;
    transform: translateY(0);
}

.guide-line-howto li::after {
    content: "\f063";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.guide-line-howto li:last-child::after {
    display: none;
}

.guide-line-howto li div h4 {
    font-weight: bold;
}

.guide-line-howto .page-method-icon {
    width: 100px;
}

@media screen and (max-width: 425px) {
    .guide-line-howto li div {
        margin: 0 auto 1.5em;
    }
}

/* ======================================
   section judge
   ====================================== */

#judge article {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.judge-panel {
    width: 430px;
    margin-bottom: 3em;
}

.judge-panel div {
    display: flex;
    gap: 1em;
}

.judge-panel img {
    width: 100px;
}

.judge-panel ul li:first-child {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
}

.judge-panel ul li:last-child {
    letter-spacing: 1px;
    font-size: 14px;
}

.judge-panel dl {
    font-size: 13px;
}

.judge-panel dl dt {
    font-weight: bold;
    margin-top: 1.5em;
}

.judge-panel dl dd:first-of-type {
    height: 230px;
}

.judge-panel .page-method-icon {
    width: 100px;
}

@media screen and (max-width: 820px) {
    #judge article {
        justify-content: center;
    }
}

/*-------------------------------
------------- section books----*/

#books .top-recommend-base a {
    color: #000;
}

#books {
    text-align: center;
}

#books .top-recommend-base {
    margin-bottom: 0;
}

#books .top-section-2col {
    max-width: 660px;
    margin: 30px auto;
}

#books .top-section-2col .u-mgt-md {
    margin-bottom: 0;
}

@media screen and (max-width: 640px) {
    #books .top-recommend-base {
        margin-bottom: 1em;
    }
}

/* ======================================
   section faq
   ====================================== */

#faq {
    padding-top: 0;
}

#faq h2.top-title {
    margin-top: 2px;
}

section.qa-accordion {
    border-radius: 6px;
    margin: 20px auto;
}

.accordion-label {
    display: block;
    width: 100%;
    text-align: left;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 8px 20px;
    background: var(--dark-gray);
    border-radius: 3px;
    color: white;
    border: none;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.accordion-label:hover,
.accordion-label:focus {
    background: var(--dark-gray);
    outline: none;
}

.accordion-label::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    float: right;
    transition: transform 0.3s ease;
    font-size: 1.5em;
}

.accordion-label[aria-expanded="false"]::after {
    content: "\f067";
    /* plus icon */
}

.accordion-label[aria-expanded="true"]::after {
    content: "\f068";
    /* minus icon */
}

.accordion-content {
    padding: 16px 20px;
    background: white;
    border-radius: 0 0 6px 6px;
    text-align: left;
}

.qa-list dt,
.qa-list dd {
    display: flex;
    align-items: baseline;
    gap: 0.5em;
}

.qa-list dt::before,
.qa-list dd::before {
    flex-shrink: 0;
    font-weight: bold;
    margin-top: 0.1em;
    transform: translateY(0.1em);
}

.qa-list dt {
    font-weight: bold;
    margin-top: 16px;
    border-top: 1px #575757 solid;
    padding-top: 10px;
}

.qa-list dt:first-child {
    border-top: 0;
}

.qa-list dt::before {
    content: "Q";
    color: var(--accent-pink);
    font-weight: bold;
    margin-right: 0.5em;
    font-size: 20px;
}

.qa-list dd {
    margin-top: 6px;
    color: black;
    line-height: 1.5;
    padding-left: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.qa-list dd::before {
    content: "A";
    color: #000;
    font-weight: bold;
    margin-right: 0.5em;
    font-size: 20px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.4s ease;
    padding: 0 20px;
}

/* 開くとき */
.accordion-content.open {
    max-height: 1000px;
    padding: 16px 20px;
}

@media screen and (max-width: 820px) {
.accordion-content.open {
        max-height: 1600px ;
    }
}

@media screen and (max-width: 640px) {
.accordion-content.open {
        max-height: 2400px;
    }
}

.qa-list a {
    display: inline;
}

/* ======================================
   section info
   ====================================== */

#info {
    padding-top: 0;
    padding-bottom: 172px;
}

#info .top-title {
    margin-top: 16px;
}

#info p {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

/* ======================================
   追従ボタン
   ====================================== */

.follow-buttons {
    position: fixed;
    bottom: -80px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 120px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    z-index: 1000;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out,
        transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), bottom 0.6s ease-out;
}

.follow-buttons.show {
    bottom: 0;
    opacity: 1;
    transform: translateY(0);
}

.follow-buttons a {
    background-color: #fff;
    font-weight: bold;
    text-align: center;
    border-radius: 8px;
    padding: 8px 48px 8px 32px;
    transition: transform 0.2s ease;
    letter-spacing: 1px;
    text-decoration: none;
    opacity: 0.8;
}

.follow-buttons a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 6px;
    height: 6px;
    transform: translateY(-50%) translateX(-4px) rotate(45deg);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.follow-buttons a:hover {
    transform: translateY(-2px);
    opacity: 1;
    filter: brightness(1.1);
}

.follow-buttons a:hover::after {
    transform: translateY(-50%) translateX(3px) rotate(45deg);
    opacity: 1;
}

.btn-theme01 {
    color: var(--theme01-color);
    border: solid 1px var(--theme01-color);
}

.btn-theme02 {
    color: var(--theme02-color);
    border: solid 1px var(--theme02-color);
}

.btn-theme01 {
    color: var(--theme01-color);
    border: solid 1px var(--theme01-color);
}

.btn-theme02 {
    color: var(--theme02-color);
    border: solid 1px var(--theme02-color);
}

.btn-theme01:hover {
    color: #fff;
    background-color: var(--theme01-color);
}

.btn-theme02:hover {
    color: #fff;
    background-color: var(--theme02-color);
}

@media screen and (max-width: 820px) {
    .follow-buttons {
        gap: 20px;
    }
}

@media screen and (min-width: 426px) {
    .brsp {
        display: none;
    }
}

@media screen and (max-width: 425px) {
    .follow-buttons {
        gap: 2%;
    }

    .follow-buttons a {
        padding: 5px;
        font-size: 13px;
        min-width: 140px;
    }

    .brsp {
        display: block;
    }
}

/* ======================================
   トップに戻る
   ====================================== */
.to-top {
    position: fixed;
    right: 20px;
    bottom: 70px;
    width: 20px;
    height: 150px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 100;
}

/* ▼ 上の「く」の矢印部分 */
.to-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 14px;
    height: 14px;
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    transform: translateX(-50%) rotate(45deg);
}

/* ▼ 下に伸びる長い縦線 */
.to-top::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 50%;
    width: 1px;
    height: 120px;
    background-color: #fff;
    transform: translateX(-50%);
}

/* ▼ 文字（縦書き風に rotate） */
.to-top span {
    position: absolute;
    left: -10px;
    top: 40px;
    font-size: 10px;
    letter-spacing: 4px;
    font-weight: 500;
    color: #fff;
    transform: rotate(90deg);
    transform-origin: left top;
    opacity: 0.7;
}

.to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

/* ======================================
   アンケート/応募者登録のページ
   ====================================== */

.section-questionnaire {
    max-width: 660px;
    margin: 0 auto;
}

.buttons-entry {
    display: flex;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 50px 0;
}

.buttons-entry a {
    color: #fff;
    font-weight: bold;
    text-align: center;
    border-radius: 8px;
    padding: 8px 48px 8px 32px;
    transition: transform 0.2s ease;
    letter-spacing: 1px;
    text-decoration: none;
}

.follow-buttons a:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.buttons-entry .btn-theme01 {
    background-color: var(--theme01-color);
}

.buttons-entry .btn-theme02 {
    background-color: var(--theme02-color);
}

@media screen and (max-width: 640px) {
    .buttons-entry {
        flex-wrap: wrap;
    }
}

/* ======================================
   応募ページ
   ====================================== */

/* テーマの部分 */
.theme-box {
    display: flex;
    justify-content: center;
}

.theme-box div {
    width: 400px;
}

/* 右側 */
.theme-box div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.theme-box-logo {
    display: flex;
    align-items: center;
    justify-content: left;
    width: 350px;
}

.theme-box .theme-box-logo img {
    width: 120px;
    display: block;
}

.theme-box .theme-box-logo span {
    font-size: 18px;
    font-weight: bold;
    padding-left: 30px;
}

.theme-box-idea {
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 1.5px;
    padding: 20px 0;
}

.theme-box-idea span {
    font-size: 22px;
}

/* 左側 */
.theme-box div:last-child img {
    width: 100%;
}

.page-main-lg .top-title {
    margin: 25px 0;
}

/* ---------- */
/* オリエン部分 */

.sec-orientation p {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}

.theme-orientation-links .point-title {
    margin: 30px 0 20px !important;
}

/* ======================================
   news hintページ
   ====================================== */
.hint-text {
    text-align: center;
}

.hint-contents {
    margin: 0 auto 30px;
}

.hint-contents img {
    width: 100%;
    margin-bottom: 1em;
}

.hint-contents .hint-btn {
    border-radius: 10px;
    border: solid 2px var(--accent-pink);
    background-color: var(--accent-pink);
    font-weight: bold;
    margin: 8px auto;
    width: 130px;
    text-align: center;
}

.hint-contents .hint-btn a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.page-header {
    display: none;
}

/* ======================================
   その他あしらい
   ====================================== */

/* ---------------------fadein（サイト全体に使用） */

.fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease, transform 0.6s ease;
}

.fadein.show {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------blur-in（FVに使用） */

.blur-in {
    opacity: 0;
    filter: blur(12px);
    transform: scale(1.03);
    transition: opacity 0.8s ease, filter 1s ease, transform 0.8s ease;
}

.blur-in.show {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

/* ---------------------イントロ */

.intro-overlay {
    visibility: visible;
    opacity: 0;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* コピー全体の“束”を中央に */
.intro-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    opacity: 1;
}

.line {
    opacity: 0;
    filter: blur(30px);
    transform: translateY(10px);
    width: 600px;
    max-width: 90vw;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* それぞれに別の画像をセット（PNGでOK） */
.line-1 {
    background-image: url("../../images/kv_line1.png");
    padding-top: 12.545%;
}

.line-2 {
    background-image: url("../../images/kv_line2.png");
    padding-top: 20.363%;
}

.line-3 {
    background-image: url("../../images/kv_line3.png");
    padding-top: 26.727%;
}
