@charset "UTF-8";
/* vp:480px */
/* vp:896px */
/* vp:1024px */
/* Scss Document */
* {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  word-break: break-all;
  border-bottom: none;
  text-decoration: none;
}
a img {
  border-bottom: none;
}
a:hover {
  text-decoration: none;
}
a:hover img {
  border-bottom: none;
}

ul, li {
  list-style: none;
}

/* FORM */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

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

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  overflow-y: scroll;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

q:before, q:after {
  content: "";
}

object, embed {
  vertical-align: top;
}

hr, legend {
  display: none;
}

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

img, abbr, acronym, fieldset {
  border: 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

li.noList {
  list-style-type: none;
  margin-left: -20px;
}

html {
  font-size: 62.5%; /*16px x 0.625 = 10px(=1rem) */
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  letter-spacing: 0.05em;
  transition: all 0.5s ease;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  background-color: #F3F3F3;
  display: flex;
  flex-flow: column;
  min-height: 100svh;
  overflow-x: hidden;
}
body footer {
  margin-top: auto;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  body {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  body {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  body {
    font-size: 3.3333333333vw;
  }
}
body::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../../assets/img/stripe.png);
  z-index: -1;
}

img {
  max-width: 100%;
}

a {
  color: #ac8c00;
  -webkit-tap-highlight-color: transparent;
  border-bottom: 1px solid #ac8c00;
}
a:hover, a:active {
  transition: all 0.5s ease;
}
a:hover svg, a:active svg {
  transition: all 0.5s ease;
}

input:disabled {
  transition: all 0.5s ease;
  pointer-events: none;
  opacity: 0.2;
}

::-moz-selection {
  background: #fff;
  color: #fccd01;
}

::selection {
  background: #fff;
  color: #fccd01;
}

::-moz-selection {
  background: #fff;
  color: #fccd01;
}

.main {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.form {
  background-color: #F3F3F3;
  margin: min(10%, 10rem) 0;
  padding: min(5%, 5rem);
  filter: drop-shadow(5px 5px 20px rgba(0, 0, 0, 0.2));
}
.form .desc {
  margin-bottom: 3rem;
}
.form__item {
  margin-bottom: 2rem;
}
.form__moviefile label {
  display: block;
}
.form .agreement .btn--normal {
  transition: all 0.5s ease;
  opacity: 0.4;
  pointer-events: none;
}
.form .agreement .checked {
  transition: all 0.5s ease;
  opacity: 1;
  pointer-events: all;
}
.form__btn.wrap {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width:480px) {
  .form__btn.wrap {
    flex-wrap: wrap;
    margin-top: 3rem;
    gap: 1rem;
  }
  .form__btn.wrap .btn--normal {
    margin-top: 0;
  }
}

input[type=text] {
  border: 1px solid rgb(255, 238, 162);
  background-color: #feffd9;
  font-size: 1.8rem;
  width: 100%;
  padding: 1rem;
  box-shadow: rgba(87, 93, 50, 0.1) 0px 15px 30px -6px inset, rgba(0, 0, 0, 0.12) 0px 9px 19px -9px inset;
}

.checkbox {
  text-align: center;
  margin-top: 2rem;
}
.checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 0 0.5em;
  position: relative;
  margin-bottom: 0.5em;
  cursor: pointer;
}
.checkbox label::before {
  content: "";
  width: 17px;
  height: 17px;
  border-radius: 3px;
  background-color: #cfd8df;
  display: inline-block;
}
.checkbox label:has(:checked)::before {
  background-color: #fccd01;
}
.checkbox label:has(:checked)::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  transform: rotate(45deg);
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
}
.checkbox label input {
  display: none;
}

.footer {
  padding: 1rem 0;
  text-align: center;
}

.header--title {
  background: #FBB201;
  color: black;
  padding: 3rem 1rem;
  margin-bottom: min(5%, 5rem);
}

.width-1 {
  width: 5% !important;
}

.width-2 {
  width: 10% !important;
}

.width-3 {
  width: 15% !important;
}

.width-4 {
  width: 20% !important;
}

.width-5 {
  width: 25% !important;
}

.width-6 {
  width: 30% !important;
}

.width-7 {
  width: 35% !important;
}

.width-8 {
  width: 40% !important;
}

.width-9 {
  width: 45% !important;
}

.width-10 {
  width: 50% !important;
}

.width-11 {
  width: 55% !important;
}

.width-12 {
  width: 60% !important;
}

.width-13 {
  width: 65% !important;
}

.width-14 {
  width: 70% !important;
}

.width-15 {
  width: 75% !important;
}

.width-16 {
  width: 80% !important;
}

.width-17 {
  width: 85% !important;
}

.width-18 {
  width: 90% !important;
}

.width-19 {
  width: 95% !important;
}

.width-20 {
  width: 100% !important;
}

