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

 file name  : subpage.css
 author     : Ability Consultant
 style info : サブページ共通スタイル（Rooms / Access 共通の枠組み）
=================================================================== */
/* ===================================================================
SCSS information

 file name  : _settings.scss
 author     : Ability Consultant
 style info : 楽天「HOTEL GEOMETIQ Osaka Umeda」共通変数・mixin
=================================================================== */
/* -----------------------------------------------------------
	レイアウト
----------------------------------------------------------- */
/* -----------------------------------------------------------
	カラー（ascendから踏襲）
----------------------------------------------------------- */
/* -----------------------------------------------------------
	フォント
----------------------------------------------------------- */
/* -----------------------------------------------------------
	mixin
----------------------------------------------------------- */
/* -----------------------------------------------------------
	subpage-pagetitle（左に画像、右にタイトル+説明文）
----------------------------------------------------------- */
#page .subpage-pagetitle {
  position: relative;
  width: 100%;
  background-color: #f5f5f5;
  padding: 0;
  overflow: hidden;
}
#page .subpage-pagetitle__inner {
  display: table;
  table-layout: fixed;
  width: 100%;
  min-height: 420px;
}
#page .subpage-pagetitle__image {
  display: table-cell;
  width: 50%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0 5px 5px 0;
  overflow: hidden;
}
#page .subpage-pagetitle__content {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
  padding: 56px 40px;
}
#page .subpage-pagetitle__heading {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}
#page .subpage-pagetitle__title {
  font-family: "Lulo Clean", "Playfair Display", "Times New Roman", serif;
  font-size: 26px;
  font-weight: 600;
  color: #000000;
  margin: 0;
}
#page .subpage-pagetitle__subtitle {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
#page .subpage-pagetitle__arrow {
  color: #a6a6a6;
}
#page .subpage-pagetitle__en {
  font-family: "Lulo Clean", "Playfair Display", "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: -0.04em;
  color: #a6a6a6;
}
#page .subpage-pagetitle__description {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #000000;
}
#page .subpage-pagetitle__description + #page .subpage-pagetitle__description {
  margin-top: 12px;
}

/* -----------------------------------------------------------
	subpage-main（共通インナー）
----------------------------------------------------------- */
#page .subpage-main {
  padding: 60px 40px;
}
#page .subpage-main__inner {
  max-width: 870px;
  margin: 0 auto;
}

/* -----------------------------------------------------------
	subpage-section（セクション見出し付きブロック）
----------------------------------------------------------- */
#page .subpage-section {
  padding: 56px 0;
  max-width: 870px;
  margin: 0 auto;
}
#page .subpage-section + #page .subpage-section {
  border-top: 1px solid #e6e6e6;
}
#page .subpage-section__header {
  margin-bottom: 28px;
}
#page .subpage-section__title {
  font-family: "Lulo Clean", "Playfair Display", "Times New Roman", serif;
  font-size: 28px;
  color: #808080;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}
#page .subpage-section__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;
}
#page .subpage-section__line {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
  margin: 16px 0;
}
