@charset "UTF-8";
html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  color: #6A291D;
  line-height: 1.7;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
}

.intro {
  position: fixed;
  inset: 0;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro__logo {
  width: 180px;
}
.intro img {
  width: 100%;
  height: auto;
  display: block;
}

.hero {
  opacity: 0;
}

.hero {
  position: relative;
  height: 100vh;
  background: #fff;
  overflow: hidden;
}

/* ===== 背景で落ちる葉 ===== */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  .leaf {
    position: absolute;
    top: 0;
    width: 120px;
    opacity: 0.35;
  }

  .leaf--1 { left: 15%; }
  .leaf--2 { left: 50%; }
  .leaf--3 { left: 80%; }
}

/* ===== 上部ユーカリ ===== */
.hero__top-leaf {
  position: absolute;
  top: -40px; /* 少しはみ出させる */
  left: 0;
  width: 100%;
  z-index: 3;
  pointer-events: none;
}

.hero__top-leaf img {
  width: 100%;
  display: block;
}

/* ===== コンテンツ ===== */
.hero__inner {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 30px; /* 訪問型〜動画、左右の文字、logoまで全部そのまま動かせる、TOPの余白高さ変更 */
}

/*　訪問型リラクゼーション整体の文字　*/
.hero__sub {
  font-size: 26px;
  margin-bottom: -60px;
  margin-top: 60px;
  text-align: center;


  /*後ろ白ぼやかし*/
 text-shadow:
    0 0 6px rgba(255, 255, 255, 1.3),
  0 0 14px rgba(255, 255, 255, 1.0);
}




.hero__title {
  font-size: 48px;
  margin-bottom: 40px;
}

/* 中央3カラム */
.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero__concept {
  font-size: 14px;
  line-height: 2;
}

.hero__concept--jp {
  font-size: 16px;
  margin-left: 150px;
  text-align: left;
  line-height: 1.2;
  grid-column: 1;
}
/* 日本語部分 左の 上のやつも　*/
.hero__concept--jp .lead {
  font-size: 28px;
  margin: 90px 0 0 0;
  line-height: 1.2;
  font-weight: 400;
}

/* 日本語部分 左の あなたに。　*/
.hero__concept--jp .sub {
  font-size: 16px;
  margin: 20px 0 0 0;
  font-weight: 400;
}

/* 英語部分 右の　*/
.hero__concept--en {
  font-size: 16px;
  text-align: left;
  margin-right: 100px;
  line-height: 1.8;
  grid-column: 2s;
  margin: 80px 0 0 40px;
}

/* 映像部分 真ん中 */
.hero__movie {
  width: 450px;
  border-radius: 21px;
  overflow: hidden;
  transform: scale(1);
  will-change: transform;
}
.hero__movie video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero__movie-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* ロゴCoco,Chi Care ど真ん中 */
.hero__logo {
  width: 150px;
  height: 90px;
  margin-left: -250px;
}

.hero__logo img {
  width: 260%;
  height: auto;
  display: block;
}




/* ===== hero scroll navigation TOPの下棒 ===== */
.hero__scroll-nav {
  margin-top: 95px;  /* 動画と棒線の間の余白 */
  padding-bottom: 10px;   /* 下に余白 */
  width: 80%;
  border-bottom: 1px solid #6A291D; 

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;

  font-size: 12px;
  letter-spacing: 0.01em;
}


.hero__site-name {
  white-space: nowrap;
}

.hero__scroll-menu {
  display: flex;
  justify-content: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero__scroll-menu a {
  text-decoration: none;
  color: inherit;
}

.hero__scroll-menu a:hover {
  opacity: 0.6;
}

.hero__scroll-right {
  display: flex;
  align-items: center;
  gap: 8px;
}


/* 矢印アニメーション TOP */
.hero__scroll-right .arrow {
  display: inline-block;
  animation: arrowMove 1.6s ease-in-out infinite;
}

@keyframes arrowMove {
  0% {
    transform: translateY(0);
    opacity: .5;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: .5;
  }
}

/* スクロール空間 */
.scroll-space {
  height: 200vh; /* ←命 */
}

.hero__movie video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ← contain はNG */
}



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
















/* ========= SP ========= */
@media (max-width: 768px) {

  .hero {
    height: auto;
    padding-top: 0;
    overflow-x: hidden;
  }

  /* top_Leafを下に配置 */
  .hero__top-leaf {
    position: relative;
    top: 0;
    margin-bottom: 40px;
    overflow: hidden;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero__top-leaf img {
    width: 100%;
    height: auto;
    transform: scale(1.5);
    object-fit: cover;
  }

  .hero__inner {
    padding: 60px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__sub {
    text-align: center;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    margin-top: 0;
    width: 100%;
  }

  .hero__title {
    display: none;
  }

  /* ロゴをサブの下に配置 */
  .hero__logo {
    width: 100px;
    height: auto;
    margin-left: 0;
    margin-bottom: 30px;
  }

  .hero__logo img {
    width: 100%;
    height: auto;
  }

  /* 動画をフルサイズ表示 */
  .hero__movie-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
    order: 1;
  }

  .hero__movie {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
  }

  /* グリッドをブロックレイアウトに変更 */
  .hero__content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  /* 動画コンテナを最初に表示 */
  .hero__movie-container {
    order: 1;
  }

  /* 日本語テキスト：左寄せで左にスペース */
  .hero__concept--jp {
    width: 100%;
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
    margin-left: 20px;
    margin-bottom: 30px;
    padding-left: 0;
    order: 2;
    display: block;
  }

  .hero__concept--jp .lead {
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
  }

  .hero__concept--jp .sub {
    font-size: 13px;
    margin: 15px 0 0 0;
    font-weight: 400;
  }

  /* 英語テキスト：右寄せで右にスペース */
  .hero__concept--en {
    width: 100%;
    text-align: right;
    font-size: 13px;
    line-height: 1.6;
    margin-right: 20px;
    margin: 30px 20px 0 0;
    opacity: 0.9;
    order: 3;
    display: block;
  }

  /* スクロール棒線 */
  .hero__scroll-nav {
    margin-top: 40px;
    padding-bottom: 20px;
    width: calc(100% - 40px);
    border-bottom: 1px solid #6A291D;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  .hero__scroll-menu {
    display: none;
  }

  .hero__site-name {
    display: none;
  }

  /* 矢印と SCROLL テキスト */
  .hero__scroll-right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
  }

  .hero__scroll-right .arrow {
    display: inline-block;
    animation: arrowMove 1.6s ease-in-out infinite;
  }

  .sp-menu-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    background: #7a3d2b;
    color: #fff;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 14px;
  }

} /* ← 最後の閉じ */
