@charset "UTF-8";
.section {
  position: relative;
}

.fixed-link {
  position: fixed;
  bottom: 70px;
  right: 70px;
  width: 146px;
  height: 146px;
  border-radius: 110px;
  background-color: #ffffff;
  box-shadow: 5px 5px 16px #19345529;
  color: #000EB9;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  transition: all .3s;
}

.fixed-link__icon {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .fixed-link:hover {
    width: 250px;
  }

  .fixed-link:hover .fixed-link__icon {
    opacity: 1;
  }
}

.fixed-link__text-en {
  font-size: 36px;
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  font-style: italic;
}

.fixed-link__text-ja {
  font-size: 16px;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 900;
  font-style: normal;
}

@media screen and (max-width: 767px) {
  .fixed-link {
    width: 160px;
    height: 60px;
    right: 0;
    bottom: 40px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .fixed-link__text-en {
    font-size: 25px;
    text-align: center;
  }

  .fixed-link__text-ja {
    font-size: 12px;
    text-align: center;
  }

  .fixed-link__icon {
    opacity: 1;
    right: 12px;
  }
}

.fixed-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, .9);
  z-index: 100;
  padding: 0 50px;
  height: 70px;
  transition: all .3s;
  transform: translateY(-100%);
}

.fixed-header.active {
  transform: translateY(0);
}

.fixed-header__logo-area {
  display: flex;
  align-items: center;
}

.fixed-header__logo2 {
  margin-left: 51px;
}

.fixed-header__logo__link {
  display: block;
  transition: all .3s;
}

.fixed-header__logo__link:hover {
  opacity: .7;
}

.fixed-header__nav__list {
  display: flex;
}

.fixed-header__nav__list__item__link {
  font-size: 14px;
  letter-spacing: 0.28px;
  color: #4B4F84;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 900;
  font-style: normal;
  padding: 10px 17.5px;
  transition: all .3s;
}

.fixed-header__nav__list__item__link:hover {
  opacity: .7;
}

.color--white {
  color: #ffffff;
}

.bg-color--white {
  background-color: #ffffff;
}

.section__sub-title {
  font-size: 24px;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 900;
  font-style: normal;
}

.section--mx900 {
  max-width: 960px;
  padding: 0 30px;
  margin: auto;
}

.section--mx1060 {
  max-width: 960px;
  padding: 0 30px;
  margin: auto;
}

.section--mx1148 {
  max-width: 1200px;
  padding: 0 30px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .section--mx900,
  .section--mx1060,
  .section--mx1148 {
    padding: 0 20px;
  }
}

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

.top__img-wrapper {
  position: absolute;
  width: 37.28%;
  top: 39%;
  right: 16.73%;
  z-index: 1;
}

.top__triangle-img-wrapper {
  position: absolute;
}

.top__triangle-img-wrapper--1 {
  width: 59%;
  top: 0;
  right: 0;
  transform: translateX(-100%);
  animation-fill-mode: forwards;
}

.body[data-loading='false'] .top__triangle-img-wrapper--1 {
  animation-name: right-in;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(.61, .1, .19, 1.04);
}

.top__triangle-img-wrapper--2 {
  top: 0;
  left: 0;
  transform: translateX(-100%);
  animation-fill-mode: forwards;
}

@media screen and (max-width: 767px) {
  .top__triangle-img-wrapper--2 {
    width: 120%;
  }
}

.body[data-loading='false'] .top__triangle-img-wrapper--2 {
  animation-name: left-in;
  animation-duration: 1s;
  animation-delay: .3s;
  animation-timing-function: cubic-bezier(.61, .1, .19, 1.04);
}

.top__triangle-img {
  width: 100%;
}

