@charset "UTF-8";
/* ===================================================================
CSS information

 file name  : homepage.css
 author     : Ability Consultant
 style info : TOPページ専用スタイル
              ascend準拠：MV / fp-phase-detail / about-section / access-section
=================================================================== */
/* ===================================================================
SCSS information

 file name  : _settings.scss
 author     : Ability Consultant
 style info : 楽天「HOTEL GEOMETIQ Osaka Umeda」共通変数・mixin
=================================================================== */
/* -----------------------------------------------------------
	レイアウト
----------------------------------------------------------- */
/* -----------------------------------------------------------
	カラー（ascendから踏襲）
----------------------------------------------------------- */
/* -----------------------------------------------------------
	フォント
----------------------------------------------------------- */
/* -----------------------------------------------------------
	mixin
----------------------------------------------------------- */
/* -----------------------------------------------------------
MV セクション（kv 2分割 + 中央コピー、1枚目のみ静的表示）
----------------------------------------------------------- */
.con_mv {
  position: relative;
  width: 100%;
  height: 475px;
  overflow: hidden;
  background-color: #1a1a1a;
}

.mv-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mv-slider__slide--split {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
}
.mv-slider__split-left, .mv-slider__split-right {
  display: table-cell;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.mv-slider__img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mv-slider__img-wrap img {
  width: 100%;
  height: 475px;
  object-fit: cover;
  display: block;
}

.mv-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  color: #ffffff;
  pointer-events: none;
}
.mv-copy__en {
  display: block;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  white-space: nowrap;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.7);
}
.mv-copy__jp {
  display: block;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.16em;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.7);
}

/* -----------------------------------------------------------
fullpage-sections（客室紹介ブロック・static表示）
----------------------------------------------------------- */
.section-gradient {
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
}

.fullpage-sections {
  position: relative;
  width: 100%;
  background-color: #f5f5f5;
}

.fp-content {
  padding: 64px 40px;
  background-color: transparent;
}
.fp-content + .fp-content {
  border-top: 1px solid #e6e6e6;
}

.fp-phase-detail {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: #262626;
}
.fp-phase-detail__thumbnail {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 32px;
  overflow: hidden;
  border-radius: 4px;
}
.fp-phase-detail__thumbnail-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.fp-phase-detail__header {
  margin-bottom: 16px;
}
.fp-phase-detail__title-en {
  font-family: "Lulo Clean", "Playfair Display", "Times New Roman", serif;
  font-size: 32px;
  color: #808080;
  letter-spacing: -0.04em;
  line-height: 1.4;
  margin: 0;
}
.fp-phase-detail__title-jp {
  display: block;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #a6a6a6;
  letter-spacing: 0.16em;
  margin-top: 4px;
}
.fp-phase-detail__text {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 2;
  color: #262626;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.fp-phase-detail__btn {
  margin-top: 2rem;
  display: inline-block;
  padding: 12px 32px;
  background-color: #000000;
  border-radius: 99px;
  color: #ffffff;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-decoration: none;
  transition: opacity .3s ease;
}
.fp-phase-detail__btn:hover {
  opacity: .7;
}

/* -----------------------------------------------------------
about-section（黒背景・テキスト中心レイアウト）
----------------------------------------------------------- */
.about-section {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #1a1a1a 0%, #262626 100%);
  color: #ffffff;
  padding: 80px 40px 100px;
  overflow: hidden;
}
.about-section__decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.about-section__decor-img {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
}
.about-section__decor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-section__decor-img--1 {
  top: 60px;
  right: 30px;
  width: 220px;
  height: 220px;
  opacity: .5;
}
.about-section__decor-img--2 {
  bottom: 35px;
  right: 110px;
  width: 240px;
  height: 160px;
  opacity: .25;
}
.about-section__decor-img--3 {
  top: 140px;
  left: 30px;
  width: 140px;
  height: 180px;
  opacity: .25;
}
.about-section__inner {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin: 0 auto;
}
.about-section__title {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 32px;
}
.about-section__title-text {
  display: flex;
  flex-direction: column;
}
.about-section__title-en {
  font-family: "Lulo Clean", "Playfair Display", "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin: 0;
}
.about-section__title-jp {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #e5e5e5;
  letter-spacing: 0.16em;
  margin-top: 6px;
}
.about-section__title-line {
  width: 96px;
  height: 1px;
  background-color: #818181;
}
.about-section__lead {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 28px;
}
.about-section__text {
  padding-top: 1rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #e5e5e5;
}
.about-section__buttons {
  margin-top: 32px;
}
.about-section__text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.about-section__text-link-icon {
  display: inline-block;
  width: 44px;
  height: 22px;
  border: 1px solid rgba(235, 235, 235, 0.5);
  border-radius: 99px;
  position: relative;
}
.about-section__text-link-icon::after {
  content: "→";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: #ffffff;
  line-height: 1;
}

/* -----------------------------------------------------------
access-section（白背景パネル・地図 + 詳細情報）
----------------------------------------------------------- */
.bg-gradation-area {
  width: 100%;
  height: 80px;
  background: linear-gradient(180deg, #262626 0%, rgba(38, 38, 38, 0) 100%);
}

.access-section {
  position: relative;
  width: 90%;
  max-width: 870px;
  margin: 175px auto;
}
.access-section__inner {
  display: table;
  table-layout: fixed;
  width: 100%;
  border-collapse: separate;
  border-spacing: 32px 0;
  margin: -32px;
}
.access-section__map {
  position: absolute;
  right: -3%;
  bottom: -35%;
  display: table-cell;
  width: unset;
  vertical-align: middle;
  z-index: 0;
}
.access-section__map-svg img {
  width: 600px;
  height: auto;
  display: block;
}
.access-section__content {
  position: relative;
  display: block;
  width: 50%;
  margin-left: 10%;
  z-index: 1;
}
.access-section__title {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.access-section__title-en {
  font-family: "Lulo Clean", "Playfair Display", "Times New Roman", serif;
  font-size: 32px;
  color: #808080;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.access-section__title-separator {
  display: inline-block;
  width: 16px;
  height: 1px;
  background-color: #808080;
  transform: rotate(120deg);
  margin: 0 .5rem;
}
.access-section__title-jp {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  color: #a6a6a6;
  letter-spacing: 0.16em;
  font-weight: 700;
}
.access-section__address {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #000000;
  margin-bottom: 12px;
}
.access-section__tel {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #000000;
  margin-bottom: 18px;
}
.access-section__tel-label {
  color: #808080;
  margin-right: 4px;
}
.access-section__divider {
  width: 100%;
  height: 1px;
  background-color: #c8c8c8;
  margin: 18px 0;
}
.access-section__parking-list {
  margin-bottom: 24px;
}
.access-section__parking-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #000000;
}
.access-section__parking-dot {
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  background-color: #625D20;
  border-radius: 50%;
}
.access-section__btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 10px 26px;
  background-color: #000000;
  border-radius: 99px;
  color: #ffffff;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
}
