@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* 大枠 */
html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch !important;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 14px;
  line-height: 1.9;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: "Noto Sans JP", sans-serif;
  color: #4D4D4D;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
  body.wrap {
    overflow: visible;
  }
}
body.wrap {
  overflow: hidden;
}
body #wrapper {
  height: auto;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

#screen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 200;
}

@media print {
  html,
  html body {
    overflow: visible !important;
  }
}
/* アクセシビリティ */
img {
  image-rendering: auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-box-shadow: #000 0 0 0;
          box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}

img,
x:-moz-any-link,
x:default {
  box-shadow: #000 0 0 0; /* IE7対応 */
}

/* リンク */
a {
  display: inline-block;
}
a:link, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a:hover {
    color: inherit;
    opacity: 0.7;
    text-decoration: none !important;
  }
}

.container {
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

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

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

/* ▼ タイトル
--------------------------------------- */
#site_title {
  margin: 0 auto;
  overflow: hidden;
  max-width: 213px;
  width: 100%;
  padding: 10px 0 2px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  #site_title {
    max-width: 302px;
    padding: 16px 0 2px;
  }
}

/* ▼▼▼ ヘッダー
====================================================== */
header {
  width: 100%;
  height: 50px;
  background: #fff;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  overflow: visible;
}
header .header_inner {
  width: 100%;
  height: 50px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}
@media screen and (min-width: 768px) {
  header {
    background-color: #fff;
    top: auto;
    left: auto;
    overflow: hidden;
    height: 110px;
  }
  header .container {
    padding: 0 20px;
  }
  header .header_inner {
    width: 100%;
    height: auto;
    background: none;
    position: relative;
    top: auto;
    left: auto;
    z-index: 0;
  }
}

.menu {
  --menu-width:50px;
  --menu-height:50px;
  --menu-bar-color:#0099D3;
  --menu-bar-width:32px;
  --menu-bar-height:1px;
  --menu-bar-gap:10px;
  display: block;
  width: var(--menu-width);
  height: var(--menu-height);
  background: var(--menu-bg-color);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2000;
}
.menu .icon {
  display: block;
  position: absolute;
  top: 50%;
  right: calc((var(--menu-width) - var(--menu-bar-width)) / 2);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu .icon::before, .menu .icon::after {
  content: "";
  width: var(--menu-bar-width);
  height: var(--menu-bar-height);
  background: var(--menu-bar-color);
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: 0;
}
.menu .icon::before {
  top: -5px;
}
.menu .icon::after {
  bottom: -5px;
}
.menu .icon.active {
  background: transparent;
}
.menu .icon.active::before {
  -webkit-transform: rotate(-145deg);
          transform: rotate(-145deg);
  top: 0;
}
.menu .icon.active::after {
  -webkit-transform: rotate(145deg);
          transform: rotate(145deg);
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .menu {
    display: none;
  }
}

/* グローバルナビゲーション */
#gnav {
  display: block !important;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  background: url(../img/bg_spnav.webp) center/cover;
  float: none;
  width: 100%;
  height: 100vh;
  padding-top: 50px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  overflow: auto;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
#gnav.open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 768px) {
  #gnav {
    background: none;
    padding: 12px 0;
    -webkit-transition: 0s;
    transition: 0s;
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    overflow: hidden;
    height: auto;
  }
}
#gnav ul {
  display: block;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  #gnav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 50px;
    margin-top: 0;
  }
}
@media screen and (max-width: 1170px) {
  #gnav ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  #gnav ul {
    padding-left: 0px;
  }
}
#gnav ul > li {
  width: 100%;
  max-width: 100%;
  height: auto;
  text-indent: 0;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 22px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #gnav ul > li {
    width: auto;
    font-size: 15px;
    margin-bottom: 0;
  }
}
#gnav ul > li a {
  display: block;
  text-decoration: none;
  height: 50px;
  padding: 0 15px;
  color: #fff;
  line-height: 50px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  #gnav ul > li a {
    height: auto;
    border-bottom: none;
    padding: 0;
    line-height: inherit;
    color: #707070;
  }
}
#gnav ul > li a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  #gnav ul > li a:hover {
    text-decoration: none;
    opacity: 0.6;
  }
}
@media screen and (min-width: 768px) {
  #gnav .header_link_wrap {
    position: absolute;
    top: 0;
    right: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 18px;
  }
}
#gnav .header_link_wrap a.insta {
  max-width: 39px;
  width: 100%;
  margin: 0 auto 35px;
}
@media screen and (min-width: 768px) {
  #gnav .header_link_wrap a.insta {
    max-width: 43px;
  }
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
  margin: 0 auto;
  clear: both;
  overflow: hidden;
}

