@charset "UTF-8";

:root{
  --brand-700:#1d568e;
  --brand-600:#4b77ab;
  --brand-500:#5f88b8;
  --ink:#111;
  --nav-h:100px;
  --band-w:120px;
  --gap:24px;
  --container:1200px;
  --fade:1000ms;
  --card-bg:#fff;
  --card-radius:18px;
  --card-shadow:0 0 6px rgba(0,0,0,.12);
  --card-shadow-hover:0 16px 36px rgba(0,0,0,.16);
  --tag-bg:#eef3f9;
  --muted:#667085;
  --bg-soft:#f6f8fb;
}

/* Reset & Base */
*{box-sizing:border-box;margin:0;padding:0;}
html,body{height:100%;color:#333;}
body{
  color:var(--ink);
  line-height:1.7;
  background:#fff;
  font-family:"Noto Sans JP",system-ui,-apple-system,"Segoe UI",Roboto,"Hiragino Kaku Gothic ProN","Yu Gothic","YuGothic","Helvetica Neue",Arial,sans-serif;
  font-size:0.95rem;
}
h1,h2,.section--notice,.section--notice .title{font-family:"Noto Serif JP",serif;}
h2{margin-bottom:20px;}
a{color:inherit;text-decoration:none;}
table{border-collapse:collapse;}

.br_sp{display:inline-block;width:1rem;}
.br_pc{display:block;}

.br_pc_none{display:none;}

/* 補助色 */
.section-100-g{background:#f0f0f0;}
.section-100-w{background:#ffffff;}

/* === ヘッダー／ナビ（既存のボタン形を維持） === *//* =========================
   ヘッダー・グローバルナビ
========================= */

/* ヘッダー共通 */
/* ヘッダー共通（PC基準） */
header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100px;
  z-index:50;
  background:rgba(255,255,255,0);
  transition:background-color .6s ease, box-shadow .6s ease;
}
.header-inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:0 clamp(24px,3vw,60px);
  transform-origin:0% 50%;
  transition:transform .6s ease, padding .6s ease;
  will-change:transform;
}
header.scrolled{
  background:rgba(0,0,0,.2);
}
header.scrolled .header-inner{
  transform:scale(0.9);
}

/* ロゴ */
header .site-logo{
  display:flex;
  align-items:center;
  justify-content:center;
}
header .site-logo img{
  height:60px;
  width:auto;
  display:block;
}
.sp_title{width: 33%;}
p.sp_title{line-height:100%;}
.sp_title img{width: 100%;height:auto;}

/* グローバルナビ（PC） */
.global-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  margin-left:auto;
  transition:transform .6s ease;
}
header.scrolled .global-nav{
  transform:translateY(-1px);
}
.global-nav .nav-list{
  display:flex;
  align-items:center;
  gap:10px;
  list-style:none;
}
.nav-item{
  position:relative;
  display:flex;
  align-items:center;
}

/* ボタン〜サブメニューの透明ブリッジ（PC用） */
.nav-item::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:14px;
  pointer-events:auto;
}

/* メインボタン（リンク／ボタン共通） */
.nav-item > a,
.nav-item > .nav-toggle{
  display:flex;
  align-items:center;
  gap:4px;
  padding:6px 12px 6px 6px;
  background:#fff;
  color:var(--brand-700);
  font-weight:700;
  font-size:.85rem;
  border-radius:999px;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
  border:none;
  cursor:pointer;
  line-height:1;
  transition:
    transform .4s ease,
    box-shadow .4s ease,
    background-color .2s ease,
    color .2s ease;
}

/* アイコン丸 */
.nav-item > a::before,
.nav-item > .nav-toggle::before{
  content:"";
  width:26px;
  height:26px;
  border-radius:50%;
  background:var(--brand-700);
  background-image:var(--icon-url, none);
  background-repeat:no-repeat;
  background-position:center;
  background-size:100%;
  flex-shrink:0;
}

.gnav_wrap{display:flex;margin-left:auto;}

/* サブメニュー（PC時） */
.nav-item .submenu{
  position:absolute;
  top:calc(100% + 6px);
  left:0;
  min-width:220px;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(6px);
  border-radius:12px;
  box-shadow:0 12px 24px rgba(0,0,0,.12);
  padding:10px;
  list-style:none;
  opacity:0;
  transform:translateY(-6px);
  visibility:hidden;
  pointer-events:none;
  transition:
    opacity .35s ease,
    transform .35s ease,
    visibility 0s linear .35s;
}
.nav-item:hover .submenu,
.nav-item:focus-within .submenu,
.nav-item.open .submenu{
  opacity:1;
  transform:translateY(0);
  visibility:visible;
  pointer-events:auto;
  transition:
    opacity .4s cubic-bezier(.25,.8,.25,1),
    transform .4s cubic-bezier(.25,.8,.25,1),
    visibility 0s;
}
.submenu a{
  display:block;
  padding:10px;
  border-radius:8px;
  color:#333;
  white-space:nowrap;
  transition:background-color .2s ease;
}
.submenu a:hover{
  background:#f5f7fb;
}

