@charset "UTF-8";
/* CSS Document */

.center {
  text-align: center;
  width: 100%;
}

.sec1 {
  position: relative;
}

.video {
  position: relative;
  height: 100vh;
  transition: 1s;
  opacity: 0;
}

.video__movie {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}

.video::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
}

.active .video {
  opacity: 1;
}

.sec1__image img,
.sec1__image source {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 25% 50%;
}

.sec1__text {
  position: absolute;
  top: 50%;
  left: 7.5%;
  transform: translateY(-50%);
  text-align: left;
  color: #FFFFFF;
  transition: 0.5s;
  transition-delay: 1.25s;
  opacity: 0;
}

.active .sec1__text {
  opacity: 1;
  left: 2.5%;
}

.sec1__text__title {
  font-family: var(--oribitron);
  font-size: 4.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.sec1__text__text {
  font-size: 1.2rem;
  font-family: var(--oribitron);
  max-width: 450px;
  font-weight: 400;
}

.sec1__strong {
  display: block;
  position: absolute;
  bottom: -2.5%;
  opacity: 0;
  left: 2.5%;
  width: 95%;
  transition: 0.5s;
  transition-delay: 1s;
  ;
}

.active .sec1__strong {
  opacity: 1;
  bottom: 2.5%;
  ;
}

.sec1__strong img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1023px) {

  .sec1__image img,
  .sec1__image source {

    object-position: 35% 50%;
  }
}

@media (max-width: 600px) {
  .sec1__text__title {
    font-size: 3.5rem;
  }

  .sec1__text__text {
    font-size: 1rem;
    width: 80%;
  }
}




.banner__section {
  width: 90%;
  margin: 0 auto;
  padding-top: 100px;
}

.banner__section a {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

.banner__section a img {
  width: 100%;
}




.sec2 {
  max-width: 1440px;
  padding-top: 100px;
  padding-bottom: 100px;
  margin: 0 auto;
}

.sec2__title {
  font-family: var(--oribitron);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.sec2__text {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--oribitron);
  margin-bottom: 40px;
}

.sec2__ul {
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.sec2__ul__li {
  display: flex;
  width: calc(100% / 4 - 12.5px);
}

.sec2__ul__li__a {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
}

.sec2__ul__li__a__picture {
  margin-bottom: 10px;
  aspect-ratio: 1/1;
}

.sec2__ul__li__a__picture img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sec2__ul__li__a h3 {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  margin-bottom: 10px;
}

.sec2__ul__li__a__p {
  color: #A4A4A4;
  font-weight: 600;
  letter-spacing: 0.1rem;
}

@media (max-width: 1023px) {
  .sec2__ul {
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
    justify-content: space-between;
  }

  .sec2__ul__li {
    width: 47.5%;
  }
}

@media (max-width: 600px) {

  .sec2__title {
    font-size: 2.4rem;
  }

  .sec2__ul__li__a h3 {
    font-size: 1.6rem;
  }

  .sec2__ul__li__a p {
    font-size: 1.4rem;
  }

  .sec2__ul {
    padding: 0;
  }

  .sec2__ul__li {
    margin: 0 10px;
  }
}


.sec3 {
  position: relative;
}

.sec3__bg {
  position: relative;
}

.sec3__bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #000000, transparent 60% 100%);
}

.sec3__bg img,
.sec3__bg source {
  height: 100%;
  min-height: 800px;
  object-fit: cover;
  object-position: 60% 50%;
}

.sec3__title {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  text-align: center;
  color: #FFFFFF;
  font-family: var(--oribitron);
}

.sec3__title h2 {
  font-size: 3.5rem;
  font-weight: 700;
}

.sec3__title p {
  font-size: 1.2rem;
  font-weight: 700;
}

.sec3__text {
  position: absolute;
  right: 50%;
  top: 65%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 600px;
  color: #FFFFFF;
  text-align: left;
  letter-spacing: 0.1rem;
  opacity: 0;
  transition: 0.5s;
}

.sec3__text.active {
  top: 55%;
  opacity: 1;
}

.sec3__text strong {
  font-size: 2.4rem;
  font-weight: 600;
  display: block;
  padding-bottom: 20px;
  border-bottom: solid 1px #FFFFFF;
  margin-bottom: 20px;
}

.sec3__text p {
  margin-bottom: 50px;
}

.sec3__text ul {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 3rem;
  font-weight: 200;
}

.sec3__text ul li:first-child img {
  height: 70px;
}

.sec3__text ul li:last-child img {
  height: 60px;
  margin-top: 10px;
}

.sec3__sign {
  width: 270px;
  position: absolute;
  top: -150px;
  right: 0;
}

@media (max-width: 1023px) {

  .sec3__bg img,
  .sec3__bg source {
    object-position: 65% 50%;
    min-height: 1000px;
  }

  .sec3__sign {
    width: 150px;
    position: absolute;
    top: -60px;
    right: 0;
  }

  .sec3__text {
    width: 55%;
    right: 40%;
  }
}

@media (max-width: 600px) {

  .sec3__bg::after {
    background-image: linear-gradient(180deg, #000000, transparent 60% 100%);
  }

  .sec3__title h2 {
    font-size: 2.4rem;
  }

  .sec3__title p {
    width: 250px;
    margin: 0 auto;
  }

  .sec3__text {
    top: 27%;
    left: 5% !important;
    transform: none;
    width: 90%;
    left: 10%;
  }

  .sec3__text.active {
    top: 20%;
  }

  .sec3__bg img,
  .sec3__bg source {
    min-height: 850px;
    height: 850px;
    object-position: center;
  }


  .sec3__text p {
    font-size: 1.2rem;
    margin-bottom: 125px;
  }

  .sec3__text ul {
    flex-direction: column;
    width: fit-content;
    align-items: center;
    gap: 15px;
  }

  .sec3__text ul li:first-child img {
    width: 100px;
  }

  .sec3__text ul li:last-child img {
    margin-top: 0;
    width: 120px;
  }
}

.sec4 {
  max-width: 1440px;
  padding: 100px 0 75px;
  margin: 0 auto;
}

.sec4-1 {
  padding-bottom: 150px;
}

.sec4__title {
  width: 90%;
  margin: 0 auto 40px;
  text-align: center;
  font-family: var(--oribitron);
}

.sec4__title h2 {
  font-size: 3.5rem;
  font-weight: 700;
}

.sec4__title p {
  font-size: 1.2rem;
  font-weight: 700;
}

.sec4__text {
  font-family: var(--oribitron);
  font-size: 2.5rem;
  font-weight: 700;
  padding: 0 0 20px;
  border-bottom: solid 1px #505050;
  margin: 0 20px 20px;
}

.sec4__ul {
  padding: 0 20px;
  margin: 0 auto 20px;
  flex-wrap: wrap;
  display: flex;
  gap: 15px;
}

.sec4__ul__li {
  display: flex;
  width: calc(100% / 4 - 12.5px);
}

.sec4__ul__li__a {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
}

.sec4__ul__li__a__picture {
  margin-bottom: 10px;
  aspect-ratio: 1/1;
}

.sec4__ul__li__a__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1/1;
}

.sec4__ul__li__a h3 {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  margin-bottom: 10px;
}

.sec4__ul__li__a__p {
  color: #A4A4A4;
  font-weight: 600;
  letter-spacing: 0.1rem;
}

.accordion-contents {
  display: none;
}

.sec4__button {
  width: fit-content;
  margin: 100px auto 0;
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--oribitron);
  font-weight: 700;
}

