@charset "UTF-8";
/*==========================================
変数 inc.scss
===========================================*/
/*==========================================
変数 fonts.scss
===========================================*/
/*===================================
userSS 追加
=====================================*/
#adBox {
  position: fixed;
  right: 2%;
  bottom: 6%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  max-width: 25%;
  min-width: 200px; }
  @media screen and (max-width: 960px) {
    #adBox {
      bottom: 65px; } }

#adBox.is-visible {
  opacity: 1;
  visibility: visible; }

#adBox img {
  height: auto;
  display: block; }

@media (hover: hover) {
  .adBox_Link:hover:hover {
    opacity: 0.5; } }

#adClose {
  position: absolute;
  top: -5px;
  right: -5px;
  border: none;
  background: transparent;
  font-size: 30px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  aspect-ratio: 1;
  display: block;
  line-height: 1;
  padding: 0;
  z-index: 10; }

/*==========================================
  FV / MAIN（整理版：#fv配下に寄せる）
===========================================*/
/* Header / Gnav（FV上に乗る） */
/* ------------------------------
  FV
------------------------------ */
#fv {
  position: relative;
  height: auto; }

.Main_area {
  position: relative !important;
  height: auto !important;
  min-height: 100vh;
  --fv-pin: 200vh; }

/* FV背景：stickyで1画面固定 */
.main-block {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 0;
  overflow: hidden; }

/* スライダーを“全面背景”に揃える */
.main-sliderWrap,
.main-slider,
.main-slider .slick-list,
.main-slider .slick-track,
.main-slider .slider-item,
.main-slider .slider-item .item-img {
  height: 100%; }

/* スライダーWrap（元の指定を整理） */
.main-sliderWrap {
  width: 100%;
  height: 100vh;
  background: #fff;
  /* view() 系はブラウザ差があるのでそのまま残すならここ */
  scale: 1;
  animation: bg_zoomIn01 linear both;
  animation-timeline: view();
  animation-range: entry 50% cover 100%; }
@keyframes bg_zoomIn01 {
  0% {
    scale: 1.0; }
  100% {
    scale: 1.1; } }
/* slick初期化前は非表示→初期化後に表示 */
.main-slider {
  max-width: 100%;
  margin: 0 0 0 auto;
  height: 100%;
  position: relative;
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in; }
  .main-slider.slick-initialized {
    display: block;
    opacity: 1; }
  .main-slider .slider-item {
    height: 100%; }
    .main-slider .slider-item .item-img {
      height: 100%; }
      .main-slider .slider-item .item-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center; }
        @media screen and (max-width: 960px) {
          .main-slider .slider-item .item-img img {
            object-position: center; } }

/* スライド内アニメ（元のまま配置整理） */
.slide_inview_zoomIn_S {
  transform: translate(0, 0%) scale(1.3);
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.5, 0, 0, 1) 0.4s, transform 1.2s cubic-bezier(0.5, 0, 0, 1) 0.4s; }
  .slide_inview_zoomIn_S.show {
    transform: translate(0, 0) scale(1.2);
    opacity: 1; }

.js-anime-start.show .slide-animation {
  animation: fadezoom 25s 0s forwards; }
@keyframes fadezoom {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(0.9); } }
@keyframes fadeTranslateXR {
  0% {
    transform: translateX(0%); }
  100% {
    transform: translateX(10%); } }
/* FV上に被せる blur レイヤー */
.fv-blurLayer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  --fv-blur: 0px;
  --fv-dim: 0;
  -webkit-backdrop-filter: blur(var(--fv-blur));
  backdrop-filter: blur(var(--fv-blur));
  background: rgba(255, 255, 255, var(--fv-dim)); }

/* FVコンテンツ（背景より上に乗せる） */
.scroll-main-content {
  position: relative;
  z-index: 3;
  background: transparent;
  padding-block: 150vh 30vh; }
  @media screen and (max-width: 960px) {
    .scroll-main-content {
      padding-block: 80vh 4%; } }

