@charset "UTF-8";

/*---------------------------------------------
    mv（集合写真1枚。頭が切れないよう配置）
---------------------------------------------*/
.mv {
  position: relative;
  width: 100%;
  /* ヘッダー(80px)が流れに入るので、header+MVで画面ぴったりに */
  height: calc(100vh - 80px);
  min-height: 480px;
  overflow: hidden;
  background: #eef6f4;
}
.mv-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 上端(頭)を確実に残す。下(脚)側をトリミング */
  object-position: center 22%;
}
/* キャッチ可読性のためのスクリム（下側だけ軽く暗く。顔＝上部は明るいまま） */
.mv::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.18) 32%, rgba(0, 0, 0, 0) 58%);
}
/* スマホ等の縦長画面では横広の集合写真がcoverだと両端の人が切れるため、
   写真全体を表示して3人とも切らない */
@media screen and (max-width: 767px) {
  .mv {
    height: auto;
    min-height: 0;
    background: none;
  }
  .mv-photo {
    position: static;
    height: auto;
  }
}
.mv-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  padding: 0;
}
.mv-txt {
  max-width: 680px;
  color: #fff;
}
.mv-label {
  display: inline-block;
  background: #4DB6AC;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.mv-catch {
  /* 画面の高さに応じて自動縮小（縦が短いノートPCで顔にかぶらないように） */
  font-size: clamp(3.4rem, 5.2vh, 5.6rem);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}
.mv-catch br { display: block; }
.mv-sub {
  font-size: clamp(1.4rem, 2vh, 1.9rem);
  color: #fff;
  line-height: 1.7;
  margin-bottom: 40px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.mv-btn a { margin: 0; }
/* 縦が短い画面（例：1366×768ノートPC）：下端から少し持ち上げ、フォント・余白を最適化 */
@media screen and (max-height: 820px) {
  .mv-inner { padding-bottom: 5vh; }
  .mv-label { margin-bottom: 5px; }
  .mv-catch {
    font-size: clamp(3.4rem, 5.2vh, 5.2rem);
    margin-bottom: 8px;
  }
  .mv-sub {
    font-size: clamp(1.35rem, 1.9vh, 1.8rem);
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .mv-catch {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    height: auto;
    min-height: 0;
  }
  .mv-inner {
    padding: 0 0 16px;
  }
  .mv-txt {
    max-width: 100%;
  }
  .mv-label {
    font-size: 1.0rem;
    padding: 3px 12px;
    margin-bottom: 8px;
  }
  .mv-catch {
    font-size: 1.9rem;
    line-height: 1.35;
    margin-bottom: 6px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  }
  .mv-sub {
    font-size: 1.1rem;
    line-height: 1.55;
    margin-bottom: 0;
  }
}

/*---------------------------------------------
    about section
---------------------------------------------*/
.about-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ecf7f4 0%, #e1f2ee 100%);
}
.about-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 182, 172, 0.16) 0%, rgba(77, 182, 172, 0) 70%);
  z-index: 0;
}
.about-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.10) 0%, rgba(245, 166, 35, 0) 70%);
  z-index: 0;
}
.about-section .inner {
  position: relative;
  z-index: 1;
}
.about-content {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .about-content {
    flex-direction: column;
    gap: 32px;
  }
}
.about-img {
  flex: 0 0 48%;
}
.about-img img {
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.about-txt {
  flex: 1;
}
.about-txt p {
  font-size: 1.6rem;
  line-height: 2.0;
  margin-bottom: 20px;
}
.about-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}
.keyword {
  display: inline-block;
  background: #f5f5f0;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #4DB6AC;
  border: 2px solid #e8f5f3;
}
.keyword i {
  margin-right: 6px;
}
.about-btn {
  margin-top: 16px;
}
.about-btn a {
  width: 220px;
  height: 48px;
  line-height: 48px;
  font-size: 1.5rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .about-btn a {
    margin: 0 auto;
  }
}

/*---------------------------------------------
    movie section（窓フレーム）
---------------------------------------------*/
.movie-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fcecdc 0%, #f7dcc2 100%);
}
.movie-window {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  border: 10px solid #fff;
  border-radius: 240px 240px 22px 22px;
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
  background: #fff;
  line-height: 0;
}
.movie-window video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* 動画まわりの装飾：サイドに縦長写真 */
.movie-section .inner {
  position: relative;
  z-index: 1;
}
.movie-photos .movie-side {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* 窓(640px)を除いた片側スペースに収まるよう可変。最大320px、動画とは常に余白を確保 */
  width: min(320px, calc((100vw - 640px) / 2 - 32px));
  aspect-ratio: 320 / 600;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  z-index: 0;
}
.movie-photos .movie-side-l { left: 16px; }
.movie-photos .movie-side-r { right: 16px; }
/* ブレイクポイント（タブレット/スマホ）では横幅が足りないので非表示 */
@media screen and (max-width: 1024px) {
  .movie-photos { display: none; }
}
.movie-tag {
  position: absolute;
  top: 30px;
  right: 18px;
  z-index: 3;
  background: #F5A623;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 8px 18px;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  line-height: 1.4;
}
.movie-tag::before {
  content: "\f024";
  font-family: FontAwesome;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .movie-window {
    max-width: 360px;
    border-width: 8px;
    border-radius: 160px 160px 18px 18px;
  }
}

