/*
Theme Name: SWELL CHILD
Template: swell
Version: 1.5.0
*/
@charset "UTF-8";

/* ==========================================================================
   目次
   1.  GLOBAL SETTINGS
   2.  LAYOUT - FOOTER & CTA INTEGRATION
   3.  CUSTOM HEADER
   4.  FRONT PAGE - ファーストビュー
   5.  FRONT PAGE - Concept
   6.  FRONT PAGE - Works（トップ）
   7.  FRONT PAGE - 物件紹介（トップ）
   8.  FRONT PAGE - お知らせ
   9.  FRONT PAGE - コラム
   10. FRONT PAGE - 流れるテキスト
   11. FRONT PAGE - Q&A/会社概要（トップ）
   12. CTA セクション
   13. FOOTER
   14. PROPERTY PAGES - 共通（FV・ページヘッダー・アンカーリンク）
   15. PROPERTY PAGES - 物件一覧
   16. PROPERTY PAGES - 物件詳細
   17. CONTACT PAGE - お問い合わせ・会社概要
   18. CF7 フォームレイアウト
   19. WORKS PAGE - 事業内容
   20. FAQ PAGE - よくある質問
   21. PAGINATION
   22. TABLET (769px〜1024px)
   23. MOBILE (768px以下)
   24. SMALL BREAKPOINTS
   ========================================================================== */


/* ==========================================================================
   1. GLOBAL SETTINGS
   ========================================================================== */
html {
    font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, sans-serif;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "palt";
}

body,
button,
input,
textarea,
select,
h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

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


/* ==========================================================================
   2. LAYOUT - FOOTER & CTA INTEGRATION
   ========================================================================== */
#body_wrap.has-site-cta .l-mainContent,
#body_wrap.has-site-cta .l-content,
#body_wrap.has-site-cta #content {
    margin-bottom: 0 !important;
}

#body_wrap.has-site-cta .l-footer {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

#body_wrap.has-site-cta .site-cta {
    margin: 0 !important;
    padding: 0 !important;
}


/* ==========================================================================
   3. CUSTOM HEADER
   ========================================================================== */
.l-customHeader {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 1385px;
    max-width: 95%;
    height: 70px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    z-index: 1000;
    transition: all 0.3s ease;
    margin-top: 0 !important;
}

.l-customHeader.is-scrolled {
    top: 0;
    border-radius: 0;
    width: 100%;
    max-width: 100%;
}

.l-customHeader__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 40px;
    gap: 40px;
}

.l-customHeader__logo {
    flex-shrink: 0;
}

.l-customHeader__logo a {
    text-decoration: none;
}

.l-customHeader__logoImg {
    height: 45px;
    width: auto;
    display: block;
}

.l-customHeader__nav {
    display: flex;
    justify-content: center;
}

.l-customHeader__menu {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.l-customHeader__menu li {
    margin: 0;
}

.l-customHeader__menu a {
    font-family: "YuGothic", "Yu Gothic", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    text-decoration: none;
    transition: opacity 0.3s;
}

.l-customHeader__menu a:hover {
    opacity: 0.7;
}

.l-customHeader__cta {
    flex-shrink: 0;
}

.l-customHeader__ctaBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 200px;
    height: 50px;
    background: #1E345E;
    color: #fff;
    font-family: "YuGothic", "Yu Gothic", sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
}

.l-customHeader__ctaBtn:hover {
    background: #2a4a7c;
}

.l-customHeader__lineIcon {
    width: 20px;
    height: 20px;
}

.l-customHeader__hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.l-customHeader__hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #1A1A1A;
    transition: all 0.3s;
}


/* ==========================================================================
   4. FRONT PAGE - ファーストビュー
   ========================================================================== */
