@charset "UTF-8";
/* =========================================
   RESET & VARIABLES
   ========================================= */
:root {
  /* Colors - Spiked from the mock */
  --c-primary: #004098; /* メインの青 */
  --c-primary-dark: #002a66;
  --c-text-main: #333333;
  --c-text-light: #666666;
  --c-white: #ffffff;
  --c-bg-light: #f4f8fb; /* 背景色（薄い青グレー） */
  /* Spacing */
  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 32px;
  --sp-lg: 64px;
  --sp-xl: 120px;
  /* Layout */
  --max-width: 1000px;
  --header-height: 60px; /* Mock height */
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--c-text-main);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  background-color: var(--c-white);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* =========================================
   UTILITY & COMMON COMPONENTS
   ========================================= */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* スマホでのみ改行を有効にするクラスを追加 */
.u-sp-br {
  display: none;
}
@media (max-width: 768px) {
  .u-sp-br {
    display: block;
  }
}

/* Section Header Design
   幾何学模様の背景をCSSグラデーションで擬似的に再現
*/
.page_header {
  background-color: var(--c-primary);
  color: var(--c-white);
  text-align: center;
  padding: var(--sp-md) 0;
  position: relative;
  overflow: hidden;
  /* パターン背景の擬似再現 */
  background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 20%), radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 20%);
}

.section-title {
  font-family: "Roboto", sans-serif; /* 英語見出し用 */
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin: 0;
  font-weight: 700;
}

.section-body {
  padding: var(--sp-lg) 0;
}

/* CONCEPTセクションのスタイル */
#concept {
  /* HERO画像との隙間をなくすためのネガティブマージン */
  margin-top: -1px;
  position: relative;
  z-index: 1; /* 重なり順を調整 */
}

/* CONCEPTセクションの背景色を追加 */
#concept .section-body {
  background-color: var(--c-bg-light);
  margin-bottom: 50px;
}

/* =========================================
   HEADER (UPDATED)
   ========================================= */
.site-header {
  height: var(--header-height);
  background: transparent; /* 背景透過 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* 左右の余白を広げて（20px -> 40px）右端の窮屈さを解消 */
  padding: 0 40px;
  /* HERO画像に重ねるための設定 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.site-logo {
  display: flex;
  align-items: center;
  z-index: 1002; /* ハンバーガーメニューより上に表示 */
}

.site-logo img {
  max-height: 40px;
  width: auto;
}

/* メニュー項目間の間隔を広げる (gap: 20px -> 40px) */
.site-nav ul {
  display: flex;
  list-style: none;
  gap: 20px; /* ホバー時の背景同士が重ならないよう調整 */
  margin: 0;
  padding: 0;
}

/* リンク文字色を白に変更 */
.site-nav a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.3); /* 視認性向上のためのドロップシャドウ */
  /* ホバーエフェクト用の追加スタイル */
  padding: 10px 20px;
  border-radius: 30px; /* カプセル型の角丸 */
  transition: all 0.3s ease; /* アニメーション */
}

/* マウスオーバー時のスタイル（白背景・青文字） */
.site-nav a:hover {
  background-color: #fff;
  color: var(--c-primary);
  text-shadow: none;
}

/* PC表示時にSP用要素を隠す */
.sp-nav-tools,
.sp-nav-overlay {
  display: none;
}

/* =========================================
   RESPONSIVE HEADER (Tablet & SP)
   ========================================= */
@media (max-width: 768px) {
  .site-header {
    padding: 0 20px;
  }
  /* --- 1. メニュー（ハンバーガー内）のスタイル --- */
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 64, 152, 0.95); /* ブランドカラーの透過背景 */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1001; /* ロゴ(1002)より下、コンテンツより上 */
  }
  /* メニュー展開時のクラス */
  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .site-nav a {
    font-size: 1.2rem;
    color: #fff;
    display: block;
    width: 100%;
  }
  /* PC用のCONTACTリンクはメニュー内から消す（ヘッダーアイコンにするため） */
  .site-nav .item-contact {
    display: none;
  }
  /* --- 2. SP用ツール（メールアイコン & ハンバーガー） --- */
  .sp-nav-tools {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1002;
  }
  /* CONTACTアイコン (Mail) */
  .sp-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    color: var(--c-primary);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
  }
  .sp-contact-icon:active {
    transform: scale(0.95);
  }
  .sp-contact-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }
  /* ハンバーガーボタン */
  .hamburger-btn {
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    position: relative;
    cursor: pointer;
    padding: 0;
  }
  .hamburger-btn span {
    position: absolute;
    left: 7px;
    width: 30px;
    height: 2px;
    background-color: #fff; /* アイコンの色 */
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  .hamburger-btn span:nth-child(1) {
    top: 14px;
  }
  .hamburger-btn span:nth-child(2) {
    top: 21px;
  }
  .hamburger-btn span:nth-child(3) {
    top: 28px;
  }
  /* ハンバーガー展開時のボタン変化（×印） */
  .hamburger-btn.is-active span {
    background-color: #fff; /* 開いた後も白 */
    box-shadow: none;
  }
  .hamburger-btn.is-active span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
  }
  .hamburger-btn.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-btn.is-active span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
  }
}
/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  /* PC: 高さ設定 */
  height: 60vh;
  min-height: 400px;
  max-height: 700px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--c-white);
}

