@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
html,
body,
h1,
h2,
p,
ul,
li {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.main {
  margin-bottom: 0 !important;
}

#contents {
  font-size: 62.5%;
  font-family: "Noto Serif JP", serif;
}
#contents ul {
  list-style: none;
}
#contents a {
  text-decoration: none;
  color: inherit;
}
#contents img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
}

.footer-cta, .footer {
  position: relative;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

:root {
  /* Quint（Quartより強く、Expoより弱い） */
  --ease-quint-in: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-quint-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-quint-inout: cubic-bezier(0.86, 0, 0.07, 1);
  /* Expo（もっとも強い） */
  --ease-expo-in: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-expo-out: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-expo-inout: cubic-bezier(1, 0, 0, 1);
}

body #contents {
  opacity: 0;
  transition: opacity 0.5s ease-out;
  overflow: hidden;
}
body #contents.active {
  opacity: 1;
}
body .bread {
  position: relative;
  z-index: 1;
  background: #fff;
}
body .base {
  background: #e95744;
}
body .base .photoBg {
  position: relative;
  padding-bottom: 60px;
}
body .base .photoBg::before {
  content: "";
  display: block;
  position: fixed;
  background: linear-gradient(rgba(8, 44, 160, 0.8), rgba(8, 44, 160, 0.8)), url("../img/test.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
}
body .base .photoBg .colorBg {
  position: relative;
  width: 100%;
  z-index: 0;
  background-attachment: fixed;
}

.title {
  text-align: center;
  padding-top: 60px;
  color: #e2e2e2;
  font-size: 50px;
  top: 0;
}
@media screen and (max-width: 999px) {
  .title {
    padding-top: 30px;
  }
}
.title-wrapper {
  width: 80%;
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
  padding: 60px 20px;
  z-index: 1;
  transition: width 2s var(--ease-expo-out);
  transition: outline 0.5s ease-out, outline-offset 0.5s ease-out, box-shadow 1s ease-out;
  border: 0 solid transparent;
  outline: 0 solid #bc9c5d;
}
@media screen and (max-width: 999px) {
  .title-wrapper {
    width: 86%;
    padding: 20px;
  }
}
.title-wrapper.active {
  border: 1px solid transparent;
  outline: 4px solid #bc9c5d;
  outline-offset: -30px;
  box-shadow: 0 0px 36px 0 rgba(255, 219, 128, 0.82);
}
@media screen and (max-width: 999px) {
  .title-wrapper.active {
    outline-offset: -20px;
  }
}
.title-wrapper::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 100%;
  background: rgba(12, 8, 84, 0.8);
  top: 0;
  left: 0;
  z-index: -1;
  transition: width 0.8s var(--ease-expo-out);
}
.title-wrapper.active::before {
  width: 100%;
}
.title-wrapper > p:nth-of-type(1) {
  width: 200px;
  margin: 0 auto 30px;
  opacity: 0;
  transition: opacity 1s var(--ease-expo-out);
}
@media screen and (max-width: 999px) {
  .title-wrapper > p:nth-of-type(1) {
    width: 150px;
  }
}
.title-wrapper > p:nth-of-type(1).active {
  opacity: 1;
}
.title-wrapper h1 {
  position: relative;
  width: 64%;
  margin: 0 auto;
  opacity: 0;
  transition: all 1s var(--ease-expo-out);
  -webkit-mask-image: linear-gradient(to right, black 0%, transparent 30%);
  mask-image: linear-gradient(to right, black 0%, transparent 30%);
}
@media screen and (max-width: 999px) {
  .title-wrapper h1 {
    width: 86%;
  }
}
.title-wrapper h1.active {
  opacity: 1;
  -webkit-mask-size: 1800% 1800%;
  mask-size: 1800% 1800%;
  -webkit-mask-position: 0% 0%;
  mask-position: 0% 0%;
  animation-fill-mode: forwards;
  animation: mask-animation 4s var(--ease-quint-out);
}
.title-wrapper .tw_date {
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  transition: opacity 1s var(--ease-expo-out);
  font-size: 30px;
  display: block;
  margin: 30px auto 10px;
  font-weight: 900;
}
@media screen and (max-width: 999px) {
  .title-wrapper .tw_date {
    font-size: 18px;
    margin: 20px auto;
  }
}
.title-wrapper .tw_date.active {
  opacity: 1;
}
.title-wrapper .tw_popup {
  width: 130px;
  position: absolute;
  top: 46%;
  left: 5%;
  rotate: -16deg;
  opacity: 0;
  transition: opacity 1s ease-out;
}
@media screen and (max-width: 999px) {
  .title-wrapper .tw_popup {
    width: 100px;
    top: 42%;
    left: -4%;
  }
}
.title-wrapper .tw_popup.active {
  opacity: 1;
}
.title-wrapper .tw_popup span {
  font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif !important;
  font-size: 20px;
  position: absolute;
  z-index: 1;
  color: #000;
  top: 38px;
  left: 36px;
  font-weight: 600;
  line-height: 26px;
}
@media screen and (max-width: 999px) {
  .title-wrapper .tw_popup span {
    font-size: 16px;
    top: 26px;
    left: 26px;
    line-height: 22px;
  }
}
.title-wrapper .tw_popup p {
  animation: popRotate 20s linear infinite, popScale 4s linear infinite;
}
.title-wrapper .mv-illust {
  opacity: 0;
  position: absolute;
}
@media screen and (max-width: 999px) {
  .title-wrapper .mv-illust {
    position: relative;
    display: inline-block;
  }
}
.title-wrapper .mv-illust:nth-of-type(2) {
  top: 7%;
  left: 6%;
  width: 130px;
}
.title-wrapper .mv-illust:nth-of-type(3) {
  top: 7%;
  right: 6%;
  width: 130px;
}
.title-wrapper .mv-illust:nth-of-type(4) {
  bottom: 7%;
  left: 6%;
  width: 130px;
}
.title-wrapper .mv-illust:nth-of-type(5) {
  bottom: 7%;
  right: 6%;
  width: 130px;
}
@media screen and (max-width: 999px) {
  .title-wrapper .mv-illust {
    top: initial !important;
    left: initial !important;
    right: initial !important;
    bottom: initial !important;
    width: 20% !important;
    margin: 0 !important;
  }
}
.title-wrapper .mv-illust:nth-of-type(2) {
  transition: all 1.5s var(--ease-expo-out);
}
.title-wrapper .mv-illust:nth-of-type(3) {
  transition: all 1.5s var(--ease-expo-out);
}
.title-wrapper .mv-illust:nth-of-type(4) {
  transition: all 1.5s var(--ease-expo-out);
}
.title-wrapper .mv-illust:nth-of-type(5) {
  transition: all 1.5s var(--ease-expo-out);
}
.title-wrapper .mv-illust.active {
  opacity: 1;
  animation: illustBounce 0.6s;
}