/* 動き苦手な人の配慮 */
@media (prefers-reduced-motion:reduce){
  .nav-item .submenu{
    transition:none;
    transform:none;
  }
}

/* SNS */
.sns-icons{
  display:flex;
  align-items:center;
  gap:5px;
  margin-left: 10px;
}
.sns-icons a{
  width:30px;
  height:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#fff;
  background:rgb(from var(--brand-700) r g b /.9);
  text-decoration:none;
  transition:all .25s ease;
}
.sns-icons a:hover{
  background:rgba(255,255,255,.25);
  transform:translateY(-2px);
  color:var(--brand-700);
}
.sns-icons a i{
  font-size:14px;
  position:relative;
  top:1px;
  left:.5px;
}

/* 共通セクション */

/* footer */
footer{background:#0f2642; color:#fff;}

footer .nav-footer,
footer .inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display:flex;
  justify-content: space-between;
}
footer .nav-footer{padding: 60px var(--gap) 30px var(--gap);}
footer .inner{padding:0 var(--gap) 40px var(--gap);}

footer .nav-footer--top h2{margin-bottom:0;}
footer .nav-footer--top h2 span{font-size:1rem;display:block;}
footer .nav-footer--top p{font-size:2rem;line-height:130%;}
footer .nav-footer--top i{font-size:1.6rem;margin-right:10px;}

footer .nav-footer--top p.nav-email{font-size:1.4rem;}
footer .nav-footer--top p.nav-email i{font-size:1.6rem;margin-right:10px;}

footer .nav-footer--bottom{display:flex;justify-content: space-between;}
footer .nav-footer---menu {
  display: flex;
  justify-content: space-between;
}

footer .nav-footer---sns ul {
  display: flex;
}

footer .nav-footer---sns a {
  display: inline-block;
  padding: 5px;
}

footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
footer .nav-footer ul{list-style: none;padding:0 10px;}
footer a{color:#fff; font-size:.8rem;}
footer a:hover{opacity:0.8;}

footer .inner a{background:#fff;color:var(--brand-700);border-radius:50px;padding:2px 20px;display: inline-block;}

#pageTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  background: rgba(29, 86, 142, .9);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
#pageTop i {
  font-size: 1.1rem;
}
#pageTop:hover {
  background: rgba(29, 86, 142, 1);
}

.section{padding:80px var(--gap);}
.container{width:min(100%,var(--container)); margin:0 auto;}
.page-inner{width:1020px;}
.section-head{text-align:center; margin:0 0 20px;}

/* 見出し共通 */
.heading-main {
  text-align: center;
  color: var(--brand-700);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.3;
  margin-bottom: 40px;
}
.heading-main .sub {
  display: block;
  margin-top: 6px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--brand-500);
  opacity: .9;
}

