/* ========================================
   HOSPITALITY - Styles
   PC: 1440px / SP: 375px
======================================== */

/* ---------- リセット・共通 ---------- */
.hosp-hero,
.hosp-lead,
.hosp-section,
.hosp-pickup,
.hosp-cards,
.hosp-cta {
  box-sizing: border-box;
}

.hosp-hero *,
.hosp-lead *,
.hosp-section *,
.hosp-pickup *,
.hosp-cards *,
.hosp-cta * {
  box-sizing: border-box;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- フェードイン ---------- */
.fade-in-elem {
  opacity: 0;
  transform: translateY(1.5em);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-elem.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- ユーティリティ ---------- */
.pc-only {
  display: inline;
}

.sp {
  display: none;
}

/* ========================================
   ヒーローセクション
======================================== */
.hosp-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hosp-hero__grid {
  width: 100%;
}

.hosp-hero__col {
  overflow: hidden;
}

.hosp-hero__col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
}

/* PC: 1〜3列目 上段・下段で6枚 */
.hosp-hero__col--1 { grid-column: 1; grid-row: 1; }
.hosp-hero__col--2 { grid-column: 2; grid-row: 1; }
.hosp-hero__col--3 { grid-column: 3; grid-row: 1; }
.hosp-hero__col--4 { grid-column: 1; grid-row: 2; }
.hosp-hero__col--5 { grid-column: 2; grid-row: 2; }
.hosp-hero__col--6 { grid-column: 3; grid-row: 2; }

.hosp-hero__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0.6em;
  color: #fff;
  white-space: nowrap;
}

.hosp-hero__title-line {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
}

.hosp-hero__title-text {
  font-family: "Cormorant SC";
  font-size: clamp(1.5rem, 2.78vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  margin: 0;
}

/* ========================================
   リードセクション
======================================== */
.hosp-lead {
  padding: clamp(3rem, 5.56vw, 5rem) 1rem clamp(3rem, 5.56vw, 5rem);
  text-align: center;
  background: #fff;
}

.hosp-lead__inner {
  max-width: 50rem;
  margin: 0 auto;
}

.hosp-lead__heading {
  font-family: "Noto Serif JP";
  font-size: clamp(1.125rem, 1.53vw, 1.375rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #303030;
  margin: 0 0 2rem;
}

.hosp-lead__body {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}

.hosp-lead__body p {
  font-family: "Noto Serif JP";
  font-size: clamp(0.8125rem, 0.97vw, 0.875rem);
  font-weight: 400px;
  letter-spacing: 0.03em;
  line-height: 1.9;
  color: #303030;
  margin: 0;
}

/* ========================================
   セクション共通（PHOTOGRAPHER / HAIR&MAKE）
======================================== */
.hosp-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: normal;
  margin-top: 80px;
  background: #f4f4f4;
}

.hosp-section__image-block {
  position: relative;
  overflow: hidden;
}

.hosp-section__image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hosp-section__image-label {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-family: "Cormorant SC";
  font-size: 1.5vw;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-align: center;

  white-space: normal;
}

.hosp-section__heading {
  font-family: "Noto Serif JP";
  font-size: clamp(1.0625rem, 1.46vw, 1.3125rem);
  padding: 0 10vw;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #303030;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  align-items: end;
}

.hosp-section__text {
  font-family: "Noto Sans JP";
  font-size: clamp(0.8125rem, 0.9vw, 0.8125rem);
  width: 27vw;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 2;
  color: #303030;
  margin: 0;
}

/* HAIR&MAKE: 画像を右に */
.hosp-hairmake > * {
  direction: ltr;
}

.hosp-section__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 3vw;
}

/* ========================================
   PICK UP（フォトグラファー）
======================================== */
.hosp-photographer {
  background: #f4f4f4;
}
.hosp-pickup {
  background: #f4f4f4;
}

.hosp-pickup__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid #e0dbd4;
}

.hosp-pickup__block {
  padding: clamp(2rem, 3.47vw, 3.125rem) clamp(2rem, 4.17vw, 3.75rem);
  background: #D9D9D9;
}

.hosp-pickup__block:last-child {
  border-right: none;
}

.hosp-pickup__label {
  font-family: "Cormorant SC";
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #555;
  margin: 0 0 0.75em;
  font-weight: 600;
}