a.library {
  display: block;
  width: 262px;
  height: 58px;
  line-height: 58px;
  color: #fff;
  background-color: #0099D3;
  border-radius: 8px;
  -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.16);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin: 0 auto;
  padding-right: 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  a.library {
    width: 276px;
    height: 43px;
    line-height: 43px;
    font-size: 17px;
  }
}
a.library::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 9px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 0;
  right: 14px;
  bottom: 0;
  margin: auto;
}

h2 {
  font-size: 22px;
  text-align: center;
  font-weight: 500;
  color: #0099D3;
  padding-bottom: 11px;
  position: relative;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 36px;
  }
}
h2::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: #0099D3;
  bottom: 2px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  h2::after {
    width: 20px;
  }
}

.ttl_en {
  font-size: 10px;
  text-align: center;
  color: #0099D3;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .ttl_en {
    font-size: 14px;
  }
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  p.txt {
    text-align: center;
  }
}

a.entry_btn {
  text-align: center;
  color: #0099D3;
  font-size: 18px;
  font-weight: 500;
  width: 284px;
  height: 82px;
  line-height: 72px;
  background: url(../img/bg_entry_btn.png) no-repeat center/contain;
  display: block;
  margin: 0 auto;
  position: relative;
}
a.entry_btn.gray-out {
  background-image: none !important;
  background-color: #707070;
  color: #fff;
  border-radius: 50px;
  height: auto !important;
  padding: 8% 0;
  pointer-events: none;
  line-height: 1px;
}
@media screen and (min-width: 768px) {
  a.entry_btn {
    font-size: 22px;
    width: 360px;
    height: 104px;
    line-height: 94px;
  }
  a.entry_btn.gray-out {
    padding: 3% 0;
  }
}
a.entry_btn::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 9px;
  border-color: transparent transparent transparent #0099D3;
  position: absolute;
  top: 30px;
  right: 40px;
}
a.entry_btn.gray-out::after {
  border-width: 0;
}
@media screen and (min-width: 768px) {
  a.entry_btn::after {
    border-width: 10px 0 10px 12px;
    top: 37px;
    right: 50px;
  }
}

.attention_txt {
  color: #E10069;
  font-size: 12px;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .attention_txt {
    text-align: center;
  }
}

#department .container::before, #opus .container::before, #prize .container::before, #judges .container::before, #faq .container::before, #organizer .container::before {
  -webkit-animation: fuwafuwa 4s ease-in-out infinite alternate;
          animation: fuwafuwa 4s ease-in-out infinite alternate;
  content: "";
  position: absolute;
}

#department .container::before {
  background: url(../img/bg_circle01.webp) no-repeat center/contain;
  width: 101px;
  height: 101px;
  top: 10px;
  right: -25px;
}
@media screen and (min-width: 768px) {
  #department .container::before {
    width: 168px;
    height: 168px;
    top: -30px;
    right: 200px;
  }
}

#opus .container::before {
  -webkit-animation: fuwafuwa 3s ease-in-out infinite alternate;
          animation: fuwafuwa 3s ease-in-out infinite alternate;
  background: url(../img/bg_circle02.webp) no-repeat center/contain;
  width: 140px;
  height: 140px;
  top: 100px;
  left: -80px;
}
@media screen and (min-width: 768px) {
  #opus .container::before {
    width: 200px;
    height: 200px;
    top: 100px;
    left: 0px;
  }
}