.p-fv {
    position: relative;
    height: calc(80vh + 160px);
    min-height: 600px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-top: 120px;
    background-image: url('https://liveflix.jp/wp-content/uploads/2026/02/fv.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-fv__inner {
    width: 100%;
    display: flex;
    justify-content: center;
}

.p-fv__content {
    display: flex;
    flex-direction: column;
    gap: 45px;
    align-items: center;
}

.p-fv__band-wrapper {
    position: relative;
}

.p-fv__band {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 80px;
    background: #1E345E;
    color: #fff;
    font-family: "YuGothic", "Yu Gothic", sans-serif;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 clamp(80px, 10vw, 150px);
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    z-index: 2;
}

.p-fv__band-shadow {
    position: absolute;
    top: 7px;
    left: 7px;
    width: 100%;
    max-width: 1400px;
    height: 80px;
    background: rgba(255, 255, 255, 0.5);
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    z-index: 1;
}


/* ==========================================================================
   5. FRONT PAGE - Concept
   ========================================================================== */
.p-concept {
    padding: 100px 0;
    background: #fff;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.p-concept__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.p-concept__heading {
    margin-bottom: 20px;
}

.p-concept__subtitle {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1A1A1A;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.p-concept__title {
    font-family: "Inter", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1E345E;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.p-concept__lead {
    margin-bottom: 32px;
}

.p-concept__leadText {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #1A1A1A;
    line-height: 1.6;
    letter-spacing: 0.03em;
}

.p-concept__description {
    margin-bottom: 20px;
}

.p-concept__description p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.8;
    letter-spacing: 0.03em;
    margin-bottom: 1em;
}

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

.p-concept__list li {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.8;
    letter-spacing: 0.03em;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.p-concept__list li::before {
    content: "｜";
    position: absolute;
    left: 0;
    color: #1E345E;
    font-weight: 600;
}

.p-concept__list li:last-child {
    margin-bottom: 0;
}

.p-concept__right {
    display: flex;
    align-items: start;
    justify-content: center;
}

.p-concept__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}


/* ==========================================================================
   6. FRONT PAGE - Works（トップ）
   ========================================================================== */
.p-works {
    background: rgba(246, 249, 254, 0.8);
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.p-works__inner {
    display: grid;
    grid-template-columns: 400px 1fr;
    min-height: 50vh;
}

.p-works__text {
    background: #1E345E;
    color: #fff;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.p-works__subtitle {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.p-works__title {
    font-family: "Inter", sans-serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-bottom: 24px;
}

.p-works__description {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
}

.p-works__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 400px 400px;
}

.p-works__item {
    position: relative;
    overflow: hidden;
}

.p-works__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.p-works__item:hover img {
    transform: scale(1.05);
}

.p-works__label {
    color: #ffffff;
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.05em;
}


/* ==========================================================================
   7. FRONT PAGE - 物件紹介（トップ）
   ========================================================================== */
.p-property {
    padding: 120px 0 100px;
    background: rgba(246, 249, 254, 0.8);
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.p-property__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: start;
}

.p-property__heading {
    position: sticky;
    top: 140px;
}

.p-property__sticky-wrapper {
    position: sticky;
    top: 140px;
}

.p-property__subtitle {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1A1A1A;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.p-property__title {
    font-family: "Inter", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1E345E;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-bottom: 0;
}

.p-property__more {
    margin-top: 24px;
}

.p-property__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.p-property__card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    border: 0.5px solid #1a1a1a;
}

.p-property__card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.p-property__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.p-property__thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f5f5f5;
}

.p-property__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.p-property__card:hover .p-property__thumb img {
    transform: scale(1.05);
}

.p-property__body {
    padding: 22px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.p-property__name {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 12px 0;
    line-height: 1.4;
    min-height: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.p-property__info {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 0;
}

.p-property__infoItem {
    display: flex;
    gap: 8px;
    font-size: 13px;
    line-height: 1.5;
}

.p-property__infoItem dt {
    color: #666;
    flex-shrink: 0;
    width: 50px;
}

.p-property__infoItem dd {
    margin: 0;
    color: #1A1A1A;
    font-weight: 500;
    text-align: left;
}

.p-property__moreBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 48px;
    background: #1E345E;
    color: #fff;
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.p-property__moreBtn::after {
    content: "●";
    font-size: 12px;
}

.p-property__moreBtn:hover {
    background: #2a4a7c;
}

.p-property__empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.p-property__types {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.p-property__type {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #253F72;
    border-radius: 3px;
    padding: 3px 10px;
    letter-spacing: 0.05em;
}


/* ==========================================================================
   8. FRONT PAGE - お知らせ
   ========================================================================== */
.p-news {
    padding: 100px 0 40px 0;
    background: #fff;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.p-news__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.p-news__heading {
    position: static;
}

.p-news__subtitle {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1A1A1A;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.p-news__title {
    font-family: "Inter", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1E345E;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

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

.p-news__item {
    display: flex;
    align-items: baseline;
    gap: 40px;
    padding: 24px 0;
    border-bottom: 1px solid #1A1A1A;
}

.p-news__item:last-child {
    border-bottom: none;
}

.p-news__date {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    min-width: 120px;
}

.p-news__link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.p-news__link:hover {
    opacity: 0.7;
}

.p-news__text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.6;
    flex: 1;
}


/* ==========================================================================
   9. FRONT PAGE - コラム
   ========================================================================== */
.p-column {
    padding: 40px 0 80px 0;
    background: #fff;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.p-column__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.p-column__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.p-column__card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
    border: 0.5px solid #1a1a1a;
}

.p-column__card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.p-column__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.p-column__thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f5f5f5;
}

.p-column__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.p-column__card:hover .p-column__thumb img {
    transform: scale(1.05);
}

.p-column__body {
    padding: 20px;
}

.p-column__title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.6;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.p-column__date {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666;
}


/* ==========================================================================
   10. FRONT PAGE - 流れるテキスト
   ========================================================================== */
.p-scroll {
    overflow: hidden;
    background: #fff;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 0 80px;
}

.p-scroll__track {
    display: flex;
    gap: 100px;
    animation: scroll 15s linear infinite;
    white-space: nowrap;
}

.p-scroll__text {
    font-family: "Inter", sans-serif;
    font-size: 120px;
    font-weight: 700;
    color: #1E345E;
    letter-spacing: 0.05em;
    line-height: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}


/* ==========================================================================
   11. FRONT PAGE - Q&A/会社概要（トップ）
   ========================================================================== */
.p-bottom {
    background: #1E345E;
    padding: 100px 0 0 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.p-bottom__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 30px;
    align-items: center;
}

.p-bottom__item {
    text-align: center;
    color: #fff;
}

.p-bottom__subtitle {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 4px;
    letter-spacing: 0.03em;
}

.p-bottom__title {
    font-family: "Inter", sans-serif;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
    margin-bottom: 8px;
}

.p-bottom__text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
}

.p-bottom__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 70px;
    background: #fff;
    color: #1E345E;
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
}

.p-bottom__btn::after {
    content: "●";
    font-size: 12px;
}

.p-bottom__btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.p-bottom__divider {
    width: 1px;
    height: 200px;
    background: rgba(255, 255, 255, 0.4);
}


/* ==========================================================================
   12. CTA セクション
   ========================================================================== */
.site-cta .cta-band {
    background: #1E345E;
    padding: 80px 0 80px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.site-cta .cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.site-cta .cta-box {
    border: 1px solid #fff;
    padding: 60px 70px;
    color: #fff;
    text-align: center;
    border-radius: 8px;
}

.site-cta .cta-small {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    letter-spacing: 0.2em;
    margin-bottom: 4px;
}

.site-cta .cta-title {
    font-family: "Inter", sans-serif;
    font-size: 56px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: clamp(24px, 3vw, 36px);
}

.site-cta .cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.site-cta .cta-left {
    justify-self: end;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.site-cta .cta-tel {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
}

.site-cta .cta-tel a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.site-cta .cta-lineRow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
    width: 100%;
}

.site-cta .cta-label {
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}

.site-cta .cta-lineIcon,
.site-cta .cta-qr {
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
    height: 44px;
    width: auto;
}

.site-cta .cta-time {
    font-size: 13px;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-bottom: 24px;
}

.site-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 48px;
    background: #1A1A1A;
    border: 2px solid #4a90d9;
    color: #fff;
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
}

.site-cta .cta-btn::after {
    content: "●";
    font-size: 12px;
}

.site-cta .cta-btn:hover {
    background: #4a90d9;
    color: #fff;
}

.site-cta .cta-map {
    width: 100%;
    max-width: 350px;
    justify-self: start;
}

.site-cta .cta-map iframe {
    width: 100%;
    height: 240px;
    border-radius: 12px;
    border: 0;
    display: block;
}


/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.l-footer {
    background: #fff;
    padding: 0;
    border-top: 1px solid #e0e0e0;
}

.l-footer__inner {
    max-width: 1385px;
    margin: 0 auto;
    padding: 0 200px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.l-footer__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    height: 80px;
    flex-wrap: nowrap;
}

.l-footer__copyright {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11px;
    color: #999;
    text-align: center;
    padding: 12px 0 16px;
    margin: 0 -200px;
    border-top: 1px solid #f0f0f0;
    white-space: nowrap;
}

.l-footer__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.l-footer__logoImg {
    height: 36px;
    width: auto;
}

.l-footer__nav {
    flex: 1;
    min-width: 0;
}

.l-footer__menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.l-footer__menu li {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.l-footer__menu a {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1A1A1A;
    text-decoration: none;
    transition: opacity 0.3s;
    padding: 0 16px;
}

.l-footer__menu a:hover {
    opacity: 0.7;
}

.l-footer__social {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.l-footer__socialLink {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1A1A;
    transition: opacity 0.3s;
}

.l-footer__socialLink:hover {
    opacity: 0.7;
}

.l-footer__externalLink {
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

.l-footer__externalLink:hover {
    opacity: 0.7;
}

.l-footer__externalLogo {
    height: 28px;
    width: auto;
}


/* ==========================================================================
   14. PROPERTY PAGES - 共通（FV・ページヘッダー・アンカーリンク）
   ========================================================================== */
.p-archiveFv {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 400px;
    overflow: hidden;
}

.p-archiveFv__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.p-pageHeader {
    margin-top: 80px;
    margin-bottom: 60px;
    text-align: center;
}

.p-pageHeader__title {
    font-family: "YuGothic", sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #1E345E;
    letter-spacing: 0.4em;
}

.p-pageHeader__lead {
    font-size: 16px;
    color: #1A1A1A;
    line-height: 2;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 48px;
}

#contact,
#company {
    scroll-margin-top: 180px;
}

#chintai, #baibai, #kanri, #unyo {
    scroll-margin-top: 90px;
}

/* アンカーリンク（事業内容・よくある質問共通） */
.p-works__anchors {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}

.p-works__anchor {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: opacity 0.2s;
}

.p-works__anchor:hover {
    color: #1E345E;
    opacity: 1;
}

.p-works__anchorDivider {
    color: #1A1A1A;
    font-size: 18px;
}


/* ==========================================================================
   15. PROPERTY PAGES - 物件一覧
   ========================================================================== */
.post-type-archive-property .l-mainContent__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 80px;
}

.p-propertyGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.p-propertyCard {
    background: #fff;
    border: 0.5px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.p-propertyCard:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.p-propertyCard__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.p-propertyCard__thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin: 0;
    background: #f5f5f5;
}

.p-propertyCard__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.p-propertyCard:hover .p-propertyCard__thumb img {
    transform: scale(1.05);
}

.p-propertyCard__body {
    padding: 20px 50px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.p-propertyCard__types {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.p-propertyCard__type {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #253F72;
    border-radius: 3px;
    padding: 3px 10px;
    letter-spacing: 0.05em;
}

.p-propertyCard__title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.p-propertyCard__info {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.p-propertyCard__infoItem {
    display: flex;
    align-items: baseline;
    gap: 6px;
    line-height: 1.5;
}

.p-propertyCard__infoItem dt {
    font-size: 14px;
    color: #888;
    flex-shrink: 0;
    white-space: nowrap;
    width: 60px;
}

.p-propertyCard__infoItem dd {
    font-size: 16px;
    font-weight: 500;
    color: #1A1A1A;
    margin: 0;
}

.p-propertyCard__rent {
    font-size: 16px;
    color: #253F72;
    font-weight: 700;
}

.p-noData {
    text-align: center;
    padding: 60px 0;
    color: #888;
    font-size: 16px;
}


/* ==========================================================================
   16. PROPERTY PAGES - 物件詳細
   ========================================================================== */
   .single-property .l-mainContent__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px 80px !important;
}

.single-property .l-mainContent__inner {
    padding-top: 20px;
}

.single-property .p-entry__body {
    max-width: 900px;
    margin: 0 auto;
}

.single-property .p-entry__header {
    padding: 20px 0;
    border-bottom: 2px solid #1E345E;
    margin-bottom: 40px;
}

.single-property .p-entry__types {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.single-property .p-entry__type {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: #253F72;
    border-radius: 3px;
    padding: 5px 15px;
    letter-spacing: 0.2em;
}

.single-property .p-entry__title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.single-property .p-entry__meta {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.single-property .p-entry__thumb {
    margin-bottom: 0;
    border-radius: 8px;
    overflow: hidden;
}

.single-property .p-entry__thumb img {
    display: block;
    width: 100%;
    border-radius: 8px;
    height: auto;
    object-fit: cover;
}

.single-property .p-entry__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 60px;
}

.single-property .p-entry__gallery img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.single-property .p-entry__content {
    margin-top: 60px;
}

.single-property .c-headingLv2 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1E345E;
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 4px solid #1E345E;
}

.single-property .property-dl {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 40px;
}

.single-property .property-dl dt,
.single-property .property-dl dd {
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 20px;
}

.single-property .property-dl dt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    color: #1A1A1A;
    background: #f5f5f5;
}

.single-property .property-dl dd {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    color: #1A1A1A;
    margin: 0;
}

.single-property .property-description p {
    font-size: 20px;
    line-height: 2;
}


/* ==========================================================================
   17. CONTACT PAGE - お問い合わせ・会社概要
   ========================================================================== */
.p-contact {
    margin-bottom: 100px;
}

.p-contact__lead {
    text-align: center;
    margin-bottom: 48px;
    line-height: 2;
}

.p-contact__lead p {
    font-size: 16px;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.p-contact__form {
    max-width: 800px;
    margin: 0 auto 60px;
    background: #f5f5f5;
    padding: 48px 40px;
    border-radius: 8px;
}

.p-contact__form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.p-contact__form .wpcf7-form label {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.p-contact__form .wpcf7-form input:focus,
.p-contact__form .wpcf7-form textarea:focus {
    outline: none;
    border-color: #253F72;
}

.p-contact__form .wpcf7-form textarea {
    height: 200px;
    resize: vertical;
}

.p-contact__form .wpcf7-form input[type="submit"] {
    display: block;
    margin: 0 auto;
    padding: 16px 60px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #253F72;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 0.1em;
    transition: opacity 0.3s;
}

.p-contact__form .wpcf7-form input[type="submit"]:hover {
    opacity: 0.8;
}

.p-contact__other {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.p-contact__otherItem {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 32px;
    background: #f5f5f5;
    border-radius: 4px;
    gap: 0;
}

.p-contact__otherLabel {
    font-size: 16px;
    color: #1A1A1A;
    font-weight: 500;
    width: 50%;
    text-align: center;
    padding-right: 32px;
    border-right: 1px solid #ccc;
    box-sizing: border-box;
}

.p-contact__otherValue {
    font-size: 28px;
    font-weight: 700;
    color: #1E345E;
    letter-spacing: 0;
    width: 50%;
    text-align: center;
    padding-left: 0;
    box-sizing: border-box;
}

.p-contact__otherLine {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 50%;
    padding-left: 0;
    box-sizing: border-box;
}

.p-contact__lineIcon,
.p-contact__qrIcon {
    height: 40px;
    width: auto;
}

.p-company {
    margin-bottom: 100px;
}

.p-company__table {
    width: 800px;
    border-collapse: collapse;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 auto 120px;
}

.p-company__table th,
.p-company__table td {
    padding: 24px 40px;
    border-bottom: 1px solid #1A1A1A;
    text-align: left;
    vertical-align: top;
}

.p-company__table th {
    width: 200px;
    font-weight: 600;
    white-space: nowrap;
}

.p-company__table td {
    color: #1A1A1A;
}


/* ==========================================================================
   18. CF7 フォームレイアウト
   ========================================================================== */
.cf7-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid #d0d0d0;
}

.cf7-row--textarea {
    flex-direction: column;
    gap: 16px;
    border-top: none;
    border-bottom: none;
    padding: 22px 0;
}

.cf7-label {
    font-size: 16px;
    font-weight: 500;
    color: #1A1A1A;
    white-space: nowrap;
    padding-top: 4px;
    width: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 22px;
}

.cf7-row .wpcf7-list-item,
.wpcf7 abbr[title] {
    display: none;
}

.cf7-label .req {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #e00;
    border: 1px solid #e00;
    border-radius: 3px;
    padding: 1px 6px;
    line-height: 1.4;
    white-space: nowrap;
    background-color: #ffffff;
}

.cf7-row .wpcf7-radio {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.cf7-row .wpcf7-list-item {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.cf7-row .wpcf7-list-item-label {
    font-size: 16px;
    color: #1A1A1A;
}

.cf7-row input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #253F72;
    cursor: pointer;
}

.cf7-inputs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: calc(100% - 224px);
    margin-left: 0;
}

.cf7-row .wpcf7-text,
.cf7-row .wpcf7-email,
.cf7-row .wpcf7-tel {
    width: 100%;
    padding: 7px 14px;
    font-size: 16px;
    color: #1A1A1A;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    line-height: 1.6;
    transition: border-color 0.2s;
}

.cf7-row > p {
    display: contents;
}

.cf7-inputs > p {
    display: contents;
}

.cf7-row .wpcf7-form-control-wrap {
    flex: 1;
    min-width: 0;
    width: 100%;
}

.cf7-row .wpcf7-text:focus,
.cf7-row .wpcf7-email:focus,
.cf7-row .wpcf7-tel:focus {
    outline: none;
    border-color: #253F72;
}

.cf7-row--textarea .wpcf7-textarea {
    width: 100%;
    height: 220px;
    padding: 14px 16px;
    font-size: 16px;
    color: #1A1A1A;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
    line-height: 1.8;
    transition: border-color 0.2s;
}

.cf7-row--textarea .wpcf7-textarea:focus {
    outline: none;
    border-color: #253F72;
}

.wpcf7-submit {
    display: block;
    margin: 40px auto 0;
    padding: 16px 80px;
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    background: #fff;
    border: 1px solid #1A1A1A;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}

.wpcf7-submit:hover {
    background: #253F72;
    color: #fff;
    border-color: #253F72;
}


/* ==========================================================================
   19. WORKS PAGE - 事業内容
   ========================================================================== */
.p-works__section {
    padding: 80px 0;
}

.p-works__section--gray {
    background: #f5f5f5;
}

.p-works__section--white {
    background: #fff;
}

.p-works__section .p-works__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: unset;
    grid-template-columns: unset;
}

.p-works__section .p-works__inner--reverse {
    flex-direction: row-reverse;
}

.p-works__section .p-works__img {
    width: 45%;
    flex-shrink: 0;
}

.p-works__section .p-works__img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
}

.p-works__section .p-works__body {
    flex: 1;
}

.p-works__section .p-works__title {
    font-size: 28px;
    font-weight: 700;
    color: #1A1A1A;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.p-works__section .p-works__text {
    font-size: 15px;
    line-height: 1.9;
    color: #1A1A1A;
    background: none;
    padding: 0;
    margin-bottom: 24px;
}

.p-works__section--white .p-works__body {
    padding-left: 40px;
}

.p-works__btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: #1E345E;
    border: 1px solid #1E345E;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.p-works__btn:hover {
    background: #ffffff;
    color: #1E345E;
    border-color: #1E345E;
}


/* ==========================================================================
   20. FAQ PAGE - よくある質問
   ========================================================================== */
.p-faq {
    margin-bottom: 0;
}

.p-faq__section {
    max-width: 800px;
    margin: 0 auto 0;
    padding: 30px 0 80px;
}

.p-faq__section:last-child {
    border-bottom: none;
}

.p-faq__sectionTitle {
    font-size: 24px;
    font-weight: 700;
    color: #1E345E;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    padding-left: 16px;
    border-left: 4px solid #1E345E;
}

.p-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
}

.p-faq__item {
    display: flex;
    flex-direction: column;
    padding: 22px 0;
}

.p-faq__item:last-child {
    border-bottom: none;
}

.p-faq__question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 12px;
    padding: 16px 16px;
    line-height: 1.6;
    letter-spacing: 0.08em;
}

.p-faq__q {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #70a32b;
    flex-shrink: 0;
    line-height: 1.2;
}

.p-faq__answer {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 18px;
    color: #1A1A1A;
    line-height: 1.8;
    background: #f5f5f5;
    padding: 16px 16px;
    border-radius: 4px;
    margin: 0;
    letter-spacing: 0.05em;
}

.p-faq__a {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1E345E;
    flex-shrink: 0;
    line-height: 1.2;
}

.p-faq__q,
.p-faq__a {
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}


/* ==========================================================================
   21. PAGINATION
   ========================================================================== */
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 8px;
    list-style-type: none;
    padding: 0;
    margin-top: 48px;
    flex-wrap: wrap;
}

