@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Nunito:wght@400;500;600;700&display=swap");
/*
  * Reset CSS
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* list Remove default style */
ul,
ol {
  padding: 0;
  list-style: none;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd,
main {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizespeed;
  line-height: 1.5;
  width: 100%;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* フォームリセット */
input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
}

/* stylelint-disable */
textarea {
  resize: vertical;
}

/* stylelint-enable */
input[type=radio] {
  visibility: hidden;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

/* mixin
------------------------------------------------------------*/
/* =====================
 * Baseスタイル
===================== */
:root,
:root[theme=Default] {
  --f-family-main: "Noto Sans JP", sans-serif;
  --f-font-size: 16px;
  --f-line-height: 1.5;
  --f-weight-regular: 400;
  --f-weight-medium: 500;
  --f-weight-semibold: 600;
  --f-weight-bold: 700;
  --f-weight-black: 900;
  --c-base: #242424;
  --c-white: #ffffff;
  --c-blue: #87D4FC;
  --c-pink: #D730FF;
  --c-base-rgb: 26, 26, 26;
}

html {
  /* ----------------------------
  * リキッドレイアウト rootのfont-sizeを可変にして、単位をremで指定することでレイアウトを可変にする
    // 計算式参考サイト：https://lpeg.info/html/css_calc_font.html
    // font-size: calc([最小値px] + ([最大値] - [最小値]) * ((100vw - [最小画面幅px]) / ([最大画面幅] - [最小画面幅])));
    // clampと併用して上限下限を設定すること。しないと無限に変化し続ける
  * ---------------------------- */
  font-size: 16px;
}
@media (max-width: 1140px) {
  html {
    font-size: clamp(12px, 12px + 4 * (100vw - 768px) / 372, 16px);
  }
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: clamp(12px, 4.2666666667vw, 16px);
  }
}

body {
  font-family: var(--f-family-main);
  font-size: var(--f-font-size);
  font-weight: var(--f-weight-regular);
  line-height: var(--f-line-height);
  background-color: var(--c-white);
  color: var(--c-base);
  overflow-wrap: break-word;
  word-break: break-all;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

a {
  display: inline-block;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

.is-pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
.is-pc--inleine {
  display: inline-block !important;
}
@media screen and (max-width: 767px) {
  .is-pc--inleine {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .is-pc--inleine {
    display: none !important;
  }
}

.is-tab {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .is-tab {
    display: block !important;
  }
}
.is-tab--inleine {
  display: inline-block !important;
}

.is-sp {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .is-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block !important;
  }
}
.is-sp--inleine {
  display: inline-block !important;
}

.sp-none {
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .sp-none {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-block {
    display: inline-block;
  }
}

.center {
  margin: 0 auto;
  text-align: center;
}

/*container
------------------------------------------------------------*/
.l-bg-fix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../img/bg-fix.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  transform: none !important;
  will-change: auto;
  backface-visibility: hidden;
  -webkit-transform: none !important;
  -webkit-backface-visibility: hidden;
}

.l-container {
  position: relative;
  z-index: 1;
}

.l-inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .l-inner {
    padding: 0 16px;
  }
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 4.5%;
  }
}

.header__inner,
.judge__box,
.judge__people {
  opacity: 0;
  visibility: hidden;
}

/* components
------------------------------------------------------------*/
/* header
------------------------------------------------------------*/
.header {
  position: relative;
  height: 100vh;
}
.header__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header__ttl {
  width: 415px;
  margin: 0 auto 70px;
}
@media screen and (max-width: 1024px) {
  .header__ttl {
    width: 60%;
    margin: 0 auto 5.5vw;
  }
}
.header__ttl img {
  filter: drop-shadow(0px 0px 24px rgba(0, 0, 0, 0.25));
}
.header__list {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .header__list {
    gap: 16px;
  }
}
.header__item {
  position: relative;
  z-index: 1;
  width: 525px;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  border-radius: 50px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .header__item {
    border-radius: 14px;
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .header__item {
    width: 42vw;
  }
}
.header__item::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4px;
  background: linear-gradient(to right, var(--c-pink), var(--c-blue));
  border-radius: inherit;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .header__item::before {
    padding: 2px;
  }
}
.header__item-link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 12.5% 25%;
}
.header__item-link:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
@media screen and (max-width: 1024px) {
  .header__item-link {
    padding: 8% 16%;
  }
}
.header__scroll {
  position: absolute;
  text-align: center;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
}
.header__scroll img {
  display: inline-block;
  width: 56px;
  margin: 0 auto;
}