#prize .container::before {
  background: url(../img/bg_circle03.webp) no-repeat center/contain;
  width: 119px;
  height: 128px;
  top: -80px;
  right: -50px;
}
@media screen and (min-width: 768px) {
  #prize .container::before {
    width: 199px;
    height: 214px;
    top: -50px;
    right: 0px;
  }
}

#judges .container::before {
  -webkit-animation: fuwafuwa 3s ease-in-out infinite alternate;
          animation: fuwafuwa 3s ease-in-out infinite alternate;
  background: url(../img/bg_circle04.webp) no-repeat center/contain;
  width: 111px;
  height: 111px;
  top: 0px;
  right: -30px;
}
@media screen and (min-width: 768px) {
  #judges .container::before {
    width: 158px;
    height: 158px;
    top: -10px;
    right: -120px;
  }
}

#faq .container::before {
  -webkit-animation: fuwafuwa 3s ease-in-out infinite alternate;
          animation: fuwafuwa 3s ease-in-out infinite alternate;
  background: url(../img/bg_circle05.webp) no-repeat center/contain;
  width: 120px;
  height: 120px;
  top: 10px;
  left: -50px;
}
@media screen and (min-width: 768px) {
  #faq .container::before {
    width: 175px;
    height: 175px;
    top: 10px;
    left: 30px;
  }
}

#organizer .container::before {
  background: url(../img/bg_circle06.webp) no-repeat center/contain;
  width: 101px;
  height: 134px;
  top: -30px;
  right: -30px;
}
@media screen and (min-width: 768px) {
  #organizer .container::before {
    width: 177px;
    height: 234px;
    top: -80px;
    right: -80px;
  }
}

@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-7deg);
            transform: translate(0, 0) rotate(-7deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(0, -7px) rotate(0deg);
            transform: translate(0, -7px) rotate(0deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(7deg);
            transform: translate(0, 0) rotate(7deg);
    opacity: 1;
  }
}

@keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-7deg);
            transform: translate(0, 0) rotate(-7deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(0, -7px) rotate(0deg);
            transform: translate(0, -7px) rotate(0deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(7deg);
            transform: translate(0, 0) rotate(7deg);
    opacity: 1;
  }
}
/* ▼▼▼ コンテンツ
====================================================== */
#mainVisual {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
}
#mainVisual img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #mainVisual {
    margin-top: 110px;
    margin-bottom: 60px;
  }
}

#period {
  padding-bottom: 35px;
}
@media screen and (min-width: 768px) {
  #period {
    padding-bottom: 60px;
  }
}
#period .period_data {
  color: #E10069;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  #period .period_data {
    font-size: 38px;
    line-height: 1.2;
  }
}
#period .period_data span {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  #period .period_data span {
    font-size: 22px;
  }
}
@media screen and (min-width: 768px) {
  #period .period_data.arrow {
    padding-bottom: 20px;
  }
}
#period .period_data.arrow::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 9px;
  border-color: transparent transparent transparent #E10069;
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0px;
  margin: auto;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  #period .period_data.arrow::after {
    bottom: 4px;
  }
}

#theme {
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  #theme {
    padding-bottom: 60px;
  }
}
#theme .theme_txt {
  margin: 0 auto 12px;
  max-width: 223px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #theme .theme_txt {
    max-width: 278px;
  }
}

#department {
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  #department {
    padding-bottom: 85px;
  }
}
#department .depart_ttl {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  #department .depart_ttl {
    font-size: 22px;
    margin-bottom: 0;
  }
}
#department .txt {
  margin-bottom: 45px;
}

