@charset "UTF-8";
/* 基本スタイル読み込み */
/* 色指定 */
/* フォント指定 */
/* レスポンシブ */
/* スタイルベース */
* {
  box-sizing: border-box;
}

html {
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #595850;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

section,
header,
footer {
  position: relative;
  padding: 0 16px;
}

header,
footer {
  z-index: 100;
}

footer {
  position: relative;
  font-size: 12px;
  text-align: center;
  padding: 16px;
  margin-top: 120px;
}
footer::before, footer::after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 72px;
  height: 72px;
  border: 10px solid #fff125;
  border-top: none;
}
footer::before {
  border-right: none;
  left: 0;
}
footer::after {
  border-left: none;
  right: 0;
}
@media screen and (max-width: 768px) {
  footer {
    font-size: 10px;
    margin-top: 80px;
  }
  footer::before, footer::after {
    width: 56px;
    height: 56px;
  }
}

a:not([class]) {
  color: #b89c00;
  text-decoration-color: #b89c00;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  a:not([class]):hover {
    color: #e9c600;
    text-decoration-color: #e9c600;
  }
}

a.button,
button.button {
  color: #595850;
  border: 1px solid #e1e1e1;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  background-color: white;
  box-shadow: 0 0 4px transparent;
  transition: 0.3s ease-in-out;
}
a.button:hover,
button.button:hover {
  box-shadow: 0 0 6px #fff125;
  border-color: #fff125;
}

a,
button {
  color: #595850;
  -webkit-tap-highlight-color: transparent;
}

img {
  width: 100%;
  height: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

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

p {
  font-size: 14px;
  margin: 1em 0;
}

ul,
ol {
  list-style: none;
}

#contents {
  position: relative;
  background-color: white;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  z-index: 10;
}
#contents::before {
  content: "";
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background-image: url(./image/bg_pc.png);
  background-size: 100% auto;
  background-position: center;
  background-repeat: repeat-y;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  #contents::before {
    background-image: url(./image/bg_sp.png);
  }
}

.wrapper {
  max-width: 1000px;
  margin: auto;
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding-top: 80px;
  }
}

.scroll-down {
  width: 1px;
  height: 50px;
  background: white;
  animation: scrollDown 3s ease-in-out infinite;
  margin: 0 auto;
}

