@charset "UTF-8";

/* セクションの余白 */
body.is-top .section-hero,
body.is-top .section-wellness,
body.is-top .section-stores,
body.is-top .section-banners {
  padding: 100px 0 0;
}
body.is-top .section-news {
  padding: 80px 0 0;
}

body.is-top .section-services {
  padding: 160px 0 0;
}

body.is-top .section-recruit {
  padding: 180px 0 0;
}

@media (max-width: 768px) {
  body.is-top .section-hero,
  body.is-top .section-news,
  body.is-top .section-wellness,
  body.is-top .section-services,
  body.is-top .section-recruit,
  body.is-top .section-banners,
  body.is-top .section-footer-visual {
    padding: 80px 0 0;
  }
  body.is-top .section-stores {
    padding: 60px 0 0;
  }
  body.is-top .section-services {
    padding: 86px 0 0;
  }
  body.is-top .section-recruit {
    padding: 100px 0 0;
  }
}

body.is-top .section-news__header,
body.is-top .section-stores__header {
  padding-left: 160px;
}
body.is-top .section-stores__header {
  padding-bottom: 56px;
}
body.is-top .section-services__header {
  padding-bottom: 60px;
}

@media (max-width: 768px) {
  body.is-top .section-news__header,
  body.is-top .section-stores__header {
    padding-left: 20px;
  }
  body.is-top .section-services__header {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 51px;
  }
  body.is-top .section-news__inner,
  body.is-top .section-stores__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* スライダーナビボタン表示 */
body.is-top .slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin: 20px 0;
}

body.is-top .slider-control {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #d0d2da;
  background-color: #fff;
  color: #24306b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* グローバルナビ */
.global-nav__item {
  color: #FFFFFF;
}

.-fixed .global-nav__item {
  color: #333;
}

.global-nav__item:last-child {
  background-color: rgb(255 255 255 / 0.2);
  border: #FFFFFF solid 1px;
  color: #FFFFFF;

}

.-fixed .global-nav__item:last-child {
  border: #D7DBE0 solid 1px;
    border-radius: 4px;
    padding: 11px 16px;
    color: #243590;

}

@media (max-width: 768px) {

  body.is-top .slider-controls {
    margin: 20px 0;
  }

  .global-nav__item:last-child {
    margin-top: 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #D7DBE0;
    padding: 0;

  }
}

/* Hero画像を上に持ってくる */
.header {
  height: 0;
}

/* =============================
   Hero画像 section
   ============================= */

body.is-top .section-hero {
  padding: 0;
  margin-top: 0;
}

body.is-top .section-hero__visual {
  margin-top: 0;
  position: relative;
}

body.is-top .section-hero__visual img {
  /* max-width: 1440px; */
  width: 100%;
  display: block;
  margin: 0 auto;
}

body.is-top .section-brand__inner {
  text-align: center;
}

body.is-top .section-brand__text {
  margin: 0 15px;
}

body.is-top .section-brand__text img {
  width: 100%;
}

@media (max-width: 768px) {
  body.is-top .section-brand {
    padding: 40px 0 0;
  }
}

/* =============================
   News section
   ============================= */

body.is-top .section-news__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    ". controls"
    "header list";
  column-gap: 80px;
}

body.is-top .section-news__header {
  grid-area: header;
  display: flex;
  flex-direction: column;
}

body.is-top .section-news__title {
  margin-bottom: 64px;
}

body.is-top .news-slider-controls {
  grid-area: controls;
  align-self: end;
  margin: -30px 80px 24px 0;
}

body.is-top .news-list {
  grid-area: list;
  display: flex;
  overflow: hidden;
}

body.is-top .news-item {
  width: 320px;
  margin-right: 40px;
}

body.is-top .news-item:last-child {
  margin-right: 0;
}

body.is-top .news-item__img img {
  width: 320px;
  height: 200px;
}

body.is-top .news-item__img,
body.is-top .news-item__date,
body.is-top .news-item__title,
body.is-top .news-item__excerpt {
  display: block;
}