.margin-1 {
  margin: 5px !important;
}

.margin-2 {
  margin: 10px !important;
}

.margin-3 {
  margin: 15px !important;
}

.margin-4 {
  margin: 20px !important;
}

.margin-5 {
  margin: 25px !important;
}

.margin-6 {
  margin: 30px !important;
}

.margin-7 {
  margin: 35px !important;
}

.margin-8 {
  margin: 40px !important;
}

.margin-9 {
  margin: 45px !important;
}

.margin-10 {
  margin: 50px !important;
}

.margin-11 {
  margin: 55px !important;
}

.margin-12 {
  margin: 60px !important;
}

.margin-13 {
  margin: 65px !important;
}

.margin-14 {
  margin: 70px !important;
}

.margin-15 {
  margin: 75px !important;
}

.margin-16 {
  margin: 80px !important;
}

.margin-17 {
  margin: 85px !important;
}

.margin-18 {
  margin: 90px !important;
}

.margin-19 {
  margin: 95px !important;
}

.margin-20 {
  margin: 100px !important;
}

.marginTop-1 {
  margin-top: 5px !important;
}

.marginTop-2 {
  margin-top: 10px !important;
}

.marginTop-3 {
  margin-top: 15px !important;
}

.marginTop-4 {
  margin-top: 20px !important;
}

.marginTop-5 {
  margin-top: 25px !important;
}

.marginTop-6 {
  margin-top: 30px !important;
}

.marginTop-7 {
  margin-top: 35px !important;
}

.marginTop-8 {
  margin-top: 40px !important;
}

.marginTop-9 {
  margin-top: 45px !important;
}

.marginTop-10 {
  margin-top: 50px !important;
}

.marginTop-11 {
  margin-top: 55px !important;
}

.marginTop-12 {
  margin-top: 60px !important;
}

.marginTop-13 {
  margin-top: 65px !important;
}

.marginTop-14 {
  margin-top: 70px !important;
}

.marginTop-15 {
  margin-top: 75px !important;
}

.marginTop-16 {
  margin-top: 80px !important;
}

.marginTop-17 {
  margin-top: 85px !important;
}

.marginTop-18 {
  margin-top: 90px !important;
}

.marginTop-19 {
  margin-top: 95px !important;
}

.marginTop-20 {
  margin-top: 100px !important;
}

.marginBottom-1 {
  margin-bottom: 5px !important;
}

.marginBottom-2 {
  margin-bottom: 10px !important;
}

.marginBottom-3 {
  margin-bottom: 15px !important;
}

.marginBottom-4 {
  margin-bottom: 20px !important;
}

.marginBottom-5 {
  margin-bottom: 25px !important;
}

.marginBottom-6 {
  margin-bottom: 30px !important;
}

.marginBottom-7 {
  margin-bottom: 35px !important;
}

.marginBottom-8 {
  margin-bottom: 40px !important;
}

.marginBottom-9 {
  margin-bottom: 45px !important;
}

.marginBottom-10 {
  margin-bottom: 50px !important;
}

.marginBottom-11 {
  margin-bottom: 55px !important;
}

.marginBottom-12 {
  margin-bottom: 60px !important;
}

.marginBottom-13 {
  margin-bottom: 65px !important;
}

.marginBottom-14 {
  margin-bottom: 70px !important;
}

.marginBottom-15 {
  margin-bottom: 75px !important;
}

.marginBottom-16 {
  margin-bottom: 80px !important;
}

.marginBottom-17 {
  margin-bottom: 85px !important;
}

.marginBottom-18 {
  margin-bottom: 90px !important;
}

.marginBottom-19 {
  margin-bottom: 95px !important;
}

.marginBottom-20 {
  margin-bottom: 100px !important;
}

.padding-1 {
  padding: 5px !important;
}

.padding-2 {
  padding: 10px !important;
}

.padding-3 {
  padding: 15px !important;
}

.padding-4 {
  padding: 20px !important;
}

.padding-5 {
  padding: 25px !important;
}

.padding-6 {
  padding: 30px !important;
}

.padding-7 {
  padding: 35px !important;
}

.padding-8 {
  padding: 40px !important;
}

.padding-9 {
  padding: 45px !important;
}

.padding-10 {
  padding: 50px !important;
}

.padding-11 {
  padding: 55px !important;
}

.padding-12 {
  padding: 60px !important;
}

.padding-13 {
  padding: 65px !important;
}

.padding-14 {
  padding: 70px !important;
}

.padding-15 {
  padding: 75px !important;
}

.padding-16 {
  padding: 80px !important;
}

.padding-17 {
  padding: 85px !important;
}

.padding-18 {
  padding: 90px !important;
}

.padding-19 {
  padding: 95px !important;
}

.padding-20 {
  padding: 100px !important;
}

.paddingTop-1 {
  padding-top: 5px !important;
}