@keyframes scrollDown {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  45% {
    transform-origin: top;
    transform: scaleY(1);
  }
  55% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
.title {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 32px;
  letter-spacing: 0.04em;
  gap: 40px;
  margin-bottom: 40px;
  font-family: "Bona Nova", serif;
}
.title::after {
  content: "";
  flex-grow: 1;
  width: 100%;
  height: 4px;
  border-top: 1px solid #595850;
  border-bottom: 1px solid #595850;
}
.title::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: -56%;
  left: -54px;
  background-image: url("./image/star.png");
  background-size: contain;
  animation: rotate 30s infinite linear;
  z-index: -1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.subTitle {
  font-size: 18px;
  letter-spacing: 0.04em;
  margin: 40px 0 24px;
  font-family: "Bona Nova", serif;
  border-left: 3px solid #595850;
  padding-top: 4px;
  padding-left: 16px;
}

@media screen and (max-width: 768px) {
  .title {
    font-size: 24px;
    gap: 24px;
    margin-bottom: 24px;
  }
  .title::before {
    top: -90%;
  }
  .subTitle {
    margin: 24px 0 16px;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  padding: 0 100px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
}
.modal.active {
  opacity: 1;
}
.modal .modal-wrapper {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  position: relative;
}
.modal .modal-wrapper .close-modal {
  position: absolute;
  top: 16px;
  right: -64px;
  z-index: 1;
  width: 40px;
  height: 40px;
}
.modal .modal-wrapper .close-modal::before, .modal .modal-wrapper .close-modal::after {
  position: absolute;
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  top: 50%;
  left: 50%;
  background-color: white;
}
.modal .modal-wrapper .close-modal::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal .modal-wrapper .close-modal::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal .modal-contents {
  position: relative;
  width: 100%;
  height: calc(100vh + 1px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background-color: white;
  padding: 0 80px;
}
.modal .modal-contents .detail {
  padding: 80px 0;
}
.modal .modal-contents .detail .image {
  margin-bottom: 32px;
}
@media screen and (min-width: 1025px) {
  .modal .modal-contents .detail .image {
    height: 540px;
  }
  .modal .modal-contents .detail .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }
}
.modal .modal-contents .detail .scenario-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
}
.modal .modal-contents .detail .scenario-title span {
  font-size: 16px;
  font-weight: 400;
  color: #aaaaaa;
}
.modal .modal-contents .detail .data {
  display: flex;
  gap: 32px;
}
.modal .modal-contents .detail .data .list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 50%;
}
.modal .modal-contents .detail .data .list li {
  display: flex;
  flex-flow: wrap;
  gap: 8px 16px;
  font-size: 14px;
}
.modal .modal-contents .detail .data .list li dt {
  padding: 4px 8px;
  color: white;
  border-radius: 4px;
  background-color: #595850;
  min-width: 80px;
  text-align: center;
}
.modal .modal-contents .detail .data .list .name {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 800;
}
.modal .modal-contents .detail .data .list .story p {
  font-size: 16px;
}
@media screen and (min-width: 1025px) {
  .modal .modal-contents .detail .data .list .name {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .modal .modal-contents .detail .data .story {
    width: 50%;
    flex-grow: 1;
  }
}
@media screen and (max-width: 1024px) {
  .modal {
    padding: 0 16px;
  }
  .modal .modal-wrapper {
    max-width: 600px;
  }
  .modal .modal-wrapper .close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: white;
  }
  .modal .modal-wrapper .close-modal::before, .modal .modal-wrapper .close-modal::after {
    position: absolute;
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    top: 50%;
    left: 50%;
    background-color: #595850;
  }
  .modal .modal-contents {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    background-color: white;
    padding: 0 32px;
  }
  .modal .modal-contents .detail {
    padding: 80px 0 80px;
  }
  .modal .modal-contents .detail .scenario-title {
    gap: 4px;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
  }
  .modal .modal-contents .detail .scenario-title span {
    font-size: 14px;
  }
  .modal .modal-contents .detail .data {
    flex-direction: column;
  }
  .modal .modal-contents .detail .data .list {
    width: 100%;
    order: 1;
    gap: 16px;
  }
  .modal .modal-contents .detail .data .list li {
    flex-direction: column;
  }
  .modal .modal-contents .detail .data .story {
    width: 100%;
    order: 0;
  }
  .modal .modal-contents .detail .data .story p {
    font-size: 16px;
  }
}

#news-modal .news-title {
  font-size: 32px;
}
#news-modal .date {
  font-family: "Bona Nova", serif;
  margin-top: 4px;
  margin-bottom: 32px;
}
#news-modal .text p {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  #news-modal .news-title {
    font-size: 18px;
  }
}

#log-modal .log-title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 24px;
}
#log-modal p {
  font-size: 16px;
}
#log-modal .material {
  margin-bottom: 40px;
}
#log-modal .material img {
  display: block;
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #log-modal .material img {
    width: 100%;
  }
}
#log-modal .material small {
  display: block;
  text-align: center;
  margin: 14px auto;
}
@media screen and (max-width: 768px) {
  #log-modal .log-title {
    font-size: 18px;
  }
  #log-modal p {
    font-size: 14px;
  }
}