@keyframes illustBounce {
  0% {
    scale: 0.8;
  }
  80% {
    scale: 1.08;
  }
  100% {
    scale: 1;
  }
}
@keyframes popRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes popScale {
  0% {
    scale: 1;
  }
  50% {
    scale: 0.9;
  }
  100% {
    scale: 1;
  }
}
@keyframes mask-animation {
  0% {
    -webkit-mask-size: 1800% 1800%;
    mask-size: 1800% 1800%;
    -webkit-mask-position: 30% 0%;
    mask-position: 30% 0%;
  }
  100% {
    -webkit-mask-size: 1800% 1800%;
    mask-size: 1800% 1800%;
    -webkit-mask-position: 0% 0%;
    mask-position: 0% 0%;
  }
}
* {
  box-sizing: border-box;
}

#canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -11;
  animation: spin 300s linear infinite;
  transform-origin: 50% 50%;
}

.wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
}
.circle:nth-child(1) {
  background: #5ee0c6;
  box-shadow: 0 0 8px 7px #5ee0c6;
  bottom: 8%;
  left: -2%;
  width: 153px;
  height: 153px;
  opacity: 0.16;
  animation: flash-3 5s infinite linear;
}
.circle:nth-child(2) {
  background: #e95744;
  box-shadow: 0 0 5px 4px #e95744;
  top: 10%;
  left: 0%;
  width: 110px;
  height: 110px;
  opacity: 0.4;
  animation: flash-3 5s infinite linear;
}
.circle:nth-child(3) {
  background: #fef6ec;
  box-shadow: 0 0 5px 4px #fef6ec;
  top: 32%;
  left: 28%;
  width: 150px;
  height: 150px;
  opacity: 0.1;
  animation: flash-3 8s infinite linear;
}
.circle:nth-child(4) {
  background: #e7e18e;
  box-shadow: 0 0 5px 4px #e7e18e;
  top: -8%;
  left: 15%;
  width: 165px;
  height: 165px;
  opacity: 0.1;
  animation: flash-3 4s infinite linear;
}
.circle:nth-child(5) {
  background: #fef6ec;
  box-shadow: 0 0 5px 4px #fef6ec;
  top: 52%;
  left: 23%;
  width: 80px;
  height: 80px;
  opacity: 0.4;
  animation: flash-3 3s infinite linear;
}
.circle:nth-child(6) {
  background: #fef6ec;
  box-shadow: 0 0 5px 4px #fef6ec;
  top: 70%;
  left: 18%;
  width: 173px;
  height: 173px;
  opacity: 0.1;
  animation: flash-3 7s infinite linear;
}
.circle:nth-child(7) {
  background: #fef6ec;
  box-shadow: 0 0 5px 4px #fef6ec;
  top: 67%;
  left: 26%;
  width: 150px;
  height: 150px;
  opacity: 0.1;
  animation: flash-3 6s infinite linear;
}
.circle:nth-child(8) {
  background: #e95744;
  box-shadow: 0 0 5px 4px #e95744;
  top: 51%;
  left: 39%;
  width: 80px;
  height: 80px;
  opacity: 0.4;
  animation: flash-3 7s infinite linear;
}
.circle:nth-child(9) {
  background: #4edc2d;
  box-shadow: 0 0 8px 7px #4edc2d;
  top: 78%;
  left: 40%;
  width: 80px;
  height: 80px;
  opacity: 0.4;
  animation: flash-3 10s infinite linear;
}
.circle:nth-child(10) {
  background: #fef6ec;
  box-shadow: 0 0 5px 4px #fef6ec;
  top: 3%;
  left: 47%;
  width: 120px;
  height: 120px;
  opacity: 0.1;
  animation: flash-3 5s infinite linear;
}
.circle:nth-child(12) {
  background: #fef6ec;
  box-shadow: 0 0 5px 4px #fef6ec;
  top: 30%;
  left: -10%;
  width: 180px;
  height: 180px;
  opacity: 0.3;
  animation: flash-3 8s infinite linear;
}
.circle:nth-child(13) {
  background: #4edc2d;
  box-shadow: 0 0 8px 7px #4edc2d;
  top: 28%;
  left: 50%;
  width: 180px;
  height: 180px;
  opacity: 0.2;
  animation: flash-3 4s infinite linear;
}
.circle:nth-child(14) {
  background: #e7e18e;
  box-shadow: 0 0 5px 4px #e7e18e;
  top: 50%;
  left: 50%;
  width: 190px;
  height: 190px;
  opacity: 0.3;
  animation: flash-3 8s infinite linear;
}
.circle:nth-child(15) {
  background: #fef6ec;
  box-shadow: 0 0 5px 4px #fef6ec;
  top: 76%;
  left: 63%;
  width: 150px;
  height: 150px;
  opacity: 0.2;
  animation: flash-3 5s infinite linear;
}
.circle:nth-child(16) {
  background: #fef6ec;
  box-shadow: 0 0 5px 4px #fef6ec;
  top: 12%;
  left: 69%;
  width: 80px;
  height: 80px;
  opacity: 0.3;
  animation: flash-3 10s infinite linear;
}
.circle:nth-child(17) {
  background: #e95744;
  box-shadow: 0 0 5px 4px #e95744;
  top: 74%;
  left: 70%;
  width: 140px;
  height: 140px;
  opacity: 0.5;
  animation: flash-3 6s infinite linear;
}
.circle:nth-child(18) {
  background: #fef6ec;
  box-shadow: 0 0 5px 4px #fef6ec;
  top: 24%;
  left: 72%;
  width: 220px;
  height: 220px;
  opacity: 0.2;
  animation: flash-3 10s infinite linear;
}
.circle:nth-child(19) {
  background: #5ee0c6;
  box-shadow: 0 0 5px 4px #5ee0c6;
  top: 48%;
  left: 80%;
  width: 200px;
  height: 200px;
  opacity: 0.2;
  animation: flash-3 3s infinite linear;
}
.circle:nth-child(20) {
  background: #e95744;
  box-shadow: 0 0 5px 4px #e95744;
  top: 20%;
  left: 85%;
  width: 70px;
  height: 70px;
  opacity: 0.6;
  animation: flash-3 5s infinite linear;
}
.circle:nth-child(21) {
  background: #f82a2a;
  box-shadow: 0 0 5px 4px #f82a2a;
  top: -15%;
  left: 90%;
  width: 200px;
  height: 200px;
  opacity: 0.4;
  animation: flash-3 8s infinite linear;
}
.circle:nth-child(22) {
  background: #fef6ec;
  box-shadow: 0 0 5px 4px #fef6ec;
  top: 40%;
  left: 95%;
  width: 20px;
  height: 20px;
  opacity: 0.6;
  animation: flash-3 3s infinite linear;
}
.circle:nth-child(23) {
  background: #fef6ec;
  box-shadow: 0 0 5px 4px #fef6ec;
  top: 70%;
  left: 92%;
  width: 80px;
  height: 80px;
  opacity: 0.3;
  animation: flash-3 10s infinite linear;
}
.circle:nth-child(24) {
  background: #fef6ec;
  box-shadow: 0 0 5px 4px #fef6ec;
  bottom: -5%;
  right: -10%;
  width: 180px;
  height: 180px;
  opacity: 0.3;
  animation: flash-3 6s infinite linear;
}
.circle:nth-child(25) {
  background: #e95744;
  box-shadow: 0 0 5px 4px #e95744;
  top: 65%;
  right: 30%;
  width: 50px;
  height: 50px;
  opacity: 0.3;
  animation: flash-3 5s infinite linear;
}
@keyframes flash-3 {
  0% {
    opacity: 0.1;
  }
  30% {
    opacity: 0.6;
    filter: blur(10px);
  }
  60% {
    opacity: 0.2;
    filter: blur(50px);
  }
  90% {
    opacity: 0.5;
    filter: blur(20px);
  }
  100% {
    opacity: 0.5;
    filter: blur(10px);
  }
}
/* Device寬度 768以下 */
@media screen and (max-width: 768px) {
  .circle {
    transform: scale(0.5);
  }
}
.sec {
  width: 80%;
  max-width: 1200px;
  position: relative;
  margin: 60px auto 0;
  background: #e9e9e9;
  padding: 40px 80px;
}
@media screen and (max-width: 999px) {
  .sec {
    width: 86%;
    padding: 20px 20px;
  }
}
.sec h2 {
  font-size: 26px;
  letter-spacing: 2px;
  color: #e9e9e9;
  display: block;
  width: calc(100% + 160px);
  margin-top: -40px;
  margin-left: -80px;
  background: #070774;
  padding: 30px;
  text-align: center;
  text-align: center;
  border-top: 4px solid;
  border-bottom: 4px solid;
  border-color: #b99a5c;
}
@media screen and (max-width: 999px) {
  .sec h2 {
    width: calc(100% + 40px);
    margin-top: -20px;
    margin-left: -20px;
    padding: 20px 10px;
  }
}
.sec > div {
  padding-top: 60px;
}
@media screen and (max-width: 999px) {
  .sec > div {
    padding-top: 40px;
  }
}
.sec p {
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 50px;
}
@media screen and (max-width: 999px) {
  .sec p {
    font-size: 18px;
  }
}
.sec h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  padding: 10px 14px;
  background: #b99a5c;
  color: #0c0c3f;
}
@media screen and (max-width: 999px) {
  .sec h3 {
    font-size: 18px;
    padding: 4px 10px;
    margin-bottom: 14px;
  }
}