body.is-top .news-item__date {
  font-size: 14px;
  line-height: 1.8;
  margin: 17px 0;
}

body.is-top .news-item__title {
  line-height: 1.7;
  margin-bottom: 15px;
}

body.is-top .news-item__excerpt {
  font-size: 14px;
  font-family: "Noto Sans JP";
  line-height: 1.8;
  color: #707070;
}

@media (max-width: 768px) {

  body.is-top .section-news__inner {
    display: flex;
    flex-direction: column;
  }

  body.is-top .section-news__header {
    display: contents;
  }

  body.is-top .section-news__title {
    order: 1;
    margin-bottom: 0;
  }

  body.is-top .news-slider-controls {
    order: 2;
    margin: -30px 0 20px 0;

  }

  body.is-top .news-list {
    order: 3;
    margin-bottom: 40px;
    overflow: hidden;
  }

  body.is-top .c-more-link {
    order: 4;
    margin-top: 0;
  }

  body.is-top .news-item {
    width: 300px;
    margin-right: 20px;
  }

  body.is-top .news-item__date {
    font-size: 14px;
    line-height: 1.8;
    margin: 17px 0 15px;
  }

  body.is-top .news-item__img img {
    width: 300px;
    height: 187px;
  }

  body.is-top .news-item__excerpt {
    font-size: 12px;
  }

}

/* =============================
   Wellness section
   ============================= */