/* ページ各読み込み */
header {
  position: absolute;
  top: calc(100vh - 160px);
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  color: white;
  transition: opacity 0.4s ease-in-out, color 0.4s ease-in-out, text-decoration-color 0.4s ease-in-out, background-color 0.4s ease-in-out;
}
header nav {
  background-color: transparent;
  border-radius: 10px;
  padding: 16px 40px;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0);
}
header ul {
  display: flex;
  gap: 32px;
}
header ul li {
  position: relative;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
  transition: color 0.4s ease-in-out, text-decoration-color 0.4s ease-in-out;
}
header ul li::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  right: -16px;
  background-color: white;
  transition: all 0.4s ease-in-out;
}
header ul li:last-child::after {
  display: none;
}
header ul li a {
  color: white;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: 0.3s;
}
header ul li a:hover {
  color: white;
  text-decoration-color: white;
}
header.change {
  opacity: 0;
  visibility: hidden;
}
header.hidden {
  top: 32px;
  position: fixed;
  color: #595850;
}
header.hidden nav {
  background-color: white;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
}
header.hidden ul li {
  text-shadow: 0 0 16px rgba(0, 0, 0, 0);
}
header.hidden ul li::after {
  background-color: #595850;
}
header.hidden ul li a {
  color: #595850;
  text-decoration-color: transparent;
}
header.hidden ul li a:hover {
  color: #595850;
  text-decoration-color: #595850;
}
header.over {
  position: fixed;
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  header {
    top: 16px;
  }
  header nav {
    background-color: transparent;
    border-radius: 10px;
    padding: 16px 24px;
  }
  header ul {
    display: flex;
    gap: 24px;
  }
  header ul li::after {
    right: -12px;
  }
  header.hidden {
    top: 16px;
  }
}

section#main {
  z-index: 0;
}

#join {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  height: 100vh;
  color: #ffffff;
  background-image: linear-gradient(0deg, rgb(145, 145, 145), rgb(0, 0, 0));
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 1;
  transition: 0.8s;
}
#join.hidden {
  opacity: 0;
}
#join .logo {
  max-width: 400px;
}
@media screen and (max-width: 1024px) {
  #join {
    justify-content: flex-start;
  }
  #join .logo {
    max-width: 343px;
    padding-top: 15%;
  }
}
@media screen and (max-width: 768px) {
  #join .logo {
    padding-top: 30%;
  }
}

.stars {
  position: relative;
  overflow: hidden; /* 星が枠外にはみ出すのを防ぐ */
}

.star {
  position: absolute;
  display: block;
  background-color: #fff; /* 星の色 */
  border-radius: 50%;
  box-shadow: 0 0 2px 0px rgba(255, 255, 255, 0.2); /* 星の影 */
  opacity: 0;
  animation: twinkle 5s infinite;
}

/* 星がキラキラ光るアニメーション */
@keyframes twinkle {
  0% {
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
section#main {
  z-index: 0;
}

#main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  height: 100vh;
  color: #ffffff;
  background-image: url("./image/main_pc.png");
  background-position: right bottom;
  background-size: cover;
  position: sticky;
  top: 0;
}
#main .logo {
  max-width: 400px;
}
#main .logo img {
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.65));
}
#main .text {
  position: absolute;
  bottom: 200px;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0.04em;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5019607843);
}
@media screen and (max-width: 1024px) {
  #main {
    justify-content: flex-start;
    background-image: url("./image/main_sp.png");
    background-position: center bottom;
  }
  #main .logo {
    max-width: 343px;
    padding-top: 15%;
  }
  #main .logo img {
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.4));
  }
}
@media screen and (max-width: 768px) {
  #main .text {
    position: static;
    font-size: 1rem;
  }
  #main .logo {
    padding-top: 30%;
  }
}

.scroll-down.main {
  position: absolute;
  top: calc(100vh - 80px);
  left: 50%;
  z-index: 10;
}

.copy {
  text-align: center;
  line-height: 2;
}
.copy img {
  display: block;
  max-width: 250px;
  margin: auto;
  margin-bottom: 32px;
}
.copy span {
  font-size: 1.5em;
  font-weight: 800;
}

#report {
  position: relative;
}
#report::after {
  position: absolute;
  display: block;
  content: "";
  background-image: url("./image/photo_01.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 360px;
  height: 715px;
  top: 45%;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #report::after {
    width: 180px;
    height: 450px;
    top: 60%;
  }
}
@media screen and (max-width: 768px) {
  #report::after {
    top: 82%;
    width: 240px;
    height: 600px;
  }
}
#report .intro {
  display: flex;
  align-items: center;
  gap: 32px;
}
#report .intro .cover {
  max-width: 360px;
  padding: 0 64px;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.1254901961));
}
#report .intro .status {
  flex-grow: 1;
}
#report .intro .status h2 {
  font-size: 24px;
}
#report .intro .status h2 span {
  display: block;
  font-size: 14px;
}
#report .intro .status .price {
  display: flex;
  gap: 16px;
  margin: 16px 0;
}
@media screen and (max-width: 768px) {
  #report .intro {
    flex-direction: column;
  }
}
#report .recorder {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  #report .recorder {
    margin-top: 40px;
  }
}
#report .recorder .member {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 16px 20px;
}
#report .recorder .member li {
  width: calc(50% - 10px);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
