@charset "UTF-8";
/* CSS Document */
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  font-family: "YakuHanJP", "Lato", "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  width: 100%;
  height: 100%;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin: 0 auto;
  background: #fff;
}

.cut {
  overflow: hidden;
  zoom: 1;
}

.sentence p + p {
  margin-top: 20px;
}

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

.ggmap {
  width: 100%;
  height: 350px;
}

input, select {
  vertical-align: middle;
  margin-bottom: 3px;
  margin-right: 5px;
}

.phone {
  display: none;
}

.pc {
  display: block;
}

.tcen {
  text-align: center;
}

@media screen and (max-width: 800px) {
  .tcen {
    text-align: left;
  }
  body {
    font-size: 13px;
    line-height: 1.5;
  }
  .phone {
    display: block;
  }
  .pc {
    display: none !important;
  }
}
#page-top {
  position: fixed;
  bottom: 65px;
  right: 5px;
  font-size: 12px;
  font-weight: bold;
  z-index: 9999;
}
#page-top a {
  color: #fff;
  font-size: 25px;
  text-decoration: none;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  display: block;
  border-radius: 45px;
  background: #5c4233;
  box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
}
#page-top a:hover {
  opacity: 0.6;
  text-decoration: none;
}

.mtext1 {
  font-size: 2rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.mtext1.type1 {
  margin-bottom: 25px;
  text-align: center;
}
.mtext1.type1 br {
  display: none;
}

@media all and (max-width: 896px) {
  .mtext1 {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .mtext1.type1 {
    margin-bottom: 20px;
  }
  .mtext1.type1 br {
    display: block;
  }
}
.mtext2 {
  font-size: 2.4rem;
  line-height: 1.6;
}
.mtext2.type1 {
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
}

@media all and (max-width: 896px) {
  .mtext2 {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 2rem;
  }
  .mtext2.type1 {
    margin-bottom: 25px;
  }
}
.mtext3 {
  font-size: 4rem;
  line-height: 1.6;
  text-align: center;
}

@media all and (max-width: 896px) {
  .mtext3 {
    font-size: 3rem;
  }
}
@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 2.4rem;
  }
}
.loader {
  align-items: center;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28204/bg-main.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.loader.off {
  display: none;
}
@keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#page {
  opacity: 0; /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #page {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ==========================================================================
   1. DESIGN TOKENS & RESET (変数設定とリセット)
   ========================================================================== */
:root {
  --color-primary: #004983; /* 信頼と誠実の青 - メインカラー */
  --color-accent: #D97706; /* 温もりの琥珀 - ポイントカラー（オレンジ） */
  --color-accent-hover: #B45309;
  --color-bg: #FAF8F5; /* 絹 of 絹 - 贅沢なオフホワイト */
  --color-bg-card: #FFFFFF;
  --color-text-main: #2C3E50; /* 読みやすい墨色 */
  --color-text-muted: #333;
  --color-border: #E2E8F0;
  --font-serif: 'Shippori Mincho', 'Noto Serif JP', serif;
  --font-english: 'Cormorant Garamond', serif;
  --transition-smooth: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-main);
  font-family: var(--font-serif);
  line-height: 1.8;
  letter-spacing: 0.08em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 16px; /* 明確な絶対値でのフォントサイズ担保 */
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   2. REUSABLE UTILITY STYLES (共通・骨組み設定)
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* プレミアム青文字・高級アクセント */
.gold-text {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-english);
  color: var(--color-primary); /* オレンジからメインの青へ変更して統一感向上 */
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 14px;
}

/* 伝統的な見出し */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  font-size: 34px;
  font-weight: 600;
  color: var(--color-text-main);
}
@media (max-width: 890px) {
  .section-title h2 {
    font-size: 24px;
  }
}
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--color-primary); /* 装飾線も美しき青に */
}
.section-title p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--color-text-muted);
}

/* プレミアムボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: 15px;
  letter-spacing: 0.15em;
  border: 1px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-smooth);
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
.btn:hover {
  color: #FFFFFF;
}
.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn {
  /* アクション喚起（オレンジ）ボタン */
}
.btn-accent {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.btn-accent::before {
  background-color: var(--color-accent);
}
.btn-accent:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   3. HEADER & NAVIGATION (ヘッダー・ナビゲーション)
   ========================================================================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(250, 248, 245, 0.95);
  border-bottom: 1px solid rgba(0, 73, 131, 0.15); /* メインの青に調和 */
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}
#site-header .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-bottom: 1px solid rgba(0, 73, 131, 0.05);
}
@media (max-width: 992px) {
  #site-header .top-bar {
    padding: 15px 20px;
  }
}
#site-header .logo-area h1 {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
}
#site-header .logo-area span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}
#site-header .info-area {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}
@media (max-width: 992px) {
  #site-header .info-area {
    display: none;
  }
}
#site-header .info-area .tel {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  font-family: var(--font-english);
}
#site-header .info-area .tel span {
  color: var(--color-accent);
  margin-right: 5px;
}
#site-header {
  /* メインナビゲーション */
}
#site-header .main-nav {
  display: flex;
  justify-content: center;
  padding: 0;
}
@media (max-width: 992px) {
  #site-header .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--color-primary);
    z-index: 105;
    transition: var(--transition-smooth);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
  }
  #site-header .main-nav.active {
    right: 0;
  }
}
#site-header .nav-list {
  display: flex;
  width: 100%;
  max-width: 1000px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  #site-header .nav-list {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }
}
#site-header .nav-list li {
  flex: 1;
  text-align: center;
}
#site-header .nav-list a {
  display: block;
  padding: 15px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  position: relative;
}
@media (max-width: 992px) {
  #site-header .nav-list a {
    color: #FFFFFF;
    font-size: 18px;
  }
}
#site-header .nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary); /* アンダーラインも青に */
  transform: scaleX(0);
  transition: var(--transition-smooth);
}
#site-header .nav-list a.active::after, #site-header .nav-list a:hover::after {
  transform: scaleX(1);
}

/* スマホ対応用バーガーメニュー */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  border: none;
  background: none;
  z-index: 110;
}
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-smooth);
}

/* ==========================================================================
   4. HERO AREA & MAIN VISUAL (メインビジュアル)
   ========================================================================== */
.hero-container {
  margin-top: 135px;
  position: relative;
  height: calc(100vh - 135px);
  min-height: 550px;
  overflow: hidden;
  background-color: #000000;
}
@media (max-width: 768px) {
  .hero-container {
    margin-top: 100px;
    height: calc(100vh - 100px);
  }
}

/* 複数背景画像のローテーション/スライド演出（Pure CSS） */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideShow 24s infinite;
  transform: scale(1.1);
  transition: transform 6s ease-out;
  /* ヒーローのオーバーレイにメインブルーをブレンドし、全体を鮮やかな「青」の印象に */
}
.slide:nth-child(1) {
  background-image: linear-gradient(to bottom, rgba(0, 73, 131, 0.4), rgba(0, 73, 131, 0.7)), url("https://images.unsplash.com/photo-1490730141103-6cac27aaab94?q=80&w=1600");
  animation-delay: 0s;
}
.slide:nth-child(2) {
  background-image: linear-gradient(to bottom, rgba(0, 73, 131, 0.4), rgba(0, 73, 131, 0.7)), url("https://images.unsplash.com/photo-1503899036084-c55cdd92da26?q=80&w=1600");
  animation-delay: 6s;
}
.slide:nth-child(3) {
  background-image: linear-gradient(to bottom, rgba(0, 73, 131, 0.4), rgba(0, 73, 131, 0.7)), url("https://images.unsplash.com/photo-1542051841857-5f90071e7989?q=80&w=1600");
  animation-delay: 12s;
}
.slide:nth-child(4) {
  background-image: linear-gradient(to bottom, rgba(0, 73, 131, 0.4), rgba(0, 73, 131, 0.7)), url("https://images.unsplash.com/photo-1513694203232-719a280e022f?q=80&w=1600");
  animation-delay: 18s;
}

@keyframes slideShow {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
    transform: scale(1.02);
  }
  30% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}
/* ヒーローテキスト */
.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  padding: 0 20px;
}
.hero-content h2 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 0.15em;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.5s forwards 0.5s;
}
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 26px;
  }
}
.hero-content p {
  font-size: 18px;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
  line-height: 2;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.5s forwards 1s;
}
@media (max-width: 768px) {
  .hero-content p {
    font-size: 15px;
  }
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: #FFFFFF;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.scroll-down::after {
  content: "";
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.4);
  display: block;
  animation: scrollLine 2s infinite;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
/* ==========================================================================
   5. MAIN SECTIONS & PAGE LAYOUT (メインコンテンツ・各ページ)
   ========================================================================== */
.page-section {
  display: none; /* JSで切り替え制御 */
  animation: fadeInPage 0.8s ease-out forwards;
}
.page-section.active {
  display: block;
}

@keyframes fadeInPage {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* イントロダクション（想い） */
.intro-block {
  padding: 120px 0;
  background-color: var(--color-bg-card);
  text-align: center;
}
@media (max-width: 768px) {
  .intro-block {
    padding: 80px 0;
  }
}
.intro-block .lead-title {
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 600;
}
@media (max-width: 768px) {
  .intro-block .lead-title {
    font-size: 20px;
  }
}
.intro-block p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--color-text-main);
  font-size: 16px;
  line-height: 2.2;
  text-align: justify;
  text-justify: inter-character;
}