.cp_arrows {
  position: relative;
  display: flex;
  height: 300px;
  justify-content: center;
  align-items: center;
}
.cp_arrows .cp_txt {
  margin-top: 48px;
  font-size: 0.9375rem;
  color: var(--c-pink);
}
@media screen and (max-width: 767px) {
  .cp_arrows .cp_txt {
    font-size: 0.75rem;
  }
}
.cp_arrows .cp_arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 10px;
  opacity: 0;
}
.cp_arrows .cp_arrow:first-child {
  animation: arrow-move08 2s ease-in-out infinite;
}
.cp_arrows .cp_arrow:nth-child(2) {
  animation: arrow-move08 2s 1s ease-in-out infinite;
}
.cp_arrows .cp_arrow::before, .cp_arrows .cp_arrow::after {
  position: absolute;
  content: "";
  top: 0;
  width: 33px;
  height: 4px;
  background: var(--c-pink);
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .cp_arrows .cp_arrow::before, .cp_arrows .cp_arrow::after {
    height: 2px;
    width: 26px;
  }
}
.cp_arrows .cp_arrow::before {
  left: 3px;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .cp_arrows .cp_arrow::before {
    left: 8px;
  }
}
.cp_arrows .cp_arrow::after {
  right: 3px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .cp_arrows .cp_arrow::after {
    right: 8px;
  }
}

