/* --- 基本リセット & 共通変数 --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --primary-orange: #FF6D00;
    --dark-orange: #e65c00;
    --cta-green: #00A73C;
    --bg-light-orange: #fff8f2;
    --text-color: #333;
    --border-color: #ddd;
}

body {
    /* font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif; */
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* 基底クラス */
#MainContents {
    width: 950px;
    margin: 0 auto;
}
#header {
    height: 122px;
}
.subPage #MainContents h4{
    font-size:inherit;
    background: none;
    padding:0;
    margin:0;
    line-height: inherit;
    color: inherit;
    font-weight: normal;
}
.subPage #MainContents h3{
    font-size:inherit;
    background: none;
    padding:0;
    margin:0;
    line-height: inherit;
    color: inherit;
    font-weight: normal;
}

/* 共通レイアウトクラス */
.common-indent{
    text-indent: -1em;
    padding-left: 1em;
}
.container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0px 0px;
}
.section-margin {margin-top: 30px;}
.text-center { text-align: center; }

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 0px;
    position: relative;
    color: #000;
}

/* プレースホルダー */
.placeholder {
    background-color: #eaebed;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    /* border-radius: 6px; */
    /* padding: 10px; */
}

/* 3連CTAボタン */
.cta-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}
.btn-cta {
    flex: 1;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    position: relative;
    /* box-shadow: 0 2px 4px 0 rgba(151, 66, 0, 0.2) !important; */
    transition: transform 0.2s, opacity 0.2s;
    text-decoration: none !important;
}
.btn-cta a{
    color: #fff;
}
.btn-cta:hover {
    transform: translateY(-2px);opacity: 0.7;
    box-shadow: 0 2px 4px 0 rgba(151, 66, 0, 0.2) !important;
}
.btn-cta::after {
    position: absolute;
    right: 20px;
    font-family: 'Line Awesome Free';
    content: "\f105";
}
.btn-green {background-color: var(--cta-green);color: #fff !important;}
.btn-orange {background-color: var(--primary-orange);color: #fff !important;}
.btn-white {
    background-color: #fff;
    color: var(--primary-orange) !important;
    border: 1px solid var(--primary-orange);
    box-shadow: none;
}


#header p.primary-txt{
    line-height: 1;
    max-width: 480px;
    margin-top: 0;
    margin-left: 0;
    text-overflow: ellipsis;
    text-align:left;
    white-space: nowrap;
    overflow: hidden;
    color: #736357;
}
#header p.primary-txt span {
    padding: 0 5px;
}