/* CMS（仮：新着・空室お知らせ）ボード */
.cms-board {
  background-color: var(--color-bg);
  border: 1px solid rgba(0, 73, 131, 0.1);
  border-radius: 8px;
  padding: 40px;
  margin: 60px auto 0 auto;
  max-width: 900px;
  text-align: left;
  box-shadow: 0 4px 30px rgba(0, 73, 131, 0.02);
}
.cms-board h3 {
  font-size: 18px;
  color: var(--color-primary);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--color-primary); /* 青色アンダーラインへ変更 */
  padding-bottom: 10px;
}
.cms-board {
  /* フラット背景（移管ユーティリティ連動） */
}
.cms-board.white-bg-flat {
  margin-top: 0;
  background: #FFFFFF;
}

.cms-item {
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}
.cms-item:last-child {
  border: none;
}
.cms-item .cms-date {
  font-family: var(--font-english);
  color: var(--color-primary); /* 日付も青色に変更 */
  font-weight: 600;
  min-width: 100px;
}
.cms-item .cms-tag {
  background-color: var(--color-primary);
  color: #FFFFFF;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 3px;
  height: -moz-fit-content;
  height: fit-content;
}
.cms-item .cms-tag.orange {
  background-color: var(--color-accent);
}
.cms-item .cms-desc {
  flex: 1;
  font-weight: 600;
  color: var(--color-primary);
}

/* ==========================================================================
   6. PROPERTY & CONTENT CARDS (物件・コンテンツカード)
   ========================================================================== */
.grid-section {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .grid-section {
    padding: 80px 0;
  }
}
.grid-section {
  /* 移管ユーティリティ連動デコレーション */
}
.grid-section.bg-sub {
  background-color: rgba(0, 73, 131, 0.02); /* 青色調和ベースに変更 */
}
.grid-section.bg-card {
  background-color: var(--color-bg-card);
}
.grid-section.border-top-bg {
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}

/* プレミアムカード */
.premium-card {
  background-color: var(--color-bg-card);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 73, 131, 0.03);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 73, 131, 0.08);
}
.premium-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}
.premium-card .card-img-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.premium-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  transition: var(--transition-smooth);
}
.premium-card .card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(0, 73, 131, 0.95); /* バッジの透明度とカラーを青に変更 */
  color: #FFFFFF;
  font-size: 12px;
  padding: 6px 15px;
  letter-spacing: 0.1em;
  border-radius: 20px;
}
.premium-card .card-content {
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.premium-card .card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 15px;
}
.premium-card .card-text {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}
.premium-card {
  /* 横並び 2カラム化 (テナント情報など拡張指定) */
}
.premium-card.wide-row {
  grid-column: span 2;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 992px) {
  .premium-card.wide-row {
    flex-direction: column;
  }
}
.premium-card.wide-row .card-img-wrapper {
  flex: 1.2;
  height: 100%;
  min-height: 350px;
  width: 100%;
}
.premium-card.wide-row .card-img-wrapper img {
  width: 100%;
  height: 100%;
}
.premium-card.wide-row .card-content {
  flex: 1;
  padding: 40px;
}

/* ==========================================================================
   7. SECTION: LAND & REAL ESTATE SALE (不動産売買エリア)
   ========================================================================== */
.banner-section {
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28247/banner.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.banner-inner {
  position: relative;
  z-index: 10;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}
.banner-inner h2 {
  font-size: 30px;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}
.banner-inner p {
  font-size: 16px;
  line-height: 2.2;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  text-align: justify;
}

/* ==========================================================================
   8. INNER PAGES SPECIFIC (各下層ページの個別スタイル)
   ========================================================================== */
.page-header {
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 100px 0 60px 0;
  text-align: center;
  margin-top: 135px;
}
@media (max-width: 768px) {
  .page-header {
    margin-top: 100px;
    padding: 60px 0 40px 0;
  }
}
.page-header h1 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.15em;
}
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 24px;
  }
}
.page-header p {
  font-family: var(--font-english);
  color: #FFFFFF; /* 青色の看板に調和するように白に変更 */
  margin-top: 10px;
  font-size: 17px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* 賃貸物件リストグリッド */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .property-grid {
    grid-template-columns: 1fr;
  }
}

/* 物件カタログカード */
.property-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 73, 131, 0.05);
}
.property-card .property-img {
  height: 220px;
  position: relative;
}
.property-card .property-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.property-card .property-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--color-primary); /* バッジを青に統一 */
  color: #FFFFFF;
  font-size: 12px;
  padding: 4px 12px;
  font-weight: 600;
  border-radius: 2px;
}
.property-card .property-info {
  padding: 25px;
}
.property-card .property-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.property-card .property-meta {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 15px;
  border-bottom: 1px dashed var(--color-border);
  padding-bottom: 15px;
}
.property-card .property-price {
  font-size: 20px;
  color: var(--color-accent); /* 金額表記の引き締めカラーとしてオレンジをキープ */
  font-family: var(--font-english);
  font-weight: 600;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}
.property-card .property-price span {
  font-size: 13px;
  font-family: var(--font-serif);
  color: var(--color-text-main);
}

