@charset "UTF-8";
/* =========================
  Main Visual
========================= */
.main__visual {
  position: relative;
  width: 100%;
  height: calc(100svh - 80px);
  overflow: hidden;
}

/* Splide全体に高さを渡す */
.main__visual-slider,
.main__visual-slider .splide__track,
.main__visual-slider .splide__list,
.main__visual-slider .splide__slide {
  height: 100%;
}

.main__visual-slider {
  position: relative;
}

.main__visual-slider .splide__slide {
  overflow: hidden;
}

.main__visual-image,
.main__visual-image picture,
.main__visual-img {
  width: 100%;
  height: 100%;
}

.main__visual-image {
  position: relative;
}

.main__visual-img {
  display: block;
  object-fit: cover;
}

/* キャッチコピー */
.main__visual-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8% 8% 6%;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.main__visual-lead {
  font-size: var(--font_100);
  font-weight: 800;
  line-height: 1.3;
}

.main__visual-title {
  font-size: var(--font_98);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}

.main__visual-text {
  font-size: var(--font_30);
  font-weight: bold;
}

/* UI */
.main__visual-ui {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .main__visual {
    height: calc(100svh - 80px);
  }

  .main__visual-content {
    padding-bottom: 20%;
  }
}

/* -------------------------
  シャッター演出
------------------------- */
.main__visual-slider::before,
.main__visual-slider::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
  background: #000;
  z-index: 20;
  pointer-events: none;
}

.main__visual-slider::before {
  top: 0;
}

.main__visual-slider::after {
  bottom: 0;
}

.main__visual-slider.is-shutter::before {
  animation: shutter-top 0.75s ease-in-out;
}

.main__visual-slider.is-shutter::after {
  animation: shutter-bottom 0.75s ease-in-out;
}

@keyframes shutter-top {
  0% {
    height: 0;
  }
  15% {
    height: 50%;
  }
  35% {
    height: 50%;
  }
  100% {
    height: 0;
  }
}

@keyframes shutter-bottom {
  0% {
    height: 0;
  }
  15% {
    height: 50%;
  }
  35% {
    height: 50%;
  }
  100% {
    height: 0;
  }
}

/* 切り替え中に少しだけズームして雰囲気を出す */
.main__visual-slider .splide__slide img {
  transform: scale(1);
  transition: transform 6s ease;
}

.main__visual-slider .splide__slide.is-active img {
  transform: scale(1.05);
}

/* 不要なら矢印やページネーションを非表示 */
.main__visual-slider .splide__arrows {
  display: none;
}