.paddingTop-2 {
  padding-top: 10px !important;
}

.paddingTop-3 {
  padding-top: 15px !important;
}

.paddingTop-4 {
  padding-top: 20px !important;
}

.paddingTop-5 {
  padding-top: 25px !important;
}

.paddingTop-6 {
  padding-top: 30px !important;
}

.paddingTop-7 {
  padding-top: 35px !important;
}

.paddingTop-8 {
  padding-top: 40px !important;
}

.paddingTop-9 {
  padding-top: 45px !important;
}

.paddingTop-10 {
  padding-top: 50px !important;
}

.paddingTop-11 {
  padding-top: 55px !important;
}

.paddingTop-12 {
  padding-top: 60px !important;
}

.paddingTop-13 {
  padding-top: 65px !important;
}

.paddingTop-14 {
  padding-top: 70px !important;
}

.paddingTop-15 {
  padding-top: 75px !important;
}

.paddingTop-16 {
  padding-top: 80px !important;
}

.paddingTop-17 {
  padding-top: 85px !important;
}

.paddingTop-18 {
  padding-top: 90px !important;
}

.paddingTop-19 {
  padding-top: 95px !important;
}

.paddingTop-20 {
  padding-top: 100px !important;
}

.paddingBottom-1 {
  padding-bottom: 5px !important;
}

.paddingBottom-2 {
  padding-bottom: 10px !important;
}

.paddingBottom-3 {
  padding-bottom: 15px !important;
}

.paddingBottom-4 {
  padding-bottom: 20px !important;
}

.paddingBottom-5 {
  padding-bottom: 25px !important;
}

.paddingBottom-6 {
  padding-bottom: 30px !important;
}

.paddingBottom-7 {
  padding-bottom: 35px !important;
}

.paddingBottom-8 {
  padding-bottom: 40px !important;
}

.paddingBottom-9 {
  padding-bottom: 45px !important;
}

.paddingBottom-10 {
  padding-bottom: 50px !important;
}

.paddingBottom-11 {
  padding-bottom: 55px !important;
}

.paddingBottom-12 {
  padding-bottom: 60px !important;
}

.paddingBottom-13 {
  padding-bottom: 65px !important;
}

.paddingBottom-14 {
  padding-bottom: 70px !important;
}

.paddingBottom-15 {
  padding-bottom: 75px !important;
}

.paddingBottom-16 {
  padding-bottom: 80px !important;
}

.paddingBottom-17 {
  padding-bottom: 85px !important;
}

.paddingBottom-18 {
  padding-bottom: 90px !important;
}

.paddingBottom-19 {
  padding-bottom: 95px !important;
}

.paddingBottom-20 {
  padding-bottom: 100px !important;
}