/* ==========================================================================
   RENTAL AREA SECTIONS (賃貸物件エリアごとの直読型セクションスタイル)
   ========================================================================== */
.rental-area-section {
  margin-bottom: 80px;
  padding-bottom: 60px;
  border-bottom: 1px dashed var(--color-border);
}
.rental-area-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* エリア大見出し（例：伊豆長岡駅周辺エリア） */
.rental-area-title {
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text-main);
  line-height: 1.4;
}

/* エリア固有の英語・サブリード */
.rental-area-lead {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.1em;
}

/* エリアの環境・利便性についての解説本文 */
.rental-area-desc {
  margin-bottom: 40px;
  font-size: 15px;
  color: var(--color-text-main);
  line-height: 2;
  text-align: justify;
}

/* エリア特記用・CMS連動バッジタグ */
.cms-badge-tag {
  display: inline-block;
  margin-bottom: 5px;
  padding: 3px 12px;
  background-color: var(--color-primary);
  font-size: 11px;
  color: #FFFFFF;
  border-radius: 3px;
  letter-spacing: 0.1em;
}

/* イイ街・伊豆の国 (ローカルガイドコラム) */
.local-article {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  /* 偶数カラムは左右をリバース反転 */
}
.local-article:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .local-article:nth-child(even) {
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .local-article {
    flex-direction: column;
    gap: 30px;
  }
}
.local-article .local-media {
  flex: 1.2;
  height: 400px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 73, 131, 0.08);
}
@media (max-width: 992px) {
  .local-article .local-media {
    width: 100%;
    height: 300px;
  }
}
.local-article .local-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.local-article .local-body {
  flex: 1;
}
.local-article .local-body h3 {
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

/* 会社情報テーブル */
.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 73, 131, 0.02);
}
.company-table th, .company-table td {
  padding: 25px 30px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}
@media (max-width: 768px) {
  .company-table th, .company-table td {
    display: block;
    width: 100%;
  }
}
.company-table th {
  width: 25%;
  color: var(--color-primary);
  font-weight: 600;
  background-color: rgba(0, 73, 131, 0.02);
}
@media (max-width: 768px) {
  .company-table th {
    border-bottom: none;
    padding-bottom: 5px;
  }
}
.company-table td {
  color: var(--color-text-main);
}

/* ==========================================================================
   9. CONTACT FORM (洗練されたお問い合わせフォーム)
   ========================================================================== */
.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 15px 50px rgba(0, 73, 131, 0.05);
  border: 1px solid rgba(0, 73, 131, 0.05);
}
@media (max-width: 768px) {
  .contact-container {
    padding: 30px 20px;
  }
}

.form-group {
  margin-bottom: 30px;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
  font-size: 15px;
  /* 「必須」等のフォーム内ラベルインラインバッジ */
}
.form-group label span {
  background-color: var(--color-accent);
  color: #FFFFFF;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 2px;
  margin-left: 10px;
  font-weight: normal;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background-color: var(--color-bg);
  font-family: var(--font-serif);
  font-size: 15px;
  transition: var(--transition-smooth);
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(0, 73, 131, 0.05);
}
.form-control {
  /* テキストエリアの固有拡張 */
}
.form-control.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
}

/* 送信完了メッセージ領域（デフォルトは非表示） */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  animation: fadeInPage 0.5s ease-out;
}
.form-success h3 {
  color: var(--color-primary);
  font-size: 28px;
  margin-bottom: 20px;
}

/* ==========================================================================
   10. FOOTER & CALL TO ACTION (ダイナミックフッター & CTA)
   ========================================================================== */
.footer-cta {
  background-color: #FFFFFF;
  border-top: 1px solid var(--color-border);
  padding: 100px 0;
  text-align: center;
}

.cta-tel {
  font-size: 42px;
  font-weight: 600;
  color: var(--color-primary);
  font-family: var(--font-english);
  margin: 20px 0;
}
@media (max-width: 890px) {
  .cta-tel {
    font-size: 35px;
  }
}

.cta-time {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

#site-footer {
  background-color: var(--color-primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 40px 0;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 60px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-brand h3 {
  font-size: 22px;
  color: #FFFFFF;
  margin-bottom: 15px;
}
@media (max-width: 640px) {
  .footer-brand h3 {
    font-size: 18px;
  }
}

.footer-address {
  font-style: normal;
  line-height: 2;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.9);
}
.footer-links a:hover {
  color: var(--color-accent);
}

.footer-copyright {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   11. DYNAMIC INTERACTIVE WIDGET (体験デモ用擬似CMSコントローラー)
   ========================================================================== */
.cms-control-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #FFFFFF;
  border: 1px solid var(--color-primary); /* コントローラーのフチも青にして調和 */
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 73, 131, 0.15);
  z-index: 999;
  max-width: 280px;
  font-size: 13px;
}
.cms-control-panel h4 {
  color: var(--color-primary);
  margin-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 5px;
}
.cms-control-panel button {
  background: var(--color-primary); /* 体験ボタンも青に変更 */
  color: white;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 3px;
  margin-top: 8px;
  font-family: var(--font-serif);
  font-size: 12px;
  transition: var(--transition-smooth);
}
.cms-control-panel button:hover {
  background: #003560;
}
.cms-control-panel-desc {
  font-size: 12px;
  color: #64748B;
}