.main__visual-slider .splide__pagination {
  bottom: 24px;
}
/*フレーム装飾*/
.main__visual-ui {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.main__visual-frame {
  position: absolute;
  width: 72px;
  height: 72px;
  border: 2px solid #fff;
}
.main__visual-frame--tl {
  top: 32px;
  left: 32px;
  border-right: none;
  border-bottom: none;
}
.main__visual-frame--tr {
  top: 32px;
  right: 32px;
  border-left: none;
  border-bottom: none;
}
.main__visual-frame--bl {
  bottom: 32px;
  left: 32px;
  border-right: none;
  border-top: none;
}
.main__visual-frame--br {
  bottom: 32px;
  right: 32px;
  border-left: none;
  border-top: none;
}
@media screen and (max-width: 767px) {
  .main__visual-frame {
    width: 50px;
    height: 50px;
  }
  .main__visual-frame--tl {
    top: 20px;
    left: 20px;
  }
  .main__visual-frame--tr {
    top: 20px;
    right: 20px;
  }
  .main__visual-frame--bl {
    bottom: 20px;
    left: 20px;
  }
  .main__visual-frame--br {
    bottom: 20px;
    right: 20px;
  }
}
/*iso*/
.main__visual-info {
  position: absolute;
  top: 60px;
  left: 60px;
  color: #fff;
  font-size: var(--font_20);
  line-height: 1.6;
  font-weight: 500;
}
/* battery */
.main__visual-battery {
  position: absolute;
  top: 60px;
  right: 60px;
  z-index: 3;
}
.main__visual-battery-image {
  display: block;
  width: 48px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .main__visual-info {
    top: 40px;
    left: 40px;
    font-size: var(--font_16);
    line-height: 1.4;
  }
  .main__visual-battery {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 3;
  }
  .main__visual-battery-image {
    display: block;
    width: 40px;
    height: auto;
  }
}
/* focus */
.main__visual-focus {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
}
/* 四隅共通 */
.main__visual-focus-line {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid #fff;
  background: none;
  transform: none;
}
/* 左上 */
.main__visual-focus-line--tl {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}
/* 右上 */
.main__visual-focus-line--tr {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}
/* 左下 */
.main__visual-focus-line--bl {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}
/* 右下 */
.main__visual-focus-line--br {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}
/* ＋マーク */
.main__visual-focus-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 40px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.main__visual-focus-cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .main__visual-focus {
    width: 100px;
    height: 100px;
  }
  .main__visual-focus-line {
    width: 20px;
    height: 20px;
  }
}
/* =========================
フローティングバナー
========================= */
.floating__banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  width: 320px;
  max-width: calc(100% - 24px);
}
.floating__banner.is-hidden {
  display: none;
}
.floating__banner-link {
  display: block;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.floating__banner-link:hover {
  transform: scale(1.02);
  opacity: 0.95;
}
.floating__banner-image {
  display: block;
  width: 100%;
  height: auto;
}
.floating__banner-close {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #000;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.floating__banner-close:hover {
  transform: scale(1.08);
  opacity: 0.9;
}

@media screen and (max-width: 767px) {
  .floating__banner {
    right: 12px;
    bottom: 12px;
    width: 220px;
    max-width: calc(100% - 24px);
  }

  .floating__banner-close {
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    font-size: 1.8rem;
  }
}
/* =========================
  Event
========================= */
.event {
  padding-top: 100px;
}
/* card */
.event__card {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.event__card:hover {
  transform: scale(1.01);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}
.event__card-body {
  display: flex;
  gap: 48px;
  padding: 58px 50px 48px;
}
.event__card-image {
  flex: 0 0 41%;
}
.event__card-image img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}
.event__card-content {
  flex: 1;
  min-width: 0;
}
/* status */
.event__card-status {
  position: absolute;
  top: 0;
  right: 0;
  width: 92px;
  height: 92px;
  background: var(--yellowgreen);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
/* テキスト用 */
.event__card-status-text {
  margin-top: 38px;
  margin-right: 4px;
  font-size: var(--font_16);
  font-weight: 700;
  color: #000;
  transform: rotate(45deg);
  transform-origin: top right;
  white-space: nowrap;
}
/* info */
.event__card-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.event__card-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  column-gap: 24px;
  align-items: start;
}
.event__card-label {
  font-size: var(--font_17);
  font-weight: 700;
  line-height: 1.6;
  color: #333;
}
.event__card-data {
  font-size: var(--font_17);
  font-weight: 400;
  color: #333;
}
/*detail-link*/
.event__card-footer {
  background: #111;
}
.event__card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 60px;
  padding: 20px;
  color: #fff;
  font-size: var(--font_20);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.event__card-link-text {
  display: inline-block;
}
.event__card-link-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.event__card:hover .event__card-link-arrow {
  transform: translateX(8px);
}
@media screen and (max-width: 960px) {
  .event {
    padding-top: 60px;
  }
  .event__card-body {
    flex-direction: column;
    gap: 30px;
    padding: 0;
  }
  .event__card-status {
    width: 60px;
    height: 60px;
  }
  .event__card-data {
    line-height: 1.6;
  }
  .event__card-status-text {
    margin-top: 25px;
    margin-right: 3px;
    font-size: var(--font_12);
  }
  .event__card-info {
    padding: 0 20px 30px;
  }
}
/* =========================
  About
========================= */
.about {
  padding: 120px 0;
  background-image: url("../images/top/bg-splash.png");
  background-repeat: no-repeat;
  background-position: calc(50% + 70px) 30%;
  background-size: contain;
}
.about__inner {
  display: flex;
  align-items: center;
  column-gap: 48px;
  row-gap: 24px;
}
.about__image {
  flex: 0 0 44%;
}
.about__image-item {
  display: block;
  width: 100%;
  height: auto;
}
.about__content {
  flex: 1;
  min-width: 0;
}
.about__title {
  margin-bottom: 20px;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: var(--font_54);
  font-weight: 700;
  line-height: 1.1;
  color: #222;
}
.about__lead {
  margin-bottom: 28px;
  font-size: var(--font_30);
  font-weight: 700;
  line-height: 1.6;
  color: #333;
}
.about__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__text p {
  font-size: var(--font_16);
  font-weight: 500;
  color: #333;
}
@media screen and (max-width: 960px) {
  .about__inner {
    flex-direction: column;
  }
  .about {
    padding: 80px 0 30px;
    background-position: calc(50% + 30px) center;
    background-size: cover;
  }
  .about__text p {
    line-height: 1.8;
  }
}
/* =========================
  Gallery
========================= */
.gallery {
  overflow: hidden;
}
.gallery__slider {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}
.gallery__slider-top,
.gallery__slider-bottom {
  overflow: visible;
}
.gallery__slider-item {
  overflow: hidden;
}
.gallery__slider-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
/* Splide default矢印などは使わない */
.gallery .splide__arrows,
.gallery .splide__pagination {
  display: none;
}
/* =========================
  Work
========================= */
.work {
  padding-top: 160px;
}
.work__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
  margin-top: 56px;
}
.work__card {
  display: flex;
  flex-direction: column;
}
.work__card-image {
  overflow: hidden;
}
.work__card-image-item {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.work__card-content {
  padding-top: 22px;
}
.work__card-title {
  margin-bottom: 18px;
  line-height: 1.4;
  text-align: center;
}
.work__card-title-text {
  display: inline;
  font-size: var(--font_20);
  font-weight: 700;
  color: #333;
  background: linear-gradient(transparent 62%, rgba(209, 249, 28, 0.3) 62%);
}
.work__card-text {
  font-weight: 500;
  color: #333;
}
@media screen and (max-width: 1333px) and (min-width: 1109px) {
  .work__card-title {
    min-height: calc(1.5em * 2);
  }
}
@media screen and (max-width: 1108px) {
  .work__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
    margin-top: 48px;
  }
  .work__card-content {
    padding-top: 18px;
  }
  .work__card-title {
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 767px) {
  .work {
    padding-top: 80px;
  }
  .work__list {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }
  .work__card-title-text {
    font-size: 2.1rem;
  }
}
/* =========================
  FAQ
========================= */
.faq {
  padding-top: 160px;
}
.faq__list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq__item {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.faq__question {
  width: 100%;
  display: grid;
  grid-template-columns: 52px 1fr 32px;
  align-items: center;
  gap: 18px;
  padding: 22px 24px 0;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.faq__question-icon,
.faq__answer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: var(--font_30);
  font-weight: 700;
  line-height: 1;
}

.faq__question-icon {
  background: var(--yellowgreen);
  color: #000;
}

.faq__answer-icon {
  flex-shrink: 0;
  background: #000;
  color: #fff;
}

.faq__question-text {
  font-size: var(--font_17);
  font-weight: 500;
  line-height: 1.7;
  color: #333;
}

.faq__question-toggle {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  justify-self: end;
}

.faq__question-toggle::before,
.faq__question-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #000;
  transform: translate(-50%, -50%);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.faq__question-toggle::before {
  width: 20px;
  height: 2px;
}

.faq__question-toggle::after {
  width: 2px;
  height: 20px;
}

.faq__item.is-open .faq__question-toggle::after {
  opacity: 0;
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
  padding-bottom: 22px;
}

.faq__answer-inner {
  overflow: hidden;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px 24px 0;
  min-height: 1px;
}

.faq__answer-text {
  padding-top: 8px;
  font-size: var(--font_17);
  font-weight: 500;
  line-height: 1.9;
  color: #333;
}
.faq__answer-text a {
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.faq__answer-text a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .faq {
    padding-top: 80px;
  }
  .faq__list {
    margin-top: 30px;
  }
  .faq__question-icon,
  .faq__answer-icon {
    width: 40px;
    height: 40px;
  }
  .faq__question {
    grid-template-columns: 36px 1fr 16px;
    gap: 18px;
    padding: 22px 16px 0;
  }
  .faq__answer-inner {
    overflow: hidden;
    display: grid;
    grid-template-columns: 36px 1fr 0;
    gap: 18px;
    padding: 22px 16px 0;
  }
}