.box-kakomi{background:#f9f9f9; padding:40px;}
.box-kakomi-20{background:#fefefe; padding:20px 30px;border:4px solid #1d568e;}

/* --- INDEX --- */
/* HERO（左帯あり） */
.hero{position:relative; width:100%; height:100vh; min-height:100svh;height: 100dvh; overflow:hidden; z-index:0;}
.hero::before{
  content:""; position:absolute; top:0; bottom:0; left:0; width:var(--band-w);
  background:rgba(29,86,142,.95); z-index:5;
}
.slides img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0;
  transition:opacity var(--fade) ease-in-out;
}
.slides img.is-active{opacity:1;}

/* ロゴ（HERO用に限定） */
.hero .site-logo{position:absolute; left:0; width:var(--band-w); display:flex; justify-content:center; z-index:40;}
.hero .site-logo img{width:100%; height:auto;}
.hero .logo-reup{position:absolute; bottom:50px; right:80px; width:min(40vw,240px); z-index:35; filter:drop-shadow(0 8px 18px rgba(0,0,0,.18));}

/* 帯あり中央（休暇・新着） */
.band-center{position:relative; overflow:hidden;}
.band-center::before{content:""; position:absolute; left:50%; top:0; transform:translateX(-50%); width:100vw; height:100%; z-index:-1;}
.section--notice.band-center::before{background:var(--brand-600);}
.news.band-center::before{background:var(--brand-500);}

/* 休暇カード */
.section--notice{color:#fff; text-align:center;}
.section--notice .inner{
  max-width:800px; margin:0 auto; background:var(--brand-500); border-radius:12px;
  padding:40px 28px; box-shadow:0 4px 16px rgba(0,0,0,.1);
}

/* 新着情報 */
.news{color:#fff; padding-bottom:90px;}
.news .container{
  background:#fff; color:#333; max-width:900px; margin:0 auto; border-radius:12px;
  padding:40px 28px; box-shadow:0 6px 20px rgba(0,0,0,.12);
}
.news-list{list-style:none; margin:0; padding:0; border-top:1px solid rgba(0,0,0,.08);}
.news-list li{display:flex; flex-wrap:wrap; align-items:baseline; gap:16px; padding:14px 0; border-bottom:1px solid rgba(0,0,0,.08);}
.news-list time{font-size:.95rem; color:#666; min-width:8.5em;}
.news-list a{color:var(--brand-700);}
.news-list a:hover{color:var(--brand-600); text-decoration:underline;}
.icon-new{background:#e28c3b;color:#fff;font-size:0.7rem;padding:2px 10px;}

/* 物件カード */
.prop-card{
  background:var(--card-bg); border-radius:var(--card-radius); overflow:hidden; box-shadow:var(--card-shadow);
  border:1px solid rgba(0,0,0,.06); transition:transform .18s ease, box-shadow .18s ease;
}
.prop-card:hover{transform:translateY(-2px); box-shadow:var(--card-shadow-hover);}
.prop-thumb{position:relative; aspect-ratio:16/9; background:#e6edf5; overflow:hidden;}
.prop-thumb img{width:100%; height:100%; object-fit:cover;}

/* バッジ（新着・おすすめ）共通 */
.badge {
  display: inline-block;
  position: relative;
  background: rgba(243,117,68,0.85);
  color:#fff;
  font-weight:700;
  font-size:.75rem;
  padding:4px 10px;
  border-radius:999px;
  margin-right:6px;
  z-index: 2;
}

.badge-push {background:rgba(243,117,68,0.85);}
.badge-new {background:rgba(85, 144, 215, 0.85);}
.prop-thumb {position:relative;}

.prop-thumb .badge {
  position:absolute;
  top:12px;
  left:12px;
}
.prop-thumb .badge + .badge {
  left: auto;
  margin-left: 60px;
}
.prop-titlebar {
  position:absolute;
  left:0; right:0; bottom:0;
  padding:18px 20px 20px;
  background:linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0));
  color:#fff;
}

.prop-titlebar h3{font-size:.8rem; font-weight:700; letter-spacing:.03em; text-shadow:0 1px 6px rgba(0,0,0,.3);}
.prop-body{padding:16px 18px 22px;}
.prop-info{color:#98a2b3; font-size:.9rem; margin-bottom:.4rem;}
.prop-osusume{color:#333; font-size:.7rem; margin-bottom:.4rem;font-weight:700;}
.prop-desc{color:#3a3a3a; margin-bottom:12px;}
.prop-tags{display:flex; flex-wrap:wrap; gap:6px; list-style:none; margin:0 0 10px; padding:0;}
.prop-tags li{background:var(--tag-bg); color:#2d4f7a; font-weight:700; font-size:.8rem; padding:5px 9px; border-radius:999px;}
.prop-price{font-size:1rem; color:#1a2e50;}
.prop-price strong{font-size:1.2rem; color:#183d77;}
.props-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:clamp(14px,1.6vw,22px);}

/* ボタンの基準用ラッパー */
.props-scroller-wrap{position:relative;}


.props-scroller{
  overflow-x:auto;
  overflow-y:hidden;
  scroll-behavior:smooth;
  cursor:grab;
}
.props-scroller.is-dragging{cursor:grabbing;}

.props-scroller .props-grid{
  display:grid;
  grid-template-rows:auto auto;
  grid-auto-flow:column;
  grid-auto-columns:270px;
  width:max-content;
  gap:clamp(14px,1.6vw,22px);
  padding:4px 0;
  scroll-snap-type:x mandatory;
}

.props-scroller .props-grid .prop-card-link{width:270px;}

.props-scroller.is-dragging{cursor:grabbing;}
.props-scroller{cursor:grab;}

/* ボタン */
.props-nav {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  border:none;
  border-radius:999px;
  background:var(--brand-700);
  box-shadow:0 4px 12px rgba(0,0,0,.18);
  color:#fff;
  font-weight:700;
  cursor:pointer;
  z-index:10;
}
.props-nav--prev{left:-40px;}
.props-nav--next{right:-40px;}

.prop-card-link{
  display:block;
  color:inherit;
  text-decoration:none;
}

.prop-card-link:hover .prop-card{
  transform:translateY(-2px);
  box-shadow:var(--card-shadow-hover);
}

/* タブリンク */
.props .toolbar{display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin:8px 0 24px;}
.props .tab-link{display:block; text-align:center; font-weight:700; color:var(--brand-700); border:1px solid rgba(0,0,0,.1); background:#fff; border-radius:999px; padding:10px 0; transition:all .3s ease;}
.props .tab-link:hover{background:#f8e4c8; color:var(--brand-700);}
.props .tab-link.is-active{background:#e28c3b; color:#fff; border-color:transparent; box-shadow:0 3px 10px rgba(226,140,59,.25);}

/* カテゴリカード */
.section.cats{background-color:var(--bg-soft);padding:0;}
.cats .group{margin:24px 0;}
.cats .group:last-child{margin-bottom:40px;}

/* カテゴリカード */
.cats .grid{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  align-items:stretch;
}

/* 1段目＆3段目（2列） */
.cats .grid--2 > .cat-card{
  flex:0 0 calc(50% - 9px);
}

/* 2段目（3列） */
.cats .grid--3 > .cat-card{
  flex:0 0 calc(33.333% - 12px);
}

.cat-card{
  position:relative; display:flex; align-items:center; justify-content:center; border-radius:16px; overflow:hidden;
  aspect-ratio:16/7; background:#cfd8e3 center/cover no-repeat; background-image:var(--bg,none);
  box-shadow:0 10px 24px rgba(0,0,0,.12);
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease; color:#fff; text-align:center;
}
.cat-card::before{content:""; position:absolute; inset:0; background:linear-gradient(to right, rgba(0,0,0,.45), rgba(0,0,0,.45)); opacity:1; transition:opacity .45s ease;}
.cat-card:hover::before{opacity:.3;}
.cat-card .title{position:relative; z-index:1; padding:10px; font-size:clamp(18px,2vw,22px); font-weight:800; text-shadow:0 3px 12px rgba(0,0,0,.45); color:#e0e8f0; line-height:1.3;}
.cat-card .title .sub{display:block; font-size:.8rem; font-weight:600; margin-top:4px; opacity:.9; color:#e0e8f0;}

.cats-title{text-align: center;color: var(--brand-700);}

/* リクルート */
.banner-recruit{text-align:center;}
.banner-recruit p{font-size:1.2rem;background: linear-gradient(transparent 70%, #efea3a 30%);display:inline-block;}
.banner-recruit p{
  position: relative;
  display: inline-block; 
  padding: 0.4em;  
}
.banner-recruit p::before,
.banner-recruit p::after{
  content: "";
  display: inline-block;
  user-select: none;
  pointer-events: none;
  transform: translateY(.02em);
}
.banner-recruit p::before{
  content: "＼";
  margin-right: .3em;
}
.banner-recruit p::after{
  content: "／";
  margin-left: .3em;
}
.banner-recruit-sp{display:none;}


/* CTA */
.cta{background:var(--bg-soft);}
.cta .box{
  max-width:900px; margin:0 auto; text-align:center; background:#fff; border:1px solid rgba(0,0,0,.06);
  border-radius:16px; padding:32px 24px; box-shadow:0 8px 24px rgba(0,0,0,.08);
}
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--brand-700);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(29, 86, 142, .25);
  margin: 20px 5px 5px 5px;
}
.btn:hover{opacity:.9; transform:translateY(-1px);}

/* バナー */
.banner-links{padding:60px var(--gap) 80px;}
.banner-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: min(100%, var(--container));
    margin: 40px auto 0;
}

.banner-item{
  display:flex; flex-direction:column; align-items:center; text-align:center;
  background:var(--bg-color,#f0f0f0); border-radius:12px; padding:20px 10px;
  box-shadow:0 4px 10px rgba(0,0,0,.08); transition:transform .3s ease, box-shadow .3s ease;
}
.banner-item:hover{transform:translateY(-3px); box-shadow:0 6px 16px rgba(0,0,0,.12);}
.banner-item img{width:100%; max-width:160px; height:auto; object-fit:contain; transition:transform .3s ease;}
.banner-item:hover img{transform:scale(1.04);}
.banner-caption{font-size:.8rem; margin-top:8px; color:#fff; font-weight:600; letter-spacing:.04em;}

/* =======================================
   斜めグラデーション背景（中央帯）
======================================= */

.section.band-center {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 100%);
}
.section.band-center::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(255,255,255,.1), rgba(255,255,255,0) 70%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* 色だけここで変える */
.section--notice.band-center {
  background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand-500) 100%);
}
.news.band-center {
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-400, #6fa2c9) 100%);
}


/* =======================================
   ニュース帯（band-center）専用
======================================= */
.section.news.band-center {
  position: relative;
  overflow: hidden;
  background-color: #e5edf4;
  padding: 80px 0;
  z-index: 0;
}
.section.news.band-center::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  top: auto;
  right: auto;
  border-bottom: 30vw solid rgba(255,255,255,0.1);
  border-right: 100vw solid transparent;
  background: none;
  z-index: -1;
}
.section.news.band-center::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: 10vw solid var(--brand-500, #5f88b8);
  border-left: 100vw solid transparent;
  background: none;
  z-index: -2;
}
.section.news.band-center .container {
  position: relative;
  z-index: 1;
}

.cats-row {padding: 80px 0;}
.cats-row:nth-of-type(odd) {background: #f6f8fb;}
.cats-row:nth-of-type(even) {background: #fff;}

h2.cats-title {
  text-align: center;
  color: var(--brand-700);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.3;
  margin-bottom: 40px;
}
h2.cats-title .sub {
  display: block;
  font-size: .9rem;
  color: var(--brand-500);
  font-weight: 600;
  margin-top: 6px;
  opacity: .9;
}

/* --- PAGE --- */
.page-inner{line-height:200%;}
.page-section_top{padding-top:180px;}
header.page{background:var(--brand-700);}
.page-inner h3{font-size:1.2rem; margin:20px auto;}
.page-inner p{margin-bottom:15px;}
.page-inner ul,
.page-inner ol{padding-left:1.5rem;margin-bottom:20px;}

/* TABLE */
.page-inner table{margin:auto; width:100%;}
.page-inner th,
.page-inner td{padding:20px; border:1px solid #eee;}
.page-inner th{background:#f0f0f0;}
.page-innertd ul{margin-left:20px;}

/* comp info */
.page--compinfo{text-align:center;}
.page--compinfo h2{margin-bottom:10px;}
.page--compinfo p{margin-bottom:40px;}
.mov video{width:100%; height:auto;}
.page--compinfo .mov_caution{font-size:.8rem; margin-bottom:5px;}
.box-staff{display:flex; margin-bottom:10px; padding:20px; background:#f9f9f9; border-top:1px solid #eee; border-bottom:1px solid #eee;}
.box-staff-pict,
.box-staff-text{padding:10px;}
.box-staff-text h4{font-size:1.1rem; color:var(--brand-700); margin-bottom:10px;}
.page---syokuin .flexbox-staff{display:flex; flex-wrap:wrap; justify-content:space-between;}
.page---syokuin .box-staff{width:49.5%;}

/* award */
.award-top{padding:50px 0 20px;}
.award-box cite{display:block; text-align:right; margin-top:20px;}
.award-pict{display:flex;}
.award-pict p{width:25%; padding:2px;}
.award-pict p img{width:100%; height:auto;}

/* access */
.page--access{text-align:center;}
.page--access h3{color:var(--brand-700);font-size:1.6rem;}
.page--access ul{display:inline-block;text-align:left;margin-bottom:40px;}
.tel{font-size:2.0rem;}

.map-embed iframe {
  width: 100%;
  height: 400px;
  max-width: 100%;
  border: 0;
  display: block;
}
/* recruit */
.page--recruit table{margin-bottom:20px;}
.page--recruit h2{text-align: center;}
.page--recruit h3{background:var(--brand-600);color:#fff;padding:5px 0 5px 20px;}
.page--recruit h5{background:var(--brand-500);color:#fff;padding:5px 0 5px 20px;font-size:1rem;border-bottom:2px solid #ccc;margin:40px auto 20px auto;}
.page--recruit h6 {
  font-size: 1rem;
  position: relative;
  display: inline-block;
  padding-left: 12px;
}
.page--recruit h6::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent var(--brand-700);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.page--recruit .btn-over{text-align:center;margin-bottom:40px;}
.page--recruit .btn-over .btn{box-shadow:none;}
.page--recruit > ul > li,
.page--recruit > ol > li{margin-bottom:20px;}

.p-msg{text-align:center;font-size:1.2rem;color:var(--brand-700);font-weight:700;}
.p-img-right{float:right;width:180px;margin:0 0 20px 20px;}
.p-img-right img{width:100%;height:auto;border-radius:50%;}

/* owner-sale */
.page--owner h4{color:var(--brand-700);font-size:1.1rem;margin:10px 0;}
.page--owner h3 {
  position: relative;
  display: inline-block;
  padding-left: 80px;
  font-size: 1.4rem;
  font-weight: 700;
}
.page--owner h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 60px;
  height: 1px;
  background: var(--brand-700);
  transform: translateY(-50%);
}
.btn-over{text-align:center;margin-bottom:40px;}
.btn-over .btn{box-shadow:none;}

/* owner-rent */
.page--owner .box-kakomi-20{margin-bottom:20px;}
.page--owner .box-kakomi-20 h4{font-size:1.4rem;margin-bottom:20px;}
.page--owner .box-kakomi-20 p{font-size:1.0rem;}
.rent-wrap{
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
  margin:20px auto;
  align-items: stretch;
}
.rent-box{
  width:48%;
  margin-bottom:20px;
  display:flex;
  flex-direction:column;
}
.rent-box h5{
  font-size:1.0rem;
  background:var(--brand-700);
  color:#fff;
  padding:5px 0 5px 20px;
}
.rent-box ul{
  margin-bottom:20px;
  padding:20px;
  background:#f9f9f9;
  flex:1;
}
.rent-box li{margin-left:20px;}

/* syosai */
.prop-wrap{background:#f6f8fb;padding:20px 0;}
.prop-card{background:#fff;border-radius:12px;box-shadow:0 2px 8px rgba(0,0,0,0.05);margin-bottom:20px;overflow:hidden;}
.prop-hero .prop-head {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 1.8rem 2rem;
  z-index: 3;
  background: linear-gradient(to top, rgba(0,0,0,0.25), rgba(0,0,0,0));
  color: #fff;
  text-shadow: 0 0 6px rgba(0,0,0,.6);
  border-bottom: none;
}
.prop-hero .prop-head small,
.prop-hero .prop-head .meta {
  color: #fff;
  opacity: .95;
}
.prop-main{display:grid;grid-template-columns:1.6fr .9fr;gap:20px;padding:20px 0;}
.prop-detail-card {
  background:#fff;
  border-radius:12px;
  box-shadow:0 2px 8px rgba(0,0,0,.05);
  margin-bottom:20px;
  overflow:hidden;
}
.prop-photo{background:#fff;border-radius:10px;padding:10px;box-shadow: 0 2px 8px rgba(0, 0, 0, .05);}
.prop-photo .big img{width:100%;border-radius:8px;}
.thumb-list{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px;}
.thumb-list img{width:72px;height:58px;object-fit:cover;border-radius:6px;border:2px solid透明;cursor:pointer;}
.thumb-list img.active{border-color:#1d568e;}

.prop-side{background:#fff;border-radius:10px;padding:16px;box-shadow: 0 2px 8px rgba(0, 0, 0, .05);text-align: center;}
.price-val{font-size:1.4rem;color:#1d568e;font-weight:800;}
.btn{/*display:block;*/}
/* .btn-main/.btn-sub は上で定義済み */

.prop-lower{background:#fff;border-radius:12px;padding:20px;}
.prop-table{width:100%;border-collapse:collapse;font-size:.85rem;}
.prop-table th,.prop-table td{border-bottom:1px solid #e5e7eb;padding:8px 10px;}
.prop-table th{width:140px;background:#f9fafb;text-align:left;color:#333;}

.map-wrap{display:flex;gap: 16px;margin-top:16px;}
.map-box{background:#edf2f7;border-radius:10px;padding:12px;min-height:180px;width:50%;}
.map-box iframe{width:100%;height:280px;border:0;border-radius:8px;}

.mini-map {
  position: relative;
  margin: 14px 0 20px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.mini-map iframe {
  width: 100%;
  height: 160px;
  border: 0;
  display: block;
  border-radius: 10px;
}
.mini-map .map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity .25s;
  text-decoration: none;
}
.mini-map:hover .map-overlay {
  opacity: 1;
  backdrop-filter: blur(2px);
}

/* 物件詳細ヒーロー画像 */
.prop-hero {
  --src: none;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #e9eef3;
  margin: 0 auto 2rem;
  max-width: 1200px;
  aspect-ratio: 16 / 3;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  isolation: isolate;
}
.prop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--src);
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  transform: scale(1.1);
  opacity: 1;
  z-index: 0;
}
.prop-hero img {  
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.prop-hero #mainImg {
  filter: brightness(1.3);
}
.prop-hero::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 14px;
  backdrop-filter: blur(5px) brightness(1.15);
  -webkit-backdrop-filter: blur(5px) brightness(1.15);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.7),
    inset 0 2px 8px rgba(0,0,0,0.25);
  z-index: 2;
}
.prop-hero .prop-head {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #fff;
  padding: 1.8rem 2rem;
  z-index: 3;
  background: linear-gradient(to top, rgba(0,0,0,0.25), rgba(0,0,0,0));
  text-shadow: 0 0 6px rgba(0,0,0,0.6);
}
.prop-hero .prop-head small {
  color: #fff;
  font-size:1.2rem;
}
.prop-hero .prop-head h1 {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: .3em;
  color: #fff;
}
.prop-hero .prop-head .meta {
  color: #fff;
  opacity: .9;
}

.prop-osusume-top {
  background: #e9f1ff;
  border: 1px solid rgba(29, 86, 142, .08);
  border-radius: 12px;
  padding: 10px 12px 11px;
  margin-bottom: 14px;
  font-weight: 600;
  color: #143a66;
  line-height: 1.5;
  font-size: 0.9rem;
}

/* 価格・賃料表示 */
.price-val {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
  font-weight: 700;
  margin: 20px auto;
  line-height: 1.2;
}
.price-val .label {
  font-size: 0.9rem;
  color: #555;
  margin-right: 4px;
}
.price-val .num {
  font-size: 2.2rem;
  color: var(--brand-700);
  font-weight: 700;
}
.price-val .unit {
  font-size: 0.85rem;
  color: #444;
  margin-left: 2px;
}

/* ミニスペック FLEX */
.prop-mini-spec {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-bottom: 16px;
}

/* 各ボックス共通 */
.spec-item {
  background: #f3f5f9;
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,.04);
  text-align: center;
  line-height: 100%;
  flex: 1 1 calc(50% - 6px);
}

/* ラベル＆値 */
.spec-item .label {
  display: block;
  font-size: 0.7rem;
  color: #6b7280;
}
.spec-item .val {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
}
.spec-item .val.price {
  font-size: 1.1rem;
}
.spec-item .val.price small {
  font-size: 0.8rem;
  font-weight: 600;
  color: #444;
  margin-left: 2px;
}

/* 1つ目（所在地）は横幅100%で1行占有 */
.prop-mini-spec .spec-item:nth-child(1) {
  flex: 0 0 100%;
}

/* 並び順を調整：1行目=所在地, 2行目=用途｜最寄駅, 3行目=価格 */
.prop-mini-spec .spec-item:nth-child(1) { order: 1; } /* 所在地 */
.prop-mini-spec .spec-item:nth-child(3) { order: 2; } /* 用途 */
.prop-mini-spec .spec-item:nth-child(2) { order: 3; } /* 最寄駅 */
.prop-mini-spec .spec-item:nth-child(4) { order: 4; } /* 価格 */


/* kanri */
.page--kanri {text-align: center;}
.kanri_box{margin-bottom:40px;}
.page--kanri h2:not(.heading-main) {
  font-size: 1.4rem;
  width:680px;
   background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand-500) 100%);
  color:#fff;
  display:inline-block;
  padding:5px 0;
}
.kanri_box_wrap {
  display: flex;
  width: 680px;
  justify-content: center;
  margin: 0 auto;
}
.kanri_box_wrap p {width: 340px;}
.kanri_box_wrap p img {
  width: 100%;
  height: auto;
}

.kanri_box .box-kakomi {
  width: 680px;
  margin: 10px auto;
  padding:10px 0;
  border-radius: 10px;
}
.kanri_box .box-kakomi p{margin-bottom:10px;}
.kanri_box .box-kakomi h3{font-size:1.1rem;color:var(--brand-700);margin-bottom:5px;}

/* =========================================================
   list.php 専用（タブ切替＋一覧グリッド切替）
========================================================= */

/* タブボタン */
.props-tabs {
  display:flex;
  justify-content:center;
  gap:1rem;
  margin-bottom:2rem;
}
.tab-btn {
  background:#f0f3f8;
  border:none;
  padding:.6em 2em;
  font-size:1rem;
  border-radius:6px;
  cursor:pointer;
  transition:.3s;
}
.tab-btn.active {
  background:var(--brand-700);
  color:#fff;
  box-shadow:0 4px 10px rgba(0,0,0,.1);
}

.props-grid.props-grid-page {display:none;}
.props-grid.props-grid-page.active {display:grid;}

@media (max-width:959px){

  .br_pc_none{display:block;}
  .cta h2{font-size:1.1rem;}

  .sp_title{display:block;width:70%;}
    
  .sp_title img{width:220px;height:auto;}

  /* */
    .cats .grid{padding:0 20px;}
    .cats .grid--2 > .cat-card,
    .cats .grid--3 > .cat-card{flex:0 0 100%;}

    .section.section--notice {padding: 60px 0;}

    .section--notice .inner {
      width: calc(100% - 32px); 
      margin: 0 auto;
      max-width: 800px;
    }
    .news .container{
      width: calc(100% - 32px);
      margin: 0 auto;
      max-width: 900px;
    }
    .props-nav--prev{left:0;}
    .props-nav--next{right:0;}

  /* */

  .header-inner{justify-content:flex-start;}

  footer .nav-footer,
  footer small{display:block;text-align:center;}
  footer small{margin-top:20px;}
  .nav-footer--top{text-align:center;}


  footer .nav-footer--bottom{display:none;}
  footer .inner{display:block;text-align: center;}

  /* index */
  .hero .logo-reup img{width:100%;}
  .hero .slides img{object-position: center center;}
  .hero::before{display:none;}

  .hero .logo-reup {
    bottom: 20px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 20px);
    right: 20px;
  }

  .cats-row{padding:30px 0;}
  h2.cats-title{margin-bottom:0;}
  .cats .group:last-child {margin-bottom: 0;}
  .banner-recruit p::before,
  .banner-recruit p::after{display:none;}

  .banner-grid {align-items: stretch;}
  .banner-item {flex: 0 0 calc(50% - 10px);}

.banner-recruit-link{display: none;}
.banner-recruit{
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-400, #6fa2c9) 100%);
  color:#fff;
}
.banner-recruit-sp{
  display:block;
}
.banner-recruit p{background:linear-gradient(transparent 85%, #4b77ab 15%)}
.banner-recruit-sp img{width:50%;}
.banner-recruit-sp h3{color:#ff0;font-size:1.2rem;font-weight:700;}

/* ================================
   SP版：おすすめ物件 縦スクロールリスト
   （1行1物件／約3件分の高さで中だけスクロール）
================================ */
  .props-scroller-wrap {
    width: 100%;
    overflow: visible;
  }
  .props-scroller {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    max-height: 520px;
    white-space: normal !important;
    display: block !important;
    width: 100% !important;
    -webkit-overflow-scrolling: touch;
  }

  .props-scroller::after {
    content: "";
    display: block;
    height: 40px;
  }

  .props-grid {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 18px;
    width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
  }

  .props-grid > * {
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .prop-card-link {display: block;}

  .prop-card {width: 100% !important;}

  .prop-thumb img {
    width: 100% !important;
    height: auto;
    object-fit: cover;
  }

  .props-nav {display: none ;}

  /* page */
  .page-inner {width: 100%;}
  .page-inner h3{text-align:center;}
  .box-kakomi {padding: 20px;margin-bottom:20px;}
  .box-kakomi p:last-of-type{margin-bottom: 0;}

  .props-grid-page{display:block;}

  .props-grid.props-grid-page.active {display:block;}
  .props-grid.props-grid-page .prop-card-link{
      display:block;
      width:100%;
      margin-bottom:1.5rem;
  }

  .rent-wrap{display:block;}
  .rent-box{width: 100%;;}

  .page--owner h3{padding:0;font-size:1.2rem;text-align: left;}
  .page--owner h3::before{display:none;}
  .box-kakomi-20 {padding: 20px 15px;}

  .kanri_box p img{width:100%;height:auto;}
  .kanri_box_wrap{width:100%;}
  .page--kanri h2:not(.heading-main) {width: 100%;}

  .prop-hero img {display: none;}

  .prop-hero::before,
  .prop-hero::after {display: none;}
  .prop-hero {aspect-ratio: auto;background: none;box-shadow: none;}

  .prop-hero .prop-head h1{color:var(--brand-700);font-size:1.3rem;}

  .prop-hero .prop-head {
      position: relative;
      background: none;
      text-shadow: none;
      color: #333;
      padding: 0;
  }
  .prop-hero .prop-head small {
      color: #333;
      font-size:1rem;
      margin-bottom:10px;
  }
  .prop-hero .prop-head .meta {color: #555;opacity: 1;}

  .prop-table th, .prop-table td,
  .page-inner th, .page-inner td{display:block;width:100%;}

  .map-wrap{display:block;}
  .map-box{width:100%;margin-bottom:10px;}
  .prop-main{display:block;}

  .page--comp.page-inner th,
  .page--recruit.page-inner th{padding:5px 0;}

  .page--compinfo p img{width: 100%;height:auto;}
  .box-staff {display: block;}
  .box-staff-pict{text-align: center;}

.award-pict{flex-wrap: wrap;}
.award-pict p{width: 50%;}

  .gnav_wrap{display:none;}
}