.sec_lead {
  margin-top: 0;
  opacity: 0;
  transition: all 1.5s var(--ease-expo-out);
  background: #b99a5c;
}
.sec_lead.active {
  opacity: 1;
  box-shadow: 0 0px 36px 0 rgba(255, 219, 128, 0.82);
}
.sec_lead p {
  color: #0c0c3f;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 36px;
}
@media screen and (max-width: 999px) {
  .sec_lead p {
    font-size: 16px;
  }
}

.sec_nav {
  background: none;
  padding: 0;
}
.sec_nav ul {
  display: flex;
  width: 100%;
}
.sec_nav ul li {
  text-align: center;
  background: #070774;
  color: #e9e9e9;
  font-weight: 600;
  width: 80%;
  transition: all 1.5s var(--ease-expo-out);
}
.sec_nav ul li:nth-of-type(1), .sec_nav ul li:nth-of-type(2) {
  margin-right: 20px;
}
@media screen and (max-width: 999px) {
  .sec_nav ul li:nth-of-type(1), .sec_nav ul li:nth-of-type(2) {
    margin-right: 10px;
  }
}
.sec_nav ul li a {
  font-size: 20px;
  color: #e9e9e9;
  transition: all 0.5s ease-out;
  display: block;
  padding: 20px 0;
}
@media screen and (max-width: 999px) {
  .sec_nav ul li a {
    font-size: 16px;
  }
}
.sec_nav ul li a span {
  font-size: 0.8em;
  display: block;
  margin: 10px 0;
}
.sec_nav ul li a::after {
  content: "▼";
  display: block;
  color: #b99a5c;
  transform: scale(2, 1);
  font-size: 12px;
  margin-top: 10px;
}
.sec_nav ul li a:hover {
  color: #b99a5c !important;
}
.sec_nav.active ul li {
  box-shadow: 0 0px 36px 0 rgba(255, 219, 128, 0.82);
}

