html {
  margin-top: 0 !important;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a {
  opacity: 1;
}

a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
}

main {
  width: 100%;
  height: 100vh;
}

.main_wrapper {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: url("../img/main_bg.jpg") no-repeat top center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.main_left_area {
  position: absolute;
  left: 0;
  top: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  width: calc((100vw - 600px) / 2);
  z-index: 1;
}

.main_left_area .main_left_img01 {
  width: 206px;
}

.main_left_area .main_left_img02 {
  width: 292px;
  padding-top: 40px;
}

.main_left_area .main_left_img03 {
  padding-top: 70px;
}

.main_left_area .main_left_img04 {
  padding-top: 63px;
}

.main_left_area .main_left_img05 {
  padding-top: 80px;
}

.main_left_area .main_left_img05 img {
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.4));
}

@media screen and (max-width: 1820px) {
  .main_left_area .main_left_img03 {
    width: 23vw;
  }

  .main_left_area .main_left_img04 {
    width: 20vw;
  }
}

@media screen and (max-width: 1620px) {
  .main_left_area .main_left_img05 {
    width: 25vw;
  }
}

@media screen and (max-width: 1340px) {
  .main_left_area .main_left_img01 {
    width: 15vw;
  }

  .main_left_area .main_left_img02 {
    width: 20vw;
  }

  .main_left_area .main_left_img05 {
    width: 20vw;
  }
}

@media screen and (max-width: 1200px) {
  .main_left_area {
    display: none;
  }
}

@media screen and (max-height: 900px) {

  .main_left_area {
    padding-top: 50px;
  }

  .main_left_area .main_left_img03 {
    padding-top: 50px;
  }

  .main_left_area .main_left_img05 {
    padding-top: 60px;
  }
}

.main_area {
  width: 600px;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  z-index: 2;
  max-height: 100dvh;
  box-sizing: border-box;
}

@media screen and (max-width: 599px) {
  .main_area {
    width: 100%;
    box-shadow: none;
  }
}

.first_view {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 50px;
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
}

.first_view:before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  background: url("../img/fv_bg01.jpg") no-repeat top center / cover;
  z-index: 10;
  z-index: -1;
}

.first_view::after {
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  background-color: #EEDAB5;
  z-index: -2;
}

.first_view .fv_img01 img {
  padding-top: 40px;
  width: 145px;
}

.first_view .fv_img02 img {
  width: 292px;
  padding-top: 10px;
}

.first_view .fv_img03 img {
  width: 380px;
  padding-top: 650px;
}

.first_view .fv_img04 img {
  width: 440px;
  padding-top: 30px;
}

.first_view .fv_img05 img {
  width: 403px;
  padding-top: 38px;
}

.first_view .fv_img06 img {
  width: 408px;
  padding-top: 40px;
}

.first_view .fv_img07 img {
  width: 373px;
  margin-top: 34px;
}

.first_view .fv_cta a {
  color: #ffffff;
  background-color: #c44034;
  letter-spacing: 0.1em;
  font-size: 24px;
  padding: 10px 32px;
  border-radius: 100vmax;
  margin-top: 35px;
  transition: all 0.3s;
  box-sizing: border-box;
  border: solid 2px transparent;
}

.first_view .fv_cta .fv_cta_allow {
  padding-left: 10px;
  font-size: 20px;
}

.first_view .fv_cta a:hover {
  background-color: #ffffff;
  color: #c44034;
  border-color: #c44034;
  opacity: 1;
}


@media screen and (max-width: 600px) {

  .first_view .fv_img01 img {
    padding-top: 35px;
    width: 23vw;
  }

  .first_view .fv_img02 img {
    padding-top: 10px;
    width: 49vw;
  }

  .first_view .fv_img03 img {
    width: 68vw;
    padding-top: 108vw;
  }
}