@media screen and (max-width: 896px) {
  .sp_width-1 {
    width: 5% !important;
  }
  .sp_width-2 {
    width: 10% !important;
  }
  .sp_width-3 {
    width: 15% !important;
  }
  .sp_width-4 {
    width: 20% !important;
  }
  .sp_width-5 {
    width: 25% !important;
  }
  .sp_width-6 {
    width: 30% !important;
  }
  .sp_width-7 {
    width: 35% !important;
  }
  .sp_width-8 {
    width: 40% !important;
  }
  .sp_width-9 {
    width: 45% !important;
  }
  .sp_width-10 {
    width: 50% !important;
  }
  .sp_width-11 {
    width: 55% !important;
  }
  .sp_width-12 {
    width: 60% !important;
  }
  .sp_width-13 {
    width: 65% !important;
  }
  .sp_width-14 {
    width: 70% !important;
  }
  .sp_width-15 {
    width: 75% !important;
  }
  .sp_width-16 {
    width: 80% !important;
  }
  .sp_width-17 {
    width: 85% !important;
  }
  .sp_width-18 {
    width: 90% !important;
  }
  .sp_width-19 {
    width: 95% !important;
  }
  .sp_width-20 {
    width: 100% !important;
  }
  .sp_margin-1 {
    margin: 5px !important;
  }
  .sp_margin-2 {
    margin: 10px !important;
  }
  .sp_margin-3 {
    margin: 15px !important;
  }
  .sp_margin-4 {
    margin: 20px !important;
  }
  .sp_margin-5 {
    margin: 25px !important;
  }
  .sp_margin-6 {
    margin: 30px !important;
  }
  .sp_margin-7 {
    margin: 35px !important;
  }
  .sp_margin-8 {
    margin: 40px !important;
  }
  .sp_margin-9 {
    margin: 45px !important;
  }
  .sp_margin-10 {
    margin: 50px !important;
  }
  .sp_margin-11 {
    margin: 55px !important;
  }
  .sp_margin-12 {
    margin: 60px !important;
  }
  .sp_margin-13 {
    margin: 65px !important;
  }
  .sp_margin-14 {
    margin: 70px !important;
  }
  .sp_margin-15 {
    margin: 75px !important;
  }
  .sp_margin-16 {
    margin: 80px !important;
  }
  .sp_margin-17 {
    margin: 85px !important;
  }
  .sp_margin-18 {
    margin: 90px !important;
  }
  .sp_margin-19 {
    margin: 95px !important;
  }
  .sp_margin-20 {
    margin: 100px !important;
  }
  .sp_marginTop-1 {
    margin-top: 5px !important;
  }
  .sp_marginTop-2 {
    margin-top: 10px !important;
  }
  .sp_marginTop-3 {
    margin-top: 15px !important;
  }
  .sp_marginTop-4 {
    margin-top: 20px !important;
  }
  .sp_marginTop-5 {
    margin-top: 25px !important;
  }
  .sp_marginTop-6 {
    margin-top: 30px !important;
  }
  .sp_marginTop-7 {
    margin-top: 35px !important;
  }
  .sp_marginTop-8 {
    margin-top: 40px !important;
  }
  .sp_marginTop-9 {
    margin-top: 45px !important;
  }
  .sp_marginTop-10 {
    margin-top: 50px !important;
  }
  .sp_marginTop-11 {
    margin-top: 55px !important;
  }
  .sp_marginTop-12 {
    margin-top: 60px !important;
  }
  .sp_marginTop-13 {
    margin-top: 65px !important;
  }
  .sp_marginTop-14 {
    margin-top: 70px !important;
  }
  .sp_marginTop-15 {
    margin-top: 75px !important;
  }
  .sp_marginTop-16 {
    margin-top: 80px !important;
  }
  .sp_marginTop-17 {
    margin-top: 85px !important;
  }
  .sp_marginTop-18 {
    margin-top: 90px !important;
  }
  .sp_marginTop-19 {
    margin-top: 95px !important;
  }
  .sp_marginTop-20 {
    margin-top: 100px !important;
  }
  .sp_marginBottom-1 {
    margin-bottom: 5px !important;
  }
  .sp_marginBottom-2 {
    margin-bottom: 10px !important;
  }
  .sp_marginBottom-3 {
    margin-bottom: 15px !important;
  }
  .sp_marginBottom-4 {
    margin-bottom: 20px !important;
  }
  .sp_marginBottom-5 {
    margin-bottom: 25px !important;
  }
  .sp_marginBottom-6 {
    margin-bottom: 30px !important;
  }
  .sp_marginBottom-7 {
    margin-bottom: 35px !important;
  }
  .sp_marginBottom-8 {
    margin-bottom: 40px !important;
  }
  .sp_marginBottom-9 {
    margin-bottom: 45px !important;
  }
  .sp_marginBottom-10 {
    margin-bottom: 50px !important;
  }
  .sp_marginBottom-11 {
    margin-bottom: 55px !important;
  }
  .sp_marginBottom-12 {
    margin-bottom: 60px !important;
  }
  .sp_marginBottom-13 {
    margin-bottom: 65px !important;
  }
  .sp_marginBottom-14 {
    margin-bottom: 70px !important;
  }
  .sp_marginBottom-15 {
    margin-bottom: 75px !important;
  }
  .sp_marginBottom-16 {
    margin-bottom: 80px !important;
  }
  .sp_marginBottom-17 {
    margin-bottom: 85px !important;
  }
  .sp_marginBottom-18 {
    margin-bottom: 90px !important;
  }
  .sp_marginBottom-19 {
    margin-bottom: 95px !important;
  }
  .sp_marginBottom-20 {
    margin-bottom: 100px !important;
  }
  .sp_padding-1 {
    padding: 5px !important;
  }
  .sp_padding-2 {
    padding: 10px !important;
  }
  .sp_padding-3 {
    padding: 15px !important;
  }
  .sp_padding-4 {
    padding: 20px !important;
  }
  .sp_padding-5 {
    padding: 25px !important;
  }
  .sp_padding-6 {
    padding: 30px !important;
  }
  .sp_padding-7 {
    padding: 35px !important;
  }
  .sp_padding-8 {
    padding: 40px !important;
  }
  .sp_padding-9 {
    padding: 45px !important;
  }
  .sp_padding-10 {
    padding: 50px !important;
  }
  .sp_padding-11 {
    padding: 55px !important;
  }
  .sp_padding-12 {
    padding: 60px !important;
  }
  .sp_padding-13 {
    padding: 65px !important;
  }
  .sp_padding-14 {
    padding: 70px !important;
  }
  .sp_padding-15 {
    padding: 75px !important;
  }
  .sp_padding-16 {
    padding: 80px !important;
  }
  .sp_padding-17 {
    padding: 85px !important;
  }
  .sp_padding-18 {
    padding: 90px !important;
  }
  .sp_padding-19 {
    padding: 95px !important;
  }
  .sp_padding-20 {
    padding: 100px !important;
  }
  .paddingTop-1 {
    padding-top: 5px !important;
  }
  .paddingTop-2 {
    padding-top: 10px !important;
  }
  .paddingTop-3 {
    padding-top: 15px !important;
  }
  .paddingTop-4 {
    padding-top: 20px !important;
  }
  .paddingTop-5 {
    padding-top: 25px !important;
  }
  .paddingTop-6 {
    padding-top: 30px !important;
  }
  .paddingTop-7 {
    padding-top: 35px !important;
  }
  .paddingTop-8 {
    padding-top: 40px !important;
  }
  .paddingTop-9 {
    padding-top: 45px !important;
  }
  .paddingTop-10 {
    padding-top: 50px !important;
  }
  .paddingTop-11 {
    padding-top: 55px !important;
  }
  .paddingTop-12 {
    padding-top: 60px !important;
  }
  .paddingTop-13 {
    padding-top: 65px !important;
  }
  .paddingTop-14 {
    padding-top: 70px !important;
  }
  .paddingTop-15 {
    padding-top: 75px !important;
  }
  .paddingTop-16 {
    padding-top: 80px !important;
  }
  .paddingTop-17 {
    padding-top: 85px !important;
  }
  .paddingTop-18 {
    padding-top: 90px !important;
  }
  .paddingTop-19 {
    padding-top: 95px !important;
  }
  .paddingTop-20 {
    padding-top: 100px !important;
  }
  .paddingBottom-1 {
    padding-bottom: 5px !important;
  }
  .paddingBottom-2 {
    padding-bottom: 10px !important;
  }
  .paddingBottom-3 {
    padding-bottom: 15px !important;
  }
  .paddingBottom-4 {
    padding-bottom: 20px !important;
  }
  .paddingBottom-5 {
    padding-bottom: 25px !important;
  }
  .paddingBottom-6 {
    padding-bottom: 30px !important;
  }
  .paddingBottom-7 {
    padding-bottom: 35px !important;
  }
  .paddingBottom-8 {
    padding-bottom: 40px !important;
  }
  .paddingBottom-9 {
    padding-bottom: 45px !important;
  }
  .paddingBottom-10 {
    padding-bottom: 50px !important;
  }
  .paddingBottom-11 {
    padding-bottom: 55px !important;
  }
  .paddingBottom-12 {
    padding-bottom: 60px !important;
  }
  .paddingBottom-13 {
    padding-bottom: 65px !important;
  }
  .paddingBottom-14 {
    padding-bottom: 70px !important;
  }
  .paddingBottom-15 {
    padding-bottom: 75px !important;
  }
  .paddingBottom-16 {
    padding-bottom: 80px !important;
  }
  .paddingBottom-17 {
    padding-bottom: 85px !important;
  }
  .paddingBottom-18 {
    padding-bottom: 90px !important;
  }
  .paddingBottom-19 {
    padding-bottom: 95px !important;
  }
  .paddingBottom-20 {
    padding-bottom: 100px !important;
  }
}
.loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  z-index: 10000;
}
.loading .logo {
  position: absolute;
  width: 50%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}