.nav-links .page-numbers {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    border-bottom: 2px solid #254072;
    color: #254072;
    text-decoration: none;
    font-size: 14px;
    border-radius: 10%;
}

.nav-links .page-numbers.current {
    border-bottom: 2px solid #254072;
    background: #254072;
    color: #fff;
    pointer-events: none;
}

.nav-links .page-numbers.dots {
    border-bottom: none;
}

.nav-links .prev.page-numbers,
.nav-links .next.page-numbers {
    display: flex;
    align-items: center;
    gap: 0 4px;
    width: auto;
    height: auto;
    padding: .5em .8em;
    line-height: 1;
}

.nav-links .prev.page-numbers::before {
    display: inline-block;
    transform: rotate(45deg);
    width: .3em;
    height: .3em;
    content: '';
    border-bottom: 1px solid #333;
    border-left: 1px solid #333;
}

.nav-links .next.page-numbers::after {
    display: inline-block;
    transform: rotate(45deg);
    width: .3em;
    height: .3em;
    content: '';
    border-top: 1px solid #333;
    border-right: 1px solid #333;
}

/* ==========================================================================
   22. TABLET (769px〜1024px)
   ========================================================================== */
@media (min-width: 769px) and (max-width: 1024px) {

    /* カスタムヘッダー */
    .l-customHeader__menu { gap: 12px; }
    .l-customHeader__menu a { font-size: 14px; white-space: nowrap; }
    .l-customHeader__inner { padding: 0 24px; gap: 24px; }

    /* Concept */
    .p-concept { padding: 100px 0 80px; }
    .p-concept__inner { max-width: 1000px; grid-template-columns: 1.3fr 1fr; column-gap: 40px; align-items: center; padding: 0 40px; }
    .p-concept__subtitle { font-size: 14px; }
    .p-concept__title { font-size: 40px; }
    .p-concept__leadText { font-size: 26px; }
    .p-concept__description p { font-size: 14px; }
    .p-concept__list li { font-size: 14px; padding-left: 0; letter-spacing: 0.01em; }
    .p-concept__list li::before { content: ""; padding-right: 0; }
    .p-concept__image { max-width: 100%; margin-top: 0; }
    .p-concept__right { align-self: flex-start; }

    /* Works（トップ） */
    .p-works__inner { grid-template-columns: 280px 1fr; }
    .p-works__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 1fr 1fr; height: 100%; }
    .p-works__title { font-size: 44px; }

    /* 物件紹介（トップ） */
    .p-property__inner { grid-template-columns: 320px 1fr; padding: 0 40px; }
    .p-property__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .p-property__title { font-size: 44px; }

    /* お知らせ */
    .p-news__inner { grid-template-columns: 320px 1fr; padding: 0 40px; column-gap: 0; }
    .p-news__title { font-size: 44px; }
    .p-news__item { padding-bottom: 16px; }

    /* コラム */
    .p-column { padding: 30px 20px 70px; }
    .p-column__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* 流れるテキスト */
    .p-scroll { padding: 0 0 70px; }
    .p-scroll__text { font-size: 120px; }

    /* Q&A/会社概要（トップ） */
    .p-bottom { padding: 80px 24px 0; }
    .p-bottom__title { font-size: clamp(30px, 6vw, 48px); }
    .p-bottom__inner { max-width: 1000px; padding: 0 clamp(16px, 3vw, 40px); grid-template-columns: 1fr 1px 1fr; column-gap: clamp(20px, 4vw, 60px); border-bottom: none; }
    .p-bottom__item { display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 0 clamp(8px, 1.5vw, 20px); }
    .p-bottom__divider { display: block; background: rgba(255, 255, 255, 0.4); width: 1px; height: 100%; }

    /* CTA */
    .site-cta .cta-band { padding: 40px; }
    .site-cta .cta-inner { padding: 40px; }
    .site-cta .cta-title { font-size: clamp(40px, 8vw, 48px); margin-bottom: clamp(20px, 4vw, 36px); }
    .site-cta .cta-grid { grid-template-columns: 1fr; gap: 40px; }
    .site-cta .cta-left { justify-self: center; max-width: 600px; display: flex; flex-direction: column; align-items: center; gap: 0; }
    .site-cta .cta-map { justify-self: center; width: 100%; max-width: 600px; }
    .site-cta .cta-map iframe { height: clamp(200px, 30vw, 300px); }
    .site-cta .cta-tel { font-size: 28px; white-space: nowrap; }
    .site-cta .cta-lineRow { flex-wrap: nowrap; white-space: nowrap; }
    .site-cta .cta-label { font-size: 24px; }
    .site-cta .cta-time { margin-bottom: 16px; white-space: nowrap; }
    .site-cta .cta-btn { white-space: nowrap; padding: 14px 32px; }

    /* フッター */
    .l-footer__inner { padding: 0 40px; }
    .l-footer__row { height: 80px; padding: 0; gap: 0; flex-wrap: nowrap; justify-content: space-between; align-items: center; }
    .l-footer__nav { order: 0; width: auto; flex: 1; }
    .l-footer__menu { gap: 0; flex-wrap: nowrap; }
    .l-footer__copyright { margin: 0 -40px; padding: 12px 0 16px; }

    /* 物件一覧 */
    .p-archiveFv { height: 300px; }
    .p-pageHeader { margin-bottom: 48px; margin-top: 60px; }
    .p-pageHeader__title { font-size: 36px; letter-spacing: 0.4em; }
    .p-propertyGrid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

    /* 物件詳細 */
    .single-property .l-mainContent__inner { padding: 30px 40px 80px; }
    .single-property .c-headingLv2 { font-size: 20px; }
    .single-property .property-dl dt,
    .single-property .property-dl dd,
    .single-property .property-description p { font-size: 18px; }
    .single-property .property-dl dt,
    .single-property .property-dl dd { padding: 12px 16px; }


    /* お問い合わせ */
    .p-contact__form { padding: 40px 32px; margin-bottom: 32px; }
    .p-company__table { width: 100%; }
    .p-company__table th { width: 140px; }
    .p-contact__otherValue { text-align: center; padding-left: 0; }
    .p-contact__otherLine { justify-content: center; padding-left: 0; }

    /* 事業内容 */
    .p-works__section .p-works__inner { gap: 40px; padding: 0 32px; }
    .p-works__section .p-works__img img { height: 240px; }
    .p-works__section .p-works__title { font-size: 24px; }

    /* FAQ セクションタイトル余白（800px以下） */
    .p-faq__sectionTitle { margin-left: 20px; }

    /* コラム・物件詳細 両脇余白（930px以下） */
    .single .l-mainContent__inner { padding-left: 2em; padding-right: 2em; }
}