#report .recorder .member li .image {
  width: 86px;
}
#report .recorder .member li .author {
  width: calc(100% - 86px - 16px);
}
#report .recorder .member li .author .name {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 800;
}
#report .recorder .member li .author .links {
  display: flex;
  gap: 4px;
  margin: 8px 0;
}
#report .recorder .member li .author .links a {
  display: block;
  width: 27px;
  height: 27px;
}
#report .recorder .member li .author .opus {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  #report .recorder .member li {
    width: 100%;
  }
  #report .recorder .member li .image {
    width: 25%;
  }
  #report .recorder .member li .author {
    width: calc(75% - 16px);
  }
  #report .recorder .member li .author .name {
    justify-content: space-between;
  }
}

#record .text {
  display: none;
  text-align: center;
  margin: 16px 0 40px;
}
@media screen and (min-width: 1025px) {
  #record .text {
    display: block;
  }
}
#record .scenario {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}
#record .scenario li {
  position: relative;
  width: 50%;
  padding: 16px 32px;
}
#record .scenario li .image {
  width: 100%;
}
#record .scenario li .name {
  text-align: center;
  font-size: 16px;
}
#record .scenario li .name span {
  display: block;
  font-size: 12px;
}
#record .scenario li .scenario-button span {
  display: block;
  font-size: 16px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1025px) {
  #record .scenario li .scenario-button {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    border-radius: 10px;
    border: 1px solid #e1e1e1;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.6666666667);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
  }
  #record .scenario li .scenario-button:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 1024px) {
  #record .scenario li .scenario-button span {
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid #e1e1e1;
    background-color: white;
  }
}
@media screen and (max-width: 1024px) {
  #record .scenario li {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    padding: 12px 0;
  }
  #record .scenario li .name {
    text-align: left;
  }
}

#news .news {
  max-width: 640px;
  margin: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#news .news li {
  border-bottom: 1px solid #595850;
  transition: border-color 0.3s ease-in-out;
}
#news .news li:hover {
  border-color: #e1e1e1;
}
#news .news li:hover button {
  opacity: 0.5;
}
#news .news li button {
  width: 100%;
  display: flex;
  gap: 16px;
  padding-bottom: 4px;
  text-align: left;
  transition: opacity 0.3s ease-in-out;
}
#news .news li button dt {
  display: block;
  width: 150px;
  flex-shrink: 0;
}
#news .news li button dd {
  display: block;
  flex-grow: 1;
}
#news .log {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
#news .log li button {
  padding: 12px 18px;
}

#information {
  position: relative;
}
#information::after {
  position: absolute;
  display: block;
  content: "";
  background-image: url("./image/photo_02.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 360px;
  height: 715px;
  top: -15%;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #information::after {
    width: 180px;
    height: 450px;
    top: 60%;
  }
}
#information .text {
  text-align: center;
}
#information .sns {
  margin: 40px 0 80px;
}
@media screen and (max-width: 768px) {
  #information .sns {
    margin: 16px 0 40px;
  }
}
#information .embedded {
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  #information .embedded {
    width: unset;
  }
}
#information .thanks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#information .thanks li {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  gap: 4px 0;
}
@media screen and (max-width: 768px) {
  #information .thanks li {
    flex-direction: column;
    align-items: flex-start;
  }
}
#information .thanks li .links {
  display: flex;
  align-items: center;
  gap: 8px;
}
#information .thanks li .links::before {
  content: "";
  display: block;
  margin-left: 16px;
  background-color: #595850;
  width: 40px;
  height: 1px;
}/*# sourceMappingURL=style.css.map */