.loading.animation {
  animation: turnOn 2.25s linear;
  animation-fill-mode: forwards;
}
.loading.animation .logo {
  animation: 1s;
  opacity: 0;
}
@keyframes turnOn {
  0% {
    transform: scale(1, 0.8) translate3d(0, 0, 0);
    filter: brightness(30);
    opacity: 1;
  }
  3.5% {
    transform: scale(1, 0.8) translate3d(0, 100%, 0);
  }
  3.6% {
    transform: scale(1, 0.8) translate3d(0, -100%, 0);
  }
  9% {
    transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    filter: brightness(30);
  }
  11% {
    transform: scale(1, 1) translate3d(0, 0, 0);
    filter: contrast(0) brightness(0);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1) translate3d(0, 0, 0);
    filter: contrast(1) brightness(1.1) saturate(1.1);
    opacity: 0;
  }
}
.loading--remove {
  display: none;
}
.loading--normal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 15000;
  background-color: #fccd01;
}
.loading--normal .loader {
  --uib-size: 40px;
  --uib-speed: 1.3s;
  --uib-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: var(--uib-size);
  height: calc(var(--uib-size) * 0.27);
  display: flex;
}
.loading--normal .loader__dot, .loading--normal .loader::before, .loading--normal .loader::after {
  content: "";
  display: block;
  height: calc(var(--uib-size) * 0.18);
  width: calc(var(--uib-size) * 0.18);
  border-radius: 50%;
  background-color: var(--uib-color);
  transform: scale(0);
}
.loading--normal .loader::before {
  animation: pulse var(--uib-speed) ease-in-out infinite;
}
.loading--normal .loader__dot {
  animation: pulse var(--uib-speed) ease-in-out calc(var(--uib-speed) * 0.125) infinite both;
  margin: 0 1rem;
}
.loading--normal .loader::after {
  animation: pulse var(--uib-speed) ease-in-out calc(var(--uib-speed) * 0.25) infinite;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.5);
  }
}