#opus {
  padding-bottom: 80px;
}
#opus h3 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  #opus h3 {
    font-size: 18px;
  }
}
#opus h3::before, #opus h3::after {
  content: "";
  background: url(../img/icon_wing.png) no-repeat center/contain;
  width: 20px;
  height: 44px;
}
#opus h3::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (min-width: 768px) {
  #opus .opus_container {
    max-width: 1040px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
}
#opus .opus_container .opus_wrap {
  position: relative;
  padding-top: 136%;
  /*loading show*/
}
@media screen and (min-width: 768px) {
  #opus .opus_container .opus_wrap {
    padding-top: 560px;
  }
}
#opus .opus_container .opus_wrap .opus_slide {
  position: absolute;
  width: 100%;
  height: 100%;
}
#opus .opus_container .opus_wrap .opus_slide01 {
  max-width: 81.3vw;
  max-height: 61.3vw;
  top: 0;
  right: 20px;
}
@media screen and (min-width: 768px) {
  #opus .opus_container .opus_wrap .opus_slide01 {
    max-width: 440px;
    max-height: 331px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 110;
  }
}
#opus .opus_container .opus_wrap .opus_slide02 {
  max-width: 34.1vw;
  max-height: 47.2vw;
  bottom: 16%;
  left: 0px;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  #opus .opus_container .opus_wrap .opus_slide02 {
    max-width: 220px;
    max-height: 304px;
    bottom: 50px;
    left: 80px;
  }
}
#opus .opus_container .opus_wrap .opus_slide03 {
  max-width: 38vw;
  max-height: 28vw;
  bottom: 30px;
  left: 31%;
}
@media screen and (min-width: 768px) {
  #opus .opus_container .opus_wrap .opus_slide03 {
    max-width: 255px;
    max-height: 189px;
    bottom: 20px;
    left: 50%;
  }
}
#opus .opus_container .opus_wrap .opus_slide04 {
  max-width: 25vw;
  max-height: 37.2vw;
  bottom: 30%;
  right: 13%;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  #opus .opus_container .opus_wrap .opus_slide04 {
    max-width: 133px;
    max-height: 200px;
    bottom: 50%;
    right: 10%;
  }
}
#opus .opus_container .opus_wrap .opus_slide05 {
  max-width: 25vw;
  max-height: 37vw;
  bottom: 7%;
  right: 0px;
}
@media screen and (min-width: 768px) {
  #opus .opus_container .opus_wrap .opus_slide05 {
    max-width: 133px;
    max-height: 200px;
    bottom: 26%;
    right: 0px;
  }
}
#opus .opus_container .opus_wrap .opus {
  z-index: 10;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#opus .opus_container .opus_wrap .opus.pre {
  z-index: 20;
}
#opus .opus_container .opus_wrap .opus.show {
  opacity: 1;
}
#opus .opus_container .opus_wrap .opus .ph_area {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
#opus .opus_container .opus_wrap .opus .ph_out {
  position: relative;
  height: 100%;
}
#opus .opus_container .opus_wrap .opus .ph {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center center;
  background-size: cover;
}
#opus .opus_container .opus_wrap .opus_in {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#opus .opus_container .opus_wrap .opus .ph_area {
  width: 100%;
  height: 100%;
}
#opus .opus_container .opus_wrap .opus .ph_out {
  height: 100%;
}
#opus .opus_container .opus_wrap .opus .ph {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
#opus .opus_container .opus_wrap .opus_slide .opus_in .opus .ph_area {
  width: 0%;
  -webkit-transition: 1.2s cubic-bezier(0.65, 0, 0.35, 1);
  transition: 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}
#opus .opus_container .opus_wrap .opus_slide .opus_in .opus.show .ph_area {
  width: 100%;
}
#opus .opus_note {
  color: #E10069;
  font-size: 12px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  #opus .opus_note {
    text-align: center;
  }
}