.sec4__button span {
  width: 10px;
  height: 10px;
  display: block;
  border-right: solid 2px #000000;
  border-bottom: solid 2px #000000;
  rotate: -45deg;
  margin-bottom: 0px;
  transition: 0.25s;
  transform-origin: center;
}

.sec4__button.active span {
  rotate: 225deg;
  transform: translate(-1px, -5px);
}

@media (max-width: 1023px) {
  .sec4__ul {
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto 20px;
    justify-content: space-between;
  }

  .sec4__ul__li {
    width: 47.5%;
  }
}

@media (max-width: 600px) {
  .sec4__title h2 {
    font-size: 2.4rem;
  }

  .sec4__title p {
    width: 280px;
    margin: 0 auto;
  }
}


.sec5 {
  padding: 100px 0 200px;
  background: #000000;
}

.sec5__title {
  width: 90%;
  margin: 0 auto 100px;
  text-align: center;
  color: #FFFFFF;
}

.sec5__title h2 {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--oribitron);
}

.sec5__title p {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.sec5__ul {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.before {
  color: #505050;
}

.after {
  position: absolute;
  top: 0;
  left: 0;
  color: #FFFFFF;
  transition: 0.5s;
  clip-path: inset(0 0 100% 0);
}

.after.active {
  clip-path: inset(0 0 0 0);
}

.sec5__ul__li {
  position: relative;
}

.sec5__ul__li__contents {
  display: flex;
  gap: 30px;
  text-align: left;
  padding: 5px 5px 0;
}

.sec5__ul__li__contents__left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec5__ul__li__contents__left__cycle {
  display: block;
  position: relative;
  width: 12px;
  height: 12px;
  background: #505050;
  border-radius: 50%;
}

.after .sec5__ul__li__contents__left__cycle {
  background: #FFFFFF;
}

.after .sec5__ul__li__contents__left__cycle::before {
  content: "";
  position: absolute;
  top: -4.5px;
  left: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #000000;
  border: solid 1px #FFFFFF;
}

.sprcycle::after {
  background: #B48250 !important;
}

.sprcycle::before {
  border: solid 1px #B48250 !important;
}

.after .sec5__ul__li__contents__left__cycle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FFFFFF;
}

.sec5__ul__li__contents__left__line {
  width: 1px;
  height: 100%;
  background: #505050;
}

.after .sec5__ul__li__contents__left__line {
  background: #FFFFFF;
}

.sec5__ul__li:last-child .sec5__ul__li__contents__left__line {
  height: 0;
}

.sec5__ul__li__contents__right {
  flex: 1;
}

.sec5__ul__li__contents__right h3 {
  font-size: 2rem;
  font-family: var(--oribitron);
  margin-bottom: 10px;
  margin-top: -12.5px;
}

.spr {
  font-size: 1.4rem;
  padding: 5px 12px 0px;
  vertical-align: middle;
  font-weight: 700;
}

.spr__color {
  background: #B48250;
  color: #000000 !important;
}

.ather__color {
  color: #B48250 !important;
}

.sec5__ul__li__contents__right p {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.1rem;
  margin-bottom: 100px;
}

.sec5__ul__li:last-child .sec5__ul__li__contents__right p {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .sec5 {
    padding: 100px 0 150px;
  }

  .sec5__title h2 {
    font-size: 2.4rem;
  }

  .sec5__title p {
    width: 325px;
    margin: 0 auto 40px;
  }

  .sec5__ul__li__contents__right h3 {
    font-size: 2rem;
  }

  .sec5__ul__li__contents__right p {
    font-size: 1.2rem;
  }

  .spr {
    display: block;
    width: fit-content;
  }
}

.sec6 {
  position: relative;
  z-index: 1;
}

.contents {
  width: 90%;
  max-width: 1000px;
  padding: 100px 0 100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: #FFFFFF;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.parallax-bg::after {
  position: absolute;
  top: -1px;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.85;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 1));
}