/* --- 1. ローカルナビゲーション --- */
.local-nav {
    /* background-color: var(--primary-orange); */
    background: linear-gradient(180deg, #ff6f00 0%, #f54900 100%);
    overflow-x: auto;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 20;
    transition: all 0.3s ease;
    border-radius: 128px;
    border: 1px solid rgba(255, 111, 0, 0.5);
}
.nav-list {
    display: flex;
    justify-content: space-between;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
}
.nav-list a {
    /* display: inline-block;*/
    padding: 10px 0px;
    color: #fff;
    font-size: 15px;
    letter-spacing: -0.03em;
    font-weight: bold;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    flex: 1;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    line-height: 1.3;
}
.nav-list a:last-child { border-right: none; }
.nav-list a:hover {
    background: linear-gradient(180deg, rgba(255, 147, 66, 1) 0%, rgba(255, 122, 66, 1) 100%);
}

/* 追従時のクリアガラススタイル */
.glass-effect{
    top:10px;
    background: linear-gradient(180deg, rgba(255, 111, 0, 0.85) 0%, rgba(245, 73, 0, 0.85) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 2px 5px 0 rgba(151, 66, 0, 0.4);
}
.glass-effect .nav-list a{
    padding: 10px 0px;
    line-height: 1.2;
}


/* --- 1.5. ワンポイント吹き出し --- */
.onepoint-balloon{
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    color: rgb(0 167 60);
    font-size: 15px;
    background-color: #E5F6EB;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.4;
    right: -24px;
    font-weight: bold;
    top: 54px;
    z-index: 1;
    transform: rotate(10deg);
    filter: drop-shadow(4px 4px 0px rgba(0, 167, 60, 0.6));
}
.onepoint-balloon::before{
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 2px;
    bottom: 2px;
    border-right: 20px solid #E5F6EB;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transform: rotate(-45deg);
}


/* --- 2. メインビジュアル --- */
.hero {
    padding: 0px 0px;
    overflow: hidden;
    margin-top: 20px;
    border-radius: 10px;
}
.hero-flex {
    display: flex;
    /* gap: 25px; */
    align-items: center;
    position: relative;
    padding:20px;
}
.hero-left {
    z-index: 1;
    width: 640px;
}
.hero-right {
    flex: 1;
    position: absolute;
    right: 0;
    min-width: 480px;
    max-height: 444px;
}
.hero-right img{
    max-height: 444px;
}
.transparent-gradient {
    /* position: relative; */
}
.transparent-gradient::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(
280deg, rgb(255 255 255 / 0%) 50%, #ffffff 70%);
    position: absolute;
    top: 0;
    left: 0;
}
.hero-sub {font-size: 16px;font-weight: bold;color: #333;}
.hero-title {font-size: 48px;color: var(--primary-orange);font-weight: bold;line-height: 1.2;margin-top: 5px;}
.hero-check-list {
    margin-top: 20px;
}
.hero-check-list li {
    font-size: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 3px;
}
.hero-check-list li:first-child{
    margin-top: 0;
}
.hero-check-list li::before {
    color: #fff;
    background-color: var(--cta-green);
    width: 20px;
    height: 20px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-family: "Line Awesome Free";
    content: "\f00c";
}
.hero-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 0px;
    margin-top: 20px;
}
.hero-icon-item {
    flex: 1;
    font-size: 12px;
    text-align: center;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    max-width: 78px;
    gap: 6px;
    letter-spacing: -0.02em;
}
.hero-icon-item img{
    max-width: 48px;
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 0px;
    margin-top: 20px;
}
.hero-badge-item {
    flex: 1;
    background: #fff;
    border: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    border-radius: 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 15px 0px;
    align-items: center;
}
.hero-badge-item img{
    max-width: 24px;
    margin-right: 5px;
}
.hero-badge-item span strong{
    color: var(--primary-orange);
}



/* --- 3. 選ばれる理由 --- */
.reasons-grid {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.reasons-grid-bottom {
    display: flex;
    gap: 20px;
    margin: 20px auto 0px auto;
    justify-content: center;
    flex-wrap: wrap;
}
.reason-card {
    background-color: #FFF6E5;
    border-radius: 10px;
    text-align: center;
    position: relative;
    width: 222px;
    height: 222px;
}
.reason-card h3{
    font-size: 20px !important;
    font-weight: bold !important;
}
.reason-num {
    position: absolute;
    top: 0px;
    left: 0px;
    background: var(--primary-orange);
    color: #fff;
    width: 40px;
    height: 40px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.reason-icon {
    margin: 20px auto 20px auto;
    height: 84px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reason-icon1 img{
    width: 96px;
}
.reason-icon2 img{
    width: 96px;
    margin-right: -20px;
}
.reason-icon3 img{
    width: 74px;
}
.reason-icon4 img{
    width: 60px;
}
.reason-icon5 img{
    width: 86px;
}
.reason-icon6 img{
    width: 98px;
}
.reason-icon7 img{
    width: 54px;
}


.reason-card h4 { font-size: 15px; font-weight: bold; margin-bottom: 5px; }
.reason-card p {font-size: 15px;color: #666;margin-top: 8px;line-height: 1.3;}

/* --- 4. ご利用プラン --- */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
}
.plans-grid.plans-grid-tmp-3cols {
    grid-template-columns: repeat(3, 1fr);
}
.plan-card {
    /* border-radius: 8px; */
    /* overflow: hidden; */
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.05); */
    display: flex;
    flex-direction: column;
    background: #fff;
}

.plan-tag{
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 512px;
  line-height: 1;
  padding: 12px 0px;
  width: calc(100% - 20px);
  margin-left: auto;
  margin-right: auto;
  margin-top: -19px;
}
.plan-tag::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 10px 8px 0 8px;
  translate: -50% 100%;
}


.plan-name {
    text-align: center;
    font-size: 19px !important;
    font-weight: bold !important;
    letter-spacing: -0.04em;
    margin-top: 5px !important;
}
.plan-meta {text-align: center;font-size: 14px;color: #666;padding: 8px 0px;background: #ffffff;display: inline-block;width: calc(100% - 60px);margin-left: auto;margin-right: auto;margin-top: 15px;border-radius: 512px;line-height: 1;display: flex;align-items: center;justify-content: center;}
.plan-meta strong{font-size: 16px;}
.plan-price-box .plan-price{font-size: 32px;font-weight: bold;}
.plan-price-box {
    text-align: center;
    padding: 0px 0px;
    line-height: 1;
    margin-top: 10px;
}
.plan-price-box span { font-size: 14px; color: #333; }
.plan-price { font-size: 24px; font-weight: bold; }
.plan-body {flex-grow: 1;padding: 0px 20px;}
.plan-label {font-weight: bold;font-size: 14px;margin-top: 15px;}
.plan-label h4 { font-weight: bold !important;  }
.plan-user-list {background: #fff;padding: 10px;border-radius: 5px;margin-top: 5px;}
.plan-content-list {/* background: #fff; *//* padding: 1px 10px 10px 10px; *//* border-radius: 5px; *//* margin-top: 5px; */}
.plan-img-wrap{
    display: flex;
    width: 32px;
    height: 32px;
    margin-right: 5px;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.plan-content{
    line-height: 1.6;
}

.plan-user-list li{
    display: flex;
    align-items: center;
    font-size: 13px;
}
.plan-user-list li::before {
    color: inherit;
    font-weight: bold;
    font-family: 'Line Awesome Free';
    content: "\f058";
    font-size: 18px;
    margin-right: 2px;
}
.plan-content-list li {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.plan-btn {
    display: block;
    color: #fff !important;
    text-align: center;
    padding: 14px 0px;
    font-weight: bold;
    font-size: 16px;
    margin-left:20px;
    margin-right: 18px;
    margin-bottom: 20px;
    margin-top: 20px;
    text-decoration: none !important;
    border-radius: 5px;
    line-height: 1;
    position: relative;
    transition: all 0.3s;
}
.plan-btn::after {
    position: absolute;
    right: 15px;
    font-family: 'Line Awesome Free';
    content: "\f105";
}
.plan-btn:hover {
    transform: translateY(-2px);
    opacity: 0.7;
    box-shadow: 0 2px 4px 0 rgba(124, 124, 124, 0.2) !important;
}

.all-locate{
    font-weight: bold;
    color: #fff;
    font-size: 12px;
    padding: 2px 5px;
    line-height: 1;
    margin-right: 3px;
    border-radius: 3px;
}

/* 各プランの配色設定 */
.plan-card.p-dropin {background: #DAF9FF;border-top-left-radius: 10px;border-bottom-left-radius: 10px;}
.p-dropin .plan-tag { background: #00AFD0; color: #fff; }
.p-dropin .plan-tag:after { border-color: #00AFD0 transparent transparent; }
.p-dropin .plan-name { color:#00AFD0 !important;}
.p-dropin .plan-meta strong{ color: #00AFD0; }
.p-dropin .plan-price { color: #00AFD0; }
.p-dropin .plan-user-list li::before { color: #00AFD0; }
.p-dropin .plan-btn { background: #00AFD0; }

.plan-card.p-virtual { background: #F3FFDD; }
.p-virtual .plan-tag { background: #79BA00; color: #fff; }
.p-virtual .plan-tag:after { border-color: #79BA00 transparent transparent; }
.p-virtual .plan-name { color:#79BA00 !important;}
.p-virtual .plan-meta strong{ color: #79BA00; }
.p-virtual .plan-price { color: #79BA00; }
.p-virtual .plan-user-list li::before { color: #79BA00; }
.p-virtual .plan-btn { background: #79BA00; }
.p-virtual .all-locate {background: #79BA00; }

.plan-card.p-free { background: #FFF2EB; }
.p-free .plan-tag { background: #F87C00; color: #fff; }
.p-free .plan-tag:after { border-color: #F87C00 transparent transparent; }
.p-free .plan-name { color:#F87C00 !important;}
.p-free .plan-meta strong{ color: #F87C00; }
.p-free .plan-price { color: #F87C00; }
.p-free .plan-user-list li::before { color: #F87C00; }
.p-free .plan-btn { background: #F87C00; }
.p-free .all-locate {background: #F87C00; }

.plan-card.p-room {background: #FFE8D2;border-top-right-radius: 10px;border-bottom-right-radius: 10px;}
.p-room .plan-tag { background: #B4661A; color: #fff; }
.p-room .plan-tag:after { border-color: #B4661A transparent transparent; }
.p-room .plan-name { color:#B4661A !important;}
.p-room .plan-meta strong{ color: #B4661A; }
.p-room .plan-price { color: #B4661A; }
.p-room .plan-user-list li::before { color: #B4661A; }
.p-room .plan-btn { background: #B4661A; }
.p-room .all-locate {background: #B4661A; }

/* --- 5. こんな方におすすめ --- */
.target-users-flex {
    display: flex;
    justify-content: space-around;
    gap: 0px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.target-user-item {
    text-align: center;
    font-size: 14px;
    /* font-weight: bold; */
    /* width: 120px; */
}
.target-user-item .target-user-name{
    margin-top: 10px;
    display: inline-block;
}

.target-avatar {width: 96px;height: 96px;/* border-radius: 50%; */margin: 0px auto 0px auto;}

.target-avatar img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* --- 6. おすすめの方（オレンジ枠） --- */
.recommend-box {
    border: 2px solid var(--primary-orange);
    border-radius: 10px;
    padding: 20px 20px;
    background: #FFF6E5;
    position: relative;
    margin-top: 40px;
}
.recommend-title {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: #fff;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 64px;
    line-height: 1;
}
.recommend-title h3{
    font-weight: bold !important;
}
.recommend-lists {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    justify-content: space-around;
}
.recommend-lists ul {/* flex: 1; */}
.recommend-lists li {
    font-size: 16px;
    /* font-weight: bold; */
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.3;
    margin-top: 10px;
}
.recommend-lists li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--primary-orange);
    border-radius: 1px;
}

/* --- 7. 施設・設備 --- */
.intro-text {font-size: 16px;/* margin-bottom: 25px; */text-align: left;margin-top: 20px;}
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.facility-card {
    background: #fff;
}

.facility-card h3{
    font-size: 20px !important;
    font-weight: bold !important;
    letter-spacing: -0.03em;
    margin-top: 10px !important;
}

.facility-img {
    height: 187px;
    border-radius: 6px;
}
.facility-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.facility-card p {
    font-size: 14px;
    color: #444;
    text-align: justify;
    margin-top: 10px;
    line-height: 1.5;
}

/* --- 8. レンタルオフィスとの違い --- */
.comparison-section {/* background-color: #fafafa; */}
.compare-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.compare-table-wrapper { flex: 1.2; }
.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    /* font-size: 13px; */
}
.compare-table th, .compare-table td {
    /* border: 1px solid var(--border-color); */
    padding: 10px 40px;
    text-align: center;
    font-size: 16px;
}
.compare-table th {/* background: #f2f2f2; */font-weight: bold;}
.compare-table th.highlight {background: var(--primary-orange);color: #fff;font-size: 15px;border-top-left-radius: 10px;border-top-right-radius: 10px;}
.compare-table td.highlight-td {/* background: #ffdcc1; *//* font-weight: bold; */}

.compare-table td.highlight-td strong{
    color: var(--primary-orange);
    font-size: 24px;
}


.compare-table-for-mobile {
    display: none;
}
tbody .es-feature {
    border-left:5px solid #ff6d00;
    border-right:5px solid #ff6d00;
    background: #fff0e5 !important;
}
tbody tr:nth-child(even) td.es-feature {
    background: #ffe4d0 !important;
}
tbody .es-feature.bottom-left-corner.bottom-right-corner {
    border-bottom:5px solid #ff6d00;
}
.bottom-left-corner {
    border-bottom-left-radius: 10px;
}
.bottom-right-corner {
    border-bottom-right-radius: 10px;
}
thead .common-rntl{
    background: #ffb636;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.compare-table tbody tr th{
    background: #fff6e5;
}
.compare-table tbody tr:nth-child(even) th {
    background: #ffeac7;
}
.compare-table thead th.es-feature {
    background: var(--primary-orange);
    color: #fff;
    font-size: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding-top: 0;
    box-shadow: 0px -10px 0px 0px #ff6d00;
    width: 393px;
}
.compare-table{
    padding-top: 10px;
}

.compare-right-box{
    display: flex;
    margin-top: 10px;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    background: #fff;
    padding: 20px 0px;
    border-radius: 0px;
}




.badge-orange-sub {
    position: relative;
    display: inline-block;
    margin-left: 15px;
    background-color: var(--primary-orange);
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    padding: 10px;
    border-radius: 5px;
}

.badge-orange-sub::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    border-style: solid;
    border-width: 5px 10px 5px 0;
    border-color: transparent var(--primary-orange) transparent transparent;
    translate: -100% -50%;
}




.compare-table tbody tr th {background: #FFE4D0;width: 164px;text-align: left;}
.compare-table tbody tr td {background: #fff6e5;text-align: left;line-height: 1;}
.compare-table tbody tr:nth-child(even) th {background: #FFCDA8;}
.compare-table tbody tr:nth-child(even) td {background: #ffeac7;}

.compare-right-box {
    display: flex;
    margin-top: 10px;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    background: #fff;
    padding: 20px 0px;
    border-radius: 0px;
}

.compare-check-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    background: #fff6e5;
    padding: 20px 60px;
    width: 100%;
}
.compare-check-list.compare-check-list-pd-30{
    padding: 20px 30px;
}

.compare-check-list li {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 0;
}
.compare-check-list li::before {
    font-family: "Line Awesome Free";
    content: "\f00c";
    
    color: #ff6d00;
    font-weight: bold;
    border: 1px solid #ff6d00;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    background: #fff;
}
.compare-check-list li span{
    font-weight:bold;
}

.compare-check-list li strong{
    color: var(--primary-orange);
    font-size: 20px;
}



.top-left-corner{
    border-top-left-radius: 10px;
}
.bottom-left-corner{
    border-bottom-left-radius: 10px;
}
.bottom-right-corner{
    border-bottom-right-radius: 10px;
}



/* --- 9. サービス・オプション一覧 --- */
.options-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 10px;
    margin: 20px 0;
}
.option-item { text-align: center; font-size: 13px; letter-spacing: -0.05em; }
.option-icon {height: 80px;width: 80px;border: 2px solid var(--primary-orange);border-radius: 6px;margin: 0 auto 6px;display: flex;align-items: center;justify-content: center;}
.option-icon img{max-height: 54px;}

/* --- 10. メリット / 左右構造 --- */
.split-flex {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 20px;
}
.split-left { flex: 1; height: 240px;  border-radius: 6px; filter: drop-shadow(10px 10px 0px #DDECFF);}
.split-left img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
.split-right { flex: 1.5; font-size: 14px; }
.split-right p { font-size: 16px; margin-bottom: 10px; }

.split-right .sub-section-title {
    margin-top: 0px !important;
}

/* --- 11. ご利用開始までの流れ --- */
.steps-grid {
    display: flex;
    /* gap: 10px; */
    margin-top: 30px;
    /*    
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
    */
}
.step-card {
    width: calc(25% - 22.5px);
    display: flex;
    flex-direction: column;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 35px 18px 20px 18px;
    text-align: center;
    position: relative;
    background: #fff;
}
.step-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    padding: 0px 30px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 15px;
    line-height: 30px;
}
.step-card h3 {
    font-size: 20px !important;
    font-weight: bold !important;
}
.step-card h3 span{
    display: block !important;
    font-size: 14px !important;
    font-weight: normal !important;
    margin-top: 5px !important;
}
.step-card p {
    font-size: 14px;
    color: #444;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.5;
}
.step-btn {
    display: block;
    color: #fff !important;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    margin-top: auto;
    line-height: 1;
    text-decoration: none !important;
    position: relative;
    transition: all 0.2s;
}
.step-btn:hover {
    transform: translateY(-2px);
    opacity: 0.7;
    box-shadow: 0 2px 4px 0 rgba(124, 124, 124, 0.2) !important;
}
.step-btn::after {
    position: absolute;
    right: 10px;
    font-family: 'Line Awesome Free';
    content: "\f105";
}
.step-arrow{
    display: flex;
    align-items: center;
    font-size: 30px;
    color: #cacaca;
    line-height: 1;
    width: 30px;
    text-align: center;
}

.sc-1 { background: #E5FFEF; border-color: #00A73C; } .sc-1 .step-badge, .sc-1 .step-btn { background: #00A73C; }
.sc-2 { background: #FFF4E2; border-color: #FFA300; } .sc-2 .step-badge, .sc-2 .step-btn { background: #FFA300; }
.sc-3 { background: #FFEFE3; border-color: #FF6D00; } .sc-3 .step-badge, .sc-3 .step-btn { background: #FF6D00; }
.sc-4 { background: #FFEFF6; border-color: #e20040; } .sc-4 .step-badge, .sc-4 .step-btn { background: #e20040; }

/* --- 12. 起業・法人設立に役立つ情報 --- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.info-grid.info-grid-tmp-3cols {
    grid-template-columns: repeat(3, 1fr);
}


.info-card { background: #fff; }
.info-banner {
}
.info-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.info-card p {
    font-size: 14px;
    color: #444;
    margin-top: 10px;
    letter-spacing: -0.02em;
}
.info-card a{
    text-decoration: none;
    transition: all 0.2s;
}
.info-card a:hover{
    opacity: 0.7;
}
.info-card h3 {
    font-size: 20px !important;
    font-weight: bold !important;
    margin-top: 10px !important;
    line-height: 1.3;
    color: inherit;
}
.info-card-desc{
    display: -webkit-box;
    -webkit-line-clamp: 5;        /* ここが行数指定！ */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* --- 13. 住所・営業時間・アクセス --- */
.access-section { background: #fff; }
.access-flex {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.access-info { flex: 1; }
.access-map{
    width: 480px;
    background: none;
}
.access-map iframe {
    aspect-ratio: 4 / 3;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}
.info-table th, .info-table td {
    padding: 10px 10px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}
.info-table th {
    width: 25%;
    font-weight: bold;
    color: #000;
    vertical-align: top;
}

/* 駅からの道順 / 営業時間詳細 */
.sub-section-title {
    font-size: 20px !important;
    font-weight: bold !important;
    margin: 20px 0px 15px 0px !important;
    color: #000 !important;
    border-left: 4px solid var(--primary-orange) !important;
    padding-left: 10px !important;
}
.route-grid {
    display: flex;
    gap: 20px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
}
.route-card {
    min-width: 320px;
    font-size: 16px;
}
.route-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.route-img img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.route-content {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}
.route-num {
    display: flex;
    background: var(--primary-orange);
    color: #fff;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 1;
    font-weight: bold;
    border-radius: 3px;
    align-items: center;
    justify-content: center;
}
.route-desc{
    flex: 1;
}

.hours-box {
    background-color: #FFF6E5;
    border-radius: 10px;
    padding: 10px 20px 20px 20px;
    font-size: 16px;
    margin-top: 15px;
}
.hours-line { display: flex; margin-top: 10px; }
.hours-label { width: 240px; font-weight: bold; }

/* --- 14. フロアガイド --- */
.floor-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-direction: column;
    justify-content: flex-start;
}
.floor-box {
    background: #fafafa;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}
.floor-box h4 { font-size: 16px; font-weight: bold; margin-bottom: 10px; color: var(--dark-orange); }
.floor-img{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}
.floor-img img{
    width: 600px;
    height: auto;
    max-width: 100%;
}
.nishishinjuku-2f .floor-img img{
    width: 480px;
    height: auto;
    max-width: 100%;
}

.floor-fd-guide {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    border: 2px solid #FF6D00;
    color: #565656;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 128px;
    line-height: 1;
}
.fd-tel-ng{
    font-size: 14px;
    padding: 2px 4px;
    background: #FFF57F;
    color: #FF9D00;
    font-weight: bold;
    margin-left: 4px;
    margin-right: 4px;
}
.fd-tel-ok{
    font-size: 14px;
    padding: 2px 4px;
    background: #D8E698;
    color: #00BE1E;
    font-weight: bold;
    margin-left: 4px;
    margin-right: 4px;
}
.floor-num{
    background: #ff6d00;
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    padding-right: 20px;
    padding-bottom: 20px;
    height: 80px;
    font-size: 32px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    border-bottom-right-radius: 512px;
    border-top-left-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ---- 15. モーダル --- */
:root {
    --modal-gap: 16px;
    /* 画面端の余白 */
}

/* --- 15. フロアマップ --- */
/* フロアマップ関連 */
.floor-box.ikebukuro-6f{
--map-w: 950;
--map-h: 690;
}
.floor-box.ikebukuro-2f{
--map-w: 950;
--map-h: 484;
}

/* フロアマップ関連 */
.floor-box.sakuragicho-7f{
--map-w: 950;
--map-h: 463;
}

/* フロアマップ関連 */
.floor-box.nishishinjuku-2f{
--map-w: 950;
--map-h: 650;
}



/* ===== floor map ===== */
.floor-box{
position: relative;
}
.map-image {
    width: 100%;
    height: auto;
    display: block;
}
.map-center{
    margin-left: auto;
    margin-right: auto;
    display: block;
}
/* ===== hotspot ===== */
.hotspot {
    position: absolute;
    border-radius: 50%;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;

    left: calc(var(--x) / var(--map-w) * 100%);
    top:  calc(var(--y) / var(--map-h) * 100%);
    /* transform: translate(-50%, -50%); */ /* ピン中央を座標に合わせる */
}
.hotspot:hover{
    opacity: 0.8;
}
.hotspot img {
    width: 38px;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
}

/* ===== hover preview ===== */
.preview {
    position: fixed;
    z-index: 10;
    width: 280px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
    border-radius: 10px;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s;
}
.preview img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}
.preview-title {
    font-size: 14px;
    padding: 15px 15px;
    margin: 0;
}
/* ===== modal base ===== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    /* スクロールは外側 */
    padding: var(--modal-gap);
    /* 上下左右余白 */
    box-sizing: border-box;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
/* 背景フェード */
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .8);
    opacity: 0;
    transition: opacity 0.3s ease;
}
/* モーダル本体 */
.modal-content {
    position: relative;
    width: min(calc(100% - 64px), 828px);
    margin: 0 auto;
    border-radius: 15px;
    padding: 0;
    max-height: none;
    /* 内側スクロールを作らない */
    overflow: visible;
    /* 内側スクロールを作らない */
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
/* ===== visible state ===== */
.modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}
.modal[aria-hidden="false"] .modal-backdrop {
    opacity: 1;
}
.modal[aria-hidden="false"] .modal-content {
    opacity: 1;
}
.modal-content img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 460px;
    border-radius: 15px;
    aspect-ratio: 1.47 / 1;
    object-fit: cover;
}
.modal-title {
    padding: 15px 0px;
    margin: 0;
    font-size: 15px;
    color: #fff;
    font-weight: bold;
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0;
    cursor: pointer;
    background: transparent;
    color: #fff;
    padding: 0;
    border: none;
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    opacity: 0.85;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}





/* --- 16. 個室状況テーブル --- */
.pvs-row{
    padding: 20px;
    border-radius: 10px;
    line-height: 1;
    margin-top: 10px;
    font-size: 16px;
}
.pvs-month-fee {
    margin-right: 10px;
}
.pvs-month-fee strong,
.pvs-init-fee strong{
    font-size:24px;
    margin-left: 2px;
    margin-right: 2px;
}
.pvs-row-ginza{ background: #E5F2EC; }
.pvs-row-ginza strong{ color: #009e54; }

.pvs-row-hibiya{ background: #F9F9F0; }
.pvs-row-hibiya strong{ color: #848469; }

.pvs-row-akihabara{ background: #FFF3EF; }
.pvs-row-akihabara strong{ color: #FF3E00; }

.pvs-row-akasaka{ background: #EFEFFF; }
.pvs-row-akasaka strong{ color: #0000B6; }

.pvs-row-toranomon{ background: #ECFEFF; }
.pvs-row-toranomon strong{ color: #008690; }

.pvs-row-hamamatsucho{ background: #FDF0F8; }
.pvs-row-hamamatsucho strong{ color: #BB4199; }

.pvs-row-tamachi{ background: #fbffd4; }
.pvs-row-tamachi strong{ color: #9CAE00; }

.pvs-row-shinjuku{ background: #F4EAFF; }
.pvs-row-shinjuku strong{ color: #5B13B3; }

.pvs-row-nishishinjuku{ background: #F8FFEF; }
.pvs-row-nishishinjuku strong{ color: #68B900; }

.pvs-row-shibuya-miyamasuzaka{ background: #EFFDFF; }
.pvs-row-shibuya-miyamasuzaka strong{ color: #00B3CF; }

.pvs-row-shibuya-dogenzaka{ background: #FFF7EE; }
.pvs-row-shibuya-dogenzaka strong{ color: #DA7706; }

.pvs-row-ebisu{ background: #FFF2F6; }
.pvs-row-ebisu strong{ color: #FF3E77; }

.pvs-row-ikebukuro{ background: #fffded; }
.pvs-row-ikebukuro strong{ color: #9A8D00; }

.pvs-row-yokohama{ background: #FFF7EF; }
.pvs-row-yokohama strong{ color: #6F3500; }

.pvs-row-sakuragicho{ background: #FFF0F9; }
.pvs-row-sakuragicho strong{ color: #CA0078; }

.pvs-row-kawasaki{ background: #EFFAFF; }
.pvs-row-kawasaki strong{ color: #0076AF; }

.pvs-row-omiya-higashiguchi{ background: #fff0f5; }
.pvs-row-omiya-higashiguchi strong{ color: #D90048; }

.room-alert-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    margin-top: 20px;
}

.room-alert-notice a{
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    display: flex;
    align-items: center;
    transition: all 0.2s;
}
.room-alert-notice a:hover{
    opacity: 0.7;
}
.room-alert-notice a::after {
    content: "\f105";
    font-family: "Line Awesome Free";
    font-weight: 900;
    margin-left: 5px;
}

.room-status-box {
    margin-top: 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.room-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}
.room-table th,
.room-table td {
    padding: 10px;
    text-align: center;
}
.room-table tbody th,
.room-table tbody td {
    border-top: 1px solid var(--border-color);
}

.room-table th {
    background: #eaeaea;
    font-weight: bold;
}

.room-table tbody tr:nth-child(even) { background: #fafafa; }

.room-table td.status-contracted { color: #d32f2f; font-weight: bold; }
.room-alert-banner { }


.room-table.plan-table.ginza-five-room-table{
    margin: 0 !important;
    width: 100% !important;
}
.room-table.plan-table.ginza-five-room-table th{
    color: inherit !important;
}


/* 内部動画セクション */
.media-grid {
    display: flex;
    gap: 20px;
    width: 100%;
}
.media-box {
    width: 50%;
}

.responsive-container{
    width: 100%;
    aspect-ratio: 16 / 9;
}
.responsive-container iframe{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}


/* --- 16. よく比較されている施設 --- */
.compare-places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}
.place-card { background: #fff; border: 1px solid var(--border-color); border-radius: 10px; overflow: hidden; }
.place-img { 
}
.place-img img{
    width: 100%;
    height: 100%;
}

.place-body {
    display: flex;
    flex-direction: column;
    padding: 20px;
    justify-content: space-between;
    min-height: 290px;
}
.place-body h3 {
    font-size: 20px !important;
    font-weight: bold !important;
}
.place-body p.place-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    margin-top: 10px;
}
.place-btn{
    display: block;
    margin-top: auto;
}
.place-btn a {
    display: block;
    background: var(--primary-orange);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    margin-top: auto;
    text-decoration: none !important;
    transition: all 0.2s;
    position: relative;
}
.place-btn a::after {
    position: absolute;
    right: 10px;
    font-family: 'Line Awesome Free';
    content: "\f105";
}
.place-btn a:hover {
    transform: translateY(-2px);
    opacity: 0.7;
    box-shadow: 0 2px 4px 0 rgba(124, 124, 124, 0.2) !important;
}


/* --- 17. 主な窓口 & クチコミ --- */

.window-status-box {
    margin-top: 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}
.window-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}
.window-table th,
.window-table td {
    padding: 10px;
}
.window-table tbody th,
.window-table tbody td {
    border-top: 1px solid var(--border-color);
}

.window-table th {
    background: #eaeaea;
    font-weight: bold;
}
.window-link{
    color: var(--primary-orange) !important;
    text-decoration: none !important;
    font-weight: bold;
    transition: all 0.2s;
}
.window-link:hover{
    opacity: 0.7;
}

.window-table tbody tr:nth-child(even) { background: #fafafa; }


/* クチコミエリア */
.review-summary { text-align: center; margin: 30px 0; }
.google-review-title{
    font-size: 16px;
}

.review-score {
    margin-top: 10px;
    font-size: 64px;
    font-weight: bold;
    line-height: 1;
}

.review-stars {
    color: #eaeaea;
    font-size: 36px;
    line-height: 1;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.review-star-point {
    margin-left: 2px;
    margin-right: 2px;
}

.review-count {
    font-size: 14px;
    color: #444;
    margin-top: 10px;
    line-height: 1;
}

.star-colored i {
    color:#ffd300;
}

.user-voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.voice-card {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.voice-avatar {
    width: 96px;
    height: 96px;
    border-radius: 100%;
}

.voice-avatar img{
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

.voice-desc {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #444;
    margin-top: 20px;
    line-height: 1.5;
    background: #FFF6E5;
    padding: 20px 20px;
    flex: 1;
    border-radius: 10px;
}

.voice-desc::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    border-style: solid;
    border-width: 0 10px 15px 10px;
    border-color: transparent transparent #FFF6E5;
    translate: -50% -100%;
}


/* --- 18. よくある質問 --- */
.faq-list {
}

.faq-item {
    margin-top: 15px;
    background: #FFF6E5;
    border-radius: 10px;
    overflow: hidden;
    transition: background 0.2s ease;
}

.faq-item:hover {
    background: rgba(255, 246, 229, 0.6);
}

.faq-item summary {
    list-style: none;
}

.faq-item summary::-webkit-details-marker,
.faq-item summary::marker {
    display: none;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 20px 20px;
    cursor: pointer;
    user-select: none;
}

.faq-q-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    line-height: 1.5;
}

.faq-icon-q {
    background: var(--primary-orange);
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 1;
    border-radius: 3px;
}

.faq-q-text p {
    font-size: 16px;
    margin: 0;
}

.faq-toggle {
    color: var(--primary-orange);
    font-size: 22px;
    line-height: 1;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq-toggle .la-minus {
    display: none;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 20px;
    transition: max-height .2s ease, opacity .2s ease, padding .2s ease;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.faq-a p {
    font-size: 16px;
    margin: 0;
}

.faq-icon-a {
    color: var(--primary-orange);
    background: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 1;
    border-radius: 3px;
    flex: 0 0 32px;
}

.faq-item[open] .faq-a {
    max-height: 260px;
    opacity: 1;
    padding: 0 20px 20px;
}

.faq-item[open] .faq-toggle .la-plus {
    display: none;
}

.faq-item[open] .faq-toggle .la-minus {
    display: inline-block;
}






/* --- 19. 銀行口座開設の流れ --- */
.bank-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 44px;
}
.bank-card{
    border-radius: 10px;
    padding: 44px 20px 20px 20px;
    position: relative;
}
.bank-card.bc-smbc{
    background: #FFEAE3;
}
.bank-card.bc-gmo{
    background: #DDECFF;
}
.btn-bank-detail{
    display: block;
    color: #fff !important;
    text-align: center;
    padding: 16px 10px;
    font-weight: bold;
    font-size: 16px;
    margin-top: 20px;
    text-decoration: none !important;
    border-radius: 5px;
    line-height: 1;
    position: relative;
    transition: all 0.2s;
}
.btn-bank-detail:hover{
    transform: translateY(-2px);
    opacity: 0.7;
    box-shadow: 0 2px 4px 0 rgba(151, 66, 0, 0.2) !important;
}
.btn-bank-detail::after {
    position: absolute;
    right: 10px;
    font-family: 'Line Awesome Free';
    content: "\f105";
}
.btn-bank-detail.bd-smbc{ background: #BA4620; }
.btn-bank-detail.bd-gmo{ background: #015AC9; }

.bank-desc{
    font-size: 16px;
    color: #444;
    margin-top: 20px;
    line-height: 1.5;
}

.bank-badge{
    display: flex;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 64px;
    width: calc(100% - 40px);
    text-align: center;
    top: -24px;
    position: absolute;
    height: 48px;
    justify-content: center;
    align-items: center;
}

.bank-badge.bb-smbc{ background: #BA4620; }
.bank-badge.bb-gmo{ background: #015AC9; }

.bank-logo-box{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bank-logo-box a{
    display: flex;
    transition: all 0.2s;
}
.bank-logo-box a:hover{
    opacity: 0.7;
}
.bank-logo-box img{
    width: 100%;
    height: auto;
    border-radius: 10px;
}


/* 20.お役立ち情報 */
.info-link-container{
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: flex-end;
}

.info-link-container a{
    transition: all 0.2s;
}

.info-link-container a:hover{
    opacity: 0.7;
}

.info-link a{
    color: var(--primary-orange) !important;
    text-decoration: none !important;
    font-weight: bold !important;
    font-size: 15px !important;
    display: flex !important;
    align-items: center !important;
}

.info-link a::after {
    content: "\f105";
    font-family: "Line Awesome Free";
    font-weight: 900;
    margin-left: 5px;
}


/* 21.特典 */
.benefits-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.logo-partner-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.logo-partner-item{
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-partner-item a{
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.logo-partner-item a:hover{
    opacity: 0.7;
}

.logo-partner-item a img{
    width: 100%;
    height: auto;
    max-width: 196px;
    max-height: 44px;
}

.benefit-btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6D00 !important;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none !important;
    border: 1px solid #FF6D00;
    transition: all 0.2s;
}
.benefit-btn:hover{
    transform: translateY(-2px);
    opacity: 0.7;
    box-shadow: 0 2px 4px 0 rgba(124, 124, 124, 0.2) !important;
}

.benefit-btn::after {
    position: absolute;
    right: 10px;
    font-family: 'Line Awesome Free';
    content: "\f105";
}


/* 23.問合せフォーム */
.form-container{
    padding: 0px 20px 20px 20px;
    border: 1px solid #cacaca;
    border-radius: 10px;
    margin-top: 20px;
}
.form-label-box{
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
}
.badge-req{
    font-size: 14px;
    background: #E20000;
    color: #fff;
    padding: 5px 10px;
    line-height: 1;
    border-radius: 4px;
    margin-right: 10px;
}
.badge-opt{
    font-size: 14px;
    background: #ddd;
    padding: 5px 10px;
    line-height: 1;
    border-radius: 4px;
    margin-right: 10px;
}

.form-group{
    margin-top: 20px;
}

.form-radio-group{
    font-size: 16px;
    display: flex;
    flex-direction: column;
}
.form-radio-label{
    cursor: pointer;
}

.form-checkbox-group{
    font-size: 16px;
    display: flex;
    flex-direction: column;
}
.form-checkbox-label{
    cursor: pointer;
}

.form-container input[type="text"],
.form-container input[type="tel"],
.form-container input[type="email"],
.form-container select,
.form-container textarea{
    font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
    -webkit-box-shadow: 0px 1px 2px 0px rgb(206, 206, 206, 0.8) inset;
    -moz-box-shadow: 0px 1px 2px 0px rgb(206, 206, 206, 0.8) inset;
            box-shadow: 0px 1px 2px 0px rgb(206, 206, 206, 0.8) inset;
    border: 1px solid #cacaca;
    background: #fafafa;
    padding: 12px;
    font-size: 16px;
    box-sizing: border-box;
    border-radius: 3px;
    width: 100%;
}

.form-container input::placeholder,
.form-container textarea::placeholder{
    color: #aeaeae;
}
/* IE */
.form-container input:-ms-input-placeholder,
.form-container textarea:-ms-input-placeholder{
    color: #aeaeae;
}
/* Edge */
.form-container input::-ms-input-placeholder,
.form-container textarea:-ms-input-placeholder{
    color: #aeaeae;
}

.form-container input:focus,
.form-container textarea:focus{
    outline: none;
}
.form-container input[type="text"]:focus,
.form-container input[type="tel"]:focus,
.form-container input[type="email"]:focus,
.form-container textarea:focus,
.form-container select:focus,
.form-container input[type="text"]:hover,
.form-container input[type="tel"]:hover,
.form-container input[type="email"]:hover,
.form-container textarea:hover,
.form-container select:hover{
    border: 1px solid #f96002 !important;
}


/* ===== checkbox / radio カスタムUI ===== */
.form-radio-group,
.form-checkbox-group {
    gap: 10px;
}

.form-radio-label,
.form-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    line-height: 1.5;
}
.form-radio-label input[type="radio"],
.form-checkbox-label input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border: 1px solid #b9b9b9;
    background: #fff;
    display: inline-grid;
    place-content: center;
    transition: all 0.2s ease;
}
.form-radio-label input[type="radio"] {
    border-radius: 50%;
}
.form-checkbox-label input[type="checkbox"] {
    border-radius: 4px;
    position: relative;
}
.form-radio-label input[type="radio"]:hover,
.form-checkbox-label input[type="checkbox"]:hover {
    border-color: #ff6d00;
}
.form-radio-label input[type="radio"]:focus-visible,
.form-checkbox-label input[type="checkbox"]:focus-visible {
    outline: 3px solid rgba(255, 109, 0, 0.25);
    outline-offset: 2px;
}
/* radio: 内側ドット */
.form-radio-label input[type="radio"]:checked {
    border-color: #ff6d00;
    background: radial-gradient(circle, #ffffff 25%, #ff6d00 30%);
}
/* checkbox: チェックマーク */
.form-checkbox-label input[type="checkbox"]:checked {
    border-color: #ff6d00;
    background: #ff6d00;
}
.form-checkbox-label input[type="checkbox"]:checked::after {
    content: "";
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}
.form-radio-label input[type="radio"]:disabled,
.form-checkbox-label input[type="checkbox"]:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
@media (max-width: 768px) {
    .form-radio-label input[type="radio"],
    .form-checkbox-label input[type="checkbox"] {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
    }

    .form-radio-label,
    .form-checkbox-label {
        gap: 8px;
    }
}

.btn-submit-container{
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.btn-submit {
    background: var(--primary-orange);
    color: #fff;
    margin-top: auto;
    border: none;
    cursor: pointer;
    padding: 24px 64px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    position: relative;
    transition: transform 0.2s, opacity 0.2s;
    text-decoration: none !important;
    line-height: 1;
}
.btn-submit::after {
    position: absolute;
    right: 15px;
    font-family: 'Line Awesome Free';
    content: "\f105";
}
.btn-submit:hover {
    transform: translateY(-2px);
    opacity: 0.7;
    box-shadow: 0 2px 4px 0 rgba(124, 124, 124, 0.2) !important;
}


.btn-back {
    background: #eaeaea;
    color: #333;
    margin-top: auto;
    border: none;
    cursor: pointer;
    padding: 24px 64px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    position: relative;
    transition: transform 0.2s, opacity 0.2s;
    text-decoration: none !important;
    line-height: 1;
    margin-right: 20px;
}
.btn-back::before {
    position: absolute;
    left: 15px;
    font-family: 'Line Awesome Free';
    content: "\f104";
}
.btn-back:hover {
    transform: translateY(-2px);
    opacity: 0.7;
    box-shadow: 0 2px 4px 0 rgba(124, 124, 124, 0.2) !important;
}




/* 24. エリアから探す */
.area-section {
    padding-top: 30px;
    margin-bottom: -20px;
    border-image-source: linear-gradient(#fafafa, #fafafa);
    border-image-slice: 0 fill;
    border-image-outset: 0 100vw 0 100vw;
}
.area-block{
    font-size: 16px;
}
.area-grid-col-1{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.area-grid-col-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.area-grid-col-3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.area-grid-col-4{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.area-container-other{
    display: flex;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 0px;
    padding-bottom: 30px;
    flex-wrap: wrap;
}
.area-group{
    min-width: 222.5px;
    padding: 12px;
    background: #ffffff;
    border-radius: 5px;
}


/* ツリースタイル */
.area-list {
    list-style-type: none;
    display:block;
    position:relative;
}
.area-list li {
    line-height: 28px;
    margin: 0 !important;
}
.area-list li h4{
    font-weight: bold !important;
}
.area-list ul {
    display:block;
    position:relative;
    padding:0;
    padding-left: 21px;
    padding-inline-start: 21px;
    margin: 0;
    margin-top: 8px;
}
.area-list ul:before {
    content:"";
    position:absolute;
    top: -6px;
    bottom:0;
    left: 8px;
    width:0;
    border-left: 1px solid #cacaca;
    /* margin-left: 28px; */
}
.area-list ul li {
    display:block;
    position: relative;
    padding-left: 5px;
}
.area-list ul li:before {
    content: "";
    position: absolute;
    top: 13px;
    bottom: 0;
    left: -13px;
    width: 13px;
    height: 0;
    border-top: 1px solid #cacaca;
}
.area-list ul li:last-child:before {
    height: auto;
    /* 背景色と同色にすることで線を消す */
    background-color: #fff;
}
.area-list ul li a{
    color: var(--primary-orange) !important;
    text-decoration: none !important;
    font-size: 14px;
    transition: all 0.3s ease;
}
.area-list ul li a:hover{
    opacity: 0.7;
}

.form-errors {
  background: #ffecec;
  padding: 20px;
  border-radius: 10px;
  font-weight: bold;
  line-height: 1;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #E20000;
}
.form-errors ul li{
    margin-top: 10px;
}
.form-errors ul li:first-child{
    margin-top: 0px;
}


/* --- レスポンシブメディアクエリ --- */
@media (max-width: 960px) {
    .plans-grid, .reasons-grid, .facilities-grid, .steps-grid, .info-grid, .compare-places-grid, .user-voices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reasons-grid-bottom { grid-template-columns: repeat(2, 1fr); }
    .options-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 768px) {
    .hero-flex, .compare-container, .split-flex, .access-flex, .floor-container, .media-grid {
        flex-direction: column;
    }
    .hero-right, .split-left, .access-map, .media-box { width: 100%; height: 220px; }
    .compare-right-box { width: 100%; }
    .plans-grid, .reasons-grid, .facilities-grid, .steps-grid, .info-grid, .compare-places-grid, .user-voices-grid, .reasons-grid-bottom {
        grid-template-columns: 1fr !important;
    }
    .options-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-title { font-size: 30px; }
}