.hosp-pickup__desc {
  font-family: "Noto Sans JP";
  text-align: center;
  font-size: clamp(0.75rem, 0.9vw, 0.8125rem);
  letter-spacing: 0.03em;
  line-height: 1.8;
  color: #000;
  margin: 0 0 1.5em;
}

/* スタッフリスト */
.hosp-staff-list {
  display: flex;
  gap: 1.25em;
}

.hosp-staff-item {
  flex: 1;
}

.hosp-staff-item img {
  width: 100%;
  object-fit: cover;
  object-position: top;
  margin-bottom: 0.5em;
}

.hosp-staff-item__name {
  font-family: 'Ek Mukta', sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  color: #000;
  text-align: center;
  margin: 0;
}

/* Before / After */
.hosp-before-after {
  display: flex;
  align-items: center;
  gap: 1em;
}

.hosp-before-after__item {
  flex: 1;
}

.hosp-before-after__item img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 0.4em;
}

.hosp-before-after__label {
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: #555;
  text-align: center;
  margin: 0;
}

.hosp-before-after__arrow {
  font-size: 1rem;
  color: #303030;
  flex-shrink: 0;
  width: 1vw;
}

/* ========================================
   HAIR&MAKE PICK UP
======================================== */
.hosp-hairmake__pickup {
  margin-top: 2em;
  background: #D9D9D9;
  padding: 1.5em;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: space-around;
  width: 100%;
}

.hosp-hairmake__pickup .hosp-pickup__label {
  display: block;
}

.hosp-hairmake__pickup .hosp-pickup__desc {
  grid-column: 1;
  grid-row: 2;
  margin-bottom: 0;
}

.hosp-hairmake__pickup-img {
  width: 50%;
  position: relative;
  padding: 1vw;
}

.hosp-hairmake__pickup-img img {
  width: 100%;
  object-fit: cover;
}
.hosp-hairmake__pickup-img .image__ex {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.hosp-hairmake__pickup-img .image__ex {
  color: #fff;
  font-size: 10px;
  font-family: "Noto Sans JP";
  font-weight: 400;
}

/* ========================================
   3カラムカード
======================================== */
.hosp-cards {
  background: #fff;
  padding: clamp(3rem, 5.56vw, 5rem) clamp(1rem, 3.47vw, 3.125rem);
}

.hosp-cards__inner {
  display: flex;
  gap: clamp(1rem, 1.74vw, 1.5625rem);
  margin: 0 auto;
}

.hosp-card {
  display: flex;
  overflow: hidden;
  height: 18vw;
}

.hosp-card__image {
  position: relative;
  aspect-ratio: 4 / 1;
  overflow: hidden;
}

.hosp-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hosp-card__image-label {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);

color: #fff;
font-size: 1.2vw;
font-family: "Cormorant SC";
letter-spacing: 0.2em;
white-space: nowrap; /* ←後で説明 */
font-weight: 600;
text-align: center;
line-height: 1.5;
}

.hosp-card__body {
  padding: 1.25em;
}

.hosp-card__heading {
  font-size: 1.2vw;
  font-family: "Noto Serif JP";
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #303030;
  margin: 0 0 0.75em;
  text-align: center;
}

.hosp-card__text {
  font-size: clamp(0.75rem, 0.83vw, 0.75rem);
  font-family: "Noto Sans JP";
  letter-spacing: 0.03em;
  line-height: 1.9;
  color: #303030;
  margin: 0;
}

.small {
  font-size: .6vw;
}

/* ========================================
   CTAボタン
======================================== */
.hosp-cta {
  background: #fff;
  text-align: center;
  padding: clamp(2rem, 3.47vw, 3.125rem) 1rem clamp(3.5rem, 6.25vw, 5.625rem);
}

.hosp-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #47382A;
    color: #fff !important;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.1em;
    border-radius: 20px;
    padding: 0;
    width: 400px;
    height: 61px;
    transition: opacity 0.3s;
}

.hosp-cta__btn:hover {
  background: #4e4038;
  opacity: 0.9;
}