/* 【修正】スマホ時の高さ調整 */
@media (max-width: 768px) {
  .hero {
    /* スマホでは高さを抑えて画像のトリミング範囲を減らす */
    height: 50vh;
    min-height: 280px;
  }
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* 【青フィルター設定】画像の上に青色の半透明レイヤーを重ねる */
.hero__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 64, 152, 0.5); /* 青色の濃さを調整 */
  mix-blend-mode: multiply; /* 画像となじませる描画モード */
  pointer-events: none;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* 画像の中央を表示する（デフォルト） */
  -o-object-position: center;
     object-position: center;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.hero__title {
  font-size: clamp(1.5rem, 5vw, 3rem); /* レスポンシブフォントサイズ */
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

.hero__brand {
  display: block;
  font-size: 1.2em; /* タイトルより少し大きく */
  margin-bottom: 0.2em;
}

/* =========================================
   CONCEPT
   ========================================= */
.concept-text {
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

.concept-note {
  text-align: center;
  margin-top: var(--sp-md);
  font-weight: normal;
  color: inherit;
}

/* =========================================
   GALLERY
   ========================================= */
#gallery .section-body {
  background-color: #111; /* 背景色 */
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* SP: 1カラム */
  gap: 15px; /* 画像間の隙間 */
  padding: 15px; /* 外側の隙間 */
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* PC: 2カラム */
  }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0; /* 角丸なし */
  box-shadow: none; /* 影なし */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}

/* キャプションの位置とスタイル */
.gallery-caption {
  position: absolute;
  top: 10px; /* 上に配置 */
  right: 10px; /* 右に配置 */
  bottom: auto;
  left: auto;
  width: auto;
  background: none; /* 青背景なし */
  color: #fff;
  padding: 4px 8px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* =========================================
   SPLIT LAYOUT (Floor & Access)
   ========================================= */
.split-layout {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

@media (min-width: 768px) {
  .split-layout {
    flex-direction: row;
    align-items: flex-start; /* 垂直方向: 上詰め */
  }
  .split-layout__info {
    flex: 1;
    padding-right: var(--sp-md); /* 文字を左にするので、右側に余白 */
    padding-left: 0;
    order: 1; /* 文字を左側へ */
  }
  .split-layout__visual {
    flex: 1.5; /* 画像を少し大きく */
    order: 2; /* 画像を右側へ */
  }
}
/* List Styles */
.spec-heading {
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  padding: 8px 0; /* 余白調整 */
  border-bottom: none;
  font-size: 1rem;
  line-height: 1.6;
}

.spec-list li::before {
  content: none;
}

/* Definition List for Access */
.access-dl dt {
  font-weight: 700;
  color: var(--c-primary);
  margin-top: 1.5em;
  display: flex;
  align-items: center;
}

.access-dl dt:first-child {
  margin-top: 0; /* 最初の要素の上マージンを削除 */
}

.access-dl dt::before {
  content: none;
}

.access-dl dd {
  margin-left: 14px;
  margin-bottom: 0;
}

.map-container {
  width: 100%;
  height: 480px; /* 指定コードの高さに合わせて変更 */
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  border-radius: 4px;
  overflow: hidden;
}

/* =========================================
   FLOOR PLAN (UPDATED)
   ========================================= */
/* FLOORセクションの背景色を追加 */
#floor .section-body {
  background-color: var(--c-bg-light); /* 薄いグレー背景 */
}

/* * Bottom CTA Component Style
 */
.p-nagatacho-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .p-nagatacho-container {
    padding: 0;
  }
}

.p-btn {
  display: inline-block;
  background-color: #004BB1;
  color: #fff !important;
  padding: 15px 60px;
  border-radius: 50px;
  text-decoration: none !important;
  font-weight: bold;
  transition: opacity 0.3s;
  width: 80%;
  max-width: 500px;
  box-sizing: border-box;
  text-align: center;
}
.p-btn:hover {
  opacity: 0.8;
  color: #fff !important;
  text-decoration: none !important;
}
.p-btn:visited {
  color: #fff !important;
  text-decoration: none !important;
}
@media (max-width: 768px) {
  .p-btn {
    padding: 15px 20px;
    width: 90%;
    font-size: 16px;
  }
}

.p-bottom-cta {
  background-color: #F4F8FB;
  text-align: center;
  padding: 80px 20px;
}
.p-bottom-cta__title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
  padding: 0;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.p-bottom-cta__title span {
  display: inline;
  background: linear-gradient(transparent 65%, #ead683 65%);
  padding: 0 5px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.p-bottom-cta .p-btn {
  width: 80%;
  max-width: 500px;
  height: 100px;
  font-size: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  box-shadow: none;
}
@media (max-width: 768px) {
  .p-bottom-cta .p-btn {
    height: auto;
    font-size: 16px;
    display: inline-block;
    padding: 15px 20px;
    width: 90%;
  }
}/*# sourceMappingURL=ostudio.css.map */