/* ==========================================================================
   12.移管スタイル・ヘルパー管理クラス (New Clean Utilities)
   ========================================================================== */
.btn-white-accent {
  color: #FFFFFF !important;
  border-color: #FFFFFF !important;
}
.btn-white-accent::before {
  background-color: #FFFFFF !important;
}
.btn-white-accent:hover {
  color: var(--color-primary) !important;
}

.btn-full-width {
  width: 100%;
  margin-top: 20px;
  padding: 10px;
}

.btn-submit {
  padding: 18px 60px;
  font-weight: 600;
}

/* 汎用テキスト装飾・レイアウト */
.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-accent {
  color: var(--color-accent) !important;
}

/* 余白ラッパーマージンクラス */
.margin-bottom-sm {
  margin-bottom: 15px;
}

.margin-bottom-md {
  margin-bottom: 25px;
}

.margin-bottom-lg {
  margin-bottom: 35px;
}

.margin-bottom-xl {
  margin-bottom: 40px;
}

/* 各下層ブロックコンテンツ幅・パディングの汎用調整 */
.sale-consult-wrapper {
  max-width: 850px;
  margin: 0 auto;
  line-height: 2;
}

.container.page-padding {
  padding-top: 80px;
  padding-bottom: 120px;
}
.container.page-padding-lg {
  padding-top: 100px;
  padding-bottom: 120px;
}

.page-intro-header {
  text-align: center;
  margin-bottom: 50px;
}

.page-intro-desc {
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-text-muted);
}

.filter-btn-group {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.property-desc {
  margin-top: 15px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.property-badge-primary {
  background-color: var(--color-primary) !important;
}

.company-info-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.company-info-intro {
  color: var(--color-text-muted);
  margin-top: 15px;
}

.form-header-p {
  color: var(--color-text-muted);
}

/* ==========================================================================
   14. LOCAL SPOTS GRID SYSTEM (新規伊豆の国12スポットグリッドスタイル)
   ========================================================================== */
/* スポット一覧を整列させるレスポンシブ・グリッド */
.spots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
@media (max-width: 992px) {
  .spots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .spots-grid {
    grid-template-columns: 1fr;
  }
}

/* スポット個別カード */
.spot-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 73, 131, 0.02);
  transition: var(--transition-smooth);
}
.spot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 73, 131, 0.08);
}
.spot-card:hover .spot-img-container img {
  transform: scale(1.08);
}
.spot-card {
  /* 写真画像エリアのトリミングラッパー */
}
.spot-card .spot-img-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.spot-card .spot-img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition-smooth);
}
.spot-card {
  /* カード下半分のテキスト解説エリア */
}
.spot-card .spot-card-body {
  padding: 25px;
}
.spot-card {
  /* スポット名タイトル */
}
.spot-card .spot-card-title {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
}
.spot-card .spot-card-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-accent);
}
.spot-card {
  /* 解説本文（両端揃えで美しく整列） */
}
.spot-card .spot-card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-main);
  text-align: justify;
}

/* ==========================================================================
   15. GGMAP & GOOGLE MAPS WRAPPER
   ========================================================================== */
.ggmap {
  width: 100%;
  height: 450px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 73, 131, 0.05);
  margin-top: 30px;
}
.ggmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   9. CONTACT PAGE & FORM (お問い合わせページ・フレーム設計)
   ========================================================================== */
/* フォーム全体を包む白いメインコンテナ */
.contact-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 60px;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 73, 131, 0.05);
  border-radius: 8px;
  box-shadow: 0 15px 50px rgba(0, 73, 131, 0.04);
}
@media (max-width: 768px) {
  .contact-container {
    padding: 30px 20px;
  }
}