.top-link {
  text-align: center;
  margin-bottom: 40px;
}
.top-link a p {
  font-size: 1.2em;
  font-family: 'YuMincho', "Hiragino Mincho ProN", 'Noto Serif JP', serif;
  letter-spacing: 0.03em;
  line-height: 1;
  color: #303030;
  margin: 0;
}
.top-link a p:before {
  vertical-align: bottom;
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url(/wp-content/themes/arluis/assets/images/index/renewal/arrow-brown.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  margin-right: .5em;
}

/* ========================================
   SP対応 (max-width: 767px)
======================================== */
@media (max-width: 767px) {
  /* ユーティリティ */
  .pc-only {
    display: none;
  }

  .sp {
    display: auto;
  }

  /* ヒーロー */
  .hosp-hero__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 32vw);
  }

  .hosp-hero__col--1 { grid-column: 1; grid-row: 1; }
  .hosp-hero__col--2 { grid-column: 2; grid-row: 1; }
  .hosp-hero__col--3 { grid-column: 1; grid-row: 2; }
  .hosp-hero__col--4 { grid-column: 2; grid-row: 2; }
  .hosp-hero__col--5 { grid-column: 1; grid-row: 3; }
  .hosp-hero__col--6 { grid-column: 2; grid-row: 3; }

  .hosp-hero__title-text {
    font-size: 11vw;
  }

  .hosp-hero__title-line {
    font-size: 4.5vw;
  }

  /* リード */
  .hosp-lead {
    padding: 5rem 1.5rem;
  }

  .hosp-lead__heading {
    font-size: 1.7rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
  }

  .hosp-lead__body p {
    font-size: 1rem;
    line-height: 2;
  }

  /* セクション共通 */
  .hosp-section {
    background: #F4F4F4;
    padding-top: 40px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    margin-top: 0;
  }

  .hosp-section__image-block {
    aspect-ratio: 4 / 3;
    width: 100%;
  }

  .hosp-section__image-label {
    font-size: 6vw;
    text-align: center;
    line-height: 2;
  }

  .hosp-section__content {
    padding: 4rem 1.5rem;
  }

  .hosp-section__role-en {
    display: block;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    color: #999;
    margin: 0 0 0.75em;
  }

  .hosp-section__heading {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 1em;
    padding: 0;
  }

  .hosp-section__text {
    font-size: 1.1rem;
    line-height: 1.9;
    width: 100%;
  }

  .hosp-before-after__arrow {
    width: 3vw;
  }

  /* HAIR&MAKE: SP は direction リセット */
  .hosp-hairmake {
    direction: ltr;
    background: #fff;
    padding-top: 100px;
  }

  .hosp-hairmake .hosp-section__image-block {
    order: 0;
  }

  .hosp-hairmake .hosp-section__content {
    order: 1;
  }

  /* PICK UP（スタッフ/Before-After） */
  .hosp-pickup__inner {
    grid-template-columns: 1fr;
    border-top: none;
  }

  .hosp-pickup__block {
    padding: 2rem 0;
    margin: 0 20px 30px 20px;
    border-right: none;
  }

  .hosp-pickup__label {
    font-size: 1rem;
  }

  .hosp-pickup__desc {
    font-size: .8rem;
    font-weight: 400;
    display: block;
    margin-bottom: 20px!important;
  }
  .hosp-staff-item__name {
    font-size: .7rem;
  }
  .hosp-staff-list {
    gap: 0.75em;
  }

  .hosp-before-after {
    margin: 0 20px;
  }

  .hosp-hairmake__pickup {
    grid-template-columns: 1fr auto;
    padding: 3rem;
    flex-wrap: wrap;
  }

  .hosp-hairmake__pickup-img {
    width: 100%;
  }

  /* 3カラムカード */
  .hosp-cards {
    padding: 3rem 1.5rem;
    background: #f4f4f4;
  }

  .hosp-cards__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    flex-wrap: wrap;
  }

  .hosp-card {
    height: auto;
    width: 100%;
  }

  .hosp-card__body {
    padding: 0;
    padding-left: 15px;
    flex: 1;
  }

  .hosp-card__image {
    aspect-ratio: 1 / 1;
    flex: 1;
  }

  .hosp-card__image-label {
    font-size: 4.4vw;
  }

  .hosp-card__heading {
    font-size: 1.3rem;
  }

  .hosp-card__text {
    font-size: 1rem;
  }

  .small {
  font-size: 2.5vw;
}

.hosp-hairmake__pickup-img .image__ex {
  bottom: 10px;
  right: 10px;
}

  /* CTA */
  .hosp-cta {
    padding: 4rem 1.5rem;
  }

  .hosp-cta__btn {
    padding: 1.5em 3em;
    font-size: 1.3rem;
    border-radius: 1.4em;
    width: auto;
  }
}

.footGood__img img {
  width: auto!important;
  margin: 0 auto;
}

.scrolled.fadeIn .footer__bnr.sp {
  display: none!important;
}