@media screen and (max-width: 480px) {

  .first_view .fv_img04 img,
  .first_view .fv_img05 img {
    width: 90vw;
  }

  .first_view .fv_cta {
    font-size: 16px;
  }

  .first_view .fv_cta .fv_cta_allow {
    font-size: 14px;
  }
}

@media screen and (max-width: 400px) {
  .first_view .fv_img01 img {
    width: 50vw;
  }

  .first_view .fv_img02 img {
    width: 85vw;
  }
}

@media screen and (max-width: 380px) {
  .first_view .fv_img07 img {
    width: 85vw;
  }
}

/* -------------- ▲ FVここまで ▲ ------------ */

/* -------------- ▼ sec01 ここから ▼ ------------ */

.section01 {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 1200px;
  background-color: #c44034;
  position: relative;

  background-image:
    url("../img/sec01_deco01.png"),
    url("../img/sec01_deco02.png"),
    url("../img/sec01_deco03.png");

  background-repeat:
    no-repeat,
    no-repeat,
    no-repeat;

  background-position:
    left -50px,
    right 170px,
    left calc(100% - 150px);

  background-size:
    50px auto,
    70px auto,
    60px auto;
}

.section01 .section01_img01 {
  position: absolute;
  padding-top: 53px;
  width: 508px;
  z-index: 3;
}

.section01 .section01_img02 {
  position: absolute;
  width: 420px;
  top: 220px;
  left: 57px;
  z-index: 2;
}

.section01 .section01_img03 {
  position: absolute;
  width: 438px;
  top: 360px;
  right: 55px;
  z-index: 1;
}

.section01 .section01_textarea {
  position: absolute;
  bottom: 40px;
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.3;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 599px) {

  .section01 {
    height: 210vw;
  }

  .section01 .section01_img01 {
    left: 5%;
    width: 90vw;
  }

  .section01 .section01_img02 {
    top: 40vw;
    width: 70vw;
    left: 10%;
  }

  .section01 .section01_img03 {
    top: 65vw;
    width: 70vw;
    right: 10%;
  }

  .section01 .section01_textarea {
    width: 100%;
    padding-top: 160vw;
  }
}