#prize {
  padding-bottom: 95px;
}
#prize .prize_txt {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}
#prize .prize_txt span {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  #prize .prize_txt span {
    font-size: 14px;
  }
}
#prize .prize_wrap {
  margin-bottom: 22px;
}
@media screen and (min-width: 768px) {
  #prize .prize_wrap {
    max-width: 388px;
    margin: 0 auto 25px;
  }
}
#prize .prize_wrap div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#prize .prize_wrap div img {
  width: 100%;
}
#prize .prize_wrap .prize01 {
  margin-bottom: 20px;
}
#prize .prize_wrap .prize01 img {
  max-width: 243px;
}
#prize .prize_wrap .prize02 {
  gap: 9px;
  margin-bottom: 20px;
}
#prize .prize_wrap .prize02 img {
  max-width: 33%;
}
#prize .prize_wrap .prize03 img {
  max-width: 50%;
}
#prize .prize_note {
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 65px;
}
@media screen and (min-width: 768px) {
  #prize .prize_note {
    margin: 0 auto 50px;
  }
}
#prize .message {
  padding: 90px 20px;
  background: url(../img/bg_blue.webp) no-repeat center/cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  #prize .message {
    max-width: 762px;
    margin: 0 auto;
    padding: 60px 90px;
  }
}
#prize .message::before, #prize .message::after {
  content: "";
  position: absolute;
}
#prize .message::before {
  background: url(../img/icon_hana01.webp) no-repeat center/contain;
  width: 60px;
  height: 72px;
  bottom: 25px;
  left: -15px;
}
@media screen and (min-width: 768px) {
  #prize .message::before {
    bottom: 5px;
    left: 15px;
  }
}
#prize .message::after {
  background: url(../img/icon_hana02.webp) no-repeat center/contain;
  width: 59px;
  height: 64px;
  top: 15px;
  right: 15px;
}
@media screen and (min-width: 768px) {
  #prize .message::after {
    top: -5px;
    right: 0;
  }
}
#prize .message p {
  font-size: 12px;
  font-weight: 500;
  color: #0099D3;
}

#description {
  background-color: rgba(0, 153, 211, 0.1);
  padding: 60px 0 50px;
}
#description .des_wrap {
  padding: 30px 15px 60px 30px;
  background-color: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.08);
  height: 506px;
  position: relative;
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  #description .des_wrap {
    padding: 35px 20px 65px 40px;
    margin: 0 auto 75px;
  }
}
#description .des_wrap .des_inner {
  height: 420px;
  overflow-y: scroll;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  #description .des_wrap .des_inner {
    padding-right: 20px;
  }
}
#description .des_wrap .des_inner dl div {
  padding: 20px 0;
  border-bottom: 1.5px dashed #000;
}
#description .des_wrap .des_inner dl div dt {
  font-size: 16px;
  font-weight: 500;
  color: #0099D3;
}
#description .des_wrap .des_inner dl div dd {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  #description .des_wrap .des_inner dl div dd {
    font-size: 14px;
  }
}
#description .des_wrap .des_inner dl div dd span {
  display: inline-block;
}
#description .des_wrap .des_inner dl div dd .bold {
  font-weight: 600;
}
#description .des_wrap .des_inner dl div dd .kome {
  font-size: 12px;
}
#description .des_wrap .des_inner dl div dd .pink {
  color: #E10069;
}
#description .des_wrap .des_inner dl div dd .ng {
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  background-color: #E10069;
  padding: 2px;
}
#description .des_wrap .des_inner dl div dd ul.ng_wrap {
  width: 100%;
  background-color: #FCE4EF;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  #description .des_wrap .des_inner dl div dd ul.ng_wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 20px;
  }
}
#description .des_wrap .des_inner dl div dd ul.ng_wrap li {
  width: calc(50% - 5px);
}
@media screen and (min-width: 768px) {
  #description .des_wrap .des_inner dl div dd ul.ng_wrap li {
    width: calc(25% - 10px);
  }
}
#description .des_wrap .des_inner dl div dd ul.ng_wrap li p {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}
#description .des_wrap .des_inner dl div dd a {
  color: #0099D3;
  text-decoration: underline;
}
#description .des_wrap .des_inner dl div:nth-child(1) {
  padding-top: 0;
}
#description .des_wrap a.library {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  #description .des_wrap a.library {
    width: 380px;
    height: 62px;
    line-height: 62px;
    font-size: 22px;
  }
  #description .des_wrap a.library::after {
    border-width: 12px 0 12px 14px;
  }
}

#judges {
  padding: 100px 0 80px;
  /*--- モーダル ---*/
}
#judges .judges_container {
  padding-left: 10px;
}
@media screen and (min-width: 768px) {
  #judges .judges_container {
    width: 100%;
    max-width: 1040px;
    padding: 0 20px;
    margin: 0 auto;
  }
}
#judges .judges_container .swiper-slide {
  padding: 0 0 85px 20px;
  position: relative;
}
#judges .judges_container .swiper-slide img {
  width: 100%;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
#judges .judges_container .swiper-slide .judges_wrap {
  background: url(../img/bg_judge.png) center/cover;
  border-radius: 0 38px 0 0;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #fff;
  padding: 12px 20px;
  width: 222px;
  height: 157px;
  position: absolute;
  bottom: 0;
  left: 0;
}
#judges .judges_container .swiper-slide .judges_wrap .name {
  font-size: 20px;
  font-weight: 500;
  position: relative;
}
#judges .judges_container .swiper-slide .judges_wrap .name::after {
  content: "";
  background: url(../img/arrow_judge.svg) no-repeat center/contain;
  width: 27px;
  height: 7px;
  position: absolute;
  bottom: 12px;
  right: 0;
}
#judges .judges_container .swiper-slide .judges_wrap .j_txt {
  font-size: 14px;
  line-height: 1.4;
}
#judges .js_modal_open {
  cursor: pointer;
}
#judges .modal {
  background-color: #0099D3;
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  overflow-y: auto;
  overscroll-behavior-y: none;
  padding-bottom: 50px;
}
#judges .modal::after {
  content: "";
  background: url(../img/bg_modal.webp) center/cover;
  width: 100%;
  height: 50vh;
  position: absolute;
  bottom: -9%;
  left: 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  #judges .modal::after {
    width: 40vw;
    height: 100vh;
  }
}
#judges .js_modal_close {
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 4;
}
#judges .modal_content {
  position: absolute;
  max-width: 1040px;
  width: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  padding: 75px 20px 10px;
  z-index: 3;
  color: #fff;
}
@media screen and (min-width: 768px) {
  #judges .modal_content {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
    max-width: 800px;
  }
  #judges .modal_content div {
    width: 100%;
  }
}
#judges .modal_content .name {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}
#judges .modal_content .txt01 {
  line-height: 1.4;
  margin-bottom: 20px;
}
#judges .modal_content .txt02 {
  font-size: 12px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #judges .modal_content .txt02 {
    font-size: 14px;
  }
}
#judges .modal_content .img {
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #judges .modal_content .img {
    max-width: 315px;
    width: 100%;
    margin-top: 10px;
  }
}
#judges .modal_content .img img {
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.16);
  width: 100%;
}

#faq {
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  #faq .faq_wrap {
    max-width: 700px;
    margin: 0 auto;
  }
}
#faq .faq_wrap .faq_block {
  padding: 20px 0;
  border-bottom: 1px dashed #000;
  line-height: 1.4;
  font-weight: 500;
  position: relative;
}
#faq .faq_wrap .faq_block::before {
  position: absolute;
  content: "";
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(0, 153, 211, 0.2);
  top: 16px;
  left: 0;
}
#faq .faq_wrap .faq_block::after {
  position: absolute;
  content: "Q";
  color: #0099D3;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  top: 24px;
  left: 13px;
}
#faq .faq_wrap .faq_block dt {
  padding: 0 40px 0 55px;
  position: relative;
  cursor: pointer;
}
#faq .faq_wrap .faq_block dt::before, #faq .faq_wrap .faq_block dt::after {
  content: "";
  width: 20px;
  height: 1px;
  background: #0099D3;
  position: absolute;
  top: calc(50% - 1px);
  right: 0px;
}
#faq .faq_wrap .faq_block dt.open::before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
#faq .faq_wrap .faq_block dd {
  display: none;
  padding: 0 40px 0 55px;
  margin-top: 25px;
  position: relative;
}
#faq .faq_wrap .faq_block dd::before {
  position: absolute;
  content: "";
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #0099D3;
  top: 0;
  left: 0;
}
#faq .faq_wrap .faq_block dd::after {
  position: absolute;
  content: "A";
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  top: 9px;
  left: 13px;
}
#faq .faq_wrap .faq_block dd .kome {
  font-size: 12px;
}

#organizer {
  padding-bottom: 78px;
}
@media screen and (min-width: 768px) {
  #organizer .organizer_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    margin-top: 25px;
  }
}
#organizer .organizer_wrap .organizer_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  #organizer .organizer_wrap .organizer_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 7px;
  }
}
#organizer .organizer_wrap .organizer_box p {
  font-weight: 500;
  width: 3em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  #organizer .organizer_wrap .organizer_box p {
    width: 100%;
    text-align: center;
  }
}
#organizer .organizer_wrap .organizer_box .logo {
  height: 44px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #organizer .organizer_wrap .organizer_box .logo {
    height: 58px;
  }
}

#contact {
  padding-bottom: 55px;
}
@media screen and (min-width: 768px) {
  #contact {
    padding-bottom: 47px;
  }
}
#contact h2 span {
  padding-left: 40px;
  position: relative;
}
@media screen and (min-width: 768px) {
  #contact h2 span {
    padding-left: 55px;
  }
}
#contact h2 span::before {
  content: "";
  position: absolute;
  background: url(../img/icon_mail.svg) no-repeat center/contain;
  width: 30px;
  height: 21px;
  top: 7px;
  left: 0;
}
@media screen and (min-width: 768px) {
  #contact h2 span::before {
    width: 44px;
    height: 30px;
    top: 13px;
  }
}
#contact .txt {
  text-align: center;
  font-weight: 500;
}
#contact .mail {
  display: block;
  color: #0099D3;
  font-weight: 600;
  text-align: center;
  text-decoration: underline;
}

#terms {
  padding-bottom: 33px;
}
#terms .txt {
  font-size: 12px;
  margin-bottom: 16px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  #terms .terms_wrap {
    max-width: 700px;
    margin: 0 auto;
  }
}
#terms .terms_wrap .terms_block {
  border: 1px solid #707070;
  padding: 10px;
  line-height: 1.4;
}
#terms .terms_wrap .terms_block:nth-child(1) {
  margin-bottom: 16px;
}
#terms .terms_wrap .terms_block dt {
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}
#terms .terms_wrap .terms_block dt::before, #terms .terms_wrap .terms_block dt::after {
  content: "";
  width: 14px;
  height: 1px;
  background: #707070;
  position: absolute;
  top: calc(50% - 1px);
  right: 0px;
}
#terms .terms_wrap .terms_block dt.open::before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
#terms .terms_wrap .terms_block dd {
  display: none;
  margin-top: 12px;
  font-size: 12px;
}
#terms .terms_wrap .terms_block dd .mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}
#terms .terms_wrap .terms_block dd .mark .mark_img {
  max-width: 78px;
  width: 100%;
}
#terms .terms_wrap .terms_block dd .pink {
  color: #E10069;
}
#terms .terms_wrap .terms_block dd a {
  text-decoration: underline;
}

.float {
  position: fixed;
  z-index: 999;
  background: url(../img/bg_float.png) no-repeat center/contain;
  width: 100px;
  height: 100px;
  bottom: 10px;
  right: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #0099D3 !important;
  padding-top: 25px;
}
.float.gray-out {
  background-image: none !important;
  background-color: #707070;
  color: #fff !important;
  border-radius: 100%;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .float {
    width: 140px;
    height: 140px;
    font-size: 20px;
    padding-top: 40px;
    bottom: 50px;
  }
  .float.gray-out {
    /* padding: 3% 0; */
  }
}
.float:hover {
  color: #0099D3;
}
.float span {
  position: relative;
}
.float span::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 9px;
  border-color: transparent transparent transparent #0099D3;
  position: absolute;
  left: 10px;
  right: 0;
  bottom: -18px;
  margin: auto;
}
.float.gray-out span::after {
  border-color: transparent transparent transparent #fff;
}
@-moz-document url-prefix() {
  .float span::after {
    bottom: -40px;
  }
  @media screen and (min-width: 768px) {
    .float span::after {
      bottom: -46px;
    }
  }
}

/* ▼▼▼ フッター
===================================== */
footer {
  width: 100%;
  padding-bottom: 60px;
  clear: both;
  overflow: hidden;
}

#footer_inner {
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #footer_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
#footer_inner .footer_logo {
  margin: 0 auto 10px;
  max-width: 112px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #footer_inner .footer_logo {
    margin: 0;
    max-width: 143px;
  }
}
#footer_inner #copyright {
  font-size: 9px;
  text-align: center;
}