.top-main {
  padding-top: 0 !important;
}

/* -----------------------------------------------
 fv
 ----------------------------------------------- */
.fv {
  position: relative;
  width: 100%;
  height: 100vh;
}

.fv__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fv__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(56.5%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 56.5%, rgba(0, 0, 0, 0.4) 100%);
}

.fv__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.fv__cover {
  margin-top: -30vh;
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 10.8vh;
}
@media only screen and (max-width: 719px) {
  .fv__cover {
    padding-bottom: 8.2191780822vh !important;
  }
}

.fv__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
}

.fv__title {
  width: 154px;
}
@media only screen and (max-width: 719px) {
  .fv__title {
    width: 128px;
  }
}

.fv__text {
  margin-top: 32px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
}
@media only screen and (max-width: 719px) {
  .fv__text {
    margin-top: 28px;
    row-gap: 12px;
  }
}

.fv__text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9285714286;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
  letter-spacing: 0.06em;
  color: #fff;
}
@media only screen and (max-width: 719px) {
  .fv__text p {
    font-size: 12px;
    line-height: 1.9166666667;
  }
}

.fv__btn {
  margin-top: 34px;
  text-align: center;
}
@media only screen and (max-width: 719px) {
  .fv__btn {
    margin-top: 26px;
  }
}

.fv__btn a {
  display: inline-block;
  font-family: var(--font-lato);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 15px 44px 16px;
  border-radius: 3.6px;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
@media only screen and (max-width: 719px) {
  .fv__btn a {
    font-size: 13px;
    padding: 12px 36px 13px;
  }
}

.fv__btn a:hover {
  opacity: 0.6;
}

/* -----------------------------------------------
 c-scroll-down
 ----------------------------------------------- */
.c-scroll-down {
  position: fixed;
  z-index: 5;
  bottom: 46px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 22px;
     -moz-column-gap: 22px;
          column-gap: 22px;
}
@media only screen and (max-width: 719px) {
  .c-scroll-down {
    bottom: 39px;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}

.c-scroll-down span {
  color: #fff;
}

.c-scroll-down-text {
  font-family: var(--font-lato);
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media only screen and (max-width: 719px) {
  .c-scroll-down-text {
    font-size: 12px;
  }
}

.c-scroll-down-circle {
  margin-top: 3px;
  display: block;
  width: 6px;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}
@media only screen and (max-width: 719px) {
  .c-scroll-down-circle {
    width: 4px;
    margin-bottom: 1px;
  }
}

@-webkit-keyframes scroll-down-wave01 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(2);
            transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  40% {
    -webkit-transform: translate(-50%, -50%) scale(5);
            transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(5);
            transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}

@keyframes scroll-down-wave01 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(2);
            transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  40% {
    -webkit-transform: translate(-50%, -50%) scale(5);
            transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(5);
            transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}
.c-scroll-down-circle::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-transform: translate(-50%, -50%) scale(5);
          transform: translate(-50%, -50%) scale(5);
  opacity: 0;
  -webkit-animation: scroll-down-wave01 2.6s cubic-bezier(0.215, 0.61, 0.355, 1) 2.3s infinite;
          animation: scroll-down-wave01 2.6s cubic-bezier(0.215, 0.61, 0.355, 1) 2.3s infinite;
}
@media only screen and (max-width: 719px) {
  .c-scroll-down-circle::before {
    -webkit-transform: translate(-50%, -50%) scale(4);
            transform: translate(-50%, -50%) scale(4);
  }
}

@-webkit-keyframes scroll-down-wave02 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(2);
            transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  40% {
    -webkit-transform: translate(-50%, -50%) scale(5);
            transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(5);
            transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}

@keyframes scroll-down-wave02 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(2);
            transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  40% {
    -webkit-transform: translate(-50%, -50%) scale(5);
            transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(5);
            transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}
.c-scroll-down-circle::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transform: translate(-50%, -50%) scale(5);
          transform: translate(-50%, -50%) scale(5);
  opacity: 0;
  -webkit-animation: scroll-down-wave02 2.6s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
          animation: scroll-down-wave02 2.6s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
@media only screen and (max-width: 719px) {
  .c-scroll-down-circle::after {
    -webkit-transform: translate(-50%, -50%) scale(4);
            transform: translate(-50%, -50%) scale(4);
  }
}

/* -----------------------------------------------
 top-information
 ----------------------------------------------- */
.top-information {
  position: relative;
  z-index: 10;
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 90px;
  padding-block: 100px 90px;
}
@media only screen and (max-width: 719px) {
  .top-information {
    padding-top: 57px;
    padding-bottom: 49px;
    padding-block: 57px 49px;
  }
}

.top-information__inner {
  max-width: 880px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  padding-inline: 30px;
}

.top-information__title {
  font-family: var(--font-lato);
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #4d4d4d;
}
@media only screen and (max-width: 719px) {
  .top-information__title {
    font-size: 13px;
  }
}

.top-information__body {
  margin-top: 30px;
}
@media only screen and (max-width: 719px) {
  .top-information__body {
    margin-top: 17px;
  }
}

.top-information__items {
  border-bottom: 1px solid #ebebeb;
}

.top-information__item {
  border-top: 1px solid #ebebeb;
}

.top-information__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-block: 32px;
}
@media only screen and (max-width: 719px) {
  .top-information__item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 17px;
    padding-bottom: 17px;
    padding-block: 17px;
  }
}

.top-information__item a time {
  font-family: var(--font-lato);
  font-size: 14px;
  line-height: 1.5714285714;
  letter-spacing: 0.02em;
  color: #cacaca;
  width: 116px;
}
@media only screen and (max-width: 719px) {
  .top-information__item a time {
    font-size: 12px;
  }
}

.top-information__item a .txt {
  font-family: var(--font-gothic);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5714285714;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 719px) {
  .top-information__item a .txt {
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.5833333333;
  }
}

.top-information__btn {
  margin-top: 29px;
  text-align: right;
}
@media only screen and (max-width: 719px) {
  .top-information__btn {
    margin-top: 14px;
  }
}

.top-information__btn a {
  display: inline-block;
  font-family: var(--font-lato);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.04em;
  padding-bottom: 4px;
  color: #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
}
@media only screen and (max-width: 719px) {
  .top-information__btn a {
    font-size: 13px;
  }
}