/*---------------------------------------------
    style section (3 cards)
---------------------------------------------*/
.style-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fdf1e3 0%, #fae6d2 100%);
}
.style-section .inner {
  max-width: 1280px;
}
.style-list {
  display: flex;
  gap: 36px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .style-list {
    flex-direction: column;
    gap: 24px;
  }
}
.style-card {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.style-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.style-num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: "Quicksand", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  color: rgba(77, 182, 172, 0.15);
  line-height: 1;
  z-index: 1;
}
.style-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
}
.style-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.style-name {
  font-size: 2.0rem;
  font-weight: 700;
  padding: 20px 24px 8px;
  color: #333;
}
.style-name span {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  color: #4DB6AC;
  margin-top: 4px;
}
.style-desc {
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 0 24px 24px;
  color: #666;
}

/*---------------------------------------------
    usp section
---------------------------------------------*/
.usp-section {
  padding: 60px 0;
}
.usp-box {
  background: linear-gradient(135deg, #4DB6AC 0%, #3d9e95 100%);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 32px rgba(77, 182, 172, 0.25);
}
.usp-label {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 8px;
  opacity: 0.9;
}
.usp-amount {
  font-family: "Quicksand", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.usp-amount strong {
  font-size: 5.6rem;
  letter-spacing: 0.02em;
}
.usp-amount span {
  font-size: 2.0rem;
}
.usp-compare {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.usp-compare strong {
  font-size: 2.8rem;
  color: #FFE082;
}
.usp-note {
  font-size: 1.3rem;
  opacity: 0.8;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .usp-box {
    padding: 36px 24px;
  }
  .usp-amount strong {
    font-size: 4.2rem;
  }
  .usp-compare {
    font-size: 1.6rem;
  }
  .usp-compare strong {
    font-size: 2.2rem;
  }
}

/*---------------------------------------------
    support section
---------------------------------------------*/
.support-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #e9f6f2 0%, #eff9f6 100%);
}
.support-section::before {
  content: "";
  position: absolute;
  top: -130px;
  left: -110px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 182, 172, 0.13) 0%, rgba(77, 182, 172, 0) 70%);
  z-index: 0;
}
.support-section .inner {
  position: relative;
  z-index: 1;
}
.support-list {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .support-list {
    flex-direction: column;
    gap: 24px;
  }
}
.support-item {
  flex: 1;
  text-align: center;
  padding: 8px 8px 24px;
  background: #fff;
  border-radius: 16px;
  border: 2px solid #f0f0f0;
  transition: border-color 0.3s;
}
.support-item:hover {
  border-color: #4DB6AC;
}
.support-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(77, 182, 172, 0.1) 0%, rgba(245, 166, 35, 0.08) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.support-icon i {
  font-size: 2.8rem;
  color: #4DB6AC;
}
.support-photo {
  margin: 0 0 16px;
  border-radius: 12px;
  overflow: hidden;
}
.support-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.support-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}
.support-desc {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #666;
  text-align: left;
  padding: 0 8px;
}

/*---------------------------------------------
    facility section（CloudCarousel）
---------------------------------------------*/
.facility-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fdf1e3 0%, #f9e4cf 100%);
}
.facility-section .inner {
  max-width: 1320px;
}
.facility-carousel {
  position: relative;
  width: 100%;
  max-width: 1280px;
  height: 390px;
  margin: 0 auto;
}
.facility-carousel img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  will-change: left, top, width, opacity;
  -webkit-user-select: none;
  user-select: none;
  /* 位置・サイズ・不透明度はJSで制御 */
}
@media screen and (max-width: 767px) {
  .facility-carousel {
    height: 200px;
  }
}

/*---------------------------------------------
    pace section
---------------------------------------------*/
.pace-section {
  padding: 80px 0;
}
.pace-content p {
  font-size: 1.6rem;
  line-height: 2.0;
  text-align: center;
  margin-bottom: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.pace-points {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .pace-points {
    flex-wrap: wrap;
    gap: 16px;
  }
}
.pace-point {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 28px 16px;
  background: #fff;
  border-radius: 12px;
  border: 2px solid #e8f5f3;
}
@media screen and (max-width: 767px) {
  .pace-point {
    flex: 0 0 calc(50% - 8px);
  }
}
.pace-point i {
  font-size: 2.8rem;
  color: #4DB6AC;
  margin-bottom: 12px;
  display: block;
}
.pace-point p {
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}
.pace-point strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}
.pace-point span {
  font-size: 1.2rem;
  color: #999;
}

/*---------------------------------------------
    flow section（ご利用までの流れ）
---------------------------------------------*/
.flow-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #e3f3ef 0%, #d7ede7 100%);
}
.flow-lead {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
  color: #4DB6AC;
  margin-bottom: 40px;
}
.flow-list {
  max-width: 680px;
  margin: 0 auto;
}
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 24px 32px;
  margin-bottom: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  position: relative;
}
.flow-body {
  flex: 1;
}
.flow-desc {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #666;
  margin-top: 6px;
}
.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -27px;
  left: 52px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #4DB6AC;
  z-index: 1;
}
.flow-num {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4DB6AC 0%, #3d9e95 100%);
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-step h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 767px) {
  .flow-step {
    padding: 20px 24px;
    gap: 18px;
  }
  .flow-step h3 {
    font-size: 1.5rem;
  }
  .flow-step:not(:last-child)::after {
    left: 44px;
  }
}
