@charset "UTF-8";
/*--------------------------------
c-container
----------------------------------*/
.c-container {
  width: 100%;
  max-width: 940px;
  margin-inline: auto;
  padding-inline: 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-container {
    padding-inline: 5vw;
  }
}
/*--------------------------------
c-heading-category
----------------------------------*/
.c-heading-category {
  margin-bottom: 50px;
  text-align: center;
}
.c-heading-category__icon {
  width: 90px;
  height: auto;
  margin: 0 auto 23px;
}
.c-heading-category__icon img {
  width: 100%;
  height: 100%;
}
.c-heading-category h2 {
  font-size: 5.8rem;
  font-weight: 600;
  margin-bottom: 23px;
}
.c-heading-category p {
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-heading-category {
    margin-bottom: 6.4vw;
  }
  .c-heading-category__icon {
    width: 14.6vw;
    margin: 0 auto 18px;
  }
  .c-heading-category h2 {
    font-size: 9.2vw;
    margin-bottom: 3.6vw;
  }
  .c-heading-category p {
    font-size: 3.6vw;
  }
}
/*--------------------------------
c-heading-step
----------------------------------*/
.c-heading-step {
  padding: 20px;
  background-color: #ec694e;
  scroll-margin-top: 80px;
}
.c-heading-step img {
  width: auto;
  height: 42px;
}
@media screen and (max-width: 767px) {
  .c-heading-step {
    padding: 2vw;
    scroll-margin-top: 18vw;
  }
  .c-heading-step img {
    height: 7.6vw;
  }
}
/*--------------------------------
c-modal
----------------------------------*/
.c-modal .modal-open {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.c-modal .modal-container {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 9000;
  text-align: center;
  background-color: #00000070;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}
.c-modal .modal-container.active {
  opacity: 1;
  visibility: visible;
}
.c-modal .modal-body {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-modal .modal-body__inner {
  position: relative;
  width: 100%;
}
.c-modal .modal-close {
  position: absolute;
  top: -4%;
  right: -4%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
}
.c-modal .modal-content {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.c-modal .modal-content iframe {
 width: 100%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 767px) {
  .c-modal .modal-close {
  top: -13%;
  right: -5%;
  width: 40px;
  height: 40px;
  font-size: 2rem;
}

  }
