.sec_detail {
  box-shadow: 0 0px 36px 0 rgba(255, 219, 128, 0.82);
}
.sec_detail .sc_dt_note {
  display: block;
  font-size: 0.7em;
  margin-top: 20px;
}
@media screen and (max-width: 999px) {
  .sec_detail .sc_dt_note {
    line-height: 20px;
  }
}
.sec_detail .sc_dt_name {
  margin-bottom: 30px;
}
.sec_detail .sc_dt_flex {
  display: flex;
  align-items: flex-start;
  padding-top: 0 !important;
}
@media screen and (max-width: 999px) {
  .sec_detail .sc_dt_flex {
    flex-direction: column;
    padding-top: 0 !important;
  }
}
.sec_detail .sc_dt_flex p:nth-of-type(1) {
  flex: 1;
  margin-right: 30px;
}
@media screen and (max-width: 999px) {
  .sec_detail .sc_dt_flex p:nth-of-type(1) {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.sec_detail .sc_dt_flex p:nth-of-type(2) {
  flex: 2;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  font-weight: 400;
}

.sec_apply {
  box-shadow: 0 0px 36px 0 rgba(255, 219, 128, 0.82);
}
.sec_apply p {
  margin-bottom: 30px;
}
.sec_apply ul li a {
  font-size: 20px;
  font-weight: 600;
  padding: 20px 40px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background: #c8373c;
  color: #e9e9e9 !important;
  transition: all 0.5s ease-out;
  border-radius: 30px;
  margin-bottom: 30px;
  width: 360px;
  text-align: center;
}
@media screen and (max-width: 999px) {
  .sec_apply ul li a {
    width: 90%;
    max-width: 360px;
    font-size: 18px;
    line-height: 26px;
    border-radius: 80px;
  }
}
.sec_apply .apl-info {
  font-size: 22px !important;
  margin: 0 !important;
}
.sec_apply .apl-info span:nth-of-type(1) {
  font-size: 18px;
}
.sec_apply .apl-info span:nth-of-type(3) {
  display: block;
  margin-top: 4px;
  font-size: 16px !important;
}

#mask-anm {
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: 20px;
  left: 0;
  overflow: hidden;
}
#mask-anm .msk {
  position: absolute;
  top: 0;
  z-index: 1;
}
#mask-anm .anm {
  position: absolute;
  top: 0;
  z-index: 2;
}
#mask-anm .anm img {
  height: 300px;
}/*# sourceMappingURL=styles.css.map */