.parallax-bg img {
  width: 100%;
  height: 100%;
  position: sticky;
  top: 0;
  z-index: -1;
  object-fit: cover;
}

.sec6__title {
  margin-bottom: 50px;
}

.sec6__title h2 {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--oribitron);
}

.sec6__title p {
  font-size: 1.2rem;
  font-weight: 400;
}

.sec6__ul {
  display: flex;
  justify-content: space-between;
}

.sec6__ul__li {
  width: 32%;
}

.sec6__ul__li__a {
  display: block;
  text-align: left;
}

.sec6__ul__li__a__picture {
  margin-bottom: 20px;
}

.sec6__ul__li__a h3 {
  font-family: var(--oribitron);
  font-weight: 700;
  margin-bottom: 15px;
  padding: 20px 0;
  background: #000000;
  text-align: center;
  color: #FFFFFF;
}

.sec6__ul__li__a p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.1rem;
}

@media (max-width: 600px) {

  .sec6 {
    min-height: 100vh;
  }

  .parallax-bg img {
    height: 100vh;
  }

  .sec6__title h2 {
    font-size: 2.4rem;
  }

  .sec6__title p {
    width: 320px;
    margin: 0 auto;
  }

  .sec6__ul {
    flex-direction: column;
    gap: 30px;
    max-width: 400px;
    margin: 0 auto;
  }

  .sec6__ul__li {
    width: 100%;
  }

  .contents {
    padding-bottom: 100px;
  }
}


.sec7 {
  width: 90%;
  max-width: 1200px;
  padding: 200px 0 150px;
  margin: 0 auto;
}

.sec7 picture {
  margin-bottom: 20px;
}

.sec7__text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.4rem;
}


@media (max-width: 600px) {
  .sec7 {
    padding: 150px 0;
  }
}


.news {
  padding-top: 100px;
}

.newslist {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.newslist-header {
  position: relative;
  text-align: left;
  display: flex;
  border-top: solid 1px #000000;
  padding: 20px 0 24px;
  cursor: pointer;
  padding-right: 30px;
}

.newslist-header::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 48%;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: center;
  width: 10px;
  height: 10px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  transition: 0.5s;
}

.newslist-header.active::after {
  top: 52%;
  transform: translateY(-50%) rotate(-135deg);
}

.newslist-header time {
  display: block;
  width: 120px;
}

.newslist-header h3 {
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.newslist-content {
  text-align: left;
  font-size: 1.4rem;
  line-height: 2;
  display: none;
  margin-bottom: 50px;
}

.news__line {
  display: block;
  height: 1px;
  width: 100%;
  background: #000000;
}

.news__more {
  font-family: var(--oribitron);
  font-weight: 700;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
  gap: 10px;
}

.news__more span {
  transform: rotate(45deg) translateY(-2.5px);
  transform-origin: center;
  width: 10px;
  height: 10px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  transition: 0.5s;
}

.news__more.active span {
  transform: rotate(-135deg);
  margin-bottom: -5px;
}

.newslist__more {
  display: none;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.newslist__more .newslist-header:first-of-type {
  border-top: none;
}

@media (max-width: 600px) {
  .newslist-header {
    flex-direction: column;
  }
}