/* ==========================================================================
   23. MOBILE (768px以下)
   ========================================================================== */
@media (max-width: 768px) {

    /* ファーストビュー */
    .p-fv {
        height: calc(70vh + 100px);
        min-height: 500px;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-top: 0 !important;
        padding-top: 90px;
        background-position: center center;
    }

    .p-fv__content { gap: 20px; }

    .p-fv__band {
        width: 100%;
        max-width: 95%;
        height: clamp(35px, 10vw, 60px);
        font-size: clamp(12px, 4vw, 24px);
        padding: 0 clamp(30px, 12vw, 80px);
        white-space: nowrap;
    }

    .p-fv__band-shadow {
        top: 3px;
        left: 3px;
        width: 100%;
        max-width: 95%;
        height: clamp(35px, 10vw, 60px);
    }

    /* カスタムヘッダー */
    .l-customHeader { top: 15px; height: 60px; width: 80%; max-width: 100%; border-radius: 10px; }
    .l-customHeader__inner { padding: 0 20px; gap: 16px; }
    .l-customHeader__logo { flex-shrink: 0; }
    .l-customHeader__logoImg { height: 35px; }

    .l-customHeader__nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        padding: 80px 30px 30px;
        z-index: 9999;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        pointer-events: none;
        transition: none;
        opacity: 0;
        visibility: hidden;
    }

    .l-customHeader__nav.is-active {
        left: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: left 0.3s, opacity 0.3s, visibility 0.3s;
        flex-direction: column;
    }

    .l-customHeader__menu { gap: 10px; flex-direction: column; }
    .l-customHeader__menu li { border-bottom: 1px solid #eee; }
    .l-customHeader__menu a { padding: 13px; white-space: nowrap; }
    .l-customHeader__cta { display: flex; margin-left: auto; margin-right: 0; }
    .l-customHeader__ctaBtn { width: 150px; height: 35px; font-size: 14px; gap: 6px; border-radius: 18px; }
    .l-customHeader__lineIcon { width: 18px; height: 18px; }

    .l-customHeader__hamburger { display: none; position: relative; z-index: 10000; flex-shrink: 0; }
    .l-customHeader.is-scrolled .l-customHeader__hamburger { display: flex; }
    .l-customHeader__hamburger.is-active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
    .l-customHeader__hamburger.is-active span:nth-child(2) { opacity: 0; }
    .l-customHeader__hamburger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }
    .l-customHeader.is-scrolled .l-customHeader__cta { margin-right: 15px; }

    /* Concept */
    .p-concept { padding: 60px 0 40px; }
    .p-concept__inner { grid-template-columns: 1fr; gap: 10px; padding: 0 30px; }
    .p-concept__heading { margin-bottom: 8px; }
    .p-concept__lead { margin-bottom: 20px; }
    .p-concept__subtitle { font-size: 14px; margin-bottom: 8px; }
    .p-concept__title { font-size: 32px; margin-bottom: 16px; }
    .p-concept__leadText { font-size: 20px; }
    .p-concept__description p { font-size: 15px; }
    .p-concept__list li { font-size: 15px; }
    .p-concept__image { max-width: 100%; }

    /* Works（トップ） */
    .p-works { background: #1E345E; }
    .p-works__inner { grid-template-columns: 1fr; min-height: auto; }
    .p-works__text { padding: 60px 30px 40px; }
    .p-works__subtitle { font-size: 14px; margin-bottom: 8px; }
    .p-works__title { font-size: 32px; }
    .p-works__description { font-size: 15px; font-weight: 500; line-height: 1.8; letter-spacing: 0.03em; }
    .p-works__grid { grid-template-columns: 1fr; grid-template-rows: auto; padding: 0 30px 70px; gap: 16px; }
    .p-works__item { aspect-ratio: 16 / 9; width: 100%; max-height: 200px; border-radius: 8px; overflow: hidden; }
    .p-works__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .p-works__label { font-size: 20px; bottom: 16px; left: 16px; }

    /* 物件紹介（トップ） */
    .p-property { padding: 60px 0; }
    .p-property__inner { display: flex; flex-direction: column; width: 100%; padding: 0 20px; box-sizing: border-box; }
    .p-property__heading { position: static; order: 1; display: contents; }
    .p-property__subtitle { font-size: 14px; margin-bottom: 8px; order: 1; }
    .p-property__title { font-size: 32px; order: 2; padding-bottom: 20px; }
    .p-property__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; order: 2; width: 100%; }
    .p-property__sticky-wrapper { position: static; display: contents; }
    .p-property__thumb { aspect-ratio: 3 / 4; }
    .p-property__body { padding: 15px 12px; }
    .p-property__name { font-size: 16px; min-height: auto; }
    .p-property__infoItem { font-size: 13px; gap: 3px; }
    .p-property__infoItem dt { width: 50px; }
    .p-property__more { order: 4; text-align: center; margin-top: 30px; width: 100%; display: flex; justify-content: center; }

    /* お知らせ */
    .p-news { padding: 60px 0 0 0; background: #fff; width: 100vw; margin-left: calc(50% - 50vw); }
    .p-news__inner { grid-template-columns: 1fr; gap: 24px; padding: 0 30px; }
    .p-news__subtitle { font-size: 14px; margin-bottom: 8px; }
    .p-news__title { font-size: 32px; }
    .p-news__item { flex-direction: column; align-items: flex-start; gap: 5px; padding: 12px 0; }
    .p-news__date { font-size: 14px; min-width: auto; }
    .p-news__text { font-size: 15px; }

    /* コラム */
    .p-column { padding: 30px 0 0 0; }
    .p-column__grid { grid-template-columns: 1fr; gap: 16px; }
    .p-column__inner { padding: 0 30px; }

    /* 流れるテキスト */
    .p-scroll { padding: 60px 0; }
    .p-scroll__text { font-size: 90px; }

    /* Q&A/会社概要（トップ） */
    .p-bottom { padding: 70px 0 0; }
    .p-bottom__inner { grid-template-columns: 1fr; gap: 40px; }
    .p-bottom__item { text-align: center; }
    .p-bottom__subtitle { font-size: clamp(14px, 4vw, 16px); letter-spacing: 0.1em; margin-bottom: 5px; }
    .p-bottom__title { font-size: 35px; }
    .p-bottom__text { margin-bottom: 20px; }
    .p-bottom__btn { padding: 14px 80px; font-size: 13px; line-height: 1; white-space: nowrap; }
    .p-bottom__divider { display: none; }

    /* CTA */
    .site-cta .cta-band { padding: 60px 0; }
    .site-cta .cta-box { padding: clamp(20px, 5vw, 30px) clamp(16px, 4vw, 20px); text-align: center; }
    .site-cta .cta-grid { grid-template-columns: 1fr; gap: 32px; justify-items: center; }
    .site-cta .cta-left { justify-self: center; max-width: none; width: 100%; display: flex; flex-direction: column; align-items: center; }
    .site-cta .cta-inner { padding: 0 16px; }
    .site-cta .cta-small { font-size: clamp(14px, 4vw, 16px); letter-spacing: 0.1em; margin-bottom: 10px; }
    .site-cta .cta-title { font-size: 40px; }
    .site-cta .cta-tel { font-size: clamp(24px, 6vw, 30px); margin-bottom: 16px; white-space: nowrap; }
    .site-cta .cta-label { font-size: clamp(18px, 5vw, 26px); }
    .site-cta .cta-lineRow { justify-content: center; }
    .site-cta .cta-time { font-size: clamp(12px, 3vw, 14px); margin-bottom: 24px; line-height: 1; }
    .site-cta .cta-btn { font-size: clamp(12px, 3vw, 13px); padding: clamp(12px, 3vw, 14px) clamp(20px, 5vw, 24px); white-space: nowrap; }
    .site-cta .cta-map { justify-self: center; width: calc(100% - 20px); max-width: 100%; }
    .site-cta .cta-map iframe { height: 220px; }
    .site-cta .cta-lineIcon, .site-cta .cta-qr { height: clamp(30px, 8vw, 44px); }
    .site-cta .cta-tel, .site-cta .cta-lineRow, .site-cta .cta-time, .site-cta .cta-btn { margin-left: auto; margin-right: auto; }

    /* フッター */
    .l-footer__inner { padding: 0 20px; }
    .l-footer__row { flex-direction: row; align-items: center; justify-content: center; height: auto; padding: 24px 0; gap: 20px; flex-wrap: nowrap; }
    .l-footer__nav { display: none; }
    .l-footer__logo { order: 1; }
    .l-footer__social { order: 2; gap: 16px; }
    .l-footer__externalLink { order: 1; }
    .l-footer__socialLink { order: 2; }
    .l-footer__copyright { text-align: center; white-space: normal; padding: 12px 0 20px; margin: 0 -20px; }

    /* 共通ページヘッダー */
    .p-archiveFv { height: 220px; }
    .p-pageHeader { margin-bottom: 40px; margin-top: 40px; text-align: center; }
    .p-pageHeader__title { font-size: 28px; letter-spacing: 0.4em; }
    .p-pageHeader__lead { padding: 0 20px; }

    /* 物件一覧 */
    .post-type-archive-property .l-mainContent__inner { padding: 40px 20px 60px; }
    .p-propertyGrid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .p-propertyCard__body { padding: 16px 40px 20px; }
    .p-propertyCard__type { font-size: 12px; padding: 2px 8px; }
    .p-propertyCard__title { font-size: 15px; }
    .p-propertyCard__infoItem dt { font-size: 13px; }
    .p-propertyCard__infoItem dd { font-size: 14px; }
    .p-propertyCard__rent { font-size: 14px; }

    /* 物件詳細 */
    .single-property .l-mainContent__inner { padding: 20px 20px 60px; }
    .single-property .p-entry__header { padding: 24px 0; }
    .single-property .p-entry__title { font-size: 24px; }
    .single-property .p-entry__meta { font-size: 14px; }
    .single-property .p-entry__thumb { margin-bottom: 40px; }
    .single-property .p-entry__gallery { gap: 14px; margin-bottom: 40px; }
    .single-property .c-headingLv2 { font-size: 20px; }
    .single-property .property-dl dt,
    .single-property .property-dl dd,
    .single-property .property-description p { font-size: 18px; }
    .single-property .property-dl dt,
    .single-property .property-dl dd { padding: 12px 16px; }

    /* お問い合わせ */
    .p-contact { margin-bottom: 60px; }
    .p-contact__lead { padding: 0 20px; }
    .p-contact__lead p { font-size: 14px; }
    .p-contact__form { padding: 32px 20px; margin-bottom: 24px; }
    .p-contact__other { gap: 16px; }
    .p-contact__otherItem { flex-direction: row; align-items: center; padding: 20px 24px; gap: 0; }
    .p-contact__otherLabel { font-size: 16px; width: 50%; border-right: 1px solid #ccc; border-bottom: none; padding-right: 16px; padding-bottom: 0; text-align: center; white-space: nowrap; }
    .p-contact__otherValue { font-size: 30px; width: 50%; padding-left: 0; text-align: center; }
    .p-contact__otherLine { width: 50%; padding-left: 0; justify-content: center; }
    .p-company { margin-bottom: 60px; }
    .p-company__table { width: 100%; }
    .p-company__table th, .p-company__table td { display: block; width: 100%; padding: 8px 16px; }
    .p-company__table th { border-bottom: none; padding-bottom: 0; }

    /* CF7 */
    .cf7-row { flex-direction: column; gap: 10px; padding: 18px 0; }
    .cf7-row--textarea { padding: 18px 0; gap: 10px; }
    .cf7-label { min-width: unset; width: 100%; padding-top: 0; }
    .cf7-row .wpcf7-radio { gap: 12px; padding-top: 0; flex-wrap: wrap; }
    .cf7-row .wpcf7-email, .cf7-row .wpcf7-tel, .cf7-inputs { width: 100%; }
    .cf7-row:has(.wpcf7-email) .wpcf7-form-control-wrap,
    .cf7-row:has(.wpcf7-tel) .wpcf7-form-control-wrap { width: 100%; flex: 1; }

    /* 事業内容 */
    .p-works__anchors { gap: 16px; }
    .p-works__anchor { font-size: 15px; }
    .p-works__anchorDivider { font-size: 15px; }
    .p-works__section { padding: 48px 0; }
    .p-works__section .p-works__inner { flex-direction: column; padding: 0 20px; gap: 24px; }
    .p-works__section .p-works__inner--reverse { flex-direction: column; }
    .p-works__section .p-works__img { width: 85%; }
    .p-works__section .p-works__img img { height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
    .p-works__section .p-works__body { text-align: left; padding-left: 0; width: 85%; margin: 0 auto; }
    .p-works__section .p-works__body .p-works__btn { display: block; text-align: center; }
    .p-works__section .p-works__title { font-size: 22px; }
    .p-works__section .p-works__text { font-size: 14px; }
    .p-works__section--white .p-works__inner { flex-direction: column-reverse; }

    /* よくある質問 */
    .p-faq__section { padding: 40px 0; }
    .p-faq__sectionTitle {
        font-size: 20px;
        margin-bottom: 0;
        margin-left: 20px;
        padding-left: 16px;
    }
    .p-faq__item { padding: 20px 0 0 ; }
    .p-faq__question { font-size: 15px; gap: 12px; padding: 16px 20px; margin-bottom: 0;}
    .p-faq__q, .p-faq__a { font-size: 18px; }
    .p-faq__answer { font-size: 14px; gap: 12px; padding: 32px 20px; }

    /* 物件一覧（小画面） */
    .p-propertyGrid { grid-template-columns: 1fr; gap: 16px; }
    .post-type-archive-property .l-mainContent__inner { padding-left: 30px; padding-right: 30px; }
    .p-propertyCard__body { padding: 32px 40px 40px; }

    /* お問い合わせ（小画面） */
    .p-contact__otherItem { flex-direction: column; align-items: center; gap: 12px; }
    .p-contact__otherLabel { width: 100%; border-right: none; border-bottom: 1px solid #ccc; padding-right: 0; padding-bottom: 12px; text-align: center; }
    .p-contact__otherValue, .p-contact__otherLine { width: 100%; padding-left: 0; text-align: center; justify-content: center; }

    /* FV（小画面） */
    .p-fv { height: calc(50vh + 50px); min-height: 300px; padding-top: 50px; }

    /* ヘッダー（小画面） */
    .l-customHeader__ctaBtn { width: 120px; height: 32px; font-size: 12px; gap: 4px; padding: 0 8px; }
    .l-customHeader__lineIcon { width: 16px; height: 16px; }
    .l-customHeader__logoImg { height: 30px; }
}


/* ==========================================================================
   24. SMALL BREAKPOINTS
   ========================================================================== */

@media (max-width: 500px) {
    .p-property__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