@keyframes arrow-move08 {
  0% {
    opacity: 0;
    top: 40%;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* footer
------------------------------------------------------------*/
.footer {
  text-align: center;
  padding: 14px 0;
}
.footer__copy {
  font-size: 0.875rem;
  font-weight: 600;
}

/* modal
------------------------------------------------------------*/
/* form
------------------------------------------------------------*/
/* thanks
------------------------------------------------------------*/
/* TOP
------------------------------------------------------------*/
.judge {
  padding: 100px 0;
}
.judge__ttl {
  width: 495px;
  margin: 0 auto 32px;
}
@media screen and (max-width: 1024px) {
  .judge__ttl {
    width: 80%;
  }
}
.judge__about {
  padding: 40px 80px;
  background: linear-gradient(90deg, var(--c-blue) 0%, var(--c-pink) 100%);
  margin-bottom: 50px;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .judge__about {
    padding: 24px 20px;
  }
}
.judge__about-txt {
  font-size: 1.125rem;
  color: var(--c-white);
  font-weight: var(--f-weight-semibold);
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .judge__about-txt {
    font-size: 0.875rem;
    text-align: left;
  }
}
.judge__ttl-sub {
  font-size: 2.5rem;
  color: var(--c-base);
  line-height: 1.2;
  font-weight: var(--f-weight-black);
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .judge__ttl-sub {
    font-size: 1.75rem;
  }
}
.judge__ttl-sub span {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .judge__ttl-sub span {
    font-size: 0.75rem;
  }
}
.judge__professional {
  margin-top: 100px;
}
.judge__peoples {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .judge__peoples {
    gap: 8px;
  }
}
.judge__peoples.-mb {
  margin-bottom: 20px;
}
.judge__people {
  width: 140px;
}
@media screen and (max-width: 767px) {
  .judge__people {
    width: 108px;
  }
}
.judge__people-link:hover {
  opacity: 0.8;
}
.judge__people-img {
  border-radius: 50%;
  border: solid 2px var(--c-white);
  overflow: hidden;
}
.judge__people-img:hover {
  border: none;
}
.judge__people-img img {
  transition: transform 0.6s ease;
}
.judge__people-img img:hover {
  transform: scale(1.15);
}
.judge__people-name {
  font-size: 1.25rem;
  color: var(--c-base);
  font-weight: var(--f-weight-semibold);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .judge__people-name {
    font-size: 0.875rem;
  }
}
.judge__people-name span {
  display: block;
  font-size: 0.8125rem;
  font-weight: var(--f-weight-regular);
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .judge__people-name span {
    font-size: 0.625rem;
  }
}
.judge__box {
  position: relative;
  overflow: visible;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(235deg, rgba(135, 212, 252, 0.7) 0%, rgba(215, 48, 255, 0.7) 100%);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  padding: 30px;
  color: var(--c-white);
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .judge__box {
    flex-direction: column;
    padding: 15px;
  }
}
.judge__box:last-child {
  margin-bottom: 0;
}
.judge__profile {
  position: sticky;
  top: 40px;
  align-self: flex-start;
  width: 200px;
}
@media screen and (max-width: 767px) {
  .judge__profile {
    position: static;
    width: 100%;
  }
}
.judge__profile-img {
  margin-bottom: 20px;
}
.judge__profile-img img {
  border-radius: 8px;
}
.judge__profile-name {
  font-size: 1.125rem;
  font-weight: var(--f-weight-semibold);
  line-height: 1;
  margin-bottom: 8px;
}
.judge__profile-name-sub {
  font-size: 0.875rem;
  font-weight: var(--f-weight-medium);
  line-height: 1.25;
  margin-bottom: 15px;
}
.judge__profile-name-info {
  font-size: 0.75rem;
  font-weight: var(--f-weight-regular);
  line-height: 1.5;
}
.judge__comment {
  flex: 1;
  position: relative;
}
.judge__comment-ttl {
  font-size: 0.875rem;
  margin-bottom: 10px;
}
.judge__comment-box {
  position: relative;
  padding: 20px 20px 20px 20px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .judge__comment-box {
    padding: 18px 16px;
  }
}
.judge__comment-box:last-child {
  margin-bottom: 0;
}
.judge__comment-more {
  font-size: 0.75rem;
  color: var(--c-white);
  padding: 2px 30px 2px 15px;
  border-radius: 100vh;
  border: solid 1px var(--c-white);
  background-color: rgba(255, 255, 255, 0.3);
  width: 85px;
  transition: transform 0.8s ease;
  position: absolute;
  top: 18px;
  right: 18px;
}
@media screen and (max-width: 767px) {
  .judge__comment-more {
    top: 22px;
    right: 12px;
  }
}
.judge__comment-more::after {
  content: "";
  background-image: url(../img/more-plus.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
}
.judge__comment-more.is-active::after {
  content: "";
  background-image: url(../img/more-minus.svg);
  transform: translateY(-15%);
}
.judge__comment-point {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: var(--f-weight-semibold);
  line-height: 1;
  padding: 4px 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .judge__comment-point {
    font-size: 0.75rem;
  }
}
.judge__comment-point::before {
  content: "# ";
}
.judge__comment-wrap {
  overflow: hidden;
  font-size: 0.75rem;
  font-weight: var(--f-weight-regular);
  max-height: 63px;
  transition: max-height 1s ease;
}
@media screen and (max-width: 767px) {
  .judge__comment-wrap {
    max-height: 57px;
  }
}
.judge__comment-wrap.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
  text-overflow: unset;
  max-height: 1000px;
}
@media screen and (max-width: 767px) {
  .judge__comment-wrap.is-expanded .judge__comment-txt.-fast {
    display: block;
    -webkit-box-orient: unset !important;
  }
}
.judge__comment-wrap.is-expanded .judge__comment-txt.-fast::after {
  content: "";
  display: none;
}
.judge__comment-wrap.-height-none {
  max-height: none !important;
}
.judge__comment-txt {
  margin-bottom: 0.5em;
}
.judge__comment-txt:last-child {
  margin-bottom: 0;
}
.judge__comment-txt.-short {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
}
.judge__comment-txt.-short::after {
  content: none;
  display: none;
}
.judge__comment-txt.-txt2 {
  margin-bottom: 1em;
}
.judge__comment-txt.-txt2::after {
  content: "";
  display: block;
  margin-top: 1em;
  width: 30px;
  height: 1px;
  background-color: var(--c-white);
}

.pt0 {
  padding-top: 0;
}/*# sourceMappingURL=style.css.map */