@charset "utf-8";
/* ======================================================
   トップページ（front-page.php）
====================================================== */

/*-------------------------------------------
  メインビジュアル
-------------------------------------------*/
.mainvisual-top {
  height: 100vh;
  position: relative;
}
.mainvisual-top img {
  height: 100%;
  object-fit: cover;
}

.mainvisual-top .mainvisual_text {
  font-weight: 700;
  font-family: "Antonio", "Noto Sans CJK JP", sans-serif;
  font-size: clamp(7rem,10.78125vw, 20.7rem);
  color: #fff;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  text-align: center;
  line-height: 1.2;
}
/*-------------------------------------------
  ABOUTセクション
-------------------------------------------*/
.about {
  padding: 97px 0 130px;
  background-color: #f2f2f2;
  background-image: url("../images/about_backgroundpng.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 35% auto; /* 横幅を35%に */
}
.about-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-text {
  line-height: 2;
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 40px;
}
.about-img {
  width: 55.08%;
}
.about-card-head {
  background-image: url("../images/about_img2.png");
  background-size: cover;
  aspect-ratio: 580 / 355;
  display: flex;
  align-items: flex-end;
  padding-left: 30px;
  overflow: hidden;
}
.about-card:nth-child(2) .about-card-head {
  background-image: url("../images/about_img3.png");
}
.about-bottom {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 118px;
}
.about-card {
  width: 48.333%;
  display: flex;
  flex-direction: column;
}
.about-card .section-title .en,
.about-card .section-title .ja {
  color: #fff;
}
.about-card-body {
  background-color: #fff;
  padding: 40px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-card-text {
  line-height: 1.6;
  font-weight: 500;
  font-size: 2rem;
}
.about-card-body .btn {
  margin-top: 53px;
}
/*-------------------------------------------
  INSTGRAMセクション
-------------------------------------------*/
.instagram .btn {
  margin: 60px auto 0;
}
/*-------------------------------------------
  NEWSセクション
-------------------------------------------*/
.news-list {
  width: 900px;
  max-width: 100%;
  margin: 40px auto 0;
  font-size: 2rem;
}
.news-list li {
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 12%;
  border-bottom: 1px solid #193078;
  font-weight: 500;
}
.news-list li:hover span, .news-list li:hover a {
  color: #193078;
  opacity: 1;
}
.news-list li:last-child {
  border: none;
}
.news-list li span {
  width: 160px;
}
.news-list li > a {
  width: 694px;
  position: relative;
  display: block;
  width: 100%;
  padding-right: 40px;
}
.news-list li > a::before,
.news-list li > a::after {
  content: "";
  background-color: #193078;
  position: absolute;
  transition: all 0.5s;
}
.news-list a::before {
  width: 38px;
  height: 2px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.news-list a::after {
  width: 2px;
  height: 10px;
  top: 50%;
  right: 0;
  transform: translateY(-100%) rotate(-45deg);
  transform-origin: bottom;
}
/* 初期状態でSP表示、PCでは非表示 */
.title-pc {
  display: inline;
}
.title-sp {
  display: none;
}
.news .btn {
  margin: 74px auto 0;
}
/*-------------------------------------------
  INSTGRAMセクション
-------------------------------------------*/
.instagram__feed {
    margin-top: 40px;
}
/*-------------------------------------------
  MOVIEセクション
-------------------------------------------*/
.movie {
  margin-top: 97px;
  padding: 58px 0 129px;
  background-color: #f2f2f2;
  position: relative;
}
.movie-text {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 2.357;
}
.movie-videos {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.movie-video {
  width: 48%;
}
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.movie-img {
  width: 31.6%;
  position: absolute;
  right: 7.1%;
  top: -100px;
}
/*-------------------------------------------
  footer-before
-------------------------------------------*/
.home .footer-before {
  padding-top: 130px;
  margin-bottom: 10%;
}
.home .footer-before-top {
  display: flex;
  justify-content: space-between;
}
.home .footer-before-top a {
  display: block;
  cursor: pointer;
}
.home .footer-before-top .item {
  width: 48.333%;
  height: 355px;
  aspect-ratio: 580 / 355;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.home .footer-before-top .item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("../images/footer_before1.png");
  background-size: cover;
  transition: transform 0.5s ease;
}
.home .footer-before-top .item:nth-child(2):before {
  background-image: url("../images/footer_before2.png");
}
.home .footer-before-top .item:hover::before {
  transform: scale(2);
}
.footer-before .section-title {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 15px 30px;
  width: 100%;
}
.footer-before .section-title .en,
.footer-before .section-title .ja {
  color: #f2f2f2;
  display: block;
  width: 100%;
}
.footer-before .section-title .en {
  line-height: 1;
  margin-right: 0;
}
.footer-before .section-title .ja {
  position: relative;
}
.footer-before .section-title .ja::before {
  content: "";
  width: 70px;
  height: 2px;
  right: 20px;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.footer-before .section-title .ja::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 14px;
  top: calc(50% - 0.5px);
  top: 50%;
  right: 20px;
  background-color: #fff;
  transform: translateY(-100%) rotate(-45deg);
  transform-origin: bottom;
}
.instagram-banner {
  display: block;
  margin-top: 90px;
}