.btn {
  display: block;
}
.btn--normal {
  font-size: 1.8rem;
  background-color: #fccd01;
  border-radius: 50vh;
  padding: 0.7rem 2rem;
  min-width: 150px;
  font-weight: 700;
  margin-top: 3rem;
}
.btn--normal a {
  color: #000;
}
.btn--normal.gray {
  background-color: #a5a5a5;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .btn--normal {
    font-size: 1.7578125vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .btn--normal {
    font-size: 2.0089285714vw;
  }
}
@media screen and (max-width:480px) {
  .btn--normal {
    font-size: 3.75vw;
    min-width: none;
  }
}

.title--page {
  font-size: 2rem;
  text-align: center;
  margin-bottom: min(5%, 5rem);
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--page {
    font-size: 1.953125vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--page {
    font-size: 2.2321428571vw;
  }
}
@media screen and (max-width:480px) {
  .title--page {
    font-size: 4.1666666667vw;
  }
}
.title--form {
  font-size: 1.8rem;
  display: block;
  border-left: 2px solid #000;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  background-color: rgba(0, 0, 0, 0.05);
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--form {
    font-size: 1.7578125vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--form {
    font-size: 2.0089285714vw;
  }
}
@media screen and (max-width:480px) {
  .title--form {
    font-size: 3.75vw;
  }
}

.scrolldown {
  position: absolute;
  height: 50px;
  left: 0;
  bottom: 0;
  left: auto;
  right: 25px;
  bottom: 60px;
}
.scrolldown span {
  position: absolute;
  color: #eee;
  font-size: 1.4rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .scrolldown span {
    font-size: 1.46484375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .scrolldown span {
    font-size: 1.6741071429vw;
  }
}
@media screen and (max-width:480px) {
  .scrolldown span {
    font-size: 3.125vw;
  }
}
.scrolldown .scroll {
  left: -32px;
  top: -30px;
  writing-mode: vertical-rl;
  top: -70px;
  left: auto;
  right: -10px;
  line-height: 1;
}
.scrolldown .circle {
  font-style: normal;
  left: -4px;
  top: -5px;
}
.scrolldown::before {
  content: "";
  position: absolute;
  top: 7px;
  width: 2px;
  height: 120px;
  background: #eee;
  top: 0;
  right: -4px;
}
.scrolldown::after {
  content: "";
  position: absolute;
  top: 7px;
  left: -1px;
  width: 4px;
  height: 120px;
  background: #eee;
  animation: pathmove 2.5s ease-in-out infinite;
  right: -5px;
  left: auto;
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 7px;
  }
  30% {
    height: 30px;
  }
  100% {
    height: 0;
    top: 125px;
  }
}
@media screen and (max-width:1200px) {
  .scrolldown {
    bottom: 50px;
    left: auto;
    right: 25px;
  }
  .scrolldown .scroll {
    writing-mode: vertical-rl;
    top: -70px;
    left: auto;
    right: -5px;
    font-weight: 700;
  }
  .scrolldown .circle {
    display: none;
  }
  .scrolldown::before {
    right: 0;
  }
  .scrolldown::after {
    right: -1px;
    left: auto;
  }
}
@media screen and (max-width: 1024px) {
  .scrolldown .scrolldown::before {
    right: -5px;
  }
  .scrolldown .scrolldown::after {
    right: -6px;
  }
}

.js-modal-video {
  position: relative;
}
.js-modal-video .play-icon::before {
  position: absolute;
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -4px;
  left: 0;
  border-style: solid;
  border-width: 8px 0 8px 17px;
  border-color: transparent transparent transparent #fff;
  z-index: 2;
}
.js-modal-video .play-icon::after {
  position: absolute;
  content: "";
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  cursor: pointer;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50vh;
  background-color: rgba(0, 0, 0, 0.5);
  filter: drop-shadow(0 0 15px #ac8c00);
  box-shadow: 0 0 15px #ac8c00;
  border: 1px solid #fff;
  z-index: 1;
}
.js-modal-video .thumbg {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 56.25%;
  cursor: pointer;
}
.js-modal-video .thumbg div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .js-modal-video .play-icon::before {
    right: -2px;
    width: 10px;
    height: 10px;
    border-width: 5px 0 5px 10px;
  }
  .js-modal-video .play-icon::after {
    border: 1px solid #fff;
    width: 30px;
    height: 30px;
  }
}

.modaal-close:before, .modaal-close:after, .modaal-gallery-control:before, .modaal-gallery-control:after {
  border-radius: 0 !important;
  width: 2px !important;
}
.modaal-close:hover, .modaal-gallery-control:hover {
  background: transparent !important;
}
.modaal-close:hover:before, .modaal-close:hover:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: #fccd01 !important;
  mix-blend-mode: lighten !important;
}
.modaal-gallery-prev:before {
  margin: 6px 0 0 !important;
}
.modaal-gallery-prev:after {
  margin: -6px 0 0 !important;
}
.modaal-gallery-next:before {
  margin: -6px 0 0 !important;
}
.modaal-gallery-next:after {
  margin: 6px 0 0 !important;
}
@media screen and (max-width: 1024px) {
  .modaal--img {
    pointer-events: none;
  }
}

.modal {
  display: none;
  position: relative;
  z-index: 10005;
}
.modal.is-open {
  display: block;
}
.modal__overlay {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10005;
  width: 100vw;
  min-height: 100vh;
}
.modal__wrapper {
  overflow-y: auto;
  height: -webkit-fill-available;
  cursor: pointer;
}
.modal__inner {
  width: 1500px;
  margin: 15rem auto;
  cursor: default;
}
.modal__inner::-webkit-scrollbar-track {
  background-color: transparent;
}
.modal__inner::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.modal section {
  margin-top: 3rem;
}
.modal .title {
  font-size: 4rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .modal .title {
    font-size: 3.90625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .modal .title {
    font-size: 4.4642857143vw;
  }
}
@media screen and (max-width:480px) {
  .modal .title {
    font-size: 8.3333333333vw;
  }
}
.modal .title .small {
  font-size: 2.5rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .modal .title .small {
    font-size: 2.44140625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .modal .title .small {
    font-size: 2.7901785714vw;
  }
}
@media screen and (max-width:480px) {
  .modal .title .small {
    font-size: 5.2083333333vw;
  }
}
.modal .link {
  font-size: 1.8rem;
  color: #fff;
  border-bottom: none;
  margin: 5rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .modal .link {
    font-size: 1.7578125vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .modal .link {
    font-size: 2.0089285714vw;
  }
}
@media screen and (max-width:480px) {
  .modal .link {
    font-size: 3.75vw;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.modal[aria-hidden=false] {
  animation: fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=true] {
  animation: fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
@media screen and (max-width: 1024px) {
  .modal__inner {
    width: 90%;
    margin: 5rem auto;
    padding: 0;
  }
}

/*slick setting*/
.slide-dots {
  text-align: right;
}
.slide-dots li {
  display: inline-block;
  margin: 0 15px;
  color: #fff;
}
.slide-dots li button {
  position: relative;
  text-indent: -9999px;
}
.slide-dots li button:before {
  transition: all 0.3s;
  position: absolute;
  content: "";
  opacity: 0.3;
  top: -20px;
  left: 10px;
  width: 7px;
  height: 7px;
  background-color: #fff;
}
.slide-dots li.slick-active button:before {
  transition: all 0.3s;
  opacity: 1;
}

.slide-arrow {
  transition: all 0.3s;
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
  cursor: pointer;
}
.slide-arrow img {
  pointer-events: all;
  filter: invert(1) drop-shadow(0px 0px 2px rgba(255, 255, 255, 0.4)) drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.2)) drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.1));
}
.slide-arrow.next-arrow {
  right: -50px;
}
.slide-arrow.next-arrow img {
  transform: scale(-1, 1);
}
.slide-arrow.prev-arrow {
  left: -50px;
}

.slide-num {
  font-size: 0.8rem;
}
.slide-num .allcnt, .slide-num .nowcnt {
  font-size: 1.2rem;
}

.pager {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
.pager li {
  margin-right: 1rem;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
}
.pager .current {
  background-color: #fff;
  color: #fccd01;
}

.share-btn {
  position: absolute;
  top: 0;
  right: -80px;
  width: 50px;
  height: 100%;
}
.share-btn__title {
  writing-mode: tb;
  margin: auto;
  margin-right: 39%;
  line-height: 1;
}
.share-btn__title::after {
  position: relative;
  content: "";
  width: 1px;
  height: 2.5rem;
  background-color: #fff;
  display: inline-block;
  margin: 1rem auto;
  bottom: 0;
  right: 0;
  left: 0;
}
.share-btn__wrap {
  position: sticky;
  top: 4rem;
  left: 0;
  background-color: rgba(254, 226, 101, 0.2);
  background-blend-mode: exclusion;
  border-radius: 2px;
  padding: 1rem 0;
  margin-left: 1rem;
}
.share-btn__item {
  transition: all 0.5s ease;
}
.share-btn__item img {
  width: 25px;
  display: block;
  margin: 0 auto;
  padding-bottom: 1rem;
}
.share-btn__item:hover {
  opacity: 0.5;
}
@media screen and (max-width: 1300px) {
  .share-btn {
    position: relative;
    right: 0;
    left: 0;
    top: calc(100% - 2rem);
    margin: 5rem auto;
    height: auto;
    width: fit-content;
    width: -moz-fit-content;
  }
  .share-btn__title {
    position: relative;
    writing-mode: initial;
    margin: 0;
    margin-right: 4rem;
  }
  .share-btn__title::after {
    position: absolute;
    width: 2rem;
    height: 1px;
    left: calc(100% + 1rem);
    right: auto;
    top: 0;
    margin: auto;
  }
  .share-btn__wrap {
    position: initial;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 1rem;
  }
  .share-btn__inner {
    display: flex;
    align-items: center;
  }
  .share-btn__item img {
    padding: 0;
  }
  .share-btn__item:not(:last-child) img {
    margin-right: 1rem;
  }
}

#news {
  overflow: visible;
}

.bold {
  font-weight: bold;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.m0a {
  margin: 0 auto;
}

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

.mt0 {
  margin-top: 0 !important;
}

.red {
  color: red;
}

.link {
  color: #fccd01;
  border-bottom: 1px solid #fccd01;
}
@media screen and (max-width: 896px) {
  .link {
    border-bottom: 1px solid #fccd01;
  }
}

.border {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.border--top {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.border--bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.border--right {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
.border--left {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.tag {
  letter-spacing: 0.2em;
  font-size: 1.4rem;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  margin: 0.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.15);
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .tag {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .tag {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .tag {
    font-size: 3.3333333333vw;
  }
}

.date {
  display: block;
}
.date span {
  font-size: 80%;
  display: inline-block;
  border-radius: 2px;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
  color: #fccd01;
}
@media screen and (max-width: 1024px) {
  .date span {
    font-size: 75%;
    padding: 0.1rem 0.5rem;
  }
}
.date--type2 {
  line-height: 1.2;
  margin-top: 0.5rem;
}
.date--type2 span {
  font-size: 1.2rem;
  background-color: transparent;
  color: #fff;
  border-radius: 0;
  padding: 0;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .date--type2 span {
    font-size: 1.171875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .date--type2 span {
    font-size: 1.3392857143vw;
  }
}
@media screen and (max-width:480px) {
  .date--type2 span {
    font-size: 2.5vw;
  }
}

.new-icon {
  color: red;
  display: block;
  border-bottom: 2px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1024px) {
  .new-icon {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 0;
  }
}

.list-style--notes li {
  margin-left: 2rem;
  list-style-type: "※";
}
.list-style--notes li:last-child {
  margin-bottom: 2rem;
}
.list-style--disc li {
  margin-left: 2rem;
  list-style-type: disc;
}
.list-style--disc li:last-child {
  margin-bottom: 2rem;
}
.list-style--num li {
  margin-left: 2rem;
  list-style-type: decimal;
}
.list-style--num li:last-child {
  margin-bottom: 2rem;
}

.flow__unit {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 0;
}
.flow__unit:last-child {
  border-bottom: none;
}
.flow--title {
  margin-right: 2rem;
}
.flow--title .tag {
  margin: 0;
}
@media screen and (max-width:480px) {
  .flow__unit {
    flex-direction: column;
  }
  .flow--content {
    padding: 1rem 0;
  }
}

.flex {
  display: flex;
  align-items: center;
}
.flex.jc-center {
  justify-content: center;
  gap: 1rem;
}
.flex.ai-start {
  align-items: flex-start;
}
.flex.gap1 {
  gap: 1rem;
}
.flex.gap2 {
  gap: 2rem;
}
.flex.gap3 {
  gap: 3rem;
}
.flex.gap4 {
  gap: 4rem;
}
.flex.gap5 {
  gap: 5rem;
}
@media screen and (max-width: 896px) {
  .flex.sp-flex--column {
    flex-direction: column;
  }
  .flex.sp-gap1 {
    gap: 1rem !important;
  }
  .flex.sp-gap2 {
    gap: 2rem !important;
  }
  .flex.sp-gap3 {
    gap: 3rem !important;
  }
  .flex.sp-gap4 {
    gap: 4rem !important;
  }
  .flex.sp-gap5 {
    gap: 5rem !important;
  }
}

.small {
  font-size: 1.4rem;
  display: inline-block;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .small {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .small {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width:480px) {
  .small {
    font-size: 2.9166666667vw;
  }
}

.dl--normal {
  display: flex;
  gap: 0.5rem;
}
.dl--normal dt {
  flex-shrink: 0;
}
.dl--normal dt::after {
  content: ":";
  margin-left: 0.5rem;
}

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

.tabpc-non {
  display: block;
}
@media screen and (min-width:897px) {
  .tabpc-non {
    display: none;
  }
}

.pc-non {
  display: none;
}
@media screen and (max-width: 1024px) {
  .pc-non {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */