.-center {
  text-align: center !important;
}

.-right {
  text-align: right !important;
}

.-left {
  text-align: left !important;
}

@media only screen and (max-width: 640px) {
  .-sp-center {
    text-align: center !important;
  }
}

@media only screen and (max-width: 640px) {
  .-sp-right {
    text-align: right !important;
  }
}

@media only screen and (max-width: 640px) {
  .-sp-left {
    text-align: left !important;
  }
}

.-bold {
  font-weight: bold;
}

.-sp {
  display: none !important;
}
@media only screen and (max-width: 640px) {
  .-sp {
    display: inherit !important;
  }
}

@media only screen and (max-width: 640px) {
  .-pc {
    display: none !important;
  }
}

.notes {
  margin-top: 0.5em;
  font-size: 1.3rem;
}

.animation {
  opacity: 0;
}

.-isFade {
  opacity: 0;
  position: relative;
  bottom: -3.125vw;
}
.-isFade.isPlay {
  animation: fadein 1.5s cubic-bezier(0.07, 0.64, 0.3, 0.94) forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
    bottom: -3.125vw;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
.-isFade02 {
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.-isFade02::before, .-isFade02::after {
  content: "";
  background: linear-gradient(270deg, #fff 49.59%, rgba(255, 255, 255, 0) 100%);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
}
.-isFade02.isPlay {
  opacity: 1;
}
.-isFade02.isPlay::after {
  opacity: 0;
  left: 100%;
  transition: 2s;
}
.-isFade02.isPlay::before {
  opacity: 0;
  left: 100%;
  transition: 1s;
}

.-isLeft {
  opacity: 0;
  position: relative;
  left: -3em;
}
.-isLeft.isPlay {
  animation: Leftin 1s cubic-bezier(0.07, 0.64, 0.3, 0.94) forwards;
}

@keyframes Leftin {
  0% {
    opacity: 0;
    left: -3em;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
.-isRight {
  opacity: 0;
  position: relative;
  left: 3em;
}
.-isRight.isPlay {
  animation: Rightin 1s cubic-bezier(0.07, 0.64, 0.3, 0.94) forwards;
}

@keyframes Rightin {
  0% {
    opacity: 0;
    left: 3em;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
.-isRotate {
  animation: Rotate 60s linear infinite;
}

@keyframes Rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.bg {
  padding: 8rem 0;
  background: rgba(217, 217, 217, 0.3);
}
@media only screen and (max-width: 640px) {
  .bg {
    padding: 9.375vw 0;
  }
}

.-border {
  border: solid 1px rgba(0, 0, 0, 0.25);
}

.button-more {
  margin-top: 6em;
  display: block;
}
@media only screen and (max-width: 640px) {
  .button-more {
    margin-top: 2.5em;
    text-align: center;
  }
}
.button-more a {
  padding: 1.1rem 1.5rem 1.1rem 0;
  position: relative;
  display: inline-flex;
  font-family: Prompt;
  align-items: center;
  font-size: 2.4rem;
  line-height: 1.4;
  justify-content: center;
  text-decoration: none;
  color: #000;
  font-weight: 400;
  min-width: 31.5rem;
  position: relative;
  z-index: 1;
  /* hover */
}
.button-more a:hover {
  opacity: 1;
}
@media only screen and (max-width: 1580px) {
  .button-more a {
    font-size: 1.5189873418vw;
    min-width: 19.9367088608vw;
  }
}
@media only screen and (max-width: 1200px) {
  .button-more a {
    font-size: 1.8rem;
    min-width: 23.6rem;
  }
}
@media only screen and (max-width: 640px) {
  .button-more a {
    padding: 2.5vw 3.75vw 2.5vw 0;
    font-size: 3.75vw;
    min-width: 49.21875vw;
  }
}
.button-more a::after {
  content: "";
  position: absolute;
  background: url("../img/index/icon_arrow.png") no-repeat center center;
  background-size: contain;
  width: 1.5rem;
  height: 1.5rem;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 640px) {
  .button-more a::after {
    width: 2.5vw;
    height: 2.5vw;
  }
}
.button-more a .base {
  border: 1px solid rgba(0, 0, 0, 0.3);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.button-more a:hover .base {
  display: none;
}
.button-more a .top,
.button-more a .right,
.button-more a .bottom,
.button-more a .left {
  position: absolute;
  transition: transform 300ms;
  background: #000;
  z-index: -1;
  transform: scale(0, 0);
  transition-delay: 0ms;
  display: block;
  content: "";
}
.button-more a .top {
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform-origin: left top;
}
.button-more a .right {
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  transform-origin: right top;
}
.button-more a .bottom {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  transform-origin: right bottom;
}
.button-more a .left {
  top: 0;
  left: 0;
  z-index: -1;
  width: 1px;
  height: 100%;
  transform-origin: left bottom;
}
.button-more a:hover .top {
  transform-origin: left top;
  transform: scale(1, 1);
}
.button-more a:hover .right {
  transform-origin: left top;
  transform: scale(1, 1);
}
.button-more a:hover .bottom {
  transform-origin: right bottom;
  transform: scale(1, 1);
}
.button-more a:hover .left {
  transform-origin: left bottom;
  transform: scale(1, 1);
}
.button-more.-small {
  margin-top: 1em;
}
.button-more.-small span,
.button-more.-small a {
  padding: 2rem 2rem 2rem 2.8rem;
  min-width: 24rem;
}
@media only screen and (max-width: 640px) {
  .button-more.-small span,
  .button-more.-small a {
    padding: 3.125vw 3.125vw 3.125vw 4.375vw;
    min-width: 37.5vw;
    font-size: 3.125vw;
  }
}
.button-more.-white a .base {
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.button-more.-white a .top,
.button-more.-white a .right,
.button-more.-white a .bottom,
.button-more.-white a .left {
  background: #fff;
}

.title {
  line-height: 1.4;
}
.title-withEn {
  margin-bottom: 5.6rem;
}
@media only screen and (max-width: 640px) {
  .title-withEn {
    margin-bottom: 5.625vw;
  }
}
.title-withEn .en {
  font-family: "Prompt", sans-serif;
  font-style: normal;
  font-size: 9.6rem;
  font-weight: 250;
  line-height: 1;
}
@media only screen and (max-width: 1580px) {
  .title-withEn .en {
    font-size: 6.8rem;
  }
}
@media only screen and (max-width: 640px) {
  .title-withEn .en {
    font-size: 10vw;
  }
}
.title-withEn .jp {
  font-size: 2.4rem;
}
@media only screen and (max-width: 640px) {
  .title-withEn .jp {
    font-size: 5vw;
  }
}
.title-withEn.-small {
  margin-bottom: 3.6rem;
}
@media only screen and (max-width: 640px) {
  .title-withEn.-small {
    margin-bottom: 3.75vw;
  }
}
.title-withEn.-small .en {
  font-size: 5.6rem;
}
@media only screen and (max-width: 1580px) {
  .title-withEn.-small .en {
    font-size: 4.8rem;
  }
}
@media only screen and (max-width: 1200px) {
  .title-withEn.-small .en {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 1580px) {
  .title-withEn.-small .jp {
    font-size: 2rem;
  }
}
.title_block {
  margin-bottom: 4em;
}
@media only screen and (max-width: 640px) {
  .title_block {
    margin-bottom: 3em;
  }
}
.title-content {
  margin-bottom: 1.5em;
  font-size: 3.2rem;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
@media only screen and (max-width: 640px) {
  .title-content {
    font-size: 5vw;
  }
}
.title-large {
  margin: 1.5em 0;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 640px) {
  .title-large {
    font-size: 5vw;
    letter-spacing: 0.05em;
  }
}
.title-large span {
  font-size: 2rem;
}
@media only screen and (max-width: 640px) {
  .title-large span {
    font-size: 3.125vw;
  }
}
.title-middle {
  margin: 1.5em 0;
  font-size: 2.8rem;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media only screen and (max-width: 640px) {
  .title-middle {
    font-size: 4.375vw;
  }
}
.title-middle span {
  font-size: 2rem;
}
@media only screen and (max-width: 640px) {
  .title-middle span {
    font-size: 3.125vw;
  }
}
.title-small {
  margin: 1em 0;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media only screen and (max-width: 640px) {
  .title-small {
    margin: 1.5em 0;
    font-size: 4.0625vw;
  }
}
.title-xsmall {
  margin: 1em 0;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media only screen and (max-width: 640px) {
  .title-xsmall {
    margin: 1.5em 0;
    font-size: 3.75vw;
  }
}
.title-xxsmall {
  margin: 1em 0;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media only screen and (max-width: 640px) {
  .title-xxsmall {
    font-size: 3.75vw;
  }
}

.text_lead {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
}
@media only screen and (max-width: 640px) {
  .text_lead {
    font-size: 3.4375vw;
  }
}
.text_small {
  font-size: 1.5rem;
}
.text_notes {
  margin-top: 1em;
  line-height: 1.4;
  font-size: 1.3rem;
}

.column_container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 640px) {
  .column_container {
    margin: 0 auto;
  }
}
.column_container.-column2 {
  gap: 6rem 5.2631578947%;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  .column_container.-column2 {
    gap: 9.375vw;
  }
}
.column_container.-column2 .column_item {
  width: 47.3684210526%;
}
@media only screen and (max-width: 640px) {
  .column_container.-column2 .column_item {
    width: 100%;
  }
}
.column_container.-column3 {
  gap: 4.5rem 3.9473684211%;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  .column_container.-column3 {
    gap: 5.46875vw;
  }
}
.column_container.-column3 .column_item {
  width: 30.701754386%;
}
@media only screen and (max-width: 640px) {
  .column_container.-column3 .column_item {
    width: 46.5517241379%;
  }
}
.column_container.-column3 .column_item p {
  line-height: 1.5;
}
.column_container.-column3 .column_item.-column3-2 {
  width: 65.350877193%;
}
@media only screen and (max-width: 640px) {
  .column_container.-column3 .column_item.-column3-2 {
    width: 46.5517241379%;
  }
}
.column_container.-column4 {
  gap: 4.5rem 3.9473684211%;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  .column_container.-column4 {
    gap: 5.46875vw;
  }
}
.column_container.-column4 .column_item {
  width: 28.9473684211%;
}
@media only screen and (max-width: 640px) {
  .column_container.-column4 .column_item {
    width: 46.5517241379%;
  }
}
.column_container.-column4 .column_item p {
  line-height: 1.5;
}
.column_container.-column5 {
  gap: 3.5rem 3.0701754386%;
  justify-content: center;
  letter-spacing: 0;
}
@media only screen and (max-width: 640px) {
  .column_container.-column5 {
    gap: 4.6875vw;
  }
}
.column_container.-column5 .column_item {
  width: 17.5438596491%;
}
@media only screen and (max-width: 640px) {
  .column_container.-column5 .column_item {
    width: 46.5517241379%;
  }
}
.column_container.-column5 .column_item p {
  line-height: 1.5;
}
@media only screen and (max-width: 640px) {
  .column_container.-sp-column1 {
    flex-direction: column;
    gap: 6.25vw;
  }
}
@media only screen and (max-width: 640px) {
  .column_container.-sp-column1 .column_item {
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .column_container.-sp-column2 {
    gap: 3.125vw;
  }
}
@media only screen and (max-width: 640px) {
  .column_container.-sp-column2 .column_item {
    width: 48.275862069%;
  }
}
@media only screen and (max-width: 640px) {
  .column_container.-sp-column3 {
    gap: 3.125vw;
  }
}
@media only screen and (max-width: 640px) {
  .column_container.-sp-column3 .column_item {
    width: 30.1724137931%;
  }
}
@media only screen and (max-width: 640px) {
  .column_container .column_item.spHorizon {
    width: 100%;
    display: flex;
    gap: 4.6875vw;
  }
}
@media only screen and (max-width: 640px) {
  .column_container .column_item.spHorizon .spHorizon_image {
    width: 46.5517241379%;
  }
}
@media only screen and (max-width: 640px) {
  .column_container .column_item.spHorizon .spHorizon_body {
    width: 46.5517241379%;
  }
}
.column_container.-reverse {
  flex-direction: row-reverse;
}
.column_container.-flex-start {
  justify-content: flex-start;
}
.column_container.-align-center {
  align-items: center;
}

.-flex-start {
  justify-content: flex-start !important;
}

.-flex-end {
  justify-content: flex-end !important;
}

.width-200 {
  width: 20rem;
}
@media only screen and (max-width: 640px) {
  .width-200 {
    margin: 0 auto;
    width: 50%;
  }
}
.width-280 {
  width: 28rem;
}
@media only screen and (max-width: 640px) {
  .width-280 {
    margin: 0 auto;
    width: 50%;
  }
}
.width-320 {
  width: 32rem;
}
@media only screen and (max-width: 640px) {
  .width-320 {
    margin: 0 auto;
    width: 100%;
  }
}
.width-360 {
  width: 36rem;
}
@media only screen and (max-width: 640px) {
  .width-360 {
    width: 100%;
  }
}
.width-400 {
  width: 40rem;
}
@media only screen and (max-width: 640px) {
  .width-400 {
    width: 100%;
  }
}
.width-480 {
  width: 48rem;
}
@media only screen and (max-width: 640px) {
  .width-480 {
    width: 100%;
  }
}
.width-500 {
  width: 50rem;
}
@media only screen and (max-width: 640px) {
  .width-500 {
    width: 100%;
  }
}
.width-550 {
  width: 55rem;
}
@media only screen and (max-width: 640px) {
  .width-550 {
    width: 100%;
  }
}
@media only screen and (max-width: 640px) and (max-width: 640px) {
  .width-550 {
    width: 100%;
  }
}
.width-570 {
  width: 57rem;
}
@media only screen and (max-width: 640px) {
  .width-570 {
    width: 100%;
  }
}
.width-600 {
  width: 60rem;
}
@media only screen and (max-width: 640px) {
  .width-600 {
    width: 100%;
  }
}
.width-680 {
  width: 68rem;
}
@media only screen and (max-width: 640px) {
  .width-680 {
    width: 100%;
  }
}
.width-720 {
  width: 72rem;
}
@media only screen and (max-width: 640px) {
  .width-720 {
    width: 100%;
  }
}
.width-780 {
  width: 78rem;
}
@media only screen and (max-width: 640px) {
  .width-780 {
    width: 100%;
  }
}
.width-900 {
  width: 90rem;
}
@media only screen and (max-width: 640px) {
  .width-900 {
    width: 100%;
  }
}

.-color-black {
  color: #000;
}
.-color-white {
  color: #fff;
}

.-bg {
  padding: 4rem;
  background: rgba(217, 217, 217, 0.3);
}
@media only screen and (max-width: 640px) {
  .-bg {
    padding: 4.6875vw;
  }
}

.nav-below {
  margin: 10rem 0 0;
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .nav-below {
    margin: 7.8125vw 0 0;
  }
}

.content {
  margin: 10rem auto;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .content {
    margin: 9.375vw auto;
  }
}

.mt-l {
  margin-top: 4em;
}
@media only screen and (max-width: 640px) {
  .mt-l {
    margin-top: 3em;
  }
}

.mt-ml {
  margin-top: 3em;
}
@media only screen and (max-width: 640px) {
  .mt-ml {
    margin-top: 2.4em;
  }
}

.mt-m {
  margin-top: 2em;
}
@media only screen and (max-width: 640px) {
  .mt-m {
    margin-top: 1.6em;
  }
}

.mt-sm {
  margin-top: 1.5em;
}
@media only screen and (max-width: 640px) {
  .mt-sm {
    margin-top: 1em;
  }
}

.mt-s {
  margin-top: 1em;
}
@media only screen and (max-width: 640px) {
  .mt-s {
    margin-top: 0.75em;
  }
}

.mt-ss {
  margin-top: 0.5em;
}

.mt-0 {
  margin-top: 0;
}

@media only screen and (max-width: 640px) {
  .-sp-mt-0 {
    margin-top: 0;
  }
}

@media only screen and (max-width: 640px) {
  .-sp-mt-m {
    margin-top: 2em;
  }
}

.mb-l {
  margin-bottom: 4em;
}
@media only screen and (max-width: 640px) {
  .mb-l {
    margin-bottom: 3em;
  }
}

.mb-ml {
  margin-bottom: 3em;
}
@media only screen and (max-width: 640px) {
  .mb-ml {
    margin-bottom: 2.4em;
  }
}

.mb-m {
  margin-bottom: 2em;
}
@media only screen and (max-width: 640px) {
  .mb-m {
    margin-bottom: 1.6em;
  }
}

.mb-sm {
  margin-bottom: 1.5em;
}
@media only screen and (max-width: 640px) {
  .mb-sm {
    margin-bottom: 1em;
  }
}

.mb-s {
  margin-bottom: 1em;
}
@media only screen and (max-width: 640px) {
  .mb-s {
    margin-bottom: 0.75em;
  }
}

.mb-ss {
  margin-bottom: 0.5em;
}

.mb-0 {
  margin-bottom: 0;
}

@media only screen and (max-width: 640px) {
  .-sp-mb-0 {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 640px) {
  .-sp-mb-s {
    margin-bottom: 1em;
  }
}

@media only screen and (max-width: 640px) {
  .-sp-mb-sm {
    margin-bottom: 1.5em;
  }
}

.-size14 {
  font-size: 1.4rem;
}
@media only screen and (max-width: 640px) {
  .-size14 {
    font-size: 2.8125vw;
  }
}
.-size14 {
  font-size: 1.6rem;
}
@media only screen and (max-width: 640px) {
  .-size14 {
    font-size: 2.5vw;
  }
}
.-size20 {
  font-size: 2rem;
}
@media only screen and (max-width: 640px) {
  .-size20 {
    font-size: 3.75vw;
  }
}
.-size24 {
  font-size: 2.4rem;
}
@media only screen and (max-width: 640px) {
  .-size24 {
    font-size: 4.375vw;
  }
}
.-size28 {
  font-size: 2.8rem;
}
@media only screen and (max-width: 640px) {
  .-size28 {
    font-size: 5vw;
  }
}
.-size32 {
  font-size: 3.2rem;
}
@media only screen and (max-width: 640px) {
  .-size32 {
    font-size: 5.625vw;
  }
}/*# sourceMappingURL=module.css.map */