/* メインリード（固定で載せる） */
.main-lead {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100vh;
  inset: 0;
  z-index: 3;
  position: absolute; }
  @media screen and (max-width: 960px) {
    .main-lead {
      flex-direction: column;
      align-items: center;
      justify-content: center; } }
  .main-lead h1 {
    font-size: clamp(1.8rem, 2.979167vw, 3.8rem);
    padding-bottom: 1em; }
  .main-lead-ja-wrap {
    width: 100%;
    margin-bottom: 10px;
    z-index: 38;
    letter-spacing: 1em;
    color: #202b51;
    text-shadow: 2px 2px 15px rgba(255, 255, 255, 0.8);
    transition: color 1.6s cubic-bezier(0.25, 1, 0.5, 1), text-shadow 1.6s cubic-bezier(0.25, 1, 0.5, 1), letter-spacing 1.6s cubic-bezier(0.25, 1, 0.5, 1); }
    @media screen and (min-width: 961px) {
      .main-lead-ja-wrap {
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: clamp(2rem, 2.979167vw, 3.8rem); } }
    @media screen and (max-width: 960px) {
      .main-lead-ja-wrap {
        margin-bottom: 1em;
        position: relative;
        font-size: clamp(2rem, 6.0416666667vw, 3.8rem); } }
    .main-lead-ja-wrap.show {
      letter-spacing: 0.12em; }
    .main-lead-ja-wrap.wht {
      color: #fff;
      text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8); }
  .main-lead-ja {
    display: flex;
    flex-direction: column;
    text-align: center;
    line-height: 2;
    font-weight: 400;
    font-size: clamp(1.6rem, 1.875vw, 3.6rem); }
    @media screen and (max-width: 960px) {
      .main-lead-ja {
        font-size: clamp(1.6rem, 3.125vw, 3rem); } }
  .main-lead-en {
    font-size: 1.6rem;
    letter-spacing: 0em;
    opacity: 0;
    transition: letter-spacing 1.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 1s; }
    .main-lead-en.show {
      opacity: 1;
      letter-spacing: 0.1em; }
  .main-lead-logo {
    max-width: 300px;
    width: 50%;
    margin: 40px auto 0; }

/* FVのドット / 数字 / scroll 表示系 */
.slick-num,
.dots-class,
.scroll {
  visibility: hidden;
  opacity: 0; }

.dots-class {
  bottom: 4%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 4%; }
  .dots-class button {
    opacity: 0;
    display: none; }
  .dots-class li {
    width: 50px;
    height: 10px;
    border-radius: 100vmax;
    background-color: #fff;
    margin-right: 10px;
    cursor: pointer;
    transition: background-color .5s ease;
    opacity: 0.6;
    box-shadow: 1px 1px 4px black; }
    .dots-class li.slick-active, .dots-class li:hover {
      opacity: 1; }
    .dots-class li:last-child {
      margin-right: 0; }

/* ==========================================
  FVの“固定リード”だけスクロールで消す
========================================== */
.scroll-none-content {
  opacity: var(--fv-none-op, 1);
  transition: opacity 0.25s linear;
  will-change: opacity; }

/* 完全に消えたらクリック無効（任意） */
.is-none-hidden .scroll-none-content {
  pointer-events: none; }

.fv-blurLayer {
  will-change: backdrop-filter; }

.well-being {
  position: relative;
  height: 100vh; }

.well-being__wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center; }

.well-being__trigger {
  height: 200vh; }

/* ===============================
   image container
=============================== */
.well-being__image {
  width: 50vw;
  height: calc(50vw * (100vh / 100vw));
  position: relative;
  overflow: hidden; }

.js-image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden; }

.js-image-wrap,
.js-image-item {
  will-change: width,height,transform; }

/* ===============================
   image
=============================== */
.js-image-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%; }

.js-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; }

/* ===============================
   blur
=============================== */
.well-being__cover {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(0px);
  pointer-events: none; }

/* ===============================
   marquee
=============================== */
.js-well-being-marquee {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  clip-path: inset(0 0 0 0);
  will-change: clip-path; }

.marquee-track {
  display: flex;
  gap: 4vw;
  width: max-content;
  animation: wellbeing-marquee 20s linear infinite; }

.js-well-being-marquee p {
  font-size: clamp(40px, 8vw, 140px);
  font-weight: 600;
  white-space: nowrap;
  color: #1f2e53; }

@keyframes wellbeing-marquee {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-50%); } }

/*# sourceMappingURL=index_fv.css.map */