/* 案内情報の上品なテキストデザイン */
.contact-intro-box {
  max-width: 750px;
  margin: 0 auto 50px auto;
  line-height: 2.2;
  text-align: justify;
}
.contact-intro-box .contact-intro-lead {
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.12em;
  text-align: center;
}
.contact-intro-box .contact-intro-text {
  margin-bottom: 25px;
  font-size: 16px;
  color: var(--color-text-main);
}
.contact-intro-box {
  /* 電話番号などのインフォメーションまとめ枠 */
}
.contact-intro-box .contact-info-summary {
  margin-top: 40px;
  padding: 30px;
  background-color: rgba(0, 73, 131, 0.03);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 6px 6px 0;
  text-align: center;
}
.contact-intro-box .contact-info-summary .tel {
  margin-bottom: 10px;
  font-family: var(--font-english);
  font-size: 38px;
  font-weight: bold;
  color: var(--color-primary);
}
.contact-intro-box .contact-info-summary .time {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* クリーンなフォーム構造（各パーツ設計） */
.form-frame-title {
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
}

.form-group {
  margin-bottom: 30px;
}
.form-group label {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
}
.form-group label span {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 8px;
  background-color: var(--color-accent);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: normal;
  border-radius: 2px;
}
.form-group label .optional-label {
  background-color: var(--color-text-muted);
}

/* 入力コントロール本体（input / textarea 共通設定） */
.form-control {
  width: 100%;
  padding: 15px;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-serif);
  font-size: 15px;
  transition: var(--transition-smooth);
}
.form-control:focus {
  outline: none;
  background-color: #FFFFFF;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 73, 131, 0.05);
}
.form-control.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* チップ型選択グループ（3列から1列へ流動変化するGrid制御） */
.form-chip-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .form-chip-group {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .form-chip-group {
    grid-template-columns: 1fr;
  }
}

/* チップ型のカスタムラベル（疑似ラジオボタン） */
.form-chip-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-main);
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.form-chip-label input[type=radio] {
  display: none;
}
.form-chip-label:hover {
  background-color: rgba(0, 73, 131, 0.02);
  border-color: var(--color-primary);
}
.form-chip-label.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #FFFFFF;
}

/* 個人情報保護方針（規約枠） */
.privacy-policy-box {
  margin-top: 40px;
  margin-bottom: 25px;
  padding: 25px;
  height: 200px;
  overflow-y: scroll;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.8;
}
.privacy-policy-box h4 {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
}
.privacy-policy-box p {
  margin-bottom: 15px;
}

/* 同意チェックボックスを包む中央配置グループ */
.privacy-consent-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* 送信完了メッセージ領域（初期状態はJS連動用に非表示） */
.form-success {
  display: none;
  padding: 40px;
  text-align: center;
  animation: fadeInPage 0.5s ease-out;
}
.form-success h3 {
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--color-primary);
}

/* ==========================================================================
   16. ROOM DETAIL STYLES (物件詳細表示用の専用スタイル)
   ========================================================================== */
.detail-container {
  padding-top: 40px;
  padding-bottom: 80px;
}

/* 物件詳細ヘッダーエリア（タイトルと空室バッジ） */
.detail-head-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}
@media (max-width: 768px) {
  .detail-head-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* タイトルテキスト外枠 */
.detail-title-wrapper h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-primary);
}

/* 募集状況バッジ（満室・空室のバリエーション） */
.detail-status-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 16px;
  background-color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  border-radius: 4px;
}
.detail-status-badge.empty {
  background-color: var(--color-accent);
}

/* プレミアムフォトギャラリー・Slickシンクロスライドシステム */
.detail-gallery-section {
  margin-bottom: 60px;
}

/* メイン大画像スライダー */
.detail-slider-main {
  margin-bottom: 15px;
  background-color: #fff;
  overflow: hidden;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 73, 131, 0.05);
}
.detail-slider-main img {
  display: block;
  width: auto;
  height: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .detail-slider-main img {
    height: 300px;
  }
}

/* 下部サムネイルナビゲーション */
.detail-slider-nav {
  margin: 0 -6px;
}
.detail-slider-nav .slick-slide {
  padding: 0 6px;
  cursor: pointer;
}
.detail-slider-nav img {
  width: 100%;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: var(--transition-smooth);
}
.detail-slider-nav .slick-current img {
  border-color: var(--color-accent);
}

/* --- スライダー全体の囲み（これがないと矢印が外に飛び出します） --- */
.slider-nav, .slick-slider {
  position: relative !important;
}

/* --- 左右の矢印ボタンの共通上書き --- */
.slick-prev,
.slick-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 999 !important;
  /* 丸い形とサイズ */
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  /* 背景を半透明の白、文字を濃いグレーに */
  background: rgba(255, 255, 255, 0.85) !important;
  color: #333333 !important;
  /* デフォルトの「Previous/Next」の文字サイズを0にして完全に消す */
  font-size: 0 !important;
  /* 枠線や影の調整 */
  border: none !important;
  outline: none !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

/* --- 元々あった「Previous」「Next」の文字（before）を「＜」「＞」に強制書き換え --- */
.slick-prev::before {
  content: "＜" !important;
  font-size: 16px !important;
  font-weight: bold !important;
  color: #333333 !important;
}

.slick-next::before {
  content: "＞" !important;
  font-size: 16px !important;
  font-weight: bold !important;
  color: #333333 !important;
}

/* --- 矢印の位置調整（画像の上に重ねる） --- */
.slick-prev {
  left: -15px !important; /* 左端から10px内側 */
}

.slick-next {
  right: -15px !important; /* 右端から10px内側 */
}

/* ==========================================================
   ★ここが重要：上のメイン画像側の矢印だけを非表示にする
   ※クラス名（.slider-for）は実際のメイン画像側のクラス名に合わせてください
========================================================== */
.detail-slider-main .slick-prev,
.detail-slider-main .slick-next {
  display: none !important;
}

/* ホバー時に少し明るくする演出 */
.slick-prev:hover,
.slick-next:hover {
  background: rgb(255, 255, 255) !important;
}

/* 物件紹介のテキスト文章ブロック */
.detail-intro-box {
  margin-bottom: 60px;
}

.detail-intro-title {
  padding-left: 15px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  border-left: 4px solid var(--color-accent);
}

.detail-intro-text {
  font-size: 16px;
  line-height: 2;
  color: var(--color-text-main);
  text-align: justify;
}

/* 物件基本概要テーブル（賃料、間取りなど） */
.detail-info-table {
  width: 100%;
  margin-bottom: 60px;
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-collapse: collapse;
  box-shadow: 0 4px 20px rgba(0, 73, 131, 0.02);
}
.detail-info-table th, .detail-info-table td {
  padding: 18px 24px;
  border: 1px solid var(--color-border);
  font-size: 15px;
}
@media (max-width: 768px) {
  .detail-info-table th, .detail-info-table td {
    display: block;
    width: 100%;
  }
}
.detail-info-table th {
  width: 150px;
  background-color: rgba(0, 73, 131, 0.03);
  color: var(--color-primary);
  font-weight: 600;
  text-align: left;
}
@media (max-width: 768px) {
  .detail-info-table th {
    border-bottom: none;
  }
}

/* 棟全体の空室状況可視化ボックス */
.detail-vacancy-box {
  margin-bottom: 60px;
  padding: 40px;
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 73, 131, 0.02);
}
@media (max-width: 768px) {
  .detail-vacancy-box {
    padding: 25px 20px;
  }
}
.detail-vacancy-box .detail-vacancy-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

/* 部屋番号パネルを並べる多レイヤ流動グリッド */
.vacancy-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
@media (max-width: 992px) {
  .vacancy-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .vacancy-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .vacancy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 部屋番号セルの単体デザイン */
.vacancy-cell {
  padding: 15px;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  text-align: center;
  transition: var(--transition-smooth);
}
.vacancy-cell.empty {
  background-color: rgba(217, 119, 6, 0.05);
  border-color: var(--color-accent);
}
.vacancy-cell.empty .vacancy-status-lbl {
  color: var(--color-accent);
}
.vacancy-cell .vacancy-room-no {
  display: block;
  font-family: var(--font-english);
  font-size: 18px;
  font-weight: bold;
  color: var(--color-primary);
}
.vacancy-cell .vacancy-status-lbl {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* 周辺動画埋め込み・YouTubeエリア */
.detail-video-container {
  margin-bottom: 60px;
}

.video-wrapper {
  position: relative;
  height: 0;
  padding-bottom: 56.25%; /* 16:9比率の完全担保維持 */
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* 住居・詳細設備環境（32項目詳細データグリッド） */
.detail-env-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  padding: 40px;
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 60px;
  box-shadow: 0 4px 25px rgba(0, 73, 131, 0.02);
}
@media (max-width: 768px) {
  .detail-env-grid {
    grid-template-columns: 1fr;
    padding: 25px 20px;
  }
}

/* 各設備項目の1行デザイン */
.detail-env-item {
  display: flex;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
}
@media (min-width: 769px) {
  .detail-env-item:last-child {
    border-bottom: 1px solid var(--color-border);
  }
}
.detail-env-item .detail-env-lbl {
  width: 140px;
  font-weight: 600;
  color: var(--color-primary);
  flex-shrink: 0;
}
.detail-env-item .detail-env-val {
  flex: 1;
  color: var(--color-text-main);
}

/* テナント募集等の特記・注意喚起ボックス */
.detail-tenant-box {
  margin-bottom: 60px;
  padding: 30px;
  background-color: rgba(0, 73, 131, 0.02);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 8px 8px 0;
}
.detail-tenant-box .detail-tenant-title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: var(--color-primary);
}

/*新メールフォーム*/
.form {
  margin: 10px 0 10px;
}
.form dt span {
  color: #fff;
  background: #FF4F4F;
  padding: 0 5px 0;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 2px;
  position: relative;
  top: -2px;
}
.form dt strong {
  color: #fff;
  background: #999;
  padding: 0 5px 0;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 2px;
  position: relative;
  top: -2px;
}
.form dt .optional::before {
  content: "任意";
  color: #fff;
  background: #999;
}
.form dl {
  margin: 10px 0;
  font-size: 16px;
}
.form dt {
  float: left;
  width: 280px;
  padding-top: 20px;
}
.form dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px solid #eee;
}
.form dd p {
  font-size: 14px;
  padding-top: 5px;
  color: #888;
}
.form dd:last-child {
  border-bottom: 0px;
  margin-bottom: 0px;
}

.dropdown {
  border-radius: 2px;
  border: 1px solid #ddd;
}