@keyframes left-in {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes right-in {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@media screen and (max-width: 767px) {
  .top__img-wrapper {
    width: 100%;
    position: absolute;
    bottom: 113px;
    top: initial;
    left: 50%;
    transform: translate(-50%, 0%);
  }

  .top__img-sp {
    display: block;
    margin: auto;
  }

  .top__triangle-img1 {
    width: 136vw;
    max-width: initial;
  }
}

/*------------*/
/* exposition */

.exposition-wrapper {
  position: relative;
  margin-top: 0;
	padding-top: 260px;
}

.exposition-wrapper::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: -100%;
  background-image: linear-gradient(0deg, rgba(0, 14, 185, 0.7), rgba(20, 46, 95, 0.7));

}

.active.exposition-wrapper::before {
  animation-name: bg-in;
  animation-duration: .7s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}

@keyframes bg-in {
  from {
    right: -100%;
  }
  to {
    right: 0;
  }
}

.exposition-wrapper::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  border-top: 145px solid transparent;
  border-right: 50vw solid transparent;
  border-left: 50vw solid #ffffff;
  border-bottom: 145px solid #ffffff;
}

.exposition__triangle {
  position: relative;
  right: -100%;
  transform: translateY(-100%);
  display: block;
  border-top: 90px solid transparent;
  border-right: 50vw solid rgba(0, 14, 185, 0.7);
  border-left: 50vw solid transparent;
  border-bottom: 90px solid rgba(0, 14, 185, 0.7);
}

.exposition-wrapper.active .exposition__triangle {
  animation-name: bg-in;
  animation-duration: .7s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}

.exposition {
  padding: 0 0 516px;
}

.exposition__what {
  padding: 0 0;
  display: flex;
  justify-content: space-between;
}

.exposition__what__text-area {
  color: #ffffff;
  width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
	padding-bottom: 50px;
}

.exposition__what__title {
  letter-spacing: 6.8px;
  font-family: futura-pt-condensed, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
}

.exposition__what__sub-title {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 24px;
  line-height: 44px;
  margin-top: 50px;
}

.exposition__what__description {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 32px;
  margin-top: 30px;
}

.exposition__what__img-wrapper {
  position: relative;
  width: 44%;
}

.exposition__what__img2 {
  width: 35.17%;
  position: absolute;
  top: -16%;
  right: 0;
  transform: translateX(50%) translateY(-100%);
  opacity: 0;
  transition: all .3s;
}

.exposition.active .exposition__what__img2 {
  animation-duration: .7s;
  animation-fill-mode: forwards;
  animation-name: logo-in;
  animation-delay: .5s;
  animation-timing-function: cubic-bezier(.61, .1, .19, 1.04);
}

@keyframes logo-in {
  from {
    opacity: 0;
    transform: translateX(50%) translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(50%) translateY(0%);
  }
}

.exposition__what__link-wrapper {
  text-align: center;
  margin-top: 275px;
}

.exposition__what__link {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  padding: 17px 66px;
  font-size: 20px;
  line-height: 29px;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 2.4px;
  color: #0C2081;
}

.exposition__what__link::before {
  transform: skewX(-25deg);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.8);
}