.section02 {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.section02 .section02_bg01,
.section02 .section02_bg02 {
  position: relative;
}

.section02 .section02_img01,
.section02 .section02_img02 {
  position: absolute;
  width: 490px;
  bottom: 10px;
  left: 30px;
}

.section02_textarea_wrapper {
  padding: 40px 0;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.3;
  letter-spacing: 0.1em;
}

.section02 .section02_textarea {
  padding-top: 20px;
}

.section02 .section02_textarea:first-child {
  padding-top: 0;
}

@media screen and (max-width: 599px) {
  .section02 .section02_textarea_wrapper {
    width: 100%;
  }
}


@media screen and (max-width: 525px) {

  .section02 .section02_img01,
  .section02 .section02_img02 {
    width: 490px;
    width: 87vw;
    bottom: 2%;
    left: 5%;
  }
}

.section03 {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #dcd3c1;
  position: relative;
  padding-bottom: 80px;
}

.section03 .section03_bg01 {
  position: absolute;
  top: -40px;
  right: 0;
  width: 192px;
}

.section03 .section03_img01 {
  width: 348px;
  padding-top: 100px;
}

.section03 .section03_img02,
.section03 .section03_img03 {
  position: relative;
  width: 346px;
  padding-top: 40px;
}

.section03 .section03_bg_02 {
  position: absolute;
  top: 20px;
  right: -50px;
  width: 110px;
}

@media screen and (max-width: 450px) {

  .section03 .section03_bg01 {
    width: 170px;
    top: -30px;
  }


  .section03 .section03_img01 {
    width: 80vw;
  }

  .section03 .section03_img02,
  .section03 .section03_img03 {
    width: 70vw;
  }

  .section03 .section03_bg_02 {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 20vw;
  }
}

.section04 {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding-bottom: 50px;
}

.section04 .section04_img01 {
  width: 90%;
  padding-top: 40px;
  position: relative;
}

.section04 .section04_bg01 {
  position: absolute;
  top: 16%;
  left: 33%;
  width: 202px;
}

.section04 .section04_cta01 a {
  color: #fff;
  font-weight: bold;
  background-color: #4d0000;
  border-radius: 100vmax;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  letter-spacing: 0.1em;
  margin-top: 50px;
  position: relative;
  padding: 25px 130px;
  border: 2px solid transparent;
}

@media screen and (max-width: 520px) {
  .section04 .section04_cta01 a {
    font-size: 23px;
  }
}

.section04 .section04_cta01 a img {
  color: #fff;
  width: 36px;
  height: auto;
  padding-top: 5px;
  padding-left: 5px;
}

.section04 .section04_cta01 a:hover {
  color: #4d0000;
  background-color: #fff;
  border-color: #4d0000;
  opacity: 1;
}

.section04 .section04_cta01 a:hover img {
  filter:
    invert(14%)
    sepia(25%)
    saturate(7000%)
    hue-rotate(350deg)
    brightness(45%)
    contrast(160%);
}

.section04 .section04_cta01 img {
  position: absolute;
  top: 53%;
  right: 100px;
  width: 22px;
  height: auto;
  transform: translateY(-65%);
}

@media screen and (max-width: 599px) {
  .section04 .section04_bg01 {
    position: absolute;
    top: 16%;
    left: 33%;
    width: 33vw;
  }
}

@media screen and (max-width: 470px) {
  .section04 .section04_cta01 img {
    width: 18px;
    right: 25%;
  }

  .section04 .section04_cta01 a {
    font-size: 16px;
  }
}

@media screen and (max-width: 410px) {
  .section04 .section04_cta01 img {
    right: 22%;
  }

  .section04 .section04_cta01 a {
    padding: 25px 100px;
  }
}

.section05 {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding-bottom: 50px;
}

.section05 .section05_img01 {
  width: 90%;
  padding-top: 40px;
  position: relative;
}

.section05 .section05_bg01 {
  position: absolute;
  top: 16%;
  left: 50%;
  width: 202px;
  transform: translateX(-50%);
}

.section05 {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 40px;
  padding-bottom: 60px;
}

.section05 .section05_title {
  font-size: 45px;
  font-weight: bold;
  color: #1b1b1b;
}

.section05 .section05_img01 {
  width: 260px;
  padding-top: 35px;
}

.section05 .section05_img02 {
  width: 260px;
  padding-top: 60px;
}

.section05 .section05_img03 {
  width: 300px;
  padding-top: 16px;
}

.section05 .section05_img04 {
  width: 291px;
  padding-top: 45px;
}

.section05 .section05_img05 {
  width: 300px;
  padding-top: 16px;
}

.section05 .section05_img06 {
  width: 280px;
  padding-top: 45px;
}

.section05 .section05_img07 {
  width: 300px;
  padding-top: 16px;
}

.section05 .section05_img08 {
  padding-top: 24px;
}

.section05 .section05_img08 img {
  width: 300px;
}

.section06 {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #4d0000;
  padding-bottom: 60px;
}

.section06 .section06_img01 {
  width: 340px;
  padding-top: 60px;
}

.section06 .section06_img01 img {
  width: 100%;
  height: auto;
  filter: drop-shadow(10px 10px 15px rgba(0, 0, 0, 0.4));
}

.section06 .section06_img02 {
  width: 196px;
  padding-top: 30px;
}

.section06 .section06_img03 img {
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.4));
}

.section06 .section06_img03 {
  width: 400px;
  padding-top: 20px;
}

.section06 .section06_cta01 a {
  color: #fff;
  font-weight: 500;
  background-color: #877548;
  border-radius: 100vmax;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  letter-spacing: 0.1em;
  margin-top: 50px;
  position: relative;
  padding: 30px 30px;
  border: 2px solid transparent;
  box-sizing: border-box;
}