.textarea, .textarea2 {
  width: 95%;
  border-radius: 2px;
  border: 1px solid #ddd;
  padding: 5px;
}

.form-button {
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  margin: 10px 0;
}

#mailform button {
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  display: block;
  margin: 0 auto 5px;
  padding: 10px 0 10px;
  color: #fff;
  text-align: center;
  width: 250px;
  border-radius: 5px;
  background: #5c4233;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #5c4233;
}
#mailform button:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 6px;
}
#mailform button:hover {
  background: #fff;
  color: #5c4233;
}
#mailform button * {
  transition: 0.2s;
}

.form-button * {
  transition: 0.2s;
}

/*RadioとText*/
label {
  display: block;
}
label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}
label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #5c4233;
  z-index: 1;
}
label.radio_text input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 15px;
  height: 15px;
  left: -15px;
  top: 2px;
  margin: 0px;
  box-shadow: 15px -1px #fff;
  border-radius: 50%;
}
label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 15px -1px #FFF;
}
label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 20px;
  overflow: hidden;
  display: inline-block;
  box-sizing: border-box;
}
label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
}
label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #5c4233;
  border-bottom: 3px solid #5c4233;
  transform: rotate(45deg);
  z-index: 1;
}
label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #FFF;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #EEE;
}

/*CheckBoxとText */
.fm-text {
  padding: 10px;
  font-size: 11px;
  margin: 10px 0;
}

@media all and (max-width: 890px) {
  .form dl {
    margin: 10px 0;
  }
  .form dt {
    float: none;
    width: 100%;
    line-height: 20px;
    padding-top: 10px;
  }
  .form dd {
    width: 100%;
    padding-left: 0;
    padding-bottom: 10px;
    padding-top: 10px;
    line-height: 20px;
    border-bottom: 1px solid #eee;
  }
  .form dd:last-child {
    border-bottom: 0px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1024px) {
  .form-contents :not(.pattern-exclusion) button {
    width: 100% !important;
  }
}
/* /新メールフォーム */
.blog-box {
  margin-bottom: 50px;
}
.blog-box img {
  max-width: 100%;
  height: auto;
}

.page_next {
  float: right;
}

.page_prev {
  float: left;
}

.Cbox {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}

.blog-box {
  margin-bottom: 50px;
}
.blog-box img {
  max-width: 100%;
  height: auto;
}

.mtitle_box {
  background: rgba(23, 67, 125, 0.1);
  border-radius: 10px;
  color: #343338;
  font-size: 2rem;
  position: relative;
  padding: 10px 10px;
  margin-bottom: 20px;
  font-weight: 700;
}
.mtitle_box span {
  font-weight: normal;
  font-size: 14px;
  padding-left: 10px;
}

@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.8rem;
  }
}
.newsl2 dt {
  font-size: 120%;
  padding-top: 10px;
  line-height: 1.3;
  color: #5c4233;
  font-weight: bold;
}
.newsl2 dd {
  padding-bottom: 5px;
  padding-top: 10px;
  margin-bottom: 15px;
  line-height: 1.6;
  border-bottom: dotted 1px #b6ae83;
}
.newsl2 dd b {
  color: #594C39;
}

.blog_topics {
  width: 100%;
  border-top: 1px solid #ddd;
}
.blog_topics li {
  border-bottom: 1px solid #ddd;
}
.blog_topics li a {
  display: block;
  color: #333;
  padding: 15px;
  transition: 0.3s ease-in all;
}
.blog_topics li a:hover {
  background-color: rgba(234, 244, 247, 0.5);
}
.blog_topics li a .topics_detail {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: center;
}
.blog_topics li a .topics_detail .imgbox {
  overflow: hidden;
  width: 28%;
  height: 130px;
}
.blog_topics li a .topics_detail .imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s ease-in all;
}
.blog_topics li a .topics_detail .textbox {
  width: 72%;
  padding-left: 20px;
  line-height: 1.5;
}
.blog_topics li a .topics_detail .textbox h3 {
  margin: 5px 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.blog_topics li a .topics_detail .textbox p {
  font-size: 1.3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.blog_topics li a .time_date {
  display: inline-block;
  font-size: 1.2rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  background-image: linear-gradient(to right, #1161bc, #03bbdc);
  color: #fff;
  padding: 4px 15px;
  border-radius: 20px;
}

@media all and (max-width: 639px) {
  .blog_topics li a {
    padding: 10px 5px;
  }
  .blog_topics li a .topics_detail .imgbox {
    width: 30%;
    height: 100px;
  }
  .blog_topics li a .topics_detail .textbox {
    width: 70%;
    padding-left: 10px;
    line-height: 1.5;
  }
  .blog_topics li a .topics_detail .textbox p {
    font-size: 1rem;
  }
  .blog_topics li a .time_date {
    font-size: 0.9rem;
  }
}/*# sourceMappingURL=basis.css.map */