.exposition__what__list {
  max-width: 812px;
  margin: 56px auto auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.exposition__what__list__item {
  padding: 26px 0;
  width: 33.3%;
  text-align: center;
}

.exposition__what__list__item__img-wrapper {
  text-align: center;
}

.exposition__what__list__item__img {
  margin: auto;
}

.exposition__what__list__item__text {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 18px;
  line-height: 29px;
  color: #ffffff;
  margin-top: 14px;
  margin-left: -3px;
  margin-right: -3px;
}

.exposition__triangle-img-wrapper {
  width: 52.67%;
  position: absolute;
  bottom: -5%;
  right: 0;
}

.exposition__triangle-img {
  width: 100%;
  transform: translateX(100%);
}

.exposition__triangle-img-wrapper.active .exposition__triangle-img {
  animation-name: triangle-in;
  animation-fill-mode: forwards;
  animation-duration: .7s;
  animation-delay: 1s;
}

@keyframes triangle-in {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@media screen and (max-width: 767px) {
  .exposition-wrapper::after {
    border-top: 45px solid transparent;
    border-bottom: 45px solid #ffffff;
  }

  .exposition {
    padding-top: 0;
    padding-bottom: 118px;
  }

  .exposition__what {
    flex-direction: column-reverse;
    padding: 0 20px;
  }

  .exposition__what__img-wrapper {
    width: 86%;
  }

  .exposition__what__text-area {
    width: 100%;
    margin-top: 60px;
  }

  .exposition__what__sub-title {
    margin-top: 40px;
    font-size: 22px;
  }

  .exposition__what__description {
    margin-top: 52px;
  }

  .exposition__what__link-wrapper {
    margin-top: 60px;
  }

  .exposition__what__link {
    width: 300px;
    padding: 17px 0;
  }

  .exposition__what__list {
    margin-top: 14px;
  }

  .exposition__what__list__item {
    width: 100%;
  }

  .exposition__triangle-img-wrapper {
    width: 68.67%;
  }

  .exposition__triangle-img-wrapper.active .exposition__triangle-img {
    animation-delay: .1s;
  }
}

/*---------*/

/*コース*/
.course-wrapper {
  padding: 110px 0 215px;
  background-color: #ffffff;
  position: relative;
}

.course {
  max-width: 1350px;
  margin: auto;
}

.course__center-img-wrapper {
  position: relative;
  margin-top: 188px;
  margin-bottom: 184px;
}

.course__center-img-wrapper .triangle-img1 {
  position: absolute;
  max-width: initial;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  bottom: -140px;
}

.triangle-img2 {
  position: absolute;
  max-width: initial;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1143px;
}

.triangle-img3 {
  position: absolute;
  max-width: initial;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  top: 264px;
}

.triangle-img4 {
  position: absolute;
  max-width: initial;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  top: -560px;;
}
.triangle-img5 {
  position: absolute;
  max-width: initial;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  top: -60px;
}


.course__center-img {
  margin: auto;
}

.courseA-area {
  max-width: 1046px;
  margin: auto;
}
.courseB-area {
  max-width: 1100px;
  margin: auto;
	margin-top: -113px;
}
.courseC-area {
  max-width: 1046px;
  margin: auto;
}
.courseD-area {
  max-width: 1100px;
  margin: auto;
}
.courseA-area,
.courseB-area,
.courseC-area,
.courseD-area{
  position: relative;
}

.courseA-area__content,
.courseB-area__content,
.courseC-area__content,
.courseD-area__content{
  display: flex;
  justify-content: center;
}

.courseA-area__content {
  align-items: center;
}

.courseB-area__content {
  align-items: center;
}
.courseC-area__content {
  align-items: center;
}
.courseD-area__content {
  align-items: center;
}
.courseA-area__title-wrapper,
.courseB-area__title-wrapper,
.courseC-area__title-wrapper,
.courseD-area__title-wrapper{
  position: absolute;
}

.courseA-area__title-wrapper {
		width: 58.27%;
		max-width: 606px;
    top: 100px;
}

.courseB-area__title-wrapper {
  right: 10px;
  width: 44.77%;
    max-width: 550px;
    top: 176px;
}
.courseC-area__title-wrapper {
		width: 64.27%;
		max-width: 668px;
    top: 10px;
		left: 30px;
}
.courseD-area__title-wrapper {
  right: 60px;
  width: 44.77%;
    max-width: 550px;
    top: 156px;
}

@media screen and (max-width: 1200px) {
  .courseB-area {
    margin-top: 115px;
  }
  .courseD-area {
    margin-top: 75px;
  }

  .courseA-area__title-wrapper,
  .courseB-area__title-wrapper,
  .courseC-area__title-wrapper,
	.courseD-area__title-wrapper{
    position: relative;
    margin-bottom: -15%;
  }

  .courseB-area__title-wrapper {
    margin-left: auto;
  }
  .courseD-area__title-wrapper {
    margin-left: auto;
  }
}

@media screen and (max-width: 1100px) {
  .courseA-area__title-wrapper,
  .courseB-area__title-wrapper,
  .courseC-area__title-wrapper,
	.courseD-area__title-wrapper{
    margin-bottom: -10%;
  }
}

@media screen and (max-width: 900px) {
  .courseA-area__title-wrapper,
  .courseB-area__title-wrapper,
  .courseC-area__title-wrapper,
	.courseD-area__title-wrapper{
    margin-bottom: initial;
  }
}
.courseB-area__content__description{
	width: 52%;
}
.courseD-area__content__description{
	width: 52%;
	margin-top: 60px;
}
.courseA-area__content__description__text,
.courseB-area__content__description__text,
.courseC-area__content__description__text,
.courseD-area__content__description__text{
  font-size: 16px;
  line-height: 32px;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.courseA-area__content__description__text {
  margin-top: 20px;
}

.courseB-area__content__description__text {
  margin-top: 18px;
}
.courseC-area__content__description__text {
	width: 64%;
  margin-top: 20px;
}
.courseD-area__content__description__text {
  margin-top: 18px;
}

.courseA-area__content__description .section__sub-title,
.courseB-area__content__description .section__sub-title,
.courseC-area__content__description .section__sub-title,
.courseD-area__content__description .section__sub-title{
  line-height: 42px;
}

.courseB-area__content__description .section__sub-title {
  margin-top: 12px;
}
.courseD-area__content__description .section__sub-title {
  margin-top: 12px;
}

.courseC-area__title-wrapper,
.courseC-area__content__description{
	z-index: 3;
}

.courseA-area__content__img-wrapper {
  margin-top: -80px;
    margin-right: -70px;
}
.courseC-area__content__img-wrapper {
  margin-top: -80px;
  margin-right: -70px;
	margin-left: -490px;
}

.courseA-area__content__img-wrapper img {
    position: relative;
    right: -50px;
}
.courseB-area__content__img-wrapper{
    margin-left: -70px;
		margin-right: -120px;
}
.courseB-area__content__img-wrapper img {
    position: relative;
	top: -100px;
}
.courseC-area__content__img-wrapper img {
    position: relative;
    right: -50px;
}
.courseD-area__content__img-wrapper{
    margin-left: -110px;
    margin-right: -80px;
}
.coursD-area__content__img-wrapper img {
    position: relative;
	top: -100px;
}

.course-produced-area {
  position: relative;
  max-width: 481px;
  width: 100%;
  margin: auto;
  display: flex;
  z-index: 1;
}

.course-produced-area__text-area {
  color: #A700FF;
  width: 100%;
  z-index: 1;
}

.course-produced-area__text-area__sub-title {
  font-size: 37px;
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  font-style: italic;
}

.course-produced-area__text-area__main-title {
  font-size: 70px;
  line-height: 85px;
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  font-style: italic;
}

.course-produced-area__text-area__description {
  font-size: 14px;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 24px;
}

.course-movie-area__description {
  max-width: 421px;
  width: 100%;
  font-size: 20px;
  line-height: 32px;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 900;
  font-style: normal;
  text-align: right;
  color: #A700FF;
  margin-top: 480px;
  margin-left: auto;
  background-color: #ffffff;
  padding: 60px 56px 50px 0;
}
.course-produced-area__img-wrapper {
  width: 91.5%;
  position: absolute;
  top: 0;
  right: -330px;
}

.course-movie-area {
  position: relative;
  max-width: 1232px;
  padding: 0 30px;
  margin: auto;
  z-index: 1;
}

.course-movie-area__img-wrapper {
  width: 64.9%;
  top: -345px;
  right: 383px;
  position: absolute;
}

.course-movie-area__img-wrapper::before {
  display: block;
  content: '';
  padding-top: 53.33%;
}

.youtube {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 30px 30px 60px #1C21623D;
}

@media screen and (max-width: 767px) {
  .course-wrapper {
    padding-top: 110px;
    padding-bottom: 170px;
  }

  .course-wrapper::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    border-top: 40px solid transparent;
    border-right: 50vw solid transparent;
    border-left: 50vw solid #1E87E2;
    border-bottom: 40px solid #1E87E2;
  }

  .course .section__sub-title {
    font-size: 22px;
  }
	.courseC-area{
		margin-top: 20vw;
	}
	.courseC-area .triangle-img{ display: none;}
  .courseA-area__content,
	.courseC-area__content{
    flex-direction: column-reverse;
  }

  .courseB-area__content,
	.courseD-area__content{
    flex-direction: column;
  }
	 .courseB-area .triangle-img2{
		top: 500px;
	}
	.courseD-area__content{
		margin-top: -60px;
	}

  .courseA-area__title-wrapper,
  .courseB-area__title-wrapper,
	.courseD-area__title-wrapper{
		left: 0;
		right: 0;
    padding-left: 20px;
		padding-right: 20px;
    width: 100%;
      top: 0;
  }
	.courseC-area__title-wrapper{
		left: 0;
		right: 0;
		padding-left: 20px;
		padding-right: 0;
		width: 100%;
		top: 0;
	}
  .course__center-img {
    display: block;
  }

  .courseA-area__content__description,
  .courseB-area__content__description,
  .courseC-area__content__description,
	.courseD-area__content__description{
    padding: 0 20px;
  }

  .courseA-area__content__description {
    margin-top: -50px;
		width: 100%;
		z-index: 2;
  }

  .courseB-area__content__description {
    margin-top: -142px;
		width: 100%;
		z-index: 2;
  }
  .courseC-area__content__description {
    margin-top: -50px;
		width: 100%;
  }
  .courseD-area__content__description {
    margin-top: -142px;
		width: 100%;
		z-index: 2;
  }

	.courseC-area__content__description__text{ width: 100%;}
  .courseD-area__content__description {
    margin-top: -102px;
		width: 100%;
		z-index: 2;
  }

  .courseA-area__content__description__text,
  .courseB-area__content__description__text,
  .courseC-area__content__description__text
	{
    margin-top: 30px;
  }
	.courseD-area__content__description__text{
		margin-top: 20px;
	}
  .courseA-area__title-wrapper,
  .courseB-area__title-wrapper,
  .courseC-area__title-wrapper,
	.courseD-area__title-wrapper{
    position: relative;
      z-index: 2;
  }

  .course__center-img-wrapper {
    margin-top: 100px;
    margin-bottom: 128px;
    padding-left: 37px;
    padding-right: 32px;
  }

  .courseA-area__content__img-wrapper {
    margin-right: 0;
    margin-left: 0;
    margin-top: -8px;
      margin-bottom: 0;
  }
  .courseA-area__content__img-wrapper img {
      right: 0;
  }

  .courseB-area__content__img-wrapper {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
  }
    .courseB-area__content__img-wrapper img{
        right: 0;
        z-index: 1;
    }
  .courseC-area__content__img-wrapper {
    margin-right: 0;
    margin-left: 0;
    margin-top: -38px;
    margin-bottom: -48px;
  }
    .courseC-area__content__img-wrapper img {
        right: 0;
    }
  .courseD-area__content__img-wrapper {
    margin-left: 0;
    margin-right: -10px;
    margin-top: 0;
  }
    .courseD-area__content__img-wrapper img{
        right: 0;
        z-index: 1;
    }

  .course-produced-area {
    margin-top: 128px;
  }

  .course-produced-area__text-area__sub-title {
    font-size: 24px;
  }

  .course-produced-area__text-area__main-title {
    font-size: 48px;
    line-height: 39px;
  }

  .course-produced-area__text-area__description {
    margin-top: 77px;
  }

  .course-produced-area__img-wrapper {
    width: 56.2%;
    position: absolute;
    top: -9%;
    right: 0;
  }

  .course-movie-area {
    margin-top: 40px;
    padding: 0 20px;
  }

  .course-movie-area__img-wrapper {
    position: relative;
    top: initial;
    right: initial;
    width: 100%;
  }

  .course-movie-area__description {
    width: 244px;
    font-size: 16px;
    line-height: 25px;
    margin-top: -30px;
    margin-right: -20px;
    padding: 55px 20px 33px;
  }

  .course__center-img-wrapper .triangle-img1 {
    bottom: -60px;
  }

  .triangle-img2 {
    bottom: initial;
    top: 20px;
  }

  .triangle-img4 {
    top: -210px;
  }
}

@media screen and (max-width: 374px) {
  .triangle-img2 {
    top: 330px;
  }
}

/*----------*/
/* map */
.map-wrapper {
  background: rgba(0, 14, 185, 0.7);
  position: relative;
}

.map-wrapper::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  border-top: 145px solid #ffffff;
  border-right: 50vw solid #ffffff;
  border-left: 50vw solid transparent;
  border-bottom: 145px solid transparent;
}

.map {
  position: relative;
}

.map__title-img-wrapper {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 20px;
  max-width: 1200px;
}

.map__title-img {
  width: 41.7%;
	max-width: 483px;
}

.map__img {
  max-width: initial;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.map__img--min {
  display: none;
}

.map__top {
  height: 700px;
  margin-bottom: -5px;
  background: transparent linear-gradient(180deg, #1E87E2 0%, #3CAAE7 100%) 0% 0% no-repeat padding-box;
}

.map__description-img-wrapper {
  width: 66.01%;
  position: absolute;
  z-index: 1;
  top: -14.7%;
  left: 16.65%;
}

.map__description-img {
	position: relative;
	right: -3%;
	width: 94%;
  margin: auto;
}

.map__description {
  position: absolute;
  top: 48%;
  right: 12%;
  z-index: 1;
  color: #ffffff;
  width: 627px;
  background-color: rgba(0, 0, 0, .6);
  padding: 60px;
}

.map__description__text {
  font-size: 16px;
  line-height: 32px;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-top: 20px;
}

@media screen and (max-width: 1679px) {
  .map-wrapper {
    height: 1600px;
  }

  .map-wrapper::before {
    display: none;
    border-top: 40px solid #ffffff;
    border-bottom: 40px solid transparent;
  }

  .map {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../image/map.png");
  }

  .map__img {
    display: none;
  }

  .map__img--min {
    display: block;
  }

  .map__top {
    height: 41.66vw;
  }
}

@media screen and (max-width: 767px) {
  .map-wrapper {
    height: initial;
    background-color: #1419B6;
    overflow: hidden;
  }

  .map__description {
    position: relative;
    width: initial;
    top: initial;
    right: initial;
    padding: 50px 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -170px;
    margin-bottom: 180px;
    left: initial !important;
    transform: initial !important;
  }

  .map__description .section__sub-title {
    font-size: 20px;
    display: inline-block;
    line-height: 35px;
  }

  .map {
    padding: 0 20px;
    background-image: none;
  }

  .map__top {
    height: 1170px;
  }

  .map__img--sp {
    max-width: initial;
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .map__description-img-wrapper {
    width: 420px;
    top: -1084px;
    left: 50%;
    transform: translateX(-50%);
  }

  .map__title-img-wrapper {
    width: 100vw;
    top: -80px;
    padding: 0 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .map__title-img {
    width: 92%;
		max-width: 100%;
		padding: 8px 0;
		box-sizing: border-box;
  }
}

/*----------*/

/*notice*/
.notice-wrapper {
  position: relative;
  margin-top: -250px;
}

.notice-wrapper::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-100%);
  border-top: 145px solid transparent;
  border-right: 50vw solid transparent;
  border-left: 50vw solid #ffffff;
  border-bottom: 145px solid #ffffff;
}

.notice {
  z-index: 1;
  padding-bottom: 150px;
}

.notice__title {
  position: absolute;
  top: 50px;
  left: -170px;
  transform: rotate(90deg);
  font-size: 115px;
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  font-style: italic;
  color: #6D1EDD;
  opacity: 0.06;
}

.notice__list {
  margin-top: 50px;
}

.notice__list__item {
  border-top: 1px solid #dedede;
}

.notice__list__item:last-child {
  border-bottom: 1px solid #dedede;
}

.notice__list__item__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 32px;
  padding: 30px 0;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  transition: all .3s;
}

.notice__list__item__title:hover {
  opacity: .7;
  cursor: pointer;
}

.notice__list__item__title__icon {
  transform: rotate(180deg);
}

.notice__list__item[data-accordion="open"] .notice__list__item__title__icon {
  animation-fill-mode: forwards;
  animation-name: icon-on;
  animation-duration: .2s;
}

.notice__list__item[data-accordion="close"] .notice__list__item__title__icon {
  animation-fill-mode: forwards;
  animation-name: icon-off;
  animation-duration: .2s;
}

.notice__list--item__description-wrapper {
  max-height: 0;
  overflow-y: hidden;
  transition: max-height .2s ease-out;
}

.notice__list--item__description {
  font-size: 16px;
  line-height: 30px;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 200;
  font-style: normal;
  padding-bottom: 32px;
}

@keyframes icon-on {
  from {
    transform: rotate(180deg);
  }
  to {
    transform: rotate(0);
  }
}

@keyframes icon-off {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(180deg);
  }
}

@media screen and (max-width: 1679px) {
  .notice-wrapper {
    margin-top: 200px;
  }
}

@media screen and (max-width: 1439px) {
  .notice-wrapper {
    margin-top: -10px;
  }
}

@media screen and (max-width: 1439px) {
  .notice-wrapper {
    margin-top: -10px;
  }
}

@media screen and (max-width: 1299px) {
  .notice-wrapper {
    margin-top: -200px;
  }

  .map__description {
    width: 587px;
    background-color: rgba(0, 0, 0, .6);
    padding: 40px;
  }

  .map__description .section__sub-title {
    font-size: 20px;
  }

  .map__description__text {

  }
}

@media screen and (max-width: 1120px) {
  .notice-wrapper {
    margin-top: -310px;
  }

  .map__description {
    width: 507px;
    padding: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .notice-wrapper::after {
    border-top: 70px solid transparent;
    border-bottom: 70px solid #ffffff;
  }

  .notice-wrapper {
    margin-top: -440px;
  }
}

@media screen and (max-width: 940px) {
  .notice-wrapper {
    margin-top: -440px;
  }
}

@media screen and (max-width: 940px) {
  .map {
    padding: 0 20px;
  }

  .notice-wrapper {
    margin-top: -560px;
  }

  .map__description {
    width: 100%;
    max-width: 700px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 767px) {
  .notice-wrapper {
    margin-top: initial;
  }

  .notice-wrapper::after {
    border-top: 40px solid transparent;
    border-bottom: 40px solid #ffffff;
  }

  .notice {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .notice__title {
    top: 130px;
    left: -176px;
  }
}

/*----------------------------*/

/* */

.ticket {
  padding: 262px 0 277px;
  text-align: center;
  background: rgba(0, 57, 213, 0.9);
}

.ticket::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  border-top: 90px solid #ffffff;
  border-right: 50vw solid transparent;
  border-left: 50vw solid #ffffff;
  border-bottom: 90px solid transparent;
}

.ticket__title {
  font-size: 100px;
  line-height: 181px;
  font-family: futura-pt-bold, sans-serif;
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
}

.ticket__link {
  padding: 20px 34px;
  border: 1px solid #FFFFFF;
  border-radius: 10px;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 20px;
  line-height: 51px;
  color: #ffffff;
  transition: all .3s;
}

.ticket__link:hover {
  background-color: #ffffff;
  color: rgba(0, 57, 213, 0.9);
}

@media screen and (max-width: 767px) {
  .ticket {
    padding: 95px 0 120px;
  }

  .ticket::before {
    border-top: 20px solid #ffffff;
    border-bottom: 20px solid transparent;
  }

  .ticket__title {
    font-size: 70px;
    line-height: initial;
  }

  .ticket__link {
    font-size: 14px;
    padding: 15px 23px;
  }
}

.resort-movie-area__title {
  margin: auto;
}

.resort-movie-area {
  margin-top: 126px;
  text-align: center;
  position: relative;
}

.resort-movie-area__description {
  line-height: 26px;
  font-size: 16px;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 0;
  color: #000EB9;
  margin-top: 28px;
}

.resort-movie-area .course-movie-area__img-wrapper {
  right: 0;
  top: -195px;
}

.resort-movie-area .course-movie-area__description {
  margin-top: 240px;
  color: #000EB9;
  max-width: 409px;
  text-align: left;
  font-size: 16px;
  margin-left: initial;
  padding: 44px 0 41px 30px;
}

.resort-movie-area .course-movie-area {
  max-width: 1077px;
}

@media screen and (max-width: 767px) {
  .resort-movie-area .course-movie-area__img-wrapper {
    top: 0;
  }

  .resort-movie-area .course-movie-area__description {
    width: 334px;
    margin-left: -20px;
    margin-top: -16px;
    padding: 40px 0 26px 20px;
  }
}

.top__triangle-img-wrapper--3 {
  bottom: -32%;
}

.top__triangle-img-wrapper--4 {
  bottom: -10%;
}
