@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto:wght@300;400;500&display=swap");
* {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1rem;
  position: relative;
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  list-style: none;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: justify;
  color: #4d4d4d;
}
button, fieldset, form, input, label, legend, select, textarea {
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}
.submit_button form {
  text-align: center;
}
.font--blue {
  color: #0095cf;
}

.font--pink {
  color: #e10069;
}

.font--black {
  color: #4d4d4d;
}

.apply-button {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  display: block;
  position: relative;
  width: 570px;
  margin: 0 auto;
  padding: 30px 120px;
  border-radius: 50px;
  opacity: 0;
}
@media screen and (max-width: 544px) {
  .apply-button {
    font-size: 18px;
    width: 95%;
    padding: 20px 0;
  }
}

@media screen and (max-width: 544px) {
  html {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 544px) {
  body {
    width: 100%;
    height: auto;
  }
}
body #hamburger-menu {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  margin-left: 0;
  padding: 10%;
  background: #0095cf;
  z-index: 100;
  -webkit-transition: 2s;
  transition: 2s;
  -webkit-text-size-adjust: 100%;
}
body #hamburger-menu #hamburger-menu__xbutton {
  display: block;
  position: absolute;
  width: 45px;
  height: 45px;
  top: 10%;
  right: 10%;
  z-index: 2;
}
body #hamburger-menu #hamburger-menu__xbutton:hover {
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  body #hamburger-menu #hamburger-menu__xbutton {
    top: 5%;
    right: 5%;
  }
}
@media screen and (max-width: 544px) {
  body #hamburger-menu #hamburger-menu__xbutton {
    top: 10%;
    right: 10%;
  }
}
body #hamburger-menu #hamburger-menu__xbutton span.xbutton {
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 20px;
  background: #ffed00;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
body #hamburger-menu #hamburger-menu__xbutton span.xbutton:nth-of-type(2) {
  margin-top: -2px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media screen and (max-width: 544px) {
  body #hamburger-menu #hamburger-menu__xbutton span.xbutton {
    margin-top: -20px;
  }
}
body #hamburger-menu ul#hamburger-menu__items {
  display: none;
  width: 61.8%;
  opacity: 0;
}
@media screen and (max-width: 992px) {
  body #hamburger-menu ul#hamburger-menu__items {
    width: 100%;
    top: 10%;
  }
}
@media screen and (max-width: 544px) {
  body #hamburger-menu ul#hamburger-menu__items {
    width: 100%;
    top: 10%;
  }
}
body #hamburger-menu ul#hamburger-menu__items li {
  line-height: calc(20px*3);
}
@media screen and (max-width: 992px) {
  body #hamburger-menu ul#hamburger-menu__items li {
    line-height: calc(17px*1.3);
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 544px) {
  body #hamburger-menu ul#hamburger-menu__items li {
    line-height: calc(17px*1.3);
    margin-bottom: 25px;
  }
}
body #hamburger-menu ul#hamburger-menu__items li a {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.2rem;
  color: white;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
body #hamburger-menu ul#hamburger-menu__items li a:hover {
  color: #ffed00;
}
@media screen and (max-width: 544px) {
  body #hamburger-menu ul#hamburger-menu__items li a {
    font-size: 17px;
    letter-spacing: 1px;
  }
}
body #hamburger-menu #hamburger-menu__image {
  position: absolute;
  width: 38.2%;
  height: 100%;
  top: 0;
  right: 0;
  background: #0095cf;
  overflow: hidden;
  opacity: 0.5;
}
@media screen and (max-width: 544px) {
  body #hamburger-menu #hamburger-menu__image {
    width: 100vw;
    height: 0;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
  }
}
body #hamburger-menu #hamburger-menu__image::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  top: -5%;
  left: -10%;
  width: 115%;
  height: 115%;
  background: url(../imgs/menu_bg.jpg) no-repeat center/cover;
  -webkit-animation: menu_image linear 10s infinite;
          animation: menu_image linear 10s infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
@media screen and (max-width: 992px) {
  body #hamburger-menu #hamburger-menu__image::after {
    height: 115%;
    top: 0 !important;
    background: url(../imgs/menu_bg.jpg) no-repeat center 70%/cover;
  }
}
@media screen and (max-width: 544px) {
  body #hamburger-menu #hamburger-menu__image::after {
    height: 115%;
    top: 0 !important;
    background: url(../imgs/menu_bg.jpg) no-repeat center 70%/cover;
    -webkit-animation: menu_image linear 8s infinite;
            animation: menu_image linear 8s infinite;
    -webkit-animation-direction: alternate;
            animation-direction: alternate;
  }
}
body #hamburger-menu #hamburger-menu__image .menu_closed {
  width: 0;
}
body #hamburger-menu #hamburger-menu__image .menu_closed a#hamburger-menu__xbutton {
  opacity: 0;
}
@-webkit-keyframes menu_image {
  0% {
    bottom: 8%;
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  100% {
    bottom: -15%;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}
@keyframes menu_image {
  0% {
    bottom: 8%;
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  100% {
    bottom: -15%;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}
body .hamburger-menu--open {
  display: block !important;
  -webkit-animation: menu_open_pc 0.1s linear forwards;
          animation: menu_open_pc 0.1s linear forwards;
}
body .hamburger-menu--open ul#hamburger-menu__items {
  display: block !important;
  -webkit-animation: menu_open__items_pc 0.2s linear forwards;
          animation: menu_open__items_pc 0.2s linear forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
body .hamburger-menu--open #hamburger-menu__image {
  display: block !important;
  -webkit-animation: menu_open__img_pc 0.2s linear forwards;
          animation: menu_open__img_pc 0.2s linear forwards;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
@media screen and (max-width: 544px) {
  body .hamburger-menu--open #hamburger-menu__image {
    -webkit-animation: menu_open__img_sp 0.2s linear forwards;
            animation: menu_open__img_sp 0.2s linear forwards;
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
  }
}
@-webkit-keyframes menu_open_pc {
  0% {
    width: 0;
    padding: 0;
  }
  100% {
    width: 100vw;
    padding: 10%;
  }
}
@keyframes menu_open_pc {
  0% {
    width: 0;
    padding: 0;
  }
  100% {
    width: 100vw;
    padding: 10%;
  }
}
@-webkit-keyframes menu_open__items_pc {
  0% {
    margin-top: 5%;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
@keyframes menu_open__items_pc {
  0% {
    margin-top: 5%;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
@-webkit-keyframes menu_open__img_pc {
  0% {
    right: -38.2%;
  }
  100% {
    right: 0;
  }
}
@keyframes menu_open__img_pc {
  0% {
    right: -38.2%;
  }
  100% {
    right: 0;
  }
}
@-webkit-keyframes menu_open__img_sp {
  0% {
    height: 0;
  }
  100% {
    height: 37%;
  }
}
@keyframes menu_open__img_sp {
  0% {
    height: 0;
  }
  100% {
    height: 37%;
  }
}
body header#header {
  display: block;
  position: fixed;
  width: 100vw;
  height: 70px!important;
  background: white;
  overflow: hidden;
  -webkit-filter: drop-shadow(1px 0 3px rgba(77, 77, 77, 0.1));
          filter: drop-shadow(1px 0 3px rgba(77, 77, 77, 0.1));
  z-index: 10;
  -webkit-transform: 0.5s;
          transform: 0.5s;
}
@media screen and (max-width: 992px) {
  body header#header {
    height: 65px !important;
  }
}
@media screen and (max-width: 544px) {
  body header#header {
    height: 65px !important;
  }
}
body header#header #header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 20px 25px 15px 25px;
}
body header#header #header__inner #header__hamburger {
  display: block;
  position: relative;
  width: 32px;
  height: 23px;
}
body header#header #header__inner #header__hamburger span.bar {
  display: block;
  position: relative;
  width: 100%;
  height: 3px;
  background: #4d4d4d;
}
body header#header #header__inner #header__hamburger span.bar:nth-of-type(2) {
  margin-top: 25%;
}
body header#header #header__inner #header__hamburger span.bar:nth-of-type(3) {
  width: 70%;
  margin-top: 25%;
}
body header#header #header__inner #header__logo {
  width: 100%;
  height: 32px;
  margin-top: -4px;
}
body header#header #header__inner #header__logo #header__logo__inner {
  display: block;
  width: 100%;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  background: url(https://kanko-gakuseifuku.mom/uniform_photo/entry/imgs/header_contest_logo.svg) no-repeat center/contain;
}
@media screen and (max-width: 992px) {
  body header#header #header__inner #header__logo #header__logo__inner {
    width: 300px;
  }
}
@media screen and (max-width: 544px) {
  body header#header #header__inner #header__logo #header__logo__inner {
    width: 250px;
  }
}
body header#header nav#header__menu {
  display: block;
  width: 70%;
  height: 100%;
  margin: 10px auto 0 auto;
}
body header#header nav#header__menu ul#header__menu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 992px) {
  body header#header nav#header__menu ul#header__menu__inner {
    display: none;
  }
}
@media screen and (max-width: 544px) {
  body header#header nav#header__menu ul#header__menu__inner {
    display: none;
  }
}
body header#header nav#header__menu ul#header__menu__inner li a {
  font-size: 15px;
  font-weight: 600;
}
body header#header nav#header__menu ul#header__menu__inner li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  right: 0;
  bottom: -10px;
  left: 0;
  margin: auto;
  background: #0095cf;
}
body header#header nav#header__menu ul#header__menu__inner li a:hover {
  color: #0095cf;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
body header#header nav#header__menu ul#header__menu__inner li a:hover::after {
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
body section {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 120px;
}
body section h2 {
  text-align: center;
  display: block;
  position: relative;
  width: 1000px;
  height: auto;
  margin: 0 auto 50px;
}
body section h2.close {
  margin-bottom:300px;
}
@media screen and (max-width: 992px) {
  body section h2 {
    width: 95%;
  }
}
@media screen and (max-width: 544px) {
  body section h2 {
    width: 100%;
  }
}
body section h2 .h2__title--en {
  font-size: 1rem;
  font-weight: 300;
  color: #4d4d4d;
  text-align: center;
  opacity: 0;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
@media screen and (max-width: 544px) {
  body section h2 .h2__title--en {
    font-size: 13px;
  }
}

body section .attention-txt{
  text-align: center;
  margin-bottom: 50px;
  font-size: 20px;
}

@media screen and (max-width: 959px) {
  body section .attention-txt {
    font-size: 14px;
  }
}

@media screen and (max-width: 544px) {
  body section .attention-txt {
    margin-bottom: 70px;
    text-align: left;
  }
}

body section h2 .h2__title--jp {
  font-size: 42px;
  font-weight: 700;
  color: #0095cf;
  text-align: center;
  opacity: 0;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
body section h2 .h2__title--jp span {
  font-size: 42px;
  font-weight: 700;
  color: #0095cf;
  text-align: center;
}
@media screen and (max-width: 544px) {
  body section h2 .h2__title--jp {
    font-size: 26px;
    text-align: center;
  }
  body section h2 .h2__title--jp span {
    display: block;
    font-size: 26px;
    letter-spacing: 0;
    text-align: center;
  }
}
@-webkit-keyframes h2fadein {
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes h2fadein {
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body section h2 .barH2 {
  display: block;
  position: absolute;
  width: 1px;
  height: 1px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 !important;
  bottom: 5px !important;
  margin: auto !important;
  border-top: solid 2px #0095cf;
  border-bottom: solid 2px #0095cf;
  z-index: -1;
}
@-webkit-keyframes barOpen {
  0% {
    inset: 0 !important;
    bottom: 5px !important;
    margin: auto !important;
    width: 1px;
    height: 1px;
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  50% {
    inset: 0 !important;
    bottom: 5px !important;
    margin: auto !important;
    width: 50px;
    height: 1px;
  }
  100% {
    inset: 0 !important;
    bottom: 5px !important;
    margin: auto !important;
    height: 122px;
    width: 50px;
  }
}
@keyframes barOpen {
  0% {
    inset: 0 !important;
    bottom: 5px !important;
    margin: auto !important;
    width: 1px;
    height: 1px;
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  50% {
    inset: 0 !important;
    bottom: 5px !important;
    margin: auto !important;
    width: 50px;
    height: 1px;
  }
  100% {
    inset: 0 !important;
    bottom: 5px !important;
    margin: auto !important;
    height: 122px;
    width: 50px;
  }
}
body section h3 {
  line-height: 1.5rem;
  display: block;
  width: 1000px;
  height: auto;
  margin: 50px auto 0 auto;
}
body section h3:nth-of-type(1) {
  margin-top: 80px;
}
body section#kv {
  display: block;
  position: relative;
  width: 100%;
  height: 650px;
  margin: 0 auto;
  padding-top: 45%;
  background: url(../imgs/kv_pc_v3.jpg) no-repeat center center/100%;
}
@media screen and (max-width: 1200px) {
  body section#kv {
    height: 80vh;
  }
}
@media screen and (max-width: 992px) {
  body section#kv {
    height: 40vh;
    margin: 0 auto;
  }
}
@media screen and (max-width: 544px) {
  body section#kv {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    position: relative;
    width: 100%;
    height: 650px;
    margin: 0 auto;
    background: url(../imgs/kv_sp_v2.jpg) no-repeat center top/100%;
    overflow: hidden;
  }
}
body section#kv #kanko_logo {
  display: block;
  position: absolute;
  width: calc(100vw*.1);
  height: 100%;
  top: 140px;
  right: 2%;
  background: url(../imgs/kanko_logo.png) no-repeat top right/contain;
}
@media screen and (max-width: 992px) {
  body section#kv #kanko_logo {
    top: 90px;
  }
}
@media screen and (max-width: 544px) {
  body section#kv #kanko_logo {
    width: 100px;
    height: 100px;
    top: 80px;
    right: 0;
    left: 15px;
    background: none;
  }
}
body section#about-contest {
  margin-top: 100px;
}
@media screen and (max-width: 544px) {
  body section#about-contest h2::after {
    height: 200px;
  }
}
body section#about-contest h3 {
  margin-top: 70px;
}
@media screen and (max-width: 992px) {
  body section#about-contest h3 {
    width: 95%;
  }
}
@media screen and (max-width: 544px) {
  body section#about-contest h3 {
    width: 90%;
  }
}
body section#about-contest h3 .about-contest__h3__items__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 544px) {
  body section#about-contest h3 .about-contest__h3__items__wrapper {
    display: block;
    width: 95%;
  }
}
body section#about-contest h3 .about-contest__h3__items__wrapper .about-contest__h3__items {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: #0095cf;
  width: 135px;
  margin-right: 30px;
  padding: 10px 0;
  background: #ffed00;
}
@media screen and (max-width: 544px) {
  body section#about-contest h3 .about-contest__h3__items__wrapper .about-contest__h3__items {
    margin-bottom: 30px;
  }
}
body section#about-contest h3 .about-contest__h3__items__wrapper #about-contest__h3__date {
  font-size: 39px;
  font-weight: 700;
  letter-spacing: 0.25rem;
}
@media screen and (max-width: 544px) {
  body section#about-contest h3 .about-contest__h3__items__wrapper #about-contest__h3__date {
    font-size: 27px;
    letter-spacing: 0;
    margin-bottom: 50px;
    letter-spacing: 0;
  }
}
body section#about-contest h3 .about-contest__h3__items__wrapper #about-contest__h3__date span {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 544px) {
  body section#about-contest h3 .about-contest__h3__items__wrapper #about-contest__h3__date span {
    font-size: 18px;
    letter-spacing: 0;
  }
}
body section#about-contest h3 .about-contest__h3__items__wrapper #about-contest__h3__theme {
  font-size: 39px;
  font-weight: 700;
  line-height: 2.3rem;
  text-align: center;
  display: block;
  width: auto;
  margin-top: 15px;
}
@media screen and (max-width: 544px) {
  body section#about-contest h3 .about-contest__h3__items__wrapper #about-contest__h3__theme {
    font-size: 29px;
    margin-left: 10px;
  }
}
body section#about-contest h3 .about-contest__h3__items__wrapper #about-contest__h3__theme span {
  font-weight: 500;
  display: block;
  margin-left: 15px;
}
@media screen and (max-width: 544px) {
  body section#about-contest h3 .about-contest__h3__items__wrapper #about-contest__h3__theme span {
    font-size: 14px;
    line-height: 1.5rem;
    margin: 10px auto 10px 0;
    letter-spacing: 0;
    white-space: nowrap;
  }
}
.body_entry_form .apply-button,
.body_entry_form_test .apply-button,
body section#about-contest h3 a#about-contest__h3__apply-button {
  margin-top: 30px;
  margin-bottom: 80px;
  color: white;
  background: #0095cf;
  opacity: 0;
}
.body_entry_form .apply-button,
.body_entry_form_test .apply-button {
  margin-bottom:0;
}
body section#about-contest h3 a#about-contest__h3__apply-button:hover {
  opacity: 0.8 !important;
}
body section#about-contest h3 .apply-button--baned.pointer-events--none {
  margin-top: 30px;
  margin-bottom: 80px;
  margin-bottom-opacity: 1;
}
body section#about-contest #about-contest__h3__image-scroll {
  width: 100%;
  height: auto;
  margin: 0 auto 15px auto;
  top: 20px;
  overflow: hidden;
}
body section#about-contest #about-contest__h3__image-scroll .scrollY01 {
  bottom: 20px;
}
@media screen and (max-width: 544px) {
  body section#about-contest #about-contest__h3__image-scroll .scrollY01 {
    bottom: 5px;
  }
}
body section#about-contest #about-contest__h3__image-scroll .about-contest__h3__image-scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  width: auto;
  height: 353px;
  margin: 0 auto;
  padding: 10px 0;
}
@media screen and (max-width: 544px) {
  body section#about-contest #about-contest__h3__image-scroll .about-contest__h3__image-scroll {
    height: 100px;
    margin: 5px 0;
    padding: 0;
  }
}
body section#about-contest #about-contest__h3__image-scroll .about-contest__h3__image-scroll .image-scroll__items img {
  display: block;
  width: auto;
  height: 353px;
  margin: 10px 20px 10px 0;
}
@media screen and (max-width: 544px) {
  body section#about-contest #about-contest__h3__image-scroll .about-contest__h3__image-scroll .image-scroll__items img {
    height: 100px;
    margin: 5px 10px 5px 0;
  }
}
body section#about-contest #about-contest__h3__image-scroll .about-contest__h3__image-scroll:nth-of-type(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
body section#about-contest #about-contest__h3__image-scroll .about-contest__h3__image-scroll:nth-of-type(2) .image-scroll__items img {
  margin: 10px 0 10px 20px;
}
@media screen and (max-width: 544px) {
  body section#about-contest #about-contest__h3__image-scroll .about-contest__h3__image-scroll:nth-of-type(2) .image-scroll__items img {
    margin: 5px 0 5px 10px;
  }
}
body section#about-contest #about-contest__h3__image-note {
  font-size: 13px;
  text-align: right;
  margin-right: 2%;
  top: 15px;
}
@media screen and (max-width: 544px) {
  body section#about-contest #about-contest__h3__image-note {
    font-size: 13px;
    text-align: left;
    width: 95%;
    margin: 0 auto;
  }
}
body section#prize h3.prize__font--large {
  font-size: 42px;
  font-weight: 700;
  line-height: 6rem;
  color: #4d4d4d;
  text-align: center;
  width: 1000px;
  margin-top: 45px;
}
@media screen and (max-width: 992px) {
  body section#prize h3.prize__font--large {
    width: 95%;
  }
}
@media screen and (max-width: 544px) {
  body section#prize h3.prize__font--large {
    font-size: 27px;
    letter-spacing: 0.1rem;
    line-height: 3rem;
    width: 95%;
    margin-top: 80px;
  }
}
body section#prize h3.prize__font--large .prize__font--large {
  font-size: 42px;
  font-weight: 700;
  line-height: 6rem;
  color: #4d4d4d;
  text-align: center;
  width: 1000px;
  margin-top: 45px;
}
@media screen and (max-width: 992px) {
  body section#prize h3.prize__font--large .prize__font--large {
    width: 95%;
  }
}
@media screen and (max-width: 544px) {
  body section#prize h3.prize__font--large .prize__font--large {
    display: block;
    font-size: 27px;
    letter-spacing: 0;
    line-height: 3rem;
    width: 95%;
    margin-top: 80px;
  }
}
body section#prize h3.prize__font--large::after {
  content: "";
  display: block;
  position: absolute;
  width: 96%;
  top: 83px;
  right: 0;
  left: 0;
  margin: auto;
  border-top: solid 3px #4d4d4d;
}
@media screen and (max-width: 992px) {
  body section#prize h3.prize__font--large::after {
    width: 100%;
  }
}
@media screen and (max-width: 544px) {
  body section#prize h3.prize__font--large::after {
    height: 47px;
    top: 45px;
    width: 100%;
    border-bottom: solid 3px #4d4d4d;
  }
}
body section#prize h3.prize__font--large::before {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  top: 183px;
  right: 0;
  left: 0;
  margin: auto;
  border-top: solid 3px #4d4d4d;
}
@media screen and (max-width: 992px) {
  body section#prize h3.prize__font--large::before {
    width: 85%;
  }
}
@media screen and (max-width: 544px) {
  body section#prize h3.prize__font--large::before {
    width: 100%;
    top: 145px;
    letter-spacing: 0.1rem;
  }
}
body section#prize h3.prize__font--large span {
  font-size: 26px;
  font-weight: 700;
}
@media screen and (max-width: 544px) {
  body section#prize h3.prize__font--large span {
    font-size: 19px;
    text-align: center;
    letter-spacing: 0.1rem;
  }
}
body section#prize h3.prize__font--large span.line_change {
  font-size: 42px;
  font-weight: 700;
  line-height: 6rem;
  color: #4d4d4d;
  text-align: center;
  width: 1000px;
  margin-top: 45px;
}
@media screen and (max-width: 992px) {
  body section#prize h3.prize__font--large span.line_change {
    width: 95%;
  }
}
@media screen and (max-width: 544px) {
  body section#prize h3.prize__font--large span.line_change {
    font-size: 27px;
    letter-spacing: 0.1rem;
    line-height: 3rem;
    width: 95%;
    margin: 0 auto;
    padding: 0;
  }
  body section#prize h3.prize__font--large span.line_change .prize__h3__asterisk {
    text-align: center;
    font-size: 22px;
  }
}
body section#prize h3.prize__font--large .prize__h3__note {
  text-align: right;
  width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  body section#prize h3.prize__font--large .prize__h3__note {
    width: 95%;
  }
}
@media screen and (max-width: 544px) {
  body section#prize h3.prize__font--large .prize__h3__note {
    font-size: 13px;
    letter-spacing: 1px;
    width: 95%;
  }
}
body section#prize h4 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  body section#prize h4 ul {
    width: 95%;
  }
}
@media screen and (max-width: 544px) {
  body section#prize h4 ul {
    width: 95%;
  }
}
body section#prize h4 ul li {
  text-align: center;
  width: 31%;
  height: auto;
  margin: 10px;
  border: solid 2px #0095cf;
}
@media screen and (max-width: 992px) {
  body section#prize h4 ul li {
    width: 30%;
  }
}
@media screen and (max-width: 544px) {
  body section#prize h4 ul li {
    width: 100%;
  }
}
body section#prize h4 ul li .prize__title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  padding: 20px 0;
  background: #0095cf;
  color: white;
}
@media screen and (max-width: 992px) {
  body section#prize h4 ul li .prize__title {
    font-size: 28px;
  }
}
body section#prize h4 ul li .prize__title::before {
  content: url(../imgs/trophy.svg);
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  margin-right: 12px;
  z-index: 10;
}
body section#prize h4 ul li .prize__parson {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  color: white;
  width: 190px;
  margin: 35px auto 0 auto;
  padding: 10px;
  background: #0095cf;
  border-radius: 50px;
}
body section#prize h4 ul li .prize__parson span {
  font-size: 16px;
  font-weight: 700;
  color: white;
}
body section#prize h4 ul li ul.prize__description {
  display: block;
  width: 100%;
  margin: 35px auto 35px auto;
}
body section#prize h4 ul li ul.prize__description li {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  width: 200px;
  margin: 0 auto;
  border: none;
}
@media screen and (max-width: 544px) {
  body section#prize h4 ul li ul.prize__description li {
    width: auto;
  }
}
body section#prize h4 ul li ul.prize__description li span.upper-part_no {
  font-size: 20px;
  font-weight: 500;
}
body section#prize h4 ul li ul.prize__description li:nth-of-type(2) {
  font-size: 20px;
  text-align: center;
  display: block;
  margin: 0 auto;
}
body section#prize h4 ul li:nth-of-type(1) {
  border: solid 2px #cba600;
}
body section#prize h4 ul li:nth-of-type(1) .prize__title {
  background: -webkit-gradient(linear, left top, right top, from(#cba600), color-stop(17%, #e0be00), color-stop(40%, #cba600), color-stop(57%, #e0be00), to(#cba600));
  background: linear-gradient(to right, #cba600, #e0be00 17%, #cba600 40%, #e0be00 57%, #cba600);
}
body section#prize h4 ul li:nth-of-type(1) .prize__parson {
  background: -webkit-gradient(linear, left top, right top, from(#cba600), color-stop(17%, #e0be00), color-stop(40%, #cba600), color-stop(57%, #e0be00), to(#cba600));
  background: linear-gradient(to right, #cba600, #e0be00 17%, #cba600 40%, #e0be00 57%, #cba600);
}
body section#prize h4 ul li:nth-of-type(2) {
  border: solid 2px #aaaaaa;
}
body section#prize h4 ul li:nth-of-type(2) .prize__title {
  background: -webkit-gradient(linear, left top, right top, from(#aaaaaa), color-stop(17%, #c8c8c8), color-stop(40%, #aaaaaa), color-stop(57%, #c8c8c8), to(#b4b4b4));
  background: linear-gradient(to right, #aaaaaa, #c8c8c8 17%, #aaaaaa 40%, #c8c8c8 57%, #b4b4b4);
}
body section#prize h4 ul li:nth-of-type(2) .prize__parson {
  background: -webkit-gradient(linear, left top, right top, from(#aaaaaa), color-stop(17%, #c8c8c8), color-stop(40%, #aaaaaa), color-stop(57%, #c8c8c8), to(#b4b4b4));
  background: linear-gradient(to right, #aaaaaa, #c8c8c8 17%, #aaaaaa 40%, #c8c8c8 57%, #b4b4b4);
}
body section#prize h4 ul li:nth-of-type(3) {
  border: solid 2px #c19268;
}
body section#prize h4 ul li:nth-of-type(3) .prize__title {
  background: -webkit-gradient(linear, left top, right top, from(#c19268), color-stop(17%, #d6ac81), color-stop(40%, #bb9169), color-stop(57%, #d6ac81), to(#c19469));
  background: linear-gradient(to right, #c19268, #d6ac81 17%, #bb9169 40%, #d6ac81 57%, #c19469);
}
body section#prize h4 ul li:nth-of-type(3) .prize__parson {
  background: -webkit-gradient(linear, left top, right top, from(#c19268), color-stop(17%, #d6ac81), color-stop(40%, #bb9169), color-stop(57%, #d6ac81), to(#c19469));
  background: linear-gradient(to right, #c19268, #d6ac81 17%, #bb9169 40%, #d6ac81 57%, #c19469);
}
body section#prize h4 .note {
  width: 980px;
  text-align: right;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  body section#prize h4 .note {
    width: 95%;
  }
}
@media screen and (max-width: 544px) {
  body section#prize h4 .note {
    font-size: 13px;
    text-align: left;
    letter-spacing: 2px;
    width: 95%;
  }
}
body section#description {
  top: 0;
  padding-top: 30px;
  overflow: hidden;
}
@media screen and (max-width: 544px) {
  body section#description {
    padding-top: 40px;
  }
}
body section#description h2 {
  display: block;
}
body section#description > ul {
  display: block;
  margin: 0 auto;
  width: 700px;
}
@media screen and (max-width: 544px) {
  body section#description > ul {
    width: 90%;
  }
}
body section#description > ul li {
  margin-top: 85px;
}
body section#description > ul li h3 {
  font-size: 22px;
  font-weight: 500;
  color: #0095cf;
  line-height: 0;
  margin-top: -23px;
  margin-bottom: 30px;
}
@media screen and (max-width: lg) {
  body section#description > ul li h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 544px) {
  body section#description > ul li h3 {
    font-size: 22px !important;
  }
}
body section#description > ul li .theme {
  font-size: 39px;
  font-weight: 500;
  color: #0095cf;
  margin-bottom: 10px;
}
@media screen and (max-width: 544px) {
  body section#description > ul li .theme {
    font-size: 30px;
  }
}
body section#description > ul li p {
  margin-bottom: 0;
}
body section#description > ul li .discription_date {
  font-size: 20px;
  letter-spacing: 0.2rem;
  text-align: left;
}
body section#description > ul li:first-child h3 {
  margin-top: 50px;
}
body section#description > ul li ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 90%;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
}
@media screen and (max-width: 544px) {
  body section#description > ul li ul {
    width: 95%;
    inset: 0;
    margin: 0 auto 30px auto;
  }
}
body section#description > ul li ul li.description__illustrations {
  width: 270px;
  height: 200px;
  margin: 50px 0 30px 0;
  border: solid 2px #0095cf;
}
@media screen and (max-width: 544px) {
  body section#description > ul li ul li.description__illustrations {
    width: calc(270px*.47);
    height: calc(200px*.47);
  }
}
body section#description > ul li ul li.description__illustrations::before {
  content: url(../imgs/x.svg);
  display: block;
  width: 46px;
  height: 46px;
  margin: -23px auto auto -23px;
}
@media screen and (max-width: 544px) {
  body section#description > ul li ul li.description__illustrations::before {
    width: 35px;
    height: 35px;
    margin: -17px auto auto -17px;
  }
}
body section#description > ul li ul li.description__illustrations::after {
  display: block;
  margin-left: 25%;
  margin-top: 185px;
}
@media screen and (max-width: 544px) {
  body section#description > ul li ul li.description__illustrations::after {
    font-size: 14px;
    letter-spacing: 0;
    text-align: center;
    inset: 0;
    margin: auto;
    margin-top: 85px;
  }
}
body section#description > ul li ul li.description__illustrations:nth-of-type(1) {
  background: url(../imgs/description_illustrations_01.svg) no-repeat center/cover;
}
body section#description > ul li ul li.description__illustrations:nth-of-type(1)::after {
  content: "体操服は不可";
}
body section#description > ul li ul li.description__illustrations:nth-of-type(2) {
  background: url(../imgs/description_illustrations_02.svg) no-repeat center/cover;
}
body section#description > ul li ul li.description__illustrations:nth-of-type(2)::after {
  content: "シルエットは不可";
}
body section#description > ul li ul li.description__illustrations:nth-of-type(3) {
  background: url(../imgs/description_illustrations_03.svg) no-repeat center/cover;
}
body section#description > ul li ul li.description__illustrations:nth-of-type(3)::after {
  content: "白黒は不可";
}
body section#description > ul li ul li.description__illustrations:nth-of-type(4) {
  background: url(../imgs/description_illustrations_04.svg) no-repeat center/cover;
}
body section#description > ul li ul li.description__illustrations:nth-of-type(4)::after {
  content: "セピアは不可";
}
body section#judges {
  width: 100%;
}
body section#judges ul#judges__container {
  width: 100%;
  margin: 62px auto;
}
body section#judges ul#judges__container .judges__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  body section#judges ul#judges__container .judges__container {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  body section#judges ul#judges__container .judges__container {
    width: 100%;
  }
}
@media screen and (max-width: 544px) {
  body section#judges ul#judges__container .judges__container {
    display: block;
    width: 100%;
  }
}
body section#judges ul#judges__container .judges__container h3.judges__judge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 440px;
  height: 211px;
  margin: 10px 10px 10px 10px;
}
@media screen and (max-width: 1200px) {
  body section#judges ul#judges__container .judges__container h3.judges__judge {
    width: 328px;
    height: 200px;
  }
}
@media screen and (max-width: 992px) {
  body section#judges ul#judges__container .judges__container h3.judges__judge {
    width: 260px;
    height: 200px;
    margin: 5px;
  }
}
@media screen and (max-width: 544px) {
  body section#judges ul#judges__container .judges__container h3.judges__judge {
    width: 100%;
    height: 200px;
    margin: 0 auto;
  }
}
body section#judges ul#judges__container .judges__container h3.judges__judge .judges__judge__img {
  width: 50%;
  height: 100%;
  background: #4d4d4d;
}
@media screen and (max-width: 1200px) {
  body section#judges ul#judges__container .judges__container h3.judges__judge .judges__judge__img {
    width: 40%;
  }
}
@media screen and (max-width: 992px) {
  body section#judges ul#judges__container .judges__container h3.judges__judge .judges__judge__img {
    width: 50%;
  }
}
@media screen and (max-width: 544px) {
  body section#judges ul#judges__container .judges__container h3.judges__judge .judges__judge__img {
    width: 50%;
  }
}
body section#judges ul#judges__container .judges__container h3.judges__judge .judges__judge__info {
  width: 50%;
  height: 100%;
  background: #0095cf;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  body section#judges ul#judges__container .judges__container h3.judges__judge .judges__judge__info {
    width: 60%;
  }
}
@media screen and (max-width: 992px) {
  body section#judges ul#judges__container .judges__container h3.judges__judge .judges__judge__info {
    width: 50%;
  }
}
@media screen and (max-width: 544px) {
  body section#judges ul#judges__container .judges__container h3.judges__judge .judges__judge__info {
    width: 50%;
  }
}
body section#judges ul#judges__container .judges__container h3.judges__judge .judges__judge__info .judges__judge__name {
  font-size: 26px;
  color: #ffed00;
  margin: 30px auto auto 25px;
}
@media screen and (max-width: 992px) {
  body section#judges ul#judges__container .judges__container h3.judges__judge .judges__judge__info .judges__judge__name {
    font-size: 22px;
    font-weight: 700;
    color: #ffed00;
    margin: 20px auto auto 10px;
  }
}
body section#judges ul#judges__container .judges__container h3.judges__judge .judges__judge__info .judges__judge__posts {
  font-size: 13px;
  font-weight: 400;
  color: white;
  letter-spacing: 0;
  line-height: 1.2rem;
  margin: 20px auto auto 25px;
}
@media screen and (max-width: 992px) {
  body section#judges ul#judges__container .judges__container h3.judges__judge .judges__judge__info .judges__judge__posts {
    font-size: 11px;
    line-height: 1.1rem;
    letter-spacing: 0;
    margin: 20px auto auto 10px;
  }
}
body section#judges ul#judges__container .judges__container h3.judges__judge .judges__judge__info .arrow {
  position: absolute;
  width: 63px;
  height: 11px;
  background: url(../imgs/arrow.svg) no-repeat center/contain;
  bottom: 20px;
  right: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 1200px) {
  body section#judges ul#judges__container .judges__container h3.judges__judge .judges__judge__info .arrow {
    bottom: 20px;
  }
}
@media screen and (max-width: 992px) {
  body section#judges ul#judges__container .judges__container h3.judges__judge .judges__judge__info .arrow {
    bottom: 20px;
  }
}
body section#judges ul#judges__container .judges__container h3.judges__judge .judges__judge__info:hover > .arrow {
  right: 15px;
}
body section#judges ul#judges__container li#judges__container--01 h3.judges__judge:nth-of-type(1) {
  margin-left: 0;
}
body section#judges ul#judges__container li#judges__container--01 h3.judges__judge:nth-of-type(1) .judges__judge__img {
  background: url(../imgs/judge_01.jpg) no-repeat center/cover;
}
@media screen and (max-width: 544px) {
  body section#judges ul#judges__container li#judges__container--01 h3.judges__judge:nth-of-type(1) .judges__judge__img {
    background: url(../imgs/judge_01.jpg) no-repeat center top/cover;
  }
}
body section#judges ul#judges__container li#judges__container--01 h3.judges__judge:nth-of-type(2) {
  margin-right: 0;
}
body section#judges ul#judges__container li#judges__container--01 h3.judges__judge:nth-of-type(2) .judges__judge__img {
  background: url(../imgs/judge_02.jpg) no-repeat center/cover;
}
@media screen and (max-width: 544px) {
  body section#judges ul#judges__container li#judges__container--01 h3.judges__judge:nth-of-type(2) .judges__judge__img {
    background: url(../imgs/judge_02.jpg) no-repeat center top/cover;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
body section#judges ul#judges__container li#judges__container--02 h3.judges__judge:nth-of-type(1) {
  margin-left: 0;
}
body section#judges ul#judges__container li#judges__container--02 h3.judges__judge:nth-of-type(1) .judges__judge__img {
  background: url(../imgs/judge_03.jpg) no-repeat center/cover;
}
@media screen and (max-width: 544px) {
  body section#judges ul#judges__container li#judges__container--02 h3.judges__judge:nth-of-type(1) .judges__judge__img {
    background: url(../imgs/judge_03.jpg) no-repeat center top/cover;
  }
}
body section#judges ul#judges__container li#judges__container--02 h3.judges__judge:nth-of-type(2) .judges__judge__img {
  background: url(../imgs/judge_04.jpg) no-repeat center/cover;
}
@media screen and (max-width: 544px) {
  body section#judges ul#judges__container li#judges__container--02 h3.judges__judge:nth-of-type(2) .judges__judge__img {
    background: url(../imgs/judge_04.jpg) no-repeat center top/cover;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
body section#judges ul#judges__container li#judges__container--02 h3.judges__judge:nth-of-type(3) {
  margin-right: 0;
}
body section#judges ul#judges__container li#judges__container--02 h3.judges__judge:nth-of-type(3) .judges__judge__img {
  background: url(../imgs/judge_05.jpg) no-repeat center/cover;
}
@media screen and (max-width: 544px) {
  body section#judges ul#judges__container li#judges__container--02 h3.judges__judge:nth-of-type(3) .judges__judge__img {
    background: url(../imgs/judge_05.jpg) no-repeat center top/cover;
  }
}
body section#judges ul.modal__container .modal {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  z-index: 101;
  background: #0095cf;
}
body section#judges ul.modal__container .modal .modal_bg {
  display: block;
  position: absolute;
  width: 0;
  height: 100%;
  bottom: 0;
  left: 0;
  background: #0095cf;
  overflow: hidden;
  opacity: 0.5;
}
body section#judges ul.modal__container .modal .modal_bg::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  left: 0;
  width: 110%;
  height: 110%;
  background: url(../imgs/modal_bg.jpg) no-repeat center/cover;
  -webkit-animation: modal_bg 12s linear infinite;
          animation: modal_bg 12s linear infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
@media screen and (max-width: 544px) {
  body section#judges ul.modal__container .modal .modal_bg {
    width: 100%;
    height: 0;
  }
  body section#judges ul.modal__container .modal .modal_bg::before {
    left: 0;
    width: 110%;
    height: 110%;
    background: url(../imgs/modal_bg.jpg) no-repeat center bottom/cover;
    -webkit-animation: modal_bg_sp 7s linear infinite;
            animation: modal_bg_sp 7s linear infinite;
    -webkit-animation-direction: alternate;
            animation-direction: alternate;
  }
}
@-webkit-keyframes modal_bg {
  0% {
    left: 0;
  }
  100% {
    left: -20%;
  }
}
@keyframes modal_bg {
  0% {
    left: 0;
  }
  100% {
    left: -20%;
  }
}
@-webkit-keyframes modal_bg_sp {
  0% {
    left: 0;
  }
  100% {
    left: -10%;
  }
}
@keyframes modal_bg_sp {
  0% {
    left: 0;
  }
  100% {
    left: -10%;
  }
}
body section#judges ul.modal__container .modal ul {
  display: none;
  position: absolute;
  width: 844px;
  height: 385px;
  inset: 0;
  margin: auto;
  opacity: 0;
}
@media screen and (max-width: 992px) {
  body section#judges ul.modal__container .modal ul {
    width: 80%;
    height: 60%;
    top: -20%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 544px) {
  body section#judges ul.modal__container .modal ul {
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
body section#judges ul.modal__container .modal ul li.modal__judge__img {
  display: block;
  width: 343px;
  height: 100%;
}
@media screen and (max-width: 992px) {
  body section#judges ul.modal__container .modal ul li.modal__judge__img {
    width: 343px;
    height: 100%;
    margin: 0 auto;
    padding: 22%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 544px) {
  body section#judges ul.modal__container .modal ul li.modal__judge__img {
    width: 220px;
    height: 220px;
    margin: -20px auto 0 auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
body section#judges ul.modal__container .modal ul li.modal__judge__info {
  width: 50%;
  height: 100%;
  margin-left: 40px;
}
@media screen and (max-width: 992px) {
  body section#judges ul.modal__container .modal ul li.modal__judge__info {
    width: 340px;
    height: auto;
    margin: 0 auto;
    bottom: 20px;
  }
}
@media screen and (max-width: 544px) {
  body section#judges ul.modal__container .modal ul li.modal__judge__info {
    width: 300px;
    height: auto;
    margin: 40% auto 0 auto;
  }
}
body section#judges ul.modal__container .modal ul li.modal__judge__info .modal__judge__name {
  font-size: 26px;
  color: #ffed00;
  margin-bottom: 30px;
}
@media screen and (max-width: 544px) {
  body section#judges ul.modal__container .modal ul li.modal__judge__info .modal__judge__name {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
body section#judges ul.modal__container .modal ul li.modal__judge__info .modal__judge__posts {
  color: white;
  margin-bottom: 30px;
  line-height: 1.7rem;
}
@media screen and (max-width: 544px) {
  body section#judges ul.modal__container .modal ul li.modal__judge__info .modal__judge__posts {
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.3rem;
  }
}
body section#judges ul.modal__container .modal ul li.modal__judge__info .modal_phara {
  color: white;
  line-height: 1.7rem;
}
@media screen and (max-width: 544px) {
  body section#judges ul.modal__container .modal ul li.modal__judge__info .modal_phara {
    font-size: 12px;
    margin-bottom: 15px;
    line-height: 1.3rem;
  }
}
body section#judges ul.modal__container .modal .modal_xButton {
  display: block;
  position: absolute;
  width: 45px;
  height: 45px;
  top: 10%;
  right: 10%;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  body section#judges ul.modal__container .modal .modal_xButton {
    top: 3%;
    right: 5%;
  }
}
@media screen and (max-width: 544px) {
  body section#judges ul.modal__container .modal .modal_xButton {
    top: 7%;
  }
}
body section#judges ul.modal__container .modal .modal_xButton:hover {
  cursor: pointer;
}
body section#judges ul.modal__container .modal .modal_xButton span.xbutton {
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 20px;
  background: #ffed00;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
body section#judges ul.modal__container .modal .modal_xButton span.xbutton:nth-of-type(2) {
  margin-top: -2px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media screen and (max-width: 544px) {
  body section#judges ul.modal__container .modal .modal_xButton span.xbutton {
    margin-top: -20px;
  }
}
body section#judges ul.modal__container #judges__modal--01 li.modal__judge__img {
  background: url(../imgs/judge_01.jpg) no-repeat center/contain;
}
body section#judges ul.modal__container #judges__modal--02 li.modal__judge__img {
  background: url(../imgs/judge_02.jpg) no-repeat center/contain;
}
body section#judges ul.modal__container #judges__modal--03 li.modal__judge__img {
  background: url(../imgs/judge_03.jpg) no-repeat center/contain;
}
body section#judges ul.modal__container #judges__modal--04 li.modal__judge__img {
  background: url(../imgs/judge_04.jpg) no-repeat center/contain;
}
body section#judges ul.modal__container #judges__modal--05 li.modal__judge__img {
  background: url(../imgs/judge_05.jpg) no-repeat center/contain;
}
body section#judges .modal__open {
  display: block !important;
  -webkit-animation: modal_open_pc 0.1s linear forwards;
          animation: modal_open_pc 0.1s linear forwards;
}
body section#judges .modal__open .modal_bg {
  display: block !important;
  -webkit-animation: modal_open__img_pc 0.2s linear forwards;
          animation: modal_open__img_pc 0.2s linear forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
body section#judges .modal__open ul {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-animation: modal_open__items_pc 0.2s linear forwards;
          animation: modal_open__items_pc 0.2s linear forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
@media screen and (max-width: 544px) {
  body section#judges .modal__open .modal_bg {
    -webkit-animation: modal_open__img_sp 0.2s linear forwards;
            animation: modal_open__img_sp 0.2s linear forwards;
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
  }
}
@-webkit-keyframes modal_open_pc {
  0% {
    width: 0;
  }
  100% {
    width: 100vw;
  }
}
@keyframes modal_open_pc {
  0% {
    width: 0;
  }
  100% {
    width: 100vw;
  }
}
@-webkit-keyframes modal_open__items_pc {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal_open__items_pc {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes modal_open__img_pc {
  0% {
    width: 0;
  }
  100% {
    width: 40%;
  }
}
@keyframes modal_open__img_pc {
  0% {
    width: 0;
  }
  100% {
    width: 40%;
  }
}
@-webkit-keyframes modal_open__img_sp {
  0% {
    height: 0;
  }
  100% {
    height: 37%;
  }
}
@keyframes modal_open__img_sp {
  0% {
    height: 0;
  }
  100% {
    height: 37%;
  }
}
body section#question ul {
  width: 700px;
  margin: 65px auto 0 auto;
}
@media screen and (max-width: 544px) {
  body section#question ul {
    width: 90%;
    margin-top: 100px;
  }
}
body section#question ul li {
  margin-bottom: 40px;
}
@media screen and (max-width: 544px) {
  body section#question ul li {
    margin-bottom: 70px;
  }
}
body section#question ul li .questions {
  font-size: 26px;
  font-weight: 700;
  color: #0095cf;
}
@media screen and (max-width: 544px) {
  body section#question ul li .questions {
    font-size: 20px;
  }
}
body section#question ul li .questions::before {
  content: "Q.";
  font-size: 26px;
  font-weight: 700;
  color: #0095cf;
  position: absolute;
  top: 5px;
  left: -32px;
}
@media screen and (max-width: 544px) {
  body section#question ul li .questions::before {
    font-size: 20px;
    top: -23px;
    left: 2px;
  }
}
body section#question ul li .answers {
  letter-spacing: 1px;
  margin-top: 20px;
}
body section#companies ul {
  width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 544px) {
  body section#companies ul {
    width: 95%;
  }
}
body section#companies ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
}
body section#companies ul li .position {
  font-size: 18px;
  width: 45px;
  margin-right: 15px;
}
body section#companies ul li:nth-of-type(1) {
  margin-top: 70px;
}
@media screen and (max-width: 544px) {
  body section#companies ul li:nth-of-type(1) {
    margin-top: 90px;
  }
}
body section#companies ul li:nth-of-type(1) .companies_logo {
  width: 423px;
  height: 56px;
  background: url(../imgs/footer_kanko.svg) no-repeat top left/contain;
}
@media screen and (max-width: 544px) {
  body section#companies ul li:nth-of-type(1) .companies_logo {
    width: calc(432px*.6);
    height: calc(56px*.6);
  }
}
body section#companies ul li:nth-of-type(2) .companies_logo {
  width: 343px;
  height: 73px;
  background: url(../imgs/footer_koutougakko_renmei.svg) no-repeat top left/contain;
}
@media screen and (max-width: 544px) {
  body section#companies ul li:nth-of-type(2) .companies_logo {
    width: calc(343px*.65);
    height: calc(73px*.65);
  }
}
body section#companies ul li:nth-of-type(3) .companies_logo {
  width: 473px;
  height: 43px;
  background: url(../imgs/footer_avex.svg) no-repeat top left/contain;
}
@media screen and (max-width: 544px) {
  body section#companies ul li:nth-of-type(3) .companies_logo {
    width: calc(473px*.65);
    height: calc(43px*.65);
  }
}
body section#contact h3.contact__mail-ad {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  width: 560px;
  margin: 74px auto 60px auto;
}
body section#contact h3.contact__mail-ad span {
  font-size: 26px;
  font-weight: 700;
  color: #0095cf;
}
@media screen and (max-width: 544px) {
  body section#contact h3.contact__mail-ad {
    font-size: 18px;
    width: 95%;
    margin-top: 120px;
    margin-bottom: 40px;
  }
  body section#contact h3.contact__mail-ad span {
    display: block;
    font-size: 18px;
    text-align: center;
  }
}
body section#contact h3.contact__mail-ad::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 25px;
  margin-left: -45px;
  background: url(../imgs/mail.svg) no-repeat center/contain;
}
@media screen and (max-width: 544px) {
  body section#contact h3.contact__mail-ad::before {
    text-align: center;
    inset: 0 !important;
    margin: auto !important;
    margin-top: -35px !important;
  }
}
body section#contact ul {
  display: block;
  width: 700px;
  text-align: center;
  margin: 0 auto 46px auto;
}
@media screen and (max-width: 544px) {
  body section#contact ul {
    width: 95%;
  }
}
body section#contact ul li {
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 544px) {
  body section#contact ul li {
    font-size: 13px;
    margin-bottom: 15px;
  }
  body section#contact ul li:last-child {
    letter-spacing: 0;
  }
}
body section#contact h4 {
  letter-spacing: 1px;
  width: 700px;
  margin: 0 auto 30px auto;
}
@media screen and (max-width: 544px) {
  body section#contact h4 {
    font-size: 13px;
    width: 95%;
    margin-bottom: 20px;
  }
}
body section#contact h4 .cross {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 27px;
  right: 27px;
  background: url(../imgs/cross.svg) no-repeat top right/contain;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
body section#contact h4 .cross:hover {
  cursor: pointer;
}
@media screen and (max-width: 544px) {
  body section#contact h4 .cross {
    top: 19px;
    rigth: 19px;
  }
}
body section#contact h4#contact__privacy-policy {
  font-weight: bold;
  text-align: center;
  height: 79px;
  padding: 25px;
  border: solid 2px #0095cf;
  overflow: hidden;
}
@media screen and (max-width: 544px) {
  body section#contact h4#contact__privacy-policy {
    font-size: 14px;
    height: 60px;
    padding: 18px;
  }
}
body section#contact h4#contact__privacy-policy .contact__paragraph {
  padding-top: 25px;
}
body section#contact h4#contact__privacy-policy .contact__paragraph p {
  font-size: 14px;
  font-weight: 400;
  color: #4d4d4d;
}
@media screen and (max-width: 544px) {
  body section#contact h4#contact__privacy-policy .contact__paragraph p {
    font-size: 13px;
  }
}
body section#contact h4#contact__privacy-policy .contact__paragraph ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 544px) {
  body section#contact h4#contact__privacy-policy .contact__paragraph ul {
    width: 100%;
    margin-bottom: 30px;
  }
}
body section#contact h4#contact__privacy-policy .contact__paragraph ul li {
  font-size: 14px;
  font-weight: 400;
  text-align: justify;
  width: 70%;
  margin: 20px auto 0 -50px;
}
@media screen and (max-width: 544px) {
  body section#contact h4#contact__privacy-policy .contact__paragraph ul li {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    width: 85%;
    margin-left: 0;
  }
}
body section#contact h4#contact__privacy-policy .contact__paragraph ul .privacy_logo {
  display: inline-block;
  width: 110px;
  height: 110px;
  margin-left: 40px;
}
@media screen and (max-width: 544px) {
  body section#contact h4#contact__privacy-policy .contact__paragraph ul .privacy_logo {
    display: block;
    width: 80px;
    height: 80px;
    margin-left: 0;
  }
}
body section#contact h4#contact__privacy-policy .contact__paragraph ul .privacy_logo img {
  width: 100%;
  height: 100%;
}
body section#contact h4#contact__terms-of-use {
  font-weight: bold;
  text-align: center;
  height: 79px;
  margin-bottom: 100px;
  padding: 25px;
  border: solid 2px #0095cf;
  overflow: hidden;
}
@media screen and (max-width: 544px) {
  body section#contact h4#contact__terms-of-use {
    font-size: 14px;
    height: 60px;
    margin-bottom: 50px;
    padding: 18px;
  }
}
body section#contact h4#contact__terms-of-use .contact__paragraph {
  padding-top: 25px;
}
body section#contact h4#contact__terms-of-use .contact__paragraph p {
  font-size: 14px;
  font-weight: 400;
  color: #4d4d4d;
}
body section#contact h4#contact__terms-of-use .contact__paragraph p .font--pink, body section#contact h4#contact__terms-of-use .contact__paragraph p .font--blue {
  font-size: 14px;
  font-weight: 500;
}
body section#contact .contact--open {
  height: auto !important;
}
body section#contact .contact--open .cross {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 544px) {
  body section#contact .contact--open {
    height: auto;
  }
}
body footer#footer {
  width: 100%;
}
body footer#footer #footer__apply-button__container {
  width: 100%;
  height: 350px;
  padding-top: 125px;
  -webkit-animation: footerAnimation 45s linear infinite alternate;
          animation: footerAnimation 45s linear infinite alternate;
}
@-webkit-keyframes footerAnimation {
  0% {
    background: url(../imgs/footer_bg.jpg) no-repeat center 0/cover;
  }
  100% {
    background: url(../imgs/footer_bg.jpg) no-repeat center 100%/cover;
  }
}
@keyframes footerAnimation {
  0% {
    background: url(../imgs/footer_bg.jpg) no-repeat center 0/cover;
  }
  100% {
    background: url(../imgs/footer_bg.jpg) no-repeat center 100%/cover;
  }
}
@media screen and (max-width: 544px) {
  body footer#footer #footer__apply-button__container {
    height: 178px;
    padding-top: 60px;
    background: url(../imgs/footer_bg.jpg) no-repeat center 60%/cover;
  }
}
body footer#footer #footer__apply-button__container a#footer__apply-button {
  color: white;
  background: #0095cf;
  opacity: 0.8;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
body footer#footer #footer__apply-button__container a#footer__apply-button:hover {
  opacity: 1;
}
body footer#footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100px;
}
@media screen and (max-width: 544px) {
  body footer#footer ul {
    display: block;
    height: 70px;
    padding: 0 10px;
  }
}
body footer#footer ul #footer__logo a {
  display: block;
  margin: 25px auto auto 20px;
  width: 191px;
  height: 44px;
}
@media screen and (max-width: 544px) {
  body footer#footer ul #footer__logo a {
    margin: 20px auto 0 auto;
    width: 143px;
    height: 33px;
  }
}
body footer#footer ul p {
  font-size: 14px;
  text-align: right;
  top: 70px;
  right: 20px;
}
@media screen and (max-width: 544px) {
  body footer#footer ul p {
    font-size: 10px;
    text-align: center;
    top: 10px;
    right: 0;
  }
}

@-webkit-keyframes scrollToLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-221.5%);
            transform: translateX(-221.5%);
  }
}

@keyframes scrollToLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-221.5%);
            transform: translateX(-221.5%);
  }
}
@-webkit-keyframes scrollToRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(213%);
            transform: translateX(213%);
  }
}
@keyframes scrollToRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(213%);
            transform: translateX(213%);
  }
}
.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

/* 画面内に入った状態 */
.fadein.scrollin {
  opacity: 1 !important;
  transform1: translate(0, 0);
}

.menu_baned__header {
  color: gray !important;
  opacity: 0.5;
}
.menu_baned__header::after {
  opacity: 0;
}

.menu_baned__hamburger {
  color: gray !important;
  opacity: 0.5;
}

.apply-button--baned {
  font-size: 25px;
  font-weight: 500;
  color: #cecece;
  text-align: center;
  display: block;
  height: 85px;
  width: 570px;
  margin-right: auto;
  margin-left: auto;
  padding: 19px 120px 15px 120px;
  background: gray;
  border-radius: 50px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 544px) {
  .apply-button--baned {
    font-size: 18px;
    height: 65px;
    width: 95%;
    padding: 10px 0 20px 0;
  }
}
.apply-button--baned .apply-button--baned__data {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #ffed00;
  display: block;
  width: 300px;
  right: 0;
  left: 0;
  margin: auto;
  padding-right: 10px;
}
@media screen and (max-width: 544px) {
  .apply-button--baned .apply-button--baned__data {
    font-size: 13px;
  }
}

.pointer-events--none {
  pointer-events: none;
}

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

   uni 追加

-----------------------------------------------------------------*/
.body_entry_form section,
.body_entryform section,
.body_entry_form_test section {
  margin:100px auto 80px;
  padding-top: 45px;
  max-width: 1200px;
}
@media screen and (max-width: 544px){
.body_entry_form section,
.body_entryform section,
.body_entry_form_test section {
    padding: 0 20px 30px;
}
}

.body_entry_form section 
.body_entryform section h2,
.body_entry_form_test section h2 {
  margin-bottom:70px;
}

.input_not_required {
  position:static;
}
.error {
  color: #FF0000;
}

/* input 余白 */
.body_entryform section .input-table-username input,
.body_entryform section .input-table-teacher_name input,
.body_entryform section .input-table-parents_name input{
  margin-right: 15px;
}

.container ul.form_flow {
	display:-webkit-box;
	display:flex;
	-webkit-box-pack:space-around;
	justify-content:space-around;
	border-right: 1px solid #f4f4f4;
	border-bottom: 1px solid #f4f4f4;
	margin:50px auto 0;
}

.form_flow li {
	-webkit-box-flex:1;
	flex-grow:1;
}

.form_flow li,
	.form_flow li:first-child {
	display: block;
	width: 100%;
	text-align: left;
	border-left: 1px solid #f4f4f4;
	text-align:center;
}

.form_flow li {
	border-top: 1px solid #f4f4f4;
	padding:10px;
}
/*
.form_flow li:first-child {
	border-top: none;
}
*/
.form_flow li.current {
	background-color:#f4f4f4;
}


/* step */
.progressbar {
		  margin: 40px auto 30px;
		  padding: 0;
		  counter-reset: step;
      z-index: 0;
      position: relative;
      width: 70%;
		}
		.progressbar li {
		  list-style-type: none;
		  width: 33.3%;
		  float: left;
		  font-size: 12px;
		  position: relative;
		  text-align: center;
		  text-transform: uppercase;
		  color: #aaa;
		}
		.progressbar li:before {
		  width: 30px;
		  height: 30px;
		  content: counter(step);
		  counter-increment: step;
		  line-height: 30px;
		  display: block;
		  text-align: center;
		  margin: 0 auto 10px auto;
		  border-radius: 50%;
		  background-color: #eee;
		}
		.progressbar li:after {
		  width: 100%;
		  height: 2px;
		  content: '';
		  position: absolute;
		  background-color: #eee;
		  top: 15px;
		  left: -50%;
		  z-index: -1;
		}
		.progressbar li:first-child:after {
		  content: none;
		}
		.progressbar li.active {
		  color: #0095cf;
		}
		.progressbar li.active:before {
		  background-color: #0095cf;
		  color:#fff;
		}
		.progressbar li.active + li:after {
		  background-color: #0095cf;
		}

/* table */
#input-table table th .input_required {
	display:inline-block;
}
/* contact form */
#input-table .input_button {
	display:inline-block;
	border-radius: 50px;
	text-align: center;
	cursor: pointer;
	padding: 30px 120px;
	background: var(--main-color);
	color: #ffffff;
	line-height: 1em;
	transition: .3s;
	border: 2px solid var(--main-color);
	margin-bottom:20px;
  max-width: 570px;
}
                @media screen and (max-width: 544px){
                #input-table .input_button {
                    font-size: 18px;
                    width: 95%;
                    padding: 20px 0;
                }
                }

#input-table .input_button:hover {
	color: var(--main-color);
	background: #ffffff;
}
.form_radio {
	margin-top: 3px;
}
.input-table-title div {
	display:inline-flex;
}

#input-table {
	display: block;
	width: 100%;
	max-width: 100%;
}

#input-table table {
	width: 100%;
	padding: 5px;
	margin: 0 auto 20px;
	border: none;
	box-shadow: inset 0 0 0 2px #f0f0f0;
	background-color: #ffffff;
  border-collapse:collapse
}

#input-table table li {
	margin-left: 0;
}

#input-table table th {
	width: 35%;
	padding: 30px 60px 20px 30px;
	color: #3f4242;
	background: rgba(0, 0, 0, 0);
	text-align: left;
	border: none;
	position: relative;
	vertical-align: top;
}

#input-table table td {
	padding-left: 10px;
}

#input-table table tr {
	transition: linear 0.2s;
	border-top: 1px solid #ccc;
}

#input-table table tr:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

#input-table table tr:first-child {
	border-top: 5px solid #f0f0f0;
}

#input-table table tr:last-child {
	border-top: 2px solid #f0f0f0;
}

.error_msg_pic01{
  display: none;
}

.input_required,
.input_not_required:before {
	font-size: 0.9em;
	padding: 2px 6px;
	display: inline-block;
	background-color: var(--main-color);
	color: var(--footer-txtcolor);
	position: absolute;
	right: 10px;
	top: 30px;
}

.input_not_required:before {
	content: "任意";
	background-color: #adadad;
	text-align: center;
}

#input-table table td {
	padding: 30px 30px;
	border: none;
	text-align: left;
}

#input-table table tr:last-child td {
	text-align: center;
}

#input-table div.formcomment {
	clear: both;
	margin-left: 7px;
	margin-top: 3px;
}

#input-table table td ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

input[type="text"],
input[type="password"] {
	border: 0;
	padding: 4px;
	border: solid 1px #ccc;
	max-width: 100% !important;
	resize: none;
	border-radius: 5px;
}

.body_textbook_form input[type="text"] {
	margin-bottom: 10px;
}

#input-table table .form_input_addnumber {
	width: 40% !important;
}

#input-table table textarea {
	padding: 10px;
	width: 96% !important;
	border: solid 1px #ccc;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

input:focus,
input:textarea {
	border: solid 1px #3ba5eb;
}

.input_button {
	font-size: 0.9em;
	font-weight: bold;
	-webkit-appearance: none;
	padding: 4px 10px;
	background-color: var(--main-color);
	color: var(--footer-txtcolor);
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

#input-table .submit_button {
	text-align: center;
	padding-top: 20px;
}

#input-table .privacy {
	font-size: 0.9em;
	height: 200px;
	overflow: auto;
	border: 1px solid #ddd;
	padding: 10px;
	background: #ffffff;
	border-radius: 3px;
}

/* セパレーター */
#input-table table tr.input-formgroup-blank th{
	background:#F0F0F0;
	border:none;
}
#input-table table tr.input-formgroup{
	padding-top:20px;
}
#input-table table tr.input-formgroup th{
	text-align:left;
	border:none;
	padding:10px 0 5px 50px;
	background-image:url(./img/icon_arrow_down.png);
	background-repeat:no-repeat;
	background-position: 5px 10px;
	background-color:#074D93;/* セパレーターth背景色 */
	border-top:2px solid #EEEEEE;
	border-left:2px solid #EEEEEE;
	border-right:2px solid #EEEEEE;
	border-bottom:1px solid #EEEEEE;
	border-radius: 5px 5px 0 0 / 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
}
#input-table table tr.input-formgroup th.formgroup-closed{
	background-image:url(./img/icon_arrow_down.png);
	background-repeat:no-repeat;
	background-position: 5px 10px;
	border-bottom:2px solid #EEEEEE;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
#input-table table tr.input-formgroup th:hover{
	cursor:pointer;
	filter: alpha(opacity=90);
	opacity:0.90;
	-moz-opacity:0.90;
	-ms-filter: "alpha(opacity=90)";
}
#input-table table tr.input-formgroup span.input-formgroup-title{
	display:block;
	color:#FFFFFF;/* セパレータータイトル文字色 */
	font-size:1.3em;/* セパレータータイトル文字サイズ */
	padding-bottom:5px;
}
#input-table table tr.input-formgroup span.input-formgroup-text{
	position: relative;
	display:block;
	color:#FFFFFF;/* セパレーター説明文文字色 */
	padding:0 5px 0 1em;
	margin:5px 10px 10px 10px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
}
#input-table table tr.input-formgroup span.input-formgroup-text:before{
	position: absolute;
	top: 0.5em;
	left: 0;
	width: 0.5em;
	height: 0.5em;
	background: #FFFFFF;
	content:"";
	border-radius: 1px;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
}
#input-table table tr.input-formgroup span.input-formgroup-text a:visited,
#input-table table tr.input-formgroup span.input-formgroup-text a:link{
	color:#FFFFFF;/* セパレーター説明文内リンク色1 */
	text-decoration:underline;
}
#input-table table tr.input-formgroup span.input-formgroup-text a:hover,
#input-table table tr.input-formgroup span.input-formgroup-text a:active{
	color:#66FFFF;/* セパレーター説明文内リンク色2 */
	text-decoration:underline;
}
#input-table table .input-table-trigger td div div:last-of-type {
  clear:both;
}
#input-table table .input-table-activity td div div:last-of-type {
  clear:both;
}
.form_input_trigger_txt {
  display:block;
  clear: both;
}
@media screen and (max-width:779px) {
	#input-table table {
		width: 100%;
		border-collapse: collapse;
		border-bottom: 1px solid #CCCCCC;
    table-layout: fixed;
	}

	#input-table table th ,
		#input-table table td {
		width: 100%;
		display: block;
		border-top: none;
		text-align: left;
	}

	#input-table table th {
		padding: 6px 45px 6px 12px;
		background: #eeeeee none repeat scroll 0 0;
		font-weight: normal;
	}
	#input-table table td {
    padding: 17px 5%;
	}
	#input-table table td:after {
		content:"";
		display:block;
		clear:both;
	}
	input[type="text"], input[type="password"] {
		width: 100%!important;
	}
  .input-table-school_year input[type="text"] {
    width: 30px!important;
	}
	#input-table table textarea {
		width: 96%;
		max-height: 24vw;
		font-size: 110%;
	}
	.input_required,
	.input_not_required:before {
		position: absolute;
		right: 10px;
		font-size: 0.8em;
		top: 6px;
	}
}


@media screen and (max-width:479px) {
	.form_flow li {
		display: block;
		width: 100%;
		border-left: 10px solid #cccccc;
		border-top: 1px dotted #ccc;
		text-align: left;
	}
	.form_flow li:first-child {
		border-top: none;
	}
}

#input-table .scroll {
		width: 80%;
    height: 260px;
    overflow-y: scroll;
    padding: 10px 20px;
    font-size: 0.8em;
    margin-bottom: 20px;
    border: solid 1px #ccc;
  word-break: break-all;
}
            @media screen and (max-width:479px) {
            	#input-table .scroll {
            		width: 100%;
            	}
              }

#input-table .scroll a {
  font-size: 1em;
  color: var(--main-color);
}

#input-table .clear {
  clear: both;
}
#input-table .small {
  font-size: 0.9em;
}

#input-table .normal {
  font-size: 1em;
}
#input-table img {
  width: 100%;
}

.body_entry_form,
.body_entry_form_test {
  overflow-x: hidden;
}
::placeholder {
  color: #d2d2d2;
}

            @media screen and (max-width:479px) {
            	.input-table-uniform_type td div div {
            		float:none!important;
            	}
              }



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

　　　　　　　画像選択 

------------------------------- */
/*
.input-table-uniform_type label{
    width: 100%;
    display: flex;
    margin: 0 0 12px;
    background-size: 140px auto;
    background-position: left center;
    padding: 6px 0 126px 158px;
    text-indent: -9999px;
    }
.input-table-uniform_type input[value="ブレザー"]+label{
        background-image: url(../entry_form/uniform_type01.jpg);
    }
.input-table-uniform_type input[value="ブレザー"]:checked+label{
        background-image: url(../entry_form/uniform_type01_on.jpg);
    }

.input-table-uniform_type input[value="詰襟（学ラン）"]+label{
        background-image: url(../entry_form/uniform_type02.jpg);
    }
.input-table-uniform_type input[value="詰襟（学ラン）"]:checked+label{
        background-image: url(../entry_form/uniform_type02_on.jpg);
    }

.input-table-uniform_type input[value="セーラー服"]+label{
        background-image: url(../entry_form/uniform_type03.jpg);
    }
.input-table-uniform_type input[value="セーラー服"]:checked+label{
        background-image: url(../entry_form/uniform_type03_on.jpg);
    }

.input-table-uniform_type input[value="スーツ"]+label{
        background-image: url(../entry_form/uniform_type04.jpg);
    }
.input-table-uniform_type input[value="スーツ"]:checked+label{
        background-image: url(../entry_form/uniform_type04_on.jpg);
    }

.input-table-uniform_type input[value="イートン"]+label{
        background-image: url(../entry_form/uniform_type05.jpg);
    }
.input-table-uniform_type input[value="イートン"]:checked+label{
        background-image: url(../entry_form/uniform_type05_on.jpg);
    }

.input-table-uniform_type input[value="夏服・合服"]+label{
        background-image: url(../entry_form/uniform_type06.jpg);
    }
.input-table-uniform_type input[value="夏服・合服"]:checked+label{
        background-image: url(../entry_form/uniform_type06_on.jpg);
    }

.input-table-uniform_type input[value="その他"]+label{
        background-image: url(../entry_form/uniform_type07.jpg);
    }
.input-table-uniform_type input[value="その他"]:checked+label{
        background-image: url(../entry_form/uniform_type07_on.jpg);
    }
*/

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: clear */
.progressbar:after {
	content: "";
	display: block;
	clear: both;
}