@charset "UTF-8";
/* ========================================
   _reset.scss (modern & minimal)
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ol,
ul,
li,
table,
th,
td,
fieldset,
legend {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button,
[type=button],
[type=submit] {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
body {
  min-height: 100dvh; /* iOSのアドレスバー対策も兼ねる */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/*------------------------------------------
  base.scss
------------------------------------------*/
html {
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  margin: 0;
  padding: 0;
  color: #333;
  font-family: "Roboto", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media screen and (min-width: 1280px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.6;
}

/* ダーク背景内のリンク（必要ならユーティリティ化も可） */
.bgblack a,
.bgblack02 a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  transition: opacity 0.3s ease;
}
.bgblack a:hover,
.bgblack02 a:hover {
  opacity: 0.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

/*---- responsive helpers ----*/
.pc {
  display: none !important;
}
@media screen and (min-width: 1280px) {
  .pc {
    display: block !important;
  }
}

.sp {
  display: block !important;
}
@media screen and (min-width: 1280px) {
  .sp {
    display: none !important;
  }
}

/*---------- containers ----------*/
.container__full {
  width: 100%;
}
.container__l {
  max-width: 980px;
  width: 92%;
  margin: 0 auto;
}
.container__m {
  max-width: 780px;
  width: 80%;
  margin: 0 auto;
}
.container__s {
  max-width: 580px;
  width: 65%;
  margin: 0 auto;
}

/*---- page top button (ここに集約) ----*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 1.4rem;
  line-height: 1;
  z-index: 99;
}
#page-top a {
  background: #72c7ca;
  color: #fff;
  text-decoration: none;
  width: 60px;
  padding: 28px 5px;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
#page-top a:hover {
  text-decoration: none;
  opacity: 0.5;
}

/*------------------------------------------
  Swiper custom（外Swiper & inner-swiper 対応済み）
------------------------------------------*/
/* 共通スタイル */
.swiper {
  width: 100%;
}

.swiper-slide {
  align-items: center;
  justify-content: center;
  /* PC時は fade のため opacity や display は触らない */
}

/* 矢印（必要な場合） */
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

/* ページネーションカスタム */
.swiper-pagination-bullet {
  background: #333 !important;
  opacity: 0.3;
  width: 8px;
  height: 8px;
  margin: 0 4px !important;
  transition: opacity 0.3s;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* 縦スライド時のドット間隔 */
.swiper-vertical .swiper-pagination-bullet {
  margin: 12px 0 !important;
}

/* ドットの位置調整 */
.swiper-vertical .swiper-pagination {
  right: 24px !important;
  top: 50%;
  transform: translateY(-50%);
}

/*----------------------------
  PC：全画面スライド（外Swiper）
----------------------------*/
@media screen and (min-width: 768px) {
  .swiper,
  .swiper-wrapper,
  .swiper-slide {
    height: 100vh;
  }
}
/*----------------------------
  SP：外Swiperを無効化表示に切り替え
----------------------------*/
@media screen and (max-width: 767px) {
  .js-swiper .swiper-wrapper {
    display: block !important;
  }
  .js-swiper .swiper-slide {
    width: 100% !important;
    display: block !important;
    position: static !important;
    pointer-events: auto !important;
    margin-bottom: 40px;
    height: auto !important;
  }
  .js-swiper .swiper-pagination {
    display: none;
  }
}
/* 画角（比率）を保ったまま重ねる */
.xfade {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100%;
  aspect-ratio: 3/4;
}

.xfade > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  /* ← 両端をなめらかにする（S字カーブ） */
  animation: xfade 8s infinite both;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2枚の場合の遅延（8s周期の半分＝4s） */
.xfade > img:nth-child(1) {
  animation-delay: 0s;
}

.xfade > img:nth-child(2) {
  animation-delay: 4s;
}

@keyframes xfade {
  0% {
    opacity: 0;
  }
  6% {
    opacity: 0.25;
  } /* ふわっと立ち上がり開始 */
  12% {
    opacity: 1;
  } /* ゆっくり満ちる */
  44% {
    opacity: 1;
  } /* しっかり見せる */
  52% {
    opacity: 0.7;
  } /* ゆるやかに抜け始め */
  58% {
    opacity: 0;
  } /* クロスフェードの終わり */
  100% {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .xfade > img {
    animation: none;
    opacity: 1;
  }
}
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: auto;
}
@media screen and (min-width: 768px) {
  .container {
    height: 100vh;
  }
}

.bg {
  background-color: #efeae1;
}

.mv {
  position: relative;
  width: 100%;
  height: 100svh;
  background-image: url("../img/mv_pc.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.mv__title {
  max-width: 540px;
  width: 75%;
  margin: 30% auto 0;
}
@media screen and (min-width: 768px) {
  .mv__title {
    margin: 0 auto;
  }
}
.mv__logo {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 180px;
  width: 40%;
}

.container01 {
  width: 90%;
  max-width: 840px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .container01 {
    flex-direction: row;
    justify-content: space-between;
  }
}
.container01 div {
  width: 90%;
  margin: 20px auto 0;
}
@media screen and (min-width: 768px) {
  .container01 div {
    width: 49%;
    margin: 0;
  }
}
.container01 div:nth-of-type(2) {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .container01 div:nth-of-type(2) {
    margin-top: 0;
  }
}

.container02 {
  width: 50%;
  max-width: 420px;
  display: flex;
  justify-content: space-between;
}
.container02 div {
  width: 100%;
}

.credit {
  margin: 40px auto 0;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .credit {
    font-size: 1.2rem;
    margin: 24px auto 0;
  }
}
.credit li {
  display: block;
  margin: 4px auto 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .credit li {
    display: inline-block;
    margin: 0 8px;
  }
}
.credit span {
  font-size: 1rem;
}

.footer {
  text-align: center;
  font-size: 1.2rem;
}
.footer .logo {
  margin: 120px auto 0;
  max-width: 280px;
  width: 40%;
}

.copy {
  font-size: 1rem;
  margin: 24px auto 0;
  text-align: center;
}

.mb_none {
  margin-bottom: 0px !important;
}
@media screen and (min-width: 768px) {
  .mb_none {
    margin-bottom: 40px;
  }
}

/*------------------------------------------
  animation.scss
------------------------------------------*/
.fadein,
.fadein--up,
.fadein--down,
.fadein--left,
.fadein--right {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  will-change: opacity, transform;
}

.fadein.animated {
  opacity: 1;
}

.fadein--up {
  transform: translate3d(0, 24px, 0);
}

.fadein--down {
  transform: translate3d(0, -24px, 0);
}

.fadein--left {
  transform: translate3d(-24px, 0, 0);
}

.fadein--right {
  transform: translate3d(24px, 0, 0);
}

.fadein--up.animated,
.fadein--down.animated,
.fadein--left.animated,
.fadein--right.animated {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}/*# sourceMappingURL=style.css.map */