.section06 .section06_cta01 a:hover {
  color: #877548;
  background-color: #fff;
  border-color: #877548;
  opacity: 1;
}


@media screen and (max-width: 520px) {

  .section06 .section06_cta01 a {
    font-size: 23px;
    padding: 30px 30px;
  }
}

@media screen and (max-width: 430px) {

  .section06 .section06_img01 {
    width: 80vw;
    padding-top: 60px;
  }

  .section06 .section06_img02 {
    width: 50vw;
  }

  .section06 .section06_img03 {
    width: 85vw;
  }
}

@media screen and (max-width: 380px) {

  .section06 .section06_cta01 a {
    font-size: 14px;
  }
}

.footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #eadbb8;
  padding-bottom: 30px;
}

.footer .footer_img01 {
  width: 96px;
  padding-top: 50px;
  padding-bottom: 30px;
}

.footer .footer_copyright_area {
  width: 100%;
  padding-top: 30px;
  border-top: 1px solid #4d0000;
}

.footer .footer_copyright_img {
  margin: 0 auto;
  width: 386px;
}

@media screen and (max-width: 400px) {

  .footer .footer_copyright_img {
    width: 90vw;
  }
}

.fade_up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade_up.show {
  opacity: 1;
  transform: translateY(0);
}

.confetti_area {
  position: fixed;
  top: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.confetti_area--left {
  left: 0;
  width: calc((100vw - 600px) / 2);
}

.confetti_area--right {
  right: 0;
  width: calc((100vw - 600px) / 2);
}

.confetti,
.confetti2nd {
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.confetti {
  animation: confetti-fall 8s linear infinite;
}

.confetti2nd {
  animation: confetti-fall 12s linear infinite;
  animation-delay: -4s;
}

.confetti::before,
.confetti2nd::before {
  content: "";
  position: absolute;
  top: -5vh;
  left: 0;
  width: 8px;
  height: 14px;
  background: currentColor;
  border-radius: 2px;
  opacity: 0.95;

  box-shadow:
    2vw -8vh,   6vw -22vh,  10vw -14vh, 14vw -30vh, 18vw -10vh,
    22vw -26vh, 26vw -18vh, 30vw -34vh, 34vw -12vh, 38vw -28vh,
    42vw -16vh, 46vw -36vh, 50vw -20vh, 54vw -32vh, 58vw -9vh,
    62vw -24vh, 66vw -15vh, 70vw -38vh, 74vw -19vh, 78vw -33vh,
    82vw -11vh, 86vw -27vh, 90vw -17vh, 94vw -35vh, 98vw -13vh,
    4vw -44vh,  12vw -52vh, 20vw -48vh, 28vw -60vh, 36vw -46vh,
    44vw -58vh, 52vw -50vh, 60vw -62vh, 68vw -45vh, 76vw -57vh,
    2vw -8vh,   6vw -22vh,  10vw -14vh, 14vw -30vh, 18vw -10vh,
    22vw -26vh, 26vw -18vh, 30vw -34vh, 34vw -12vh, 38vw -28vh,
    42vw -16vh, 46vw -36vh, 50vw -20vh, 54vw -32vh, 58vw -9vh,
    4vw -44vh,  12vw -52vh, 20vw -48vh, 28vw -60vh, 36vw -46vh,
    44vw -58vh, 52vw -50vh, 60vw -62vh, 68vw -45vh, 76vw -57vh,
    84vw -49vh, 92vw -61vh;
}

.confetti::before {
  color: #EEDAB5;
}

.confetti2nd::before {
  color: #EEDAB5;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-1vh) translateX(0) rotate(0deg);
  }

  50% {
    transform: translateY(80vh) translateX(4px) rotate(45deg);
  }

  100% {
    transform: translateY(130vh) translateX(-4px) rotate(90deg);
  }
}
