/* base
========================================================================== */
*:focus {
  outline: none;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  font-feature-settings: "palt" 1;
  font-family: "Clarimo UD PE Regular", "UD Shin Go SC Regular", Arial, sans-serif;
  font-size: 1.4em;
  line-height: 1;
  letter-spacing: 0;
  color: #222222;
  width: 100%;
  background: #eaeff4;
}
@media screen and (min-width: 980px) {
  body {
    font-size: 1.4em;
    min-width: 980px;
  }
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-weight: 500;
}

a {
  box-sizing: border-box;
}

i {
  font-style: italic;
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

main {
  position: relative;
}

.wrapper {
  z-index: 0;
  transition: 0.5s;
  max-width: 1536px;
  margin: 0 auto;
  background: #fff;
}

.link-invalid {
  opacity: 0.3;
  pointer-events: none;
}

/* module
========================================================================== */
/* judges modal
========================================================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: white;
}

.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.modal__content {
  position: relative;
  background-color: #fff;
  width: 100%;
  max-width: 1000px;
  max-height: 100svh;
  padding: 0;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .modal__content {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
  }
}
@media screen and (min-width: 768px) and (max-width: 979px) {
  .modal__content {
    margin: 40px;
    padding: 20px;
  }
}
@media screen and (min-width: 980px) {
  .modal__content {
    box-sizing: border-box;
    border-radius: 10px;
    z-index: 1;
  }
}

.modal__close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}
.modal__close-btn::before, .modal__close-btn::after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 30px;
  width: 2px;
  background-color: #255b8f;
}
.modal__close-btn::before {
  transform: rotate(45deg);
}
.modal__close-btn::after {
  transform: rotate(-45deg);
}
.modal__close-btn:hover {
  opacity: 0.6;
}

.swiper-button-next,
.swiper-button-prev {
  --swiper-navigation-sides-offset: 20px;
  top: 200px;
}
@media screen and (min-width: 980px) {
  .swiper-button-next,
  .swiper-button-prev {
    top: 50%;
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  bottom: 0;
  content: "" !important;
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
  width: 20px;
  height: 20px;
  border-top: 2px solid #255b8f;
  border-right: 2px solid #255b8f;
}

.swiper-button-prev::after {
  transform: rotate(225deg);
}

.swiper-button-next::after {
  transform: rotate(45deg);
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

/* page
========================================================================== */
/* Judges Index
========================================================================== */
.judge_category {
  width: 100%;
  margin: 40px 0 50px;
}
.judge_category ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.judge_category ul li {
  display: block;
  width: 150px;
  margin: 0 0 15px 0;
}
.judge_category ul li a {
  font-size: 1.6rem;
  color: #255b8f;
  text-decoration: none;
}
.judge_category ul li a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-bottom: 2px;
  margin-right: 5px;
  background-image: url(/img/judge/arrow_judges_category.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  transition: 0.2s;
}

@media screen and (min-width: 1080px) {
  .judge_content {
    margin-bottom: 60px;
  }
}
.judge_content .lead {
  display: block;
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 30px 20px;
  text-align: justify;
  color: #255b8f;
}
@media screen and (min-width: 1080px) {
  .judge_content .lead {
    padding: 60px 0;
    font-size: 1.5rem;
    margin-left: calc((100% - 720px) / 4);
  }
}
.judge_content .judge_outer {
  padding-top: 50px;
  background-color: #e5ecf1;
}
.judge_content .judge_outer:nth-child(odd) {
  background-color: #f6f8fa;
}
.judge_content .judge_outer h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #255b8f;
  margin-bottom: 40px;
}
@media screen and (min-width: 1080px) {
  .judge_content .judge_outer h2 {
    text-align: left;
    margin-left: calc((100% - 720px) / 4);
  }
}
.judge_content .judge_outer .judge_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.judge_content .judge_outer .judge_inner .judge {
  width: 240px;
}
.judge_content .judge_outer .judge_inner .judge .open-modal {
  transition: 0.3s;
  padding: 10px;
  border-radius: 5px;
  display: block;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 50px;
}
.judge_content .judge_outer .judge_inner .judge .open-modal .judge-img {
  margin-bottom: 30px;
  border-radius: 5px;
  overflow: hidden;
}
.judge_content .judge_outer .judge_inner .judge .open-modal .judge-img img {
  transition: 0.3s;
  width: 100%;
}
.judge_content .judge_outer .judge_inner .judge .open-modal .name {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.judge_content .judge_outer .judge_inner .judge .open-modal .alp {
  font-size: 1.1rem;
  color: #255b8f;
  letter-spacing: normal;
}
.judge_content .judge_outer .judge_inner .judge .open-modal .txt {
  margin-top: 20px;
  font-size: 1.3rem;
  line-height: 1.6;
  text-align: justify;
}
.judge_content .judge_outer .judge_inner .judge .open-modal .txt span {
  font-size: 1.1rem;
  color: #255b8f;
}

@media screen and (min-width: 768px) {
  #judge .box-content {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    width: 100%;
    max-width: 1536px;
    padding: 0 80px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 979px) {
  #judge .box-content {
    padding: 0 40px;
  }
}
@media screen and (min-width: 768px) {
  .judge_category {
    position: sticky;
    top: 150px;
    left: 0;
    width: 150px;
    margin: 50px 0 0 50px;
    z-index: 10;
  }
  .judge_category ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
  }
  .judge_category ul li {
    display: block;
    width: 150px;
    margin: 0 0 30px 0;
    opacity: 0.5;
    transition: 0.3s;
  }
  .judge_category ul li:hover {
    opacity: 1;
  }
  .judge_category ul li a {
    font-size: 1.6rem;
    color: #255b8f;
    text-decoration: none;
  }
  .judge_category ul li a::before {
    content: "";
    display: inline-block;
    margin-bottom: 2px;
    margin-right: 10px;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: transparent;
  }
  .judge_category ul .current {
    opacity: 1;
  }
  .judge_category ul .current a::before {
    background: #255b8f;
  }
  .judge_content {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 979px) {
  .judge_content {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .judge_content .judge_outer {
    min-height: 500px;
    padding: 60px 0 0;
  }
  .judge_content .judge_outer .judge_inner {
    display: flex;
    justify-content: space-evenly;
    align-items: start;
    width: 100%;
  }
  .judge_content .judge_outer .judge_inner .open-modal:hover {
    background: #fff;
  }
  .judge_content .judge_outer .judge_inner .open-modal:hover .judge-img img {
    transform: scale(1.1);
  }
}
/* judges detail
========================================================================== */
.judge_detail_container {
  background: #fff;
  padding: 20px;
}
@media screen and (min-width: 980px) {
  .judge_detail_container {
    padding: 40px;
  }
}
.judge_detail_container .judge_detail_inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 980px) {
  .judge_detail_container .judge_detail_inner {
    flex-direction: row;
  }
}
.judge_detail_container .judge_detail_inner .box {
  padding: 20px 20px 0;
  text-align: center;
}
@media screen and (min-width: 980px) {
  .judge_detail_container .judge_detail_inner .box {
    padding: 20px;
  }
}
.judge_detail_container .judge_detail_inner .box h2 {
  display: block;
  height: 50px;
  font-size: 2rem;
  font-family: "Clarimo UD PE Medium", "UD Shin Go SC Medium", Arial, sans-serif;
  color: #255b8f;
}
.judge_detail_container .judge_detail_inner .box .profile_img {
  display: block;
  width: 220px;
  height: 220px;
  overflow: hidden;
  margin: 0 auto 30px;
  border-radius: 5px;
}
.judge_detail_container .judge_detail_inner .box .profile_img img {
  width: 100%;
}
.judge_detail_container .judge_detail_inner .box .name {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.judge_detail_container .judge_detail_inner .box .alp {
  font-size: 1.1rem;
  color: #255b8f;
  letter-spacing: normal;
  margin-bottom: 10px;
}
.judge_detail_container .judge_detail_inner .box .job {
  width: 100%;
  font-size: 1.2rem;
  margin: 14px 0;
  line-height: 1.4;
}
.judge_detail_container .judge_detail_inner .box .sns {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 0;
  margin-bottom: 20px;
}
.judge_detail_container .judge_detail_inner .box .sns img {
  width: 24px;
}
.judge_detail_container .judge_detail_inner .box .link a {
  font-size: 1.2rem;
  color: #000;
  text-decoration: none;
}
.judge_detail_container .judge_detail_inner .box .lead {
  text-align: justify;
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 30px;
}
@media screen and (min-width: 980px) {
  .judge_detail_container .judge_detail_inner .box .lead {
    padding: 50px 20px 0;
  }
}
.judge_detail_container .judge_detail_inner .box .profile h3 {
  text-align: left;
  font-size: 1.4rem;
  color: #255b8f;
  margin-bottom: 10px;
}
.judge_detail_container .judge_detail_inner .box .profile p {
  text-align: justify;
  font-size: 1.2rem;
  line-height: 1.7;
}
.judge_detail_container .judge_detail_inner .box .profile a {
  color: #255b8f;
  text-decoration: none;
}
.judge_detail_container .judge_detail_inner .box .profile a:hover {
  opacity: 0.8;
}/*# sourceMappingURL=judge.css.map */