body.is-top .section-wellness__inner {
  background-image: url('../img/top/wellness-bg-pc.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  padding: 100px 0 128px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  grid-template-rows: auto auto;
  grid-template-areas:
    "heading links"
    "circles details";
}

/* 背景の大きな Wellness 文字 */
body.is-top .wellness-bg-word {
  position: absolute;
  top: 120px;
  right: 20px;
  font-size: 240px;
  line-height: 0.1;
  font-family: "EB Garamond";
  color: #FFFFFF;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* 左上：見出し */
body.is-top .wellness-heading {
  grid-area: heading;
  color: #15396b;
}

body.is-top .wellness-title {
  margin-left: 160px;
}

body.is-top .wellness-title img {
  width: 468px;
}

body.is-top .wellness-lead {
  max-width: 600px;
  margin-top: 62px;
  margin-left: 160px;
}
body.is-top .wellness-lead span{
  display:block;
}
body.is-top .wellness-lead span +span{
  margin-top: 1em;
}

/* 右上：カードリンク4つ */
body.is-top .wellness-links {
  grid-area: links;
  display: flex;
  justify-content: flex-end;
  padding-right: 160px;
}

body.is-top .wellness-links__list {
  list-style: none;
  margin: 100px 0 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 400px;
  align-items: flex-end;
}

body.is-top .wellness-links__item {
  width: 400px;
}

/* 右下：説明テキスト4つ */
body.is-top .wellness-details {
  grid-area: details;
  margin: 120px 160px 0 auto;
  padding-left: 60px;
}

body.is-top .wellness-detail {
  margin-bottom: 32px;
}

body.is-top .wellness-detail:last-child {
  margin-bottom: 0;
}

body.is-top .wellness-detail__title {
  color: #FFF;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.8;
  border-bottom: 1px solid #FFF;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

body.is-top .wellness-detail__en {
  font-size: 32px;
  line-height: 1;
  font-family: "EB Garamond";
  margin-right: 12px;
}

body.is-top .wellness-detail__ja {
  font-family: "Noto Sans JP";
}

body.is-top .wellness-detail__text {
  font-family: "Noto Sans JP";
  line-height: 1.8;
  color: #FFF;
}

@media (max-width: 768px) {

  body.is-top .section-wellness__inner {
    background-color: #1E4983;
    background-image: url('../img/top/wellness-bg-sp.jpg');
    background-size: cover;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "heading"
      "links"
      "circles"
      "details";
    padding: 120px 0 85px;
  }

  body.is-top .wellness-title img {
    width: 83%;
    position: relative;
    z-index: 1;
  }

  body.is-top .wellness-bg-word {
    top: 60px;
    right: 0;
    font-size: 96px;
  }

  body.is-top .wellness-heading {
    text-align: left;
  }

  body.is-top .wellness-title {
    margin-left: 20px;
  }

  body.is-top .wellness-lead {
    width: calc(100% - 40px);
    font-size: 14px;
    line-height: 1.8;
    margin: 36px 20px 54px;
  }

  body.is-top .wellness-links {
    display: block;
    width: 100%;
    padding: 0 45px 0 20px;
    box-sizing: border-box;
  }

  body.is-top .wellness-links__list {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 10px;
  }

  body.is-top .wellness-links__item {
    width: 100%;
  }

  body.is-top .wellness-details {
    margin: 440px 20px 0;
    font-size: 13px;
    padding-left: 0;
  }

  body.is-top .wellness-detail__title {
    font-size: 18px;
    padding-bottom: 6px;
    margin-bottom: 14px;
  }

  body.is-top .wellness-detail__en {
    font-size: 28px;
    line-height: 1.1;
  }

  body.is-top .wellness-detail__ja {
    font-size: 14px;
    line-height: 2;
  }

  body.is-top .wellness-detail__text {
    font-size: 12px;
    line-height: 1.8;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {

  body.is-top .section-wellness__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "heading"
      "links"
      "circles"
      "details";
    padding: 80px 0 100px;
  }

  body.is-top .wellness-title {
    margin-top: 150px;
    margin-left: 60px;
  }

  body.is-top .wellness-title img {
    width: 400px;
  }

  body.is-top .wellness-lead {
    width: calc(100% - 120px);
    margin-left: 60px;
    margin-right: 60px;
    max-width: 600px;
  }

  body.is-top .wellness-links {
    padding-right: 60px;
    padding-left: 60px;
    margin-top: 40px;
  }

  body.is-top .wellness-links__list {
    margin-top: 0;
  }

  body.is-top .wellness-links__item {
    width: 100%;
    max-width: 400px;
  }

  body.is-top .wellness-details {
    width: 50%;
    margin: 60px 60px 0;
    padding-left: 0;
    justify-self: end;
  }
}

/* ===========================
   Store Information
=========================== */

body.is-top .stores__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 62px 32px;
  margin: 0 160px;
}

/* カード本体 */
body.is-top .stores__item {
  background-color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
body.is-top .stores__item  a{
  display:block;
}


/* 画像 */
body.is-top .stores__image{
border-radius: 10px;
overflow: hidden;
aspect-ratio:352/240;
}

body.is-top .stores__image img {
  width: 100%;
  height:100%;
  object-fit: cover;
  display: block;
}
body.is-top .stores__item  a:hover .stores__image img{
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* テキスト部 */
body.is-top .stores__body {
  padding: 21px 0 0;
}

body.is-top .stores__name {
  font-size: 20px;
  line-height: 1.2;
  font-weight: normal;
  margin: 0 0 20px;
  text-align: center;
}

body.is-top .stores__desc {
  font-size: 14px;
  font-family: "Noto Sans JP";
  line-height: 1.8;
  color: #707070;
}

/* SPナビはPCでは非表示 */
body.is-top .stores-slider-controls {
  display: none;
}

@media (max-width: 768px) {

  body.is-top .stores__body {
    padding: 17px 0 0;
  }

  body.is-top .stores__name {
    margin: 0 0 16px;
  }

  body.is-top .section-stores__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
  }

  body.is-top .section-stores__title-en {
    font-size: 32px;
    line-height: 1.3;
  }

  /* カードを横並びのスライダーにする */
  body.is-top .stores__list {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE, Edge */
    margin: 0;
  }

  /* Webkit系ブラウザ（Chrome, Safari）のスクロールバーを非表示 */
  body.is-top .stores__list::-webkit-scrollbar {
    display: none;
  }

  body.is-top .stores__item {
    flex: 0 0 90%;
    scroll-snap-align: start;
  }



  body.is-top .stores-slider-controls {
    display: flex;
  }
}

/* ===========================
   Service section
=========================== */

body.is-top .section-services__title {
  padding-left: 160px;
}

body.is-top .services-layout {
  position: relative;
  display: block;
}

/* 右側の写真エリア */
body.is-top .services-visual {
  position: absolute;
  top: -175px;
  right: 0;
  width: 52%;
  z-index: 2;
}

body.is-top .services-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 32px 0 0 32px;
}

/* 左側の青い帯（グラデ＋角丸） */
body.is-top .services-panel {
  width: 67%;
  padding: 58px 0 104px 160px;
  background: linear-gradient(180deg, #6794D3 0%, #1E4983 100%);
  position: relative;
  z-index: 1;
  border-radius: 0 32px 32px 0;
}

body.is-top .services-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.is-top .services-links__item + .services-links__item {
  margin-top: 10px;
}

/* 共通カードリンクの調整 */
body.is-top .c-card-link {
  margin-left: 0;
}

@media (max-width: 768px) {

  body.is-top .section-services__title {
    padding-left: 0;
  }

  body.is-top .services-visual {
    position: relative;
    width: auto;
    top: 0;
    z-index: 2;
    margin-left: 20px;
  }

  body.is-top .services-panel {
    width: auto;
    margin: -100px 20px 0 0;
    padding: 156px 20px 80px;
    border-radius: 0 32px 32px 0;
    z-index: 1;
  }

  body.is-top .c-card-link {
    max-width: none;
    width: 100%;
    min-height: 56px;
    line-height: 1.2;
    padding: 0 20px;
  }
}

/* ===========================
   Recruit section
=========================== */

body.is-top .recruit-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 260px;
  margin: 0 80px;
}

body.is-top .recruit-card__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/top/recruit-bg-pc.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* 中身 */
body.is-top .recruit-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 80px;
  padding: 218px 80px 40px;
}

body.is-top .recruit-card__header {
  flex-shrink: 0;
}

body.is-top .section-recruit__title .section-title__label-en,
body.is-top .section-recruit__title .section-title__label-ja {
  color: #FFF;
}

body.is-top .recruit-card__body {
  display: flex;
  align-items: end;
  gap: 40px;
  flex: 1;
  justify-content: space-between;
}

body.is-top .recruit-card__text {
  font-family: "Noto Sans JP";
  margin: 0 0 16px;
  max-width: 360px;
  flex: 1;
  color: #fff;
  line-height: 1.8;
}

body.is-top .recruit-card__cta {
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

/* 採用ボタン（楕円ボタン） */
body.is-top .recruit-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px 20px 32px;
  border: 1px solid #D7DBE0;
  border-radius: 999px;
  background-color: #FFF;
}

body.is-top .recruit-button__icon {
  color: #E39182;
}

@media (max-width: 768px) {

  body.is-top .recruit-card {
    margin: 0 20px;
  }

  body.is-top .recruit-card__bg {
    background-image: url('../img/top/recruit-bg-sp.jpg');
  }

  body.is-top .recruit-card__content {
    display: block;
    padding: 0 20px 20px;
  }

  body.is-top .recruit-card__header {
    margin-top: 179px;
  }

  body.is-top .section-recruit__title .section-title__label-en {
    font-size: 56px;
  }

  body.is-top .recruit-card__body {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 26px;
  }

  body.is-top .recruit-card__text {
    flex: 1;
    margin-top: 0;
    max-width: none;
    font-size: 12px;
    line-height: 1.8;
  }

  body.is-top .recruit-card__cta {
    margin-top: 0;
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
  }

  /* SPは丸ボタン寄りにデザイン変更 */
  body.is-top .recruit-button {
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
  }

  body.is-top .recruit-button__label {
    display: none;   /* ラベル非表示でアイコンだけにする */
  }

}
