@charset "UTF-8";
/*
 変数定義用のファイルです 
 自由に書き換えてください
*/
/*========= Media Size ===============*/
/*========= Font ===============*/
/*========= Color ===============*/
.pc {
  display: block !important;
}
@media (max-width: 800px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media (max-width: 800px) {
  .sp {
    display: block !important;
  }
}

html {
  font-size: 62.5%;
  margin-top: 0 !important;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: "M PLUS 1p", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  color: #fff;
  overflow-x: hidden;
}
@media screen and (max-width: 800px) {
  body {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

main {
  overflow: hidden;
}

a {
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none;
}

.btn--more {
  width: 260px;
  padding: 20px 0;
  margin: 100px auto;
  border: 1px solid #fff;
  border-radius: 13px;
  text-align: center;
}

img,
ul,
ol,
button {
  display: block;
}

.row {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
}

h2 {
  margin-bottom: 50px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  letter-spacing: 10px;
}
@media screen and (max-width: 800px) {
  h2 {
    font-size: 2rem;
  }
}

.font--accent {
  font-family: "Noto Serif JP", serif;
}

.inner {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
.inner.max--500 {
  max-width: 500px;
}
.inner.max--600 {
  max-width: 600px;
}
.inner.max--700 {
  max-width: 700px;
}
.inner.max--800 {
  max-width: 800px;
}

.loading-container {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12;
}
.loading-container:before {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  z-index: -1;
  transition: 1s;
}
.loading-container::after {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #000;
  z-index: -1;
  transition: 1s;
}
.loading-container .logo {
  overflow: hidden;
}
.loading-container .logo span {
  display: block;
  transition: transform 1s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translate3d(0, 100%, 0);
}
.loading-container .logo span.fadeUp {
  transform: translate3d(0, 0, 0);
}
.loading-container.is-active {
  z-index: -1;
  transition-delay: 1s;
}
.loading-container.is-active .logo {
  opacity: 0;
  visibility: hidden;
}
.loading-container.is-active::before, .loading-container.is-active::after {
  height: 0;
}

.fadein {
  opacity: 0;
}

.link-peatix {
  background: #ff0062;
  width: 90%;
  padding: 32px 0;
  max-width: 740px;
  margin: 170px auto 0 auto;
  font-size: 2.9rem;
  font-weight: bold;
  text-align: center;
  border-radius: 22px;
}
@media screen and (max-width: 800px) {
  .link-peatix {
    padding: 22px 0;
    font-size: 2rem;
  }
}

.peatix-note {
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
}

.header {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  z-index: 10;
  transition: height 0.5s 0.7s ease;
}
@media (max-width: 1100px) {
  .header {
    display: block;
    height: 70px;
  }
}
.header:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  z-index: -1;
}
.header__logo {
  padding: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1100px) {
  .header__logo {
    padding: 20px 10px;
  }
}
@media (max-width: 1100px) {
  .header__logo img {
    width: 200px;
  }
}
.header .nav-menu-open {
  position: absolute;
  right: 17px;
  top: 23px;
  width: 40px;
  height: 40px;
  background: url(../images_kiss/sp_menu_open.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s;
  display: none;
}
@media (max-width: 1100px) {
  .header .nav-menu-open {
    display: block;
  }
}
.header .nav-menu {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  padding-right: 6px;
}
@media (max-width: 1100px) {
  .header .nav-menu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 45%;
    display: block;
    padding-right: 0px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: 1s 0s;
  }
}
.header .nav-menu a {
  padding: 0 20px;
  transition: 0.4s;
}
@media (max-width: 1100px) {
  .header .nav-menu a {
    margin: 25px 0;
    font-size: 1.6rem;
  }
}
.header .nav-menu a.is-hidden {
  opacity: 0.5;
}
.header.is-active {
  height: 100vh;
  transition: 0.7s 0s ease;
}
.header.is-active .nav-menu-open {
  width: 30px;
  height: 30px;
  background: url(../images_kiss/sp_menu_close.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.header.is-active .nav-menu {
  opacity: 1;
  visibility: visible;
  transition: 0.8s 0.7s ease;
}

/* チケット販売バナー */
.banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 310px;
  padding: 30px 0;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  letter-spacing: 5px;
  line-height: 1.3;
  text-align: center;
  background: linear-gradient(#0041ac, #ff4eb5, #ff9e62);
  z-index: 9;
}
@media screen and (max-width: 800px) {
  .banner {
    padding: 19px 0 30px 0;
  }
}
.banner span {
  font-size: 3.3rem;
}
.banner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  z-index: -1;
}
.banner a {
  font-family: initial;
  background: #ff0000;
  border-radius: 13px;
  padding: 14px;
  text-align: center;
  width: 80%;
  margin: 20px auto 0 auto;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .banner {
    width: 100%;
    font-size: 1.6rem;
  }
  .banner span {
    font-size: 2rem;
  }
}

/* トップへ戻るボタン */
.totop {
  position: fixed;
  bottom: 5%;
  right: 3%;
  width: 50px;
  z-index: 5;
}
@media screen and (max-width: 800px) {
  .totop {
    right: 10px;
    width: 40px;
    bottom: 26svh;
  }
}
.totop img {
  transition: 0.3s;
  width: 100%;
  margin: 0 auto;
}
.totop:hover img {
  width: 90%;
}
@media screen and (max-width: 800px) {
  .totop.is-front {
    bottom: 26svh;
  }
}

/* Footer */
.footer {
  padding: 80px 20px 20px 20px;
  background-color: #000;
}
.footer a {
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto;
}
.footer .row {
  justify-content: space-between;
  width: 160px;
  margin: 0 auto;
}
.footer .copylight {
  margin-top: 60px;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .footer .copylight {
    padding-bottom: 200px;
  }
}

@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*========= トップページ(front)用のCSS ===============*/
.loading-overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #000;
  z-index: 11;
}

.page-front {
  position: relative;
  background: #000;
  /* TOPのファーストビュー */
  /* 横並びの画像一覧 */
  /* ニュースセクション */
  /* コンセプト */
  /* ラインナップ */
  /* チケット */
  /* 開催概要・アクセス */
  /* 前回のイベントの様子 */
  /* Instagram */
  /* 注意事項 */
  /* エントリーはこちら */
  /* 主催者 */
}
.page-front .fv-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: url(../images_kiss/back.jpg);
  background-size: 110%;
  background-position: 100% 0;
}
@media screen and (max-width: 800px) {
  .page-front .fv-container {
    background-size: 310%;
  }
}
.page-front .fv-container .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  max-width: 600px;
  margin: 0 auto;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .page-front .fv-container .logo {
    width: 90%;
  }
}
.page-front .fv-container .back {
  width: 120%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 0;
     object-position: 100% 0;
}
.page-front .fv-container .girl-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 87%;
  max-width: 1000px;
}
@media screen and (max-width: 800px) {
  .page-front .fv-container .girl-wrap {
    width: 100%;
  }
}
.page-front .fv-container .girl-wrap .girl {
  position: relative;
  right: -30%;
  top: 100px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .page-front .fv-container .girl-wrap .girl {
    right: 0%;
    top: 100px;
    width: 779px;
  }
}
.page-front .fv-container .girl-wrap .earth {
  position: absolute;
  left: 16%;
  top: -10%;
  width: 29%;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .page-front .fv-container .girl-wrap .earth {
    left: -18%;
    top: -7%;
    width: 211px;
  }
}
.page-front .fv-container .film {
  position: absolute;
  bottom: -10%;
  right: -4%;
  width: 90%;
  max-width: 1200px;
}
@media screen and (max-width: 800px) {
  .page-front .fv-container .film {
    bottom: -5%;
    right: -55%;
    width: 800px;
  }
}
.page-front .gallery {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
}
.page-front .gallery img {
  width: 33.3333333333%;
}
.page-front .news {
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 150px auto 100px auto;
  border-left: 1px solid #fff;
  padding: 20px 0 10px 60px;
}
.page-front .news a {
  margin-bottom: 30px;
}
.page-front .news a span {
  display: block;
  font-size: 1rem;
}
@media screen and (max-width: 800px) {
  .page-front .news {
    width: 90%;
    padding: 20px 0 10px 30px;
  }
}
.page-front .nft-contents {
  width: 90%;
  max-width: 550px;
  margin: 0 auto 200px auto;
}
.page-front .nft-contents img {
  width: 100%;
}
.page-front .nft-contents p {
  margin-top: 30px;
  font-size: 2rem;
  line-height: 2;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 800px) {
  .page-front .nft-contents p {
    font-size: 1.6rem;
  }
}
.page-front .intro__logo {
  width: 300px;
  margin: -20px auto;
}
@media screen and (max-width: 800px) {
  .page-front .intro__logo {
    width: 250px;
    margin: 0px auto;
  }
}
.page-front .intro__earth {
  position: relative;
  width: 300px;
  margin: -40px auto;
}
.page-front .intro__earth .earth {
  width: 100%;
}
.page-front .intro__earth .info {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-front .concept {
  position: relative;
  padding: 100px 0;
  margin: 0 0 0 0;
  background: url(../images_2023/top_concept_back.jpg);
  background-size: cover;
  background-position: center;
}
.page-front .concept p {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  line-height: 2;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 800px) {
  .page-front .concept p {
    font-size: 1.6rem;
  }
}
.page-front .movie-lineup {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.page-front .movie-lineup img {
  width: 41%;
  margin: 0 12px;
}
.page-front .movie-lineup .credit {
  font-size: 1rem;
  text-align: center;
}
.page-front .movie-lineup .img {
  width: 41%;
  display: inline-block;
  margin: 0 12px;
  vertical-align: top;
}
@media screen and (max-width: 800px) {
  .page-front .movie-lineup .img {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
}
.page-front .movie-lineup .img.img-1 {
  width: 50%;
}
@media screen and (max-width: 800px) {
  .page-front .movie-lineup .img.img-1 {
    display: block;
    width: 80%;
    margin: 30px auto;
  }
}
.page-front .movie-lineup .img img {
  width: 100%;
}
.page-front .movie-lineup .lineup {
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
  /* 中央以外のスライド */
  /* 中央のスライド */
}
.page-front .movie-lineup .lineup .slick-img img {
  height: auto;
  opacity: 0.3;
  transform: scale(0.8);
  transition: opacity 0.5s, transform 0.5s;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .page-front .movie-lineup .lineup .slick-img img {
    width: 90%;
    margin: 0 auto;
  }
}
.page-front .movie-lineup .lineup .slick-center img {
  transition: 0.3s;
  opacity: 1;
  transform: scale(1);
}
.page-front .movie-lineup .lineup .is-active-next img {
  transition: 0.3s;
  opacity: 1;
  transform: scale(1);
}
.page-front .movie-lineup .lineup .slick-next {
  right: 25%;
}
@media screen and (max-width: 800px) {
  .page-front .movie-lineup .lineup .slick-next {
    right: -20px;
  }
}
.page-front .movie-lineup .lineup .slick-next:before {
  display: block;
  content: "";
  width: 45px;
  height: 30px;
  background: url(../images_kiss/lineup_next.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 800px) {
  .page-front .movie-lineup .lineup .slick-next:before {
    width: 40px;
    height: 40px;
  }
}
.page-front .movie-lineup .lineup .slick-prev {
  left: 22%;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .page-front .movie-lineup .lineup .slick-prev {
    left: -20px;
  }
}
.page-front .movie-lineup .lineup .slick-prev:before {
  display: block;
  content: "";
  width: 45px;
  height: 30px;
  background: url(../images_kiss/lineup_prev.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 800px) {
  .page-front .movie-lineup .lineup .slick-prev:before {
    width: 40px;
    height: 40px;
  }
}
.page-front .movie-lineup .short-lineup {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  width: 90%;
  margin: 100px auto;
}
.page-front .movie-lineup .short-lineup__item {
  width: 46%;
  margin: 30px 0;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .page-front .movie-lineup .short-lineup__item {
    width: 100%;
  }
}
.page-front .movie-lineup .short-lineup__item__img {
  width: 100%;
  margin-bottom: 10px;
}
.page-front .movie-lineup .short-lineup__item__img img {
  width: 100%;
  margin: 0;
}
.page-front .ticket {
  position: relative;
  width: 90%;
  max-width: 740px;
  margin: 200px auto 0 auto;
  padding: 70px 45px;
  background: linear-gradient(rgba(0, 65, 172, 0.67), rgba(255, 78, 181, 0.67), rgba(255, 136, 100, 0.67), rgba(255, 158, 98, 0.67));
}
@media screen and (max-width: 800px) {
  .page-front .ticket {
    padding: 70px 15px;
  }
}
.page-front .ticket .title {
  position: absolute;
  top: -132px;
  left: -134px;
}
@media screen and (max-width: 800px) {
  .page-front .ticket .title {
    width: 200px;
    top: -60px;
    left: -37px;
  }
}
.page-front .ticket .drink {
  position: absolute;
  top: -30px;
  right: -34px;
  width: 160px;
}
@media screen and (max-width: 800px) {
  .page-front .ticket .drink {
    width: 100px;
    top: 50px;
    right: -14px;
  }
}
.page-front .ticket h3 {
  text-align: center;
  font-size: 4.4rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 800px) {
  .page-front .ticket h3 {
    font-size: 3rem;
  }
}
.page-front .ticket h3 span {
  color: #e50058;
}
.page-front .ticket .small {
  text-align: center;
}
.page-front .ticket .intro {
  margin-top: 30px;
  text-align: center;
}
.page-front .ticket .table-header {
  margin-top: 70px;
  padding: 7px 0;
  color: #00086a;
  font-size: 2rem;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.64);
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
.page-front .ticket dl {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  padding: 30px 20px;
  border-bottom: 1px solid #fff;
  font-weight: 500;
}
.page-front .ticket dl dd {
  text-align: right;
}
.page-front .ticket dl dd .discount {
  display: block;
  font-size: 2.2rem;
  color: #ffbd0a;
}
.page-front .ticket dl dd .note {
  color: #000;
  font-size: 1.3rem;
  font-weight: 500;
}
.page-front .ticket .option {
  padding: 20px;
  font-weight: 500;
  line-height: 2;
}
.page-front .ticket .option p {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.page-front .ticket .option p.status:before {
  content: "";
  position: absolute;
  right: -100px;
  top: -8px;
  width: 80px;
  height: 41px;
}
@media screen and (max-width: 800px) {
  .page-front .ticket .option p.status:before {
    top: 9px;
  }
}
.page-front .ticket .option p.status--soldout:before {
  background: url(../images_kiss/label_soldout.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.page-front .ticket .btn-wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  margin: 30px 0 30px 0;
}
.page-front .ticket .btn-wrap a {
  border-radius: 93px;
  text-align: center;
  padding: 20px 40px;
  margin: 0 auto;
  font-weight: 500;
  background: #ff0062;
}
@media screen and (max-width: 800px) {
  .page-front .ticket .btn-wrap a {
    width: 100%;
    margin-bottom: 30px;
    font-weight: 500;
    padding: 25px 0;
  }
}
.page-front .about {
  padding: 50px 0;
}
.page-front .about .summary,
.page-front .about .access {
  margin: 130px 0;
}
.page-front .about h3 {
  margin-bottom: 25px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 10px;
}
@media screen and (max-width: 800px) {
  .page-front .about h3 {
    letter-spacing: 2px;
  }
}
.page-front .about iframe {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 130px auto 0 auto;
}
@media screen and (max-width: 800px) {
  .page-front .about iframe {
    height: 300px;
  }
}
.page-front .about p {
  text-align: center;
}
.page-front .about dl {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
  width: 90%;
  max-width: 700px;
  margin: 35px auto;
}
.page-front .about dl dd {
  width: 150px;
  font-size: 2rem;
}
@media screen and (max-width: 800px) {
  .page-front .about dl dd {
    width: 90px;
    font-size: 1.6rem;
  }
}
.page-front .about dl dt {
  flex: 1;
}
.page-front .history {
  /* 流れるスライド */
  /* 押すと詳細が現れるボタン */
}
.page-front .history-slide img {
  width: 100%;
}
.page-front .history__items {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  width: 90%;
  max-width: 900px;
  margin: 200px auto 0 auto;
}
.page-front .history__items .item {
  position: relative;
}
@media screen and (max-width: 800px) {
  .page-front .history__items .item {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 200px;
  }
}
.page-front .history__items .item__contents {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -145px;
  width: 500px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .page-front .history__items .item__contents {
    top: -135px;
    width: 100%;
  }
}
.page-front .history__items .item__contents img {
  width: 100%;
}
@media screen and (max-width: 800px) {
  .page-front .history__items .item__contents img {
    width: 100%;
    margin: 0 auto 20px auto;
  }
}
.page-front .history__items .item__contents p {
  text-align: center;
}
@media screen and (max-width: 800px) {
  .page-front .history__items .item__contents p {
    width: 90%;
    margin: 0 auto;
    font-size: 1.4rem;
  }
}
.page-front .history__items .item__contents.is-active {
  opacity: 1;
  visibility: visible;
}
.page-front .history__items .item__btn {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  position: relative;
  width: 190px;
  aspect-ratio: 1/1;
  font-size: 6.4rem;
}
.page-front .history__items .item__btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images_kiss/btnhover.png);
  background-size: contain;
  opacity: 0;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  .page-front .history__items .item__btn {
    width: 230px;
    margin: 0 auto;
    font-size: 4.2rem;
  }
}
.page-front .history__items .item__btn img {
  width: 110%;
  margin: 0 auto;
  transition: 0.3s;
  z-index: 2;
}
.page-front .history__items .item__btn img.lucua {
  width: 140%;
  margin: 0 auto;
}
.page-front .history__items .item:nth-of-type(1) .item__btn {
  background: url(../images_kiss/btn_img1.png);
  background-size: cover;
}
.page-front .history__items .item:nth-of-type(2) .item__btn {
  background: url(../images_kiss/btn_img2.png);
  background-size: cover;
}
.page-front .history__items .item:nth-of-type(3) .item__btn {
  background: url(../images_kiss/btn_img3.png);
  background-size: cover;
}
.page-front .history__items .item:nth-of-type(4) .item__btn {
  background: url(../images_kiss/btn_img4.png);
  background-size: cover;
}
.page-front .history__items .item:hover .item__btn:before {
  opacity: 1;
}
.page-front .history__items .item:hover .item__btn img {
  transform: translateY(-7px);
}
.page-front .instagram {
  margin-top: 180px;
  padding: 100px 0;
  background: linear-gradient(90deg, #cb47fc, #e2d35f);
}
@media screen and (max-width: 800px) {
  .page-front .instagram {
    margin-top: 0px;
    padding: 60px 0 30px 0;
  }
}
.page-front .instagram h3 {
  font-weight: 400;
  text-align: center;
}
.page-front .instagram h3 .icon {
  display: inline-block;
  vertical-align: bottom;
  margin-right: 10px;
}
.page-front .instagram iframe {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
}
@media screen and (max-width: 800px) {
  .page-front .instagram iframe {
    width: 90% !important;
  }
}
.page-front .attention {
  width: 90%;
  max-width: 1000px;
  margin: 150px auto;
  padding: 70px;
  background: #00205c;
}
.page-front .attention h3 {
  margin-bottom: 50px;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 7px;
}
.page-front .attention p {
  line-height: 2;
}
.page-front .entry {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 250px auto 100px auto;
  transition: 0.3s;
}
.page-front .entry img {
  width: 100%;
}
.page-front .organizer h2 {
  color: #9a7b4a;
}
.page-front .organizer img {
  width: 393px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .page-front .organizer img {
    width: 300px;
  }
}
.page-front .organizer img:nth-of-type(1), .page-front .organizer img:nth-of-type(2) {
  margin-bottom: 70px;
}
.page-front .organizer .coop-logo-wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: inherit;
  -webkit-box-align: inherit;
  -ms-flex-align: inherit;
  flex-wrap: wrap;
  width: 393px;
  margin: 0 auto 70px auto;
}
@media screen and (max-width: 800px) {
  .page-front .organizer .coop-logo-wrap {
    width: 300px;
  }
}
.page-front .organizer .coop-logo-wrap img {
  margin-bottom: 9px;
}
.page-front .organizer .coop-logo-wrap .logo-1 {
  width: 76px;
}
@media screen and (max-width: 800px) {
  .page-front .organizer .coop-logo-wrap .logo-1 {
    width: 58px;
  }
}
.page-front .organizer .coop-logo-wrap .logo-2 {
  width: 309px;
}
@media screen and (max-width: 800px) {
  .page-front .organizer .coop-logo-wrap .logo-2 {
    width: 236px;
  }
}
.page-front .organizer .coop-logo-wrap .logo-3 {
  width: 191px;
}
@media screen and (max-width: 800px) {
  .page-front .organizer .coop-logo-wrap .logo-3 {
    width: 146px;
  }
}
.page-front .organizer .coop-logo-wrap .logo-4 {
  width: 194px;
}
@media screen and (max-width: 800px) {
  .page-front .organizer .coop-logo-wrap .logo-4 {
    width: 146px;
  }
}
.page-front .organizer .coop-logo-wrap .logo-5 {
  width: 191px;
}
@media screen and (max-width: 800px) {
  .page-front .organizer .coop-logo-wrap .logo-5 {
    width: 146px;
  }
}
.page-front .organizer .logo-6 {
  width: 191px;
  margin: 0 10px;
}
@media screen and (max-width: 800px) {
  .page-front .organizer .logo-6 {
    width: 146px;
  }
}
.page-front .organizer .logo-7 {
  width: 191px;
  margin: 0 10px;
}
@media screen and (max-width: 800px) {
  .page-front .organizer .logo-7 {
    width: 146px;
  }
}
.page-front .organizer .link {
  display: inline-block;
  text-decoration: underline;
}

/*========= チケットーページ用のCSS ===============*/
.page-ticket {
  position: relative;
  background: #000;
  /* チケット */
  /* 注意事項 */
}
.page-ticket .icatch-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  flex-direction: column;
}
.page-ticket .icatch-container__overlay {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: 1;
}
.page-ticket .icatch-container__bg {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-ticket .icatch-container__illust {
  position: absolute;
  bottom: -10%;
  right: 0;
  width: 80%;
  max-width: 820px;
}
@media screen and (max-width: 800px) {
  .page-ticket .icatch-container__illust {
    bottom: -13%;
    right: -180px;
    width: 777px;
  }
}
.page-ticket .icatch-container__body {
  position: relative;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .page-ticket .icatch-container__body {
    margin-top: -20svh;
  }
}
.page-ticket .icatch-container__title {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 800px) {
  .page-ticket .icatch-container__title {
    width: 80%;
    margin: 0 auto;
  }
}
.page-ticket .icatch-container__subtitle {
  margin: 10px auto;
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .page-ticket .icatch-container__subtitle {
    font-size: 1.7rem;
  }
}
.page-ticket .ticket {
  position: relative;
  width: 90%;
  max-width: 740px;
  margin: -100px auto 0 auto;
  padding: 70px 45px;
  background: linear-gradient(rgba(0, 65, 172, 0.67), rgba(255, 78, 181, 0.67), rgba(255, 136, 100, 0.67), rgba(255, 158, 98, 0.67));
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .page-ticket .ticket {
    padding: 70px 15px;
  }
}
.page-ticket .ticket .title {
  position: absolute;
  top: -132px;
  left: -134px;
}
@media screen and (max-width: 800px) {
  .page-ticket .ticket .title {
    width: 200px;
    top: -60px;
    left: -37px;
  }
}
.page-ticket .ticket .drink {
  position: absolute;
  top: -30px;
  right: -34px;
  width: 160px;
}
@media screen and (max-width: 800px) {
  .page-ticket .ticket .drink {
    width: 100px;
    top: 50px;
    right: -14px;
  }
}
.page-ticket .ticket h3 {
  text-align: center;
  font-size: 4.4rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 800px) {
  .page-ticket .ticket h3 {
    font-size: 3rem;
  }
}
.page-ticket .ticket h3 span {
  color: #e50058;
}
.page-ticket .ticket .small {
  text-align: center;
}
.page-ticket .ticket .intro {
  margin-top: 30px;
  text-align: center;
}
.page-ticket .ticket .table-header {
  margin-top: 70px;
  padding: 7px 0;
  color: #00086a;
  font-size: 2rem;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.64);
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
.page-ticket .ticket dl {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  padding: 30px 20px;
  border-bottom: 1px solid #fff;
  font-weight: 500;
}
.page-ticket .ticket dl dd {
  text-align: right;
}
.page-ticket .ticket dl dd .discount {
  display: block;
  font-size: 2.2rem;
  color: #ffbd0a;
}
.page-ticket .ticket dl dd .note {
  color: #000;
  font-size: 1.3rem;
  font-weight: 500;
}
.page-ticket .ticket .option {
  padding: 20px;
  font-weight: 500;
  line-height: 2;
}
.page-ticket .ticket .option p {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.page-ticket .ticket .option p.status:before {
  content: "";
  position: absolute;
  right: -100px;
  top: -8px;
  width: 80px;
  height: 41px;
}
@media screen and (max-width: 800px) {
  .page-ticket .ticket .option p.status:before {
    top: 9px;
  }
}
.page-ticket .ticket .option p.status--soldout:before {
  background: url(../images_kiss/label_soldout.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.page-ticket .ticket .btn-wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  margin: 30px 0 30px 0;
}
.page-ticket .ticket .btn-wrap a {
  border-radius: 93px;
  text-align: center;
  padding: 20px 0;
  width: 48%;
  margin: 0 auto;
  background: #ff0062;
}
@media screen and (max-width: 800px) {
  .page-ticket .ticket .btn-wrap a {
    width: 100%;
    margin-bottom: 30px;
    font-weight: 500;
    padding: 25px 0;
  }
}
.page-ticket .attention {
  width: 90%;
  max-width: 1000px;
  margin: 150px auto;
  padding: 70px;
  background: #00205c;
}
@media screen and (max-width: 800px) {
  .page-ticket .attention {
    padding: 70px 15px;
  }
}
.page-ticket .attention h3 {
  margin-bottom: 50px;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 7px;
}
@media screen and (max-width: 800px) {
  .page-ticket .attention h3 {
    letter-spacing: 2px;
    font-size: 1.8rem;
  }
}
.page-ticket .attention p {
  line-height: 2;
}

/*========= アクセスページ用のCSS ===============*/
.page-access {
  position: relative;
  background: #000;
}
.page-access .icatch-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  flex-direction: column;
}
.page-access .icatch-container__overlay {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: 1;
}
.page-access .icatch-container__bg {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-access .icatch-container__illust {
  position: absolute;
  bottom: -10%;
  right: 0;
  width: 80%;
  max-width: 820px;
}
@media screen and (max-width: 800px) {
  .page-access .icatch-container__illust {
    bottom: -13%;
    right: -180px;
    width: 777px;
  }
}
.page-access .icatch-container__body {
  position: relative;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .page-access .icatch-container__body {
    margin-top: -20svh;
  }
  .page-access .icatch-container__body p {
    width: 90%;
    margin: 0 auto;
    font-size: 1.3rem;
    text-shadow: 0 0 10px #fff;
  }
}
.page-access .icatch-container__title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .page-access .icatch-container__title {
    width: 80%;
    margin: 0 auto;
    text-shadow: 0 0 10px #fff;
  }
}
.page-access .icatch-container__subtitle {
  margin: 10px auto;
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .page-access .icatch-container__subtitle {
    font-size: 1.7rem !important;
    text-shadow: 0 0 10px #fff;
  }
}
.page-access .summary {
  width: 90%;
  max-width: 740px;
  margin: 130px auto;
  padding: 50px 0;
  background: linear-gradient(rgba(0, 65, 172, 0.67), rgba(255, 78, 181, 0.67), rgba(255, 136, 100, 0.67), rgba(255, 158, 98, 0.67));
}
.page-access .summary h3 {
  margin-bottom: 25px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 10px;
}
@media screen and (max-width: 800px) {
  .page-access .summary h3 {
    letter-spacing: 2px;
  }
}
.page-access .summary p {
  text-align: center;
}
.page-access .summary dl {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
  width: 90%;
  max-width: 700px;
  margin: 35px auto;
}
.page-access .summary dl dd {
  width: 150px;
  font-size: 2rem;
}
@media screen and (max-width: 800px) {
  .page-access .summary dl dd {
    width: 90px;
    font-size: 1.6rem;
  }
}
.page-access .summary dl dt {
  flex: 1;
}
.page-access iframe {
  display: block;
  width: 100%;
  margin: 130px auto;
}

/*========= アクセスページ用のCSS ===============*/
.page-area {
  position: relative;
  background: #000;
}
.page-area h3 {
  text-align: center;
  font-size: 4.4rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 800px) {
  .page-area h3 {
    font-size: 3rem;
  }
}
.page-area h3 span {
  color: #e50058;
}
.page-area .icatch-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-bottom: 200px;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  flex-direction: column;
}
@media screen and (max-width: 800px) {
  .page-area .icatch-container {
    margin-bottom: 100px;
  }
}
.page-area .icatch-container__overlay {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: 1;
}
.page-area .icatch-container__bg {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-area .icatch-container__illust {
  position: absolute;
  bottom: -10%;
  right: 0;
  width: 40%;
  max-width: 420px;
}
@media screen and (max-width: 800px) {
  .page-area .icatch-container__illust {
    bottom: -13%;
    right: -180px;
    width: 777px;
  }
}
.page-area .icatch-container__body {
  position: relative;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .page-area .icatch-container__body {
    margin-top: -20svh;
  }
  .page-area .icatch-container__body p {
    width: 100%;
    margin: 0 auto;
    font-size: 1.3rem;
  }
}
.page-area .icatch-container__title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .page-area .icatch-container__title {
    width: 80%;
    margin: 0 auto;
  }
}
.page-area .icatch-container__subtitle {
  margin: 10px auto;
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .page-area .icatch-container__subtitle {
    font-size: 1.7rem;
  }
}
.page-area .map {
  width: 100%;
  margin-top: 100px;
}
@media screen and (max-width: 800px) {
  .page-area .map {
    margin-top: 40px;
  }
}
.page-area .categories-wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  margin: 80px auto;
  max-width: 740px;
}
.page-area .categories-wrap a {
  width: 170px;
  text-align: center;
  border-radius: 63px;
  padding: 20px 0;
  color: #000;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .page-area .categories-wrap a {
    width: 48%;
    margin-bottom: 20px;
  }
}
.page-area .categories-wrap a:nth-of-type(1) {
  background: linear-gradient(#a3a3a3, #eaeaea);
}
@media screen and (max-width: 800px) {
  .page-area .categories-wrap a:nth-of-type(1) {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
}
.page-area .categories-wrap a:nth-of-type(2) {
  background: linear-gradient(#ffa27d, #f2ecb9);
}
.page-area .categories-wrap a:nth-of-type(3) {
  background: linear-gradient(#0577ca, #98bce4);
}
.page-area .categories-wrap a:nth-of-type(4) {
  background: linear-gradient(#ff7df0, #f2b9c8);
}
.page-area .area-contents {
  max-width: 740px;
  margin: 0 auto 80px auto;
  padding: 58px 100px;
}
@media screen and (max-width: 800px) {
  .page-area .area-contents {
    padding: 58px 15px;
  }
}
.page-area .area-contents h4 {
  text-align: center;
  font-size: 2.4rem;
  color: #241784;
}
.page-area .area-contents .row {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
  margin: 33px 0 0 0;
}
.page-area .area-contents--building {
  background: linear-gradient(#f2ecb9, #ffa27d);
}
.page-area .area-contents--ground {
  background: linear-gradient(#98bce4, #0577ca);
  margin: 0 auto 0 auto;
}
.page-area .area-contents--stall {
  background: linear-gradient(#ffbaf4, #de15d7);
  margin: 0 auto 0 auto;
}
.page-area .area-contents .area-item {
  width: 45%;
  margin-top: 50px;
}
@media screen and (max-width: 800px) {
  .page-area .area-contents .area-item {
    width: 100%;
  }
}
.page-area .area-contents .area-item__img {
  width: 100%;
  aspect-ratio: 4/3;
}
.page-area .area-contents .area-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-area .area-contents .area-item__name {
  color: #000;
  text-align: center;
  font-size: 1.7rem;
  font-weight: bold;
  margin-top: 5px;
}
@media screen and (max-width: 800px) {
  .page-area .area-contents .area-item__name {
    margin: 20px 0 10px 0;
    font-size: 1.6rem;
  }
}
.page-area .area-contents .area-item__text {
  margin-top: 10px;
  color: #000;
  text-align: left;
  font-size: 1.2rem;
}
.page-area .area-contents .area-item__text a {
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .page-area .area-contents .area-item__text {
    font-size: 1.4rem;
  }
}
.page-area .note {
  max-width: 740px;
  margin: 10px auto;
  font-size: 1.2rem;
}
@media screen and (max-width: 800px) {
  .page-area .note {
    margin-left: 10px;
  }
}

/*========= Screenページ用のCSS ===============*/
.page-screen {
  position: relative;
  background: #000;
  /* 審査員 */
}
.page-screen .more {
  color: #000;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-weight: bold;
}
.page-screen h3 {
  text-align: center;
  font-size: 4.4rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 800px) {
  .page-screen h3 {
    font-size: 3rem;
  }
}
.page-screen h3 span {
  color: #e50058;
}
.page-screen .icatch-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  flex-direction: column;
}
.page-screen .icatch-container__overlay {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: 1;
}
.page-screen .icatch-container__bg {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-screen .icatch-container__illust {
  position: absolute;
  bottom: -20%;
  left: 8%;
  width: 40%;
  max-width: 420px;
}
@media screen and (max-width: 800px) {
  .page-screen .icatch-container__illust {
    bottom: -13%;
    left: 0%;
    width: 300px;
  }
}
.page-screen .icatch-container__body {
  position: relative;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .page-screen .icatch-container__body {
    margin-top: -20svh;
  }
  .page-screen .icatch-container__body p {
    width: 90%;
    margin: 0 auto;
    font-size: 1.4rem;
  }
}
.page-screen .icatch-container__title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .page-screen .icatch-container__title {
    width: 70%;
    margin: 0 auto;
  }
}
.page-screen .icatch-container__subtitle {
  margin: 10px auto;
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .page-screen .icatch-container__subtitle {
    font-size: 1.7rem !important;
  }
}
.page-screen .screen {
  margin: 200px auto 150px auto;
  padding: 100px;
}
@media screen and (max-width: 800px) {
  .page-screen .screen {
    padding: 100px 30px;
  }
}
.page-screen .screen--building {
  background: linear-gradient(#ff7c4d, #ffe384);
}
.page-screen .screen--ground {
  background: linear-gradient(#0075c9, #7be9f2);
  margin: 0 auto 0 auto;
}
.page-screen .screen .subtitle {
  margin-bottom: 30px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
.page-screen .screen .movie-description {
  color: #000;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .page-screen .screen .movie-description {
    font-size: 1.3rem;
  }
}
.page-screen .screen .long-movie-item__img {
  width: 100%;
}
@media screen and (max-width: 800px) {
  .page-screen .screen .long-movie-item__img {
    margin: 0px auto;
    width: 80%;
  }
}
.page-screen .screen .long-movie-item__contents {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
  width: 90%;
  margin: 80px auto 50px auto;
}
@media screen and (max-width: 800px) {
  .page-screen .screen .long-movie-item__contents {
    width: 100%;
    margin: 30px auto 50px auto;
  }
}
.page-screen .screen .long-movie-item__contents .synopsis {
  width: 50%;
}
@media screen and (max-width: 800px) {
  .page-screen .screen .long-movie-item__contents .synopsis {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.page-screen .screen .long-movie-item__contents .infomation {
  width: 45%;
}
@media screen and (max-width: 800px) {
  .page-screen .screen .long-movie-item__contents .infomation {
    width: 100%;
  }
}
.page-screen .screen .long-movie-item__contents .infomation dl {
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
  margin: 10px 0;
}
@media screen and (max-width: 800px) {
  .page-screen .screen .long-movie-item__contents .infomation dl {
    margin: 20px 0;
  }
}
.page-screen .screen .long-movie-item__contents .infomation dl dt {
  width: 120px;
  font-weight: bold;
}
.page-screen .screen .long-movie-item__contents .infomation dl dd {
  flex: 1;
}
@media screen and (max-width: 800px) {
  .page-screen .screen .long-movie-item__contents .infomation dl dd {
    font-size: 1.3rem;
  }
}
.page-screen .screen .short-movies {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 50px auto;
}
@media screen and (max-width: 800px) {
  .page-screen .screen .short-movies {
    margin: 50px auto;
  }
}
.page-screen .screen .short-movie {
  width: 48%;
  margin: 30px 0;
  color: #404040;
}
@media screen and (max-width: 800px) {
  .page-screen .screen .short-movie {
    width: 100%;
  }
}
.page-screen .screen .short-movie img {
  width: 100%;
}
.page-screen .screen .short-movie__title {
  margin: 20px 0 10px 0;
  font-size: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .page-screen .screen .short-movie__title {
    font-weight: 500;
    font-size: 2rem;
  }
}
.page-screen .screen .short-movie dl {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
}
.page-screen .screen .short-movie dl dt {
  font-weight: bold;
  width: 117px;
}
@media screen and (max-width: 800px) {
  .page-screen .screen .short-movie dl dt {
    font-weight: 500;
  }
}
.page-screen .screen .short-movie dl dd {
  flex: 0.95;
}
.page-screen .screen .short-movie .text {
  margin-top: 10px;
}
@media screen and (max-width: 800px) {
  .page-screen .screen .short-movie .text {
    margin-top: 15px;
    font-size: 1.3rem;
  }
}
.page-screen .screen .short-movie .profile-btn {
  display: inline-block;
  background: #383838;
  color: #fff;
  font-weight: bold;
  padding: 0px 10px;
  font-size: 1.3rem;
  margin-left: 10px;
}
.page-screen .screen .area-item {
  width: 45%;
  margin-top: 50px;
}
.page-screen .screen .area-item__img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #989898;
}
.page-screen .screen .area-item__name {
  color: #000;
  text-align: center;
  font-size: 1.7rem;
  font-weight: bold;
  margin-top: 5px;
}
.page-screen .note {
  max-width: 740px;
  margin: 10px auto;
  font-size: 1.2rem;
}
.page-screen .judge {
  padding-top: 100px;
}
.page-screen .judge .row {
  width: 90%;
  max-width: 1000px;
  margin: 50px auto;
}
.page-screen .judge__item {
  width: 28%;
  margin: 0 10px;
}
@media screen and (max-width: 800px) {
  .page-screen .judge__item {
    width: 100%;
    max-width: 300px;
    margin-bottom: 50px;
  }
}
.page-screen .judge__item .profile-img {
  width: 100%;
  aspect-ratio: 5/4.8;
}
.page-screen .judge__item .profile-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-screen .judge__item .job {
  margin-top: 20px;
  text-align: center;
  font-size: 1.2rem;
}
.page-screen .judge__item .commingsoon {
  text-align: center;
  margin: 30px 0;
}
.page-screen .judge__item .name {
  margin-top: 5px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.6rem;
}
.page-screen .judge__item .name span {
  display: block;
  font-size: 1.2rem;
}
.page-screen .judge__item .message-btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px auto;
}
.page-screen .judge__item .profile {
  font-size: 1rem;
}
.page-screen .judge__item .link-area {
  border-top: 1px solid #393939;
}
.page-screen .judge__item .link-area a {
  margin-top: 26px;
  font-size: 1.4rem;
  text-align: center;
}
.page-screen .judge__item .link-area a:after {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  background: url(../images_2023/icon_link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
}
.page-screen .video-container {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.76);
  opacity: 0;
  visibility: hidden;
  z-index: 10;
}
.page-screen .video-container video {
  width: 90%;
  margin: 0 auto;
}
.page-screen .video-container.is-active {
  opacity: 1;
  visibility: visible;
}
.page-screen .profile-container {
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background: rgba(255, 255, 255, 0.6);
  z-index: 999;
  display: none;
}
.page-screen .profile-container.is-active {
  display: flex;
}
.page-screen .profile-container__inner {
  overflow: scroll;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 90%;
  height: 80%;
  max-width: 850px;
  margin: 0 auto;
  padding: 6%;
  background-color: #fff;
}
@media screen and (max-width: 800px) {
  .page-screen .profile-container__inner {
    width: 100%;
    height: 100svh;
    max-height: unset;
  }
}
.page-screen .profile-container__close {
  position: absolute;
  right: 30px;
  top: 30px;
}
@media screen and (max-width: 800px) {
  .page-screen .profile-container__close {
    width: 20px;
  }
}
.page-screen .profile-container__img {
  display: inline-block;
  width: 250px;
}
@media screen and (max-width: 800px) {
  .page-screen .profile-container__img {
    display: block;
    width: 200px;
    margin: 0 auto 30px auto;
  }
}
.page-screen .profile-container .row {
  width: 100%;
  justify-content: space-between;
  margin: 50px 0;
}
@media screen and (max-width: 800px) {
  .page-screen .profile-container .row {
    display: block;
  }
}
.page-screen .profile-container .row .contents {
  width: 100%;
  flex: 0.9;
}
.page-screen .profile-container .index {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
}
.page-screen .profile-container .index::after {
  content: "";
  display: inline-block;
  flex: 0.9;
  height: 1px;
  background: #000;
}
.page-screen .profile-container .name {
  margin-top: 30px;
  color: #000;
  font-size: 1.6rem;
}
.page-screen .profile-container .text {
  margin-top: 10px;
  color: #000;
  font-size: 1.4rem;
}

/*========= conceptページ用のCSS ===============*/
.page-concept {
  position: relative;
  background: #000;
  /* コンセプト */
  /* なぜ始めたのか */
}
.page-concept h4 {
  letter-spacing: 2px;
  font-size: 1.9rem;
}
.page-concept h5 {
  margin: 17px 0 40px 0;
  color: #c39838;
}
.page-concept .icatch-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  flex-direction: column;
}
.page-concept .icatch-container__overlay {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: 1;
}
.page-concept .icatch-container__bg {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-concept .icatch-container__illust {
  position: absolute;
  bottom: -20%;
  left: 8%;
  width: 80%;
  max-width: 820px;
}
@media screen and (max-width: 800px) {
  .page-concept .icatch-container__illust {
    bottom: -13%;
    left: 0%;
    width: 700px;
  }
}
.page-concept .icatch-container__body {
  position: relative;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .page-concept .icatch-container__body {
    margin-top: -20svh;
  }
  .page-concept .icatch-container__body p {
    width: 90%;
    margin: 0 auto;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 800px) {
  .page-concept .icatch-container strong {
    font-size: 1.6rem;
  }
}
.page-concept .icatch-container__title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .page-concept .icatch-container__title {
    width: 70%;
    margin: 0 auto;
  }
}
.page-concept .icatch-container__subtitle {
  margin: 10px auto;
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .page-concept .icatch-container__subtitle {
    font-size: 1.7rem !important;
  }
}
.page-concept .intro__logo {
  width: 300px;
  margin: -20px auto;
}
@media screen and (max-width: 800px) {
  .page-concept .intro__logo {
    width: 250px;
  }
}
.page-concept .intro__earth {
  position: relative;
  width: 300px;
  margin: -40px auto;
}
@media screen and (max-width: 800px) {
  .page-concept .intro__earth {
    width: 250px;
    margin-bottom: 30px;
  }
}
.page-concept .intro__earth .earth {
  width: 100%;
}
.page-concept .intro__earth .info {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-concept .concept {
  position: relative;
  padding: 100px 0;
  margin: 0 0 0 0;
  background: url(../images_2023/top_concept_back.jpg);
  background-size: cover;
  background-position: center;
}
.page-concept .concept p {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  line-height: 2;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 800px) {
  .page-concept .concept p {
    font-size: 1.5rem;
    line-height: 2.2;
  }
}
.page-concept .about {
  width: 90%;
  max-width: 740px;
  margin: 100px auto;
}
@media screen and (max-width: 800px) {
  .page-concept .about {
    margin: 100px auto 200px auto;
  }
}
.page-concept .about .row {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.page-concept .about .row img {
  width: 60%;
}
@media screen and (max-width: 800px) {
  .page-concept .about .row img {
    width: 100%;
    margin-bottom: 40px;
  }
}
.page-concept .about .row .text-wrap {
  flex: 0.9;
}
@media screen and (max-width: 800px) {
  .page-concept .about .row .text-wrap {
    flex: 1;
  }
}
.page-concept .about .row .text-wrap p {
  font-size: 1.1rem;
}
.page-concept .why {
  padding: 90px 0 250px 0;
  background: linear-gradient(rgba(0, 65, 172, 0.67) 20%, rgba(255, 78, 181, 0.67) 60%, rgba(255, 136, 100, 0.67) 80%, rgba(255, 158, 98, 0.67));
}
@media screen and (max-width: 800px) {
  .page-concept .why {
    padding: 110px 0 300px 0;
  }
}
.page-concept .why .inner {
  position: relative;
  width: 90%;
  max-width: 740px;
  margin: 0 auto;
}
.page-concept .why .inner p {
  position: relative;
  margin-top: 30px;
  font-size: 1.4rem;
  line-height: 2;
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .page-concept .why .inner p {
    margin-top: 55px;
  }
}
.page-concept .why .inner img {
  position: absolute;
  right: -8%;
  bottom: -25%;
  width: 440px;
}
@media screen and (max-width: 800px) {
  .page-concept .why .inner img {
    right: -20px;
    bottom: -35%;
    width: 80%;
  }
}
.page-concept .location {
  position: relative;
  width: 90%;
  max-width: 740px;
  margin: 100px auto;
}
.page-concept .location img {
  width: 440px;
}
@media screen and (max-width: 800px) {
  .page-concept .location img {
    width: 100%;
  }
}
.page-concept .location p {
  position: absolute;
  right: -10%;
  bottom: -22%;
  padding: 46px 30px;
  background: rgba(0, 0, 0, 0.5);
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (max-width: 800px) {
  .page-concept .location p {
    position: relative;
    width: 80%;
    right: -19px;
    margin: 0 0 0 auto;
    margin-top: -111px;
  }
}

/*========= Q&Aページ用のCSS ===============*/
.page-qa {
  position: relative;
  background: #000;
}
.page-qa .icatch-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  flex-direction: column;
}
.page-qa .icatch-container__overlay {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: 1;
}
.page-qa .icatch-container__bg {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-qa .icatch-container__illust {
  position: absolute;
  bottom: -7%;
  right: 0;
  height: 100%;
}
.page-qa .icatch-container__body {
  position: relative;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .page-qa .icatch-container__body {
    margin-top: -20svh;
  }
  .page-qa .icatch-container__body p {
    width: 90%;
    margin: 0 auto;
    font-size: 1.3rem;
    text-shadow: 0 0 10px #fff;
    line-height: 2;
  }
}
.page-qa .icatch-container__title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .page-qa .icatch-container__title {
    width: 80%;
    margin: 0 auto;
    text-shadow: 0 0 10px #fff;
  }
}
.page-qa .icatch-container__subtitle {
  margin: 10px auto;
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .page-qa .icatch-container__subtitle {
    font-size: 1.7rem !important;
    text-shadow: 0 0 10px #fff;
  }
}
.page-qa .qa-block {
  width: 90%;
  max-width: 800px;
  margin: 100px auto;
}
.page-qa .qa-item {
  margin: 30px 0 60px 0;
}
.page-qa .qa-item__question {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
  padding: 10px 20px;
  font-size: 2rem;
  font-weight: 500;
  color: #000;
  background: #fff;
}
@media screen and (max-width: 800px) {
  .page-qa .qa-item__question {
    font-size: 1.6rem;
  }
}
.page-qa .qa-item__question p {
  flex: 0.95;
}
.page-qa .qa-item__question span {
  line-height: 1.2;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  font-size: 2.6rem;
}
.page-qa .qa-item__answer {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
  padding: 20px 20px;
  font-weight: 500;
}
.page-qa .qa-item__answer p {
  flex: 0.95;
}
.page-qa .qa-item__answer span {
  line-height: 1.2;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  font-size: 2.2rem;
}

/*========= 協賛ページ用のCSS ===============*/
.page-recruit {
  position: relative;
  background: #000;
}
.page-recruit h3 {
  color: #9a7b4a;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 50px;
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  letter-spacing: 10px;
}
.page-recruit .icatch-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  flex-direction: column;
}
.page-recruit .icatch-container__overlay {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: 1;
}
.page-recruit .icatch-container__bg {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-recruit .icatch-container__illust {
  position: absolute;
  top: 8%;
  right: 0;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .page-recruit .icatch-container__illust {
    top: unset;
    bottom: 0%;
  }
}
.page-recruit .icatch-container__body {
  position: relative;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .page-recruit .icatch-container__body {
    margin-top: -20svh;
  }
  .page-recruit .icatch-container__body p {
    width: 90%;
    margin: 0 auto;
    font-size: 1.3rem;
    text-shadow: 0 0 10px #fff;
    line-height: 2;
  }
}
.page-recruit .icatch-container__title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .page-recruit .icatch-container__title {
    width: 80%;
    margin: 0 auto;
    text-shadow: 0 0 10px #fff;
  }
}
.page-recruit .icatch-container__subtitle {
  margin: 10px auto;
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .page-recruit .icatch-container__subtitle {
    font-size: 1.7rem !important;
    text-shadow: 0 0 10px #fff;
  }
}
.page-recruit .summary {
  width: 90%;
  max-width: 1100px;
  margin: 130px auto;
}
.page-recruit .summary img {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .page-recruit .summary img {
    width: 100%;
  }
}
.page-recruit .summary__lists {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  flex-wrap: wrap;
  margin-top: 30px;
}
@media (max-width: 1020px) {
  .page-recruit .summary__lists {
    display: block;
  }
}
.page-recruit .summary-item {
  width: 32%;
}
@media (max-width: 1020px) {
  .page-recruit .summary-item {
    width: 90%;
    max-width: 400px;
    margin: 40px auto;
  }
}
.page-recruit .summary-item__index {
  padding: 16px 0;
  line-height: 1.5;
  font-size: 2.1rem;
  font-weight: bold;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
.page-recruit .summary-item__contents {
  padding: 30px 6% 97px 6%;
}
.page-recruit .summary-item__price {
  margin-bottom: 40px;
  font-size: 2.4rem;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
.page-recruit .summary-item__price span {
  font-size: 5.5rem;
  padding-right: 10px;
}
.page-recruit .summary-item:nth-of-type(1) .summary-item__index {
  background: #8d6200;
}
.page-recruit .summary-item:nth-of-type(1) .summary-item__contents {
  background: #392700;
}
.page-recruit .summary-item:nth-of-type(2) .summary-item__index {
  background: #37585c;
}
.page-recruit .summary-item:nth-of-type(2) .summary-item__contents {
  background: #162325;
}
.page-recruit .summary-item:nth-of-type(3) {
  display: flex;
  flex-direction: column;
}
.page-recruit .summary-item:nth-of-type(3) .summary-item__index {
  background: #6d4116;
}
.page-recruit .summary-item:nth-of-type(3) .summary-item__contents {
  height: 100%;
  background: #2c1a09;
}
.page-recruit .merit {
  width: 90%;
  max-width: 750px;
  margin: 130px auto;
}
.page-recruit .merit dl {
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
  margin: 70px 0;
}
@media screen and (max-width: 800px) {
  .page-recruit .merit dl {
    display: block;
  }
}
.page-recruit .merit dl dt {
  letter-spacing: 3px;
  margin-right: 30px;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .page-recruit .merit dl dt {
    margin-bottom: 20px;
  }
}
.page-recruit .merit dl dd span {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  letter-spacing: 2px;
}
.page-recruit .merit dl dd .index {
  margin-right: 30px;
  margin-top: 20px;
  display: inline-block;
  font-weight: bold;
  background: #fff;
  color: #9a7b4a;
  padding: 5px 45px;
}
@media screen and (max-width: 800px) {
  .page-recruit .merit dl dd .index {
    padding: 5px 25px;
    margin-right: 20px;
  }
}
.page-recruit .flow {
  width: 90%;
  max-width: 750px;
  margin: 130px auto;
}
.page-recruit .flow-item::after {
  content: "▼";
  display: block;
  margin: 20px 0;
  color: #6e6e6e;
}
.page-recruit .flow-item .index {
  font-size: 2rem;
  margin-bottom: 10px;
}
.page-recruit .flow-item .index span {
  padding-left: 10px;
  font-size: 1.1rem;
}
.page-recruit .flow-item .text {
  margin-left: 17px;
  line-height: 2;
}
.page-recruit .flow-item .text a {
  display: inline-block;
  text-decoration: underline;
}
.page-recruit .flow-item .border {
  margin-top: 20px;
  border: 1px solid #fff;
  padding: 30px 20px;
}
@media screen and (max-width: 800px) {
  .page-recruit .flow-item .border {
    padding: 30px 10px;
  }
}
.page-recruit .flow-item .border dl {
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
  margin: 30px;
}
@media screen and (max-width: 800px) {
  .page-recruit .flow-item .border dl {
    display: block;
    margin: 30px 10px;
  }
}
.page-recruit .flow-item .border dl dt {
  width: 225px;
  margin-right: 20px;
}
@media screen and (max-width: 800px) {
  .page-recruit .flow-item .border dl dt {
    margin-bottom: 10px;
  }
}
.page-recruit .flow-item .border dl dd {
  flex: 1;
}
.page-recruit .flow-item:nth-of-type(5)::after {
  content: none;
}
.page-recruit .works {
  width: 90%;
  max-width: 750px;
  margin: 130px auto;
}
.page-recruit .works .row {
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .page-recruit .works .row {
    display: block;
  }
}
.page-recruit .works .row img {
  width: 60%;
  margin-right: 30px;
}
@media screen and (max-width: 800px) {
  .page-recruit .works .row img {
    width: 100%;
    margin-bottom: 30px;
  }
}
.page-recruit .car {
  width: 90%;
  max-width: 750px;
  margin: 230px auto;
  text-align: center;
}
.page-recruit .car img {
  width: 100%;
  margin: 0 auto 40px auto;
}

/*========= 最終選考結果ページ(finalist)用のCSS ===============*/
.page-finalist {
  position: relative;
  background: #000;
}
.page-finalist h3 {
  color: #9a7b4a;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 50px;
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  letter-spacing: 10px;
}
.page-finalist .icatch-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  flex-direction: column;
}
.page-finalist .icatch-container__overlay {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: 1;
}
.page-finalist .icatch-container__bg {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-finalist .icatch-container__body {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 800px) {
  .page-finalist .icatch-container__body {
    margin-top: -20svh;
  }
  .page-finalist .icatch-container__body img {
    width: 100%;
  }
  .page-finalist .icatch-container__body p {
    width: 90%;
    margin: 0 auto;
    font-size: 1.3rem;
    text-shadow: 0 0 10px #fff;
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 800px) and (max-width: 800px) {
  .page-finalist .icatch-container__body p {
    font-size: 1.4rem;
    text-shadow: 0 0 10px #00086a;
  }
}
.page-finalist .icatch-container__title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .page-finalist .icatch-container__title {
    width: 80%;
    margin: 0 auto;
    text-shadow: 0 0 10px #fff;
  }
}
.page-finalist .icatch-container__subtitle {
  margin: 10px auto;
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .page-finalist .icatch-container__subtitle {
    font-size: 1.7rem !important;
    text-shadow: 0 0 10px #fff;
  }
}
.page-finalist .award {
  margin: 150px 0;
  padding: 100px 0;
  background: url(../images_kiss/award_bg.png);
  background-repeat: repeat;
  background-size: cover;
}
.page-finalist .award h2 {
  font-size: 4.8rem;
  color: #000;
  letter-spacing: 5px;
  line-height: 1.3;
}
@media screen and (max-width: 800px) {
  .page-finalist .award h2 {
    font-size: 3rem;
  }
}
.page-finalist .award h2 span {
  font-size: 2.9rem;
}
@media screen and (max-width: 800px) {
  .page-finalist .award h2 span {
    font-size: 2rem;
  }
}
.page-finalist .award h2 img {
  width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .page-finalist .award h2 img {
    width: 300px;
  }
}
.page-finalist .award p {
  text-align: center;
  color: #000;
  font-size: 2rem;
  letter-spacing: 5px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 800px) {
  .page-finalist .award p {
    font-size: 1.4rem;
  }
}
.page-finalist .award__movie {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  background: #fff;
  width: 90%;
  margin: 80px auto;
  padding: 30px;
}
@media screen and (max-width: 800px) {
  .page-finalist .award__movie {
    display: block;
  }
}
.page-finalist .award__movie__img {
  width: 45%;
}
@media screen and (max-width: 800px) {
  .page-finalist .award__movie__img {
    width: 100%;
  }
}
.page-finalist .award__movie__detail {
  flex: 0.9;
}
.page-finalist .award__movie__detail h3 {
  margin-bottom: 20px;
  font-size: 3.9rem;
  letter-spacing: 3px;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 800px) {
  .page-finalist .award__movie__detail h3 {
    margin-top: 20px;
    font-size: 2.6rem;
  }
}
.page-finalist .award__movie__detail p {
  text-align: left;
  font-size: 1.6rem;
}
@media screen and (max-width: 800px) {
  .page-finalist .award__movie__detail p {
    font-size: 1.3rem;
    letter-spacing: 1px;
    line-height: 2;
  }
}
.page-finalist .award .profile-index {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.page-finalist .award .profile-index img {
  width: 80px;
  margin-right: 20px;
}
.page-finalist .award .profile-index::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #000;
  display: block;
}
.page-finalist .award .profile-container {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  margin: 30px 0;
}
.page-finalist .award .profile-container__img {
  width: 30%;
}
.page-finalist .award .profile-container__contents {
  width: 100%;
  flex: 0.9;
}
.page-finalist .award .profile-container__contents p {
  font-family: "M PLUS 1p", sans-serif;
  letter-spacing: 1px;
}
.page-finalist .award .profile-container__contents .name {
  margin-bottom: 10px;
}
.page-finalist .award .profile-container__contents .text {
  font-size: 1.2rem;
}
.page-finalist .finalist-result {
  width: 95%;
  max-width: 1000px;
  padding: 100px 0;
  margin: 0 auto 200px auto;
  background: #9a7b4a;
}
@media screen and (max-width: 800px) {
  .page-finalist .finalist-result {
    padding: 50px 0;
  }
}
.page-finalist .finalist-result h2 {
  width: 90%;
  margin: 0 auto;
  background: #fff;
  text-align: center;
  font-size: 4.8rem;
  padding: 20px;
  color: #9a7b4a;
}
@media screen and (max-width: 800px) {
  .page-finalist .finalist-result h2 {
    font-size: 2.8rem;
    padding: 10px;
  }
}
.page-finalist .finalist-result .text {
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
.page-finalist .finalist-result .finalist-movies {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
  margin: 50px auto;
  width: 90%;
}
.page-finalist .finalist-result .short-movie {
  width: 48%;
  margin: 30px 0;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .page-finalist .finalist-result .short-movie {
    width: 100%;
  }
}
.page-finalist .finalist-result .short-movie img {
  width: 100%;
}
.page-finalist .finalist-result .short-movie__title {
  margin: 20px 0 10px 0;
  font-size: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .page-finalist .finalist-result .short-movie__title {
    font-weight: 500;
  }
}
.page-finalist .finalist-result .short-movie dl {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
}
.page-finalist .finalist-result .short-movie dl dt {
  font-weight: bold;
  width: 117px;
}
@media screen and (max-width: 800px) {
  .page-finalist .finalist-result .short-movie dl dt {
    font-weight: 500;
  }
}
.page-finalist .finalist-result .short-movie dl dd {
  flex: 0.95;
}
.page-finalist .finalist-result .short-movie .text {
  text-align: left;
  font-family: "M PLUS 1p", sans-serif;
  margin-top: 10px;
}
@media screen and (max-width: 800px) {
  .page-finalist .finalist-result .short-movie .text {
    margin-top: 15px;
    font-size: 1.4rem;
  }
}
.page-finalist .finalist-table {
  position: relative;
  margin-bottom: 300px;
}
.page-finalist .finalist-table h2 {
  position: relative;
  text-align: center;
  width: 740px;
  margin: 0 auto 100px auto;
  background: #9a7b4a;
  color: #000;
  font-size: 4.8rem;
  padding: 20px;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .page-finalist .finalist-table h2 {
    width: 90%;
    padding: 15px;
    font-size: 2.3rem;
    letter-spacing: 4px;
  }
}
.page-finalist .finalist-table h2:after {
  position: absolute;
  right: 0;
  bottom: -30px;
  color: #fff;
  display: block;
  letter-spacing: 0;
  content: "※順不同。";
  font-size: 1.5rem;
}
@media screen and (max-width: 800px) {
  .page-finalist .finalist-table h2:after {
    font-size: 1.3rem;
  }
}
.page-finalist .finalist-table.finalist-medium .bg-img {
  width: 40%;
  max-width: 600px;
  position: absolute;
  mix-blend-mode: hard-light;
  z-index: 0;
}
@media screen and (max-width: 800px) {
  .page-finalist .finalist-table.finalist-medium .bg-img {
    width: 70%;
  }
}
.page-finalist .finalist-table.finalist-medium .bg-img:nth-of-type(1) {
  left: 0;
  top: 0;
}
.page-finalist .finalist-table.finalist-medium .bg-img:nth-of-type(2) {
  right: 0;
  bottom: 30%;
  transform: rotate(180deg);
}
@media screen and (max-width: 800px) {
  .page-finalist .finalist-table.finalist-short {
    margin-bottom: 180px;
  }
}
.page-finalist .finalist-table.finalist-short .bg-img {
  width: 40%;
  max-width: 600px;
  position: absolute;
  mix-blend-mode: hard-light;
  z-index: 0;
}
@media screen and (max-width: 800px) {
  .page-finalist .finalist-table.finalist-short .bg-img {
    width: 70%;
  }
}
.page-finalist .finalist-table.finalist-short .bg-img:nth-of-type(1) {
  right: 0;
  top: 0;
}
.page-finalist .finalist-table.finalist-short .bg-img:nth-of-type(2) {
  left: 0;
  bottom: 0%;
  transform: rotate(180deg);
}
.page-finalist .message {
  color: #9a7b4a;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 3px;
}
@media screen and (max-width: 800px) {
  .page-finalist .message {
    font-size: 1.4rem;
  }
}
.page-finalist .finalist-item {
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 50px auto;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 800px) {
  .page-finalist .finalist-item {
    width: 85%;
  }
}
.page-finalist .finalist-item span {
  font-size: 4.3rem;
  margin-right: 20px;
}
@media screen and (max-width: 800px) {
  .page-finalist .finalist-item span {
    font-size: 2.3rem;
  }
}
.page-finalist .finalist-item__number a {
  display: inline-block;
}
.page-finalist .finalist-item__body {
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .page-finalist .finalist-item__body {
    display: block;
  }
}
.page-finalist .finalist-item__title {
  margin-left: 20px;
  font-size: 2.5rem;
}
@media screen and (max-width: 800px) {
  .page-finalist .finalist-item__title {
    margin-left: 0px;
    margin-bottom: 5px;
    font-size: 2rem;
  }
}
.page-finalist .finalist-item__director {
  font-size: 1.9rem;
}
@media screen and (max-width: 800px) {
  .page-finalist .finalist-item__director {
    font-size: 1.4rem;
  }
}
.page-finalist .finalist-item__director:before {
  content: "";
  width: 37px;
  height: 1px;
  background: #fff;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
@media screen and (max-width: 800px) {
  .page-finalist .finalist-item__director:before {
    width: 17px;
  }
}

/*========= entryページ用のCSS ===============*/
.page-entry {
  position: relative;
  background: #000;
  /* TOPのファーストビュー */
  /* コンセプト */
  /* 期間 */
  /* 賞 */
  /* 主催者 */
  /* 審査員 */
  /* 応募要項 */
  /* 参考情報 */
  /* その他留意事項 */
  /* お問い合わせ */
}
.page-entry section {
  margin: 200px 0;
}
@media screen and (max-width: 800px) {
  .page-entry section {
    margin: 100px 0;
  }
}
.page-entry h2 {
  color: #9a7b4a;
}
.page-entry .fv-container {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  height: 100vh;
  background: url(../images_2023/entry_icatch.jpg);
  background-size: cover;
  background-position: center;
}
.page-entry .fv-container .fv-container__catchcopy {
  z-index: 1;
}
.page-entry .fv-container .fv-container__catchcopy .logo {
  width: 260px;
  margin: 0 auto 30px auto;
}
@media screen and (max-width: 800px) {
  .page-entry .fv-container .fv-container__catchcopy .logo {
    width: 200px;
  }
}
.page-entry .fv-container .fv-container__catchcopy .title {
  width: 400px;
  margin: 0 auto 20px auto;
}
@media screen and (max-width: 800px) {
  .page-entry .fv-container .fv-container__catchcopy .title {
    width: 300px;
  }
}
.page-entry .fv-container .fv-container__catchcopy .date {
  width: 330px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .page-entry .fv-container .fv-container__catchcopy .date {
    width: 280px;
  }
}
.page-entry .fv-container .entry-btn {
  width: 480px;
  margin: 80px auto 0 auto;
  padding: 40px 0;
  text-align: center;
  font-size: 2.5rem;
  font-family: "Noto Serif JP", serif;
  background: #b48132;
  transition: 0.5s;
}
@media screen and (max-width: 800px) {
  .page-entry .fv-container .entry-btn {
    width: 90%;
    padding: 20px 0;
    font-size: 2.2rem;
  }
}
.page-entry .fv-container .entry-btn:hover {
  background-color: #ff533e;
}
.page-entry .fv-container .info {
  font-size: 1.2rem;
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .page-entry .fv-container .info {
    text-align: center;
  }
}
.page-entry .finalist-banner {
  width: 70%;
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (max-width: 800px) {
  .page-entry .finalist-banner {
    width: 100%;
  }
}
.page-entry .concept {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  background: url(../images_2023/entry_s2_bg.jpg);
  background-size: cover;
  background-repeat: repeat-y;
  background-position: center;
  mix-blend-mode: hard-light;
}
@media screen and (max-width: 800px) {
  .page-entry .concept {
    background: url(../images_2023/entry_s2_bg_sp.jpg);
    background-size: cover;
    background-repeat: repeat-y;
    background-position: right;
  }
}
.page-entry .concept__top h2 {
  font-size: 4rem;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .page-entry .concept__top h2 {
    font-size: 3rem;
  }
}
.page-entry .concept__top .row {
  width: 90%;
  max-width: 1000px;
  margin: 100px auto 200px auto;
  justify-content: space-between;
}
.page-entry .concept__top .row img {
  width: 30%;
}
@media screen and (max-width: 800px) {
  .page-entry .concept__top .row img {
    width: 60%;
    margin: 30px auto;
  }
}
.page-entry .concept p {
  font-size: 2rem;
  line-height: 2.5;
  letter-spacing: 2px;
}
@media screen and (max-width: 800px) {
  .page-entry .concept p {
    width: 90%;
    margin: auto;
    font-size: 1.6rem;
  }
}
.page-entry .concept p.strong {
  margin: 70px auto;
  font-size: 2.8rem;
  color: #f7a5be;
}
@media screen and (max-width: 800px) {
  .page-entry .concept p.strong {
    margin: 20px auto 30px auto;
    font-size: 1.8rem;
  }
}
.page-entry .term h3 {
  text-align: center;
  font-size: 2.9rem;
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .page-entry .term h3 {
    font-size: 2rem;
  }
}
.page-entry .term div {
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto;
}
.page-entry .term p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .page-entry .term p {
    width: 90%;
  }
}
.page-entry .term p span {
  color: #e64577;
}
.page-entry .award p {
  text-align: center;
}
.page-entry .award .row {
  width: 90%;
  max-width: 1000px;
  margin: 50px auto;
}
.page-entry .award__item {
  width: 28%;
  margin: 0 10px;
}
.page-entry .award__item img {
  width: 100%;
}
.page-entry .award__item p {
  margin-top: 15px;
  font-size: 1.4rem;
  text-align: center;
}
.page-entry .award__item p span {
  font-size: 1.2rem;
}
.page-entry .organizer img {
  width: 393px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .page-entry .organizer img {
    width: 300px;
  }
}
.page-entry .organizer img:nth-of-type(1), .page-entry .organizer img:nth-of-type(2) {
  margin-bottom: 70px;
}
.page-entry .organizer .coop-logo-wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: inherit;
  -webkit-box-align: inherit;
  -ms-flex-align: inherit;
  flex-wrap: wrap;
  width: 393px;
  margin: 0 auto 70px auto;
}
@media screen and (max-width: 800px) {
  .page-entry .organizer .coop-logo-wrap {
    width: 300px;
  }
}
.page-entry .organizer .coop-logo-wrap img {
  margin-bottom: 9px;
}
.page-entry .organizer .coop-logo-wrap .logo-1 {
  width: 76px;
}
@media screen and (max-width: 800px) {
  .page-entry .organizer .coop-logo-wrap .logo-1 {
    width: 58px;
  }
}
.page-entry .organizer .coop-logo-wrap .logo-2 {
  width: 309px;
}
@media screen and (max-width: 800px) {
  .page-entry .organizer .coop-logo-wrap .logo-2 {
    width: 236px;
  }
}
.page-entry .organizer .coop-logo-wrap .logo-3 {
  width: 191px;
}
@media screen and (max-width: 800px) {
  .page-entry .organizer .coop-logo-wrap .logo-3 {
    width: 146px;
  }
}
.page-entry .organizer .coop-logo-wrap .logo-4 {
  width: 194px;
}
@media screen and (max-width: 800px) {
  .page-entry .organizer .coop-logo-wrap .logo-4 {
    width: 146px;
  }
}
.page-entry .organizer .coop-logo-wrap .logo-5 {
  width: 191px;
}
@media screen and (max-width: 800px) {
  .page-entry .organizer .coop-logo-wrap .logo-5 {
    width: 146px;
  }
}
.page-entry .organizer .logo-6 {
  width: 191px;
  margin: 0 10px;
}
@media screen and (max-width: 800px) {
  .page-entry .organizer .logo-6 {
    width: 146px;
  }
}
.page-entry .organizer .logo-7 {
  width: 191px;
  margin: 0 10px;
}
@media screen and (max-width: 800px) {
  .page-entry .organizer .logo-7 {
    width: 146px;
  }
}
.page-entry .video-container {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.76);
  opacity: 0;
  visibility: hidden;
  z-index: 10;
}
.page-entry .video-container video {
  width: 90%;
  margin: 0 auto;
}
.page-entry .video-container.is-active {
  opacity: 1;
  visibility: visible;
}
.page-entry .judge .row {
  width: 90%;
  max-width: 1000px;
  margin: 50px auto;
}
.page-entry .judge__item {
  width: 28%;
  margin: 0 10px;
}
@media screen and (max-width: 800px) {
  .page-entry .judge__item {
    width: 100%;
    max-width: 300px;
    margin-bottom: 50px;
  }
}
.page-entry .judge__item .profile-img {
  width: 100%;
  aspect-ratio: 5/4.8;
}
.page-entry .judge__item .profile-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-entry .judge__item .job {
  margin-top: 20px;
  text-align: center;
  font-size: 1.2rem;
}
.page-entry .judge__item .commingsoon {
  text-align: center;
  margin: 30px 0;
}
.page-entry .judge__item .name {
  margin-top: 5px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.6rem;
}
.page-entry .judge__item .name span {
  display: block;
  font-size: 1.2rem;
}
.page-entry .judge__item .message-btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px auto;
}
.page-entry .judge__item .profile {
  font-size: 1rem;
}
.page-entry .judge__item .link-area {
  border-top: 1px solid #393939;
}
.page-entry .judge__item .link-area a {
  margin-top: 26px;
  font-size: 1.4rem;
  text-align: center;
}
.page-entry .judge__item .link-area a:after {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  background: url(../images_2023/icon_link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
}
.page-entry .guideline dl {
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
  width: 90%;
  max-width: 800px;
  margin: 50px auto;
  line-height: 2;
}
.page-entry .guideline dl.note {
  color: #e64577;
}
.page-entry .guideline dl.note span {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1.4;
}
.page-entry .guideline dl dt {
  width: 80px;
  margin-right: 90px;
}
@media screen and (max-width: 800px) {
  .page-entry .guideline dl dt {
    margin-right: 30px;
  }
}
.page-entry .guideline dl dd {
  flex: 1;
}
.page-entry .guideline dl dd strong {
  font-weight: bold;
}
.page-entry .guideline dl dd span {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1.4;
}
.page-entry .guideline dl dd a {
  display: inline-block;
  color: #e64577;
  text-decoration: underline;
}
.page-entry .reference {
  width: 100%;
  max-width: 1000px;
  margin: 200px auto;
  padding: 50px 100px;
  background: #00205c;
}
@media screen and (max-width: 800px) {
  .page-entry .reference {
    padding: 50px 30px;
  }
}
.page-entry .reference h2 {
  color: #fff;
}
.page-entry .reference span {
  font-size: 1.2rem;
}
.page-entry .attention {
  width: 100%;
  max-width: 1000px;
  margin: 200px auto;
  padding: 50px 100px;
  background: #00205c;
}
@media screen and (max-width: 800px) {
  .page-entry .attention {
    padding: 50px 30px;
  }
}
.page-entry .attention h2 {
  color: #fff;
}
.page-entry .attention span {
  font-size: 1.2rem;
}
.page-entry .contact {
  padding: 100px 0;
  background: #b48132;
}
.page-entry .contact h2 {
  color: #fff;
}
.page-entry .contact form {
  display: block;
  width: 90%;
  max-width: 660px;
  margin: 100px auto 0 auto;
}
@media screen and (max-width: 800px) {
  .page-entry .contact form {
    margin: 10px auto 0 auto;
  }
}
.page-entry .contact .form-item {
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  margin: 38px 0;
}
.page-entry .contact .form-item__label {
  width: 80px;
  margin-right: 100px;
}
@media screen and (max-width: 800px) {
  .page-entry .contact .form-item__label {
    width: 100%;
    margin-bottom: 20px;
  }
}
.page-entry .contact .form-item input[type=text],
.page-entry .contact .form-item input[type=email],
.page-entry .contact .form-item input[type=tel] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  outline: none;
  flex: 1;
  padding: 15px;
  font-size: 1.6rem;
  background: #fff;
}
@media screen and (max-width: 800px) {
  .page-entry .contact .form-item input[type=text],
  .page-entry .contact .form-item input[type=email],
  .page-entry .contact .form-item input[type=tel] {
    padding: 12px;
  }
}
.page-entry .contact .privacy {
  margin-bottom: 20px;
}
.page-entry .contact .privacy label {
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
}
.page-entry .contact .privacy__label {
  position: relative;
}
.page-entry .contact .privacy__label a {
  display: inline-block;
  padding-left: 10px;
  padding-right: 5px;
  text-decoration: underline;
}
.page-entry .contact .privacy input[type=radio] {
  outline: none;
  accent-color: black;
  width: 22px;
  height: 22px;
  border-radius: 100%;
}
.page-entry .contact .note {
  margin-bottom: 50px;
}
.page-entry .contact .submit {
  width: 80%;
  margin: 0 auto;
  padding: 40px 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
  background: #000;
}
.page-entry .contact .submit:disabled {
  opacity: 0.5;
  cursor: inherit;
}
@media screen and (max-width: 800px) {
  .page-entry .contact .submit {
    font-size: 1.8rem;
    padding: 20px 0;
  }
}

/*========= entry完了ページ用のCSS ===============*/
.page-complete .fix-bg {
  position: fixed;
  width: 100%;
  height: 100vh;
}
.page-complete .fix-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-complete .main-container {
  position: relative;
  z-index: 1;
  padding: 20vh 30px;
  text-align: center;
  background: url(/images_2023/back_shadow.png);
  background-size: cover;
  background-position: center;
}
.page-complete .main-container .text-shadow {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.page-complete .main-container h1 {
  margin-bottom: 65px;
  font-size: 5rem;
  letter-spacing: 10px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 800px) {
  .page-complete .main-container h1 {
    font-size: 3rem;
  }
}
.page-complete .main-container p {
  line-height: 2;
}
.page-complete .main-container .address {
  width: 90%;
  max-width: 560px;
  margin: 50px auto 20px auto;
  color: #000;
  padding: 33px 0;
  background: #fff;
}
@media screen and (max-width: 800px) {
  .page-complete .main-container .address {
    width: 100%;
  }
}

/*========= お問い合わせ(contact)用のCSS ===============*/
.page-contact {
  padding-top: 100px;
  background: #fff;
}
.page-contact .contact-inner {
  width: 85%;
  max-width: 450px;
  margin: 100px auto 300px auto;
}
@media screen and (max-width: 800px) {
  .page-contact .contact-inner {
    margin: 50px auto 300px auto;
  }
}
.page-contact .contact-inner .status {
  width: 117px;
  margin: 0 auto 50px auto;
}
@media screen and (max-width: 800px) {
  .page-contact .contact-inner .status {
    width: 90px;
  }
}
.page-contact .contact-inner .text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
.page-contact form {
  display: block;
  width: 100%;
  margin: 50px auto;
}
.page-contact .form-item {
  margin: 10px 0;
}
@media screen and (max-width: 800px) {
  .page-contact .form-item {
    margin: 20px 0;
  }
}
.page-contact .form-item__label {
  color: #363636;
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .page-contact .form-item__label {
    margin-bottom: 6px;
  }
}
.page-contact .form-item .input-wrap {
  position: relative;
}
.page-contact .form-item input[type=text],
.page-contact .form-item input[type=email],
.page-contact .form-item input[type=tel],
.page-contact .form-item select,
.page-contact .form-item textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  outline: none;
  width: 100%;
  padding: 15px;
  font-size: 1.6rem;
  background: #fff;
  border-radius: 4px;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 800px) {
  .page-contact .form-item input[type=text],
  .page-contact .form-item input[type=email],
  .page-contact .form-item input[type=tel],
  .page-contact .form-item select,
  .page-contact .form-item textarea {
    padding: 12px;
  }
}
.page-contact .form-item .radio-wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
}
.page-contact .form-item .radio-wrap .radio-label {
  display: block;
  cursor: pointer;
  margin-right: 20px;
}
.page-contact .form-item .radio-wrap input[type=radio] {
  accent-color: #cc7111;
  width: 20px;
  height: 20px;
  vertical-align: bottom;
  margin-right: 10px;
}
.page-contact .privacy {
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
}
.page-contact .privacy__label {
  position: relative;
  padding-left: 30px;
}
.page-contact .privacy__label a {
  display: inline-block;
  padding-left: 10px;
  padding-right: 5px;
  color: #37b8eb;
  text-decoration: underline;
}
.page-contact .privacy__label:after {
  content: "";
  position: absolute;
  left: 0;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  background: #fff;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.16);
}
.page-contact .privacy__label:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  background: #f3ad70;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.16);
  opacity: 0;
  z-index: 1;
}
.page-contact .privacy input[type=checkbox] {
  opacity: 0;
}
.page-contact .privacy input[type=checkbox]:checked + .privacy__label::before {
  opacity: 1;
}
.page-contact .recaptcha {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.4;
}
.page-contact .recaptcha a {
  display: inline-block;
  color: #f3ad70;
}
.page-contact .submit {
  display: block;
  margin: 100px auto 20px auto;
  padding: 15px 70px;
  background: linear-gradient(#3ab9ef, #179bd4);
  color: #fff;
  border-radius: 4px;
}
@media screen and (max-width: 800px) {
  .page-contact .submit {
    width: 250px;
    margin: 30px auto;
    padding: 15px 59px;
  }
}
.page-contact .submit:disabled {
  cursor: inherit;
  background-color: #707070;
}
.page-contact .confirm-table {
  width: 100%;
}
.page-contact .confirm-table tr {
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  margin: 20px 0;
}
@media screen and (max-width: 800px) {
  .page-contact .confirm-table tr {
    margin: 20px 0 30px 0;
  }
}
.page-contact .confirm-table th {
  width: 215px;
  text-align: left;
}
@media screen and (max-width: 800px) {
  .page-contact .confirm-table th {
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}
.page-contact .confirm-table td {
  flex: 1;
}
@media screen and (max-width: 800px) {
  .page-contact .confirm-table td {
    width: 100%;
  }
}
.page-contact .btn-wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .page-contact .btn-wrap {
    display: block;
    margin-top: 30px;
  }
}
.page-contact .return {
  display: block;
  margin: 100px auto;
  padding: 15px 70px;
  background: #808080;
  color: #fff;
  border-radius: 4px;
}
@media screen and (max-width: 800px) {
  .page-contact .return {
    width: 250px;
    margin: 0px auto;
    padding: 15px 59px;
  }
}
.page-contact .thanks {
  margin: 65px 0;
  text-align: center;
}
.page-contact h3 {
  text-align: center;
  font-size: 2.6rem;
}
.page-contact h3 span {
  font-size: 1.8rem;
}/*# sourceMappingURL=style.css.map */