@charset "UTF-8";
/*********************************************************************

	トップページ SERVICE（統合版）＋フッター物件案内
	2026-07 SERVICE-01/02/03 を1つのレンタルスペース紹介に統合

*********************************************************************/

/* SERVICEセクション
----------------------------------------------*/
.homeService {
  background: linear-gradient(180deg, #1c1c1c 0%, #380000 18%, #380000 82%, #1c1c1c 100%);
  color: #fff;
  padding: 0 0 3em;
}

.homeService .serviceText {
  max-width: 720px;
  margin: 0 auto 1.2em;
}

/* 利用シーンカード */
.serviceScene {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 2.5em 0 0;
  padding: 0;
}

.serviceScene__card {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.serviceScene__card:hover {
  border-color: rgba(222, 156, 8, 0.7);
  transform: translateY(-3px);
}

.serviceScene__image {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.serviceScene__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.serviceScene__card:hover .serviceScene__image img {
  transform: scale(1.04);
}

.serviceScene__body {
  padding: 1.2em 1.4em 1.5em;
}

.serviceScene__title {
  font-size: 1.15rem;
  line-height: 1.3;
  margin: 0 0 0.7em;
  padding: 0 0 0.5em;
  border-bottom: 2px solid #de9c08;
  font-feature-settings: "palt";
  font-family: 'Cardo', "Sawarabi Mincho", "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  -webkit-font-smoothing: antialiased;
}

.serviceScene__text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #eaeaea;
  margin: 0;
}

.serviceScene__cta {
  padding: 2.5em 0 1.5em;
}

/* SERVICE下の関連ページリンク */
.serviceSubLinks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 2em;
  padding: 0;
}

.serviceSubLinks li {
  margin: 0;
}

.serviceSubLinks a {
  display: inline-block;
  border: 1px solid rgba(222, 156, 8, 0.7);
  border-radius: 50px;
  padding: 0.5em 1.3em;
  font-size: 0.85rem;
  color: #f5d9a0;
  background: rgba(0, 0, 0, 0.4);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.serviceSubLinks a:hover {
  background: rgba(222, 156, 8, 0.25);
  color: #fff;
}

/* ACCESSセクションのアクセス詳細ページへのリンク */
.accessDetailLink {
  padding: 1.5em 0 0.5em;
}

@media (min-width: 768px) {

  .serviceScene {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .serviceScene__title {
    font-size: 1.3rem;
  }

}

@media (min-width: 1280px) {

  .serviceScene {
    gap: 30px;
  }

}

/* フッター物件案内 KUROMON LIFE（背景スライドショー）
   .main_img のクロスフェードは style.css の @keyframes anime を利用
----------------------------------------------*/
.footerLife {
  position: relative;
  /* 子要素の z-index をこのセクション内で完結させる（.main_img の z-index:-1 対策） */
  isolation: isolate;
  overflow: hidden;
  padding: 4em 1.5em;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

/* 背景画像の上に薄い暗幕を敷いて文字を読みやすく */
.footerLife::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 15, 12, 0.5);
  z-index: 0;
}

.footerLife > h2,
.footerLife > p {
  position: relative;
  z-index: 1;
}

.footerLife__title {
  font-size: 1.8em;
  line-height: 1.3;
  margin: 0 0 1.2em;
  letter-spacing: -1px;
  font-feature-settings: "palt";
  font-family: 'Cardo', "Sawarabi Mincho", "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  -webkit-font-smoothing: antialiased;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.footerLife__title small {
  display: block;
  font-size: 0.5em;
  letter-spacing: 0;
  margin-top: 0.6em;
}

.footerLife__button {
  margin: 0 0 2.5em;
}

.footerLife .u2Text {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  background: rgba(20, 15, 12, 0.35);
}

/* スライドショー画像（物件写真） */
.footerLife__image01 {
  background-image: url(/images/home/img_gtk01.jpg);
}

.footerLife__image02 {
  background-image: url(/images/home/img_gtk02.jpg);
}

.footerLife__image03 {
  background-image: url(/images/home/img_ub601.jpg);
}

.footerLife__image04 {
  background-image: url(/images/home/img_ub2f.jpg);
}

@media (min-width: 768px) {

  .footerLife {
    padding: 5em 2em;
  }

  .footerLife__title {
    font-size: 2.2em;
  }

}
