:root {
    --main-color: #002567;

    --section-bg: #f2f0ea9c;
    --solution-bg: #F6F4F0;
    --text-red: #ef3939;

    --bubble-color: #5E690F;

    --yellow: #ffcd00;

    --pcn-ink: #1a1a1a;
    --shadow-1: 0 8px 24px rgba(16, 24, 40, .06);

    --stroke-color: #FFFFFFB9;
    --shadow-glow: 4px;

    --column-mv-bg: #fcf3e2;
    --column-title-hr: #707070;

    --column-main-color: #086DC3;
    --sidebar-width: 300px;

    --footer-addr-bg: #66758e;
    --footer-btn-top: #cfba20;
    --footer-btn-bottom: #958615;
    --footer-btn-border: #fff1cb;
    --footer-btn-text: #35342a;
}

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

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Noto Sans JP", "メイリオ", Meiryo, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック体", YuGothic, "ＭＳ Ｐゴシック", sans-serif;
    color: var(--pcn-ink);
    line-height: 1.7;
    background: #fff;
}

/* img {
    max-width: 100%;
    height: auto;
    display: block;
} */
a {
    color: inherit;
    text-decoration: none;
}

a.page-link {
    text-decoration: underline;
}

a.page-link:hover,
a.page-link:active {
    color: #0090FA;
    text-decoration: underline;
}

a.text-link {
    text-decoration: underline;
}

a.text-link:hover {
    color: #0090FA;
}

button {
    font: inherit;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
}

.container {
    max-width: 1400px;
    margin-inline: auto;
    padding-inline: 20px;
}

.container01 {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: none;
    padding: 0 12px;

}

@media (min-width: 481px) {
    .container01 {
        max-width: none;
        padding: 0 1.5rem;
    }
}

@media (min-width: 1200px) {
    .container01 {
        max-width: none;
        padding: 0 3.5rem;
    }
}

@media (min-width: 1600px) {
    .container01 {
        max-width: 1600px;
    }
}

@media (min-width: 1700px) {
    .container01 {
        max-width: 1800px;
    }
}

.breadcrumb {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 11px 0;
    font-family: "M PLUS 2", sans-serif;
    font-weight: 300;
    margin-bottom: 0;
    z-index: 5;
    position: relative;
}

.breadcrumb p {
    padding: 0 2.5%;
}

@media (max-width: 500px) {
    .breadcrumb p {
        font-size: 14px;
    }
}

.text-shadow_w {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #fff;
}

/* header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2%;
    border-bottom: 1px solid #eee;
    background: #fff;
    font-family: "M PLUS 2", sans-serif;
    height: 100px;
}

header .logo img {
    height: 40px;
    width: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.hamburger:hover span {
    background: #235cba;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--main-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger.active:hover span {
    background: #235cba;
}

nav {
    display: flex;
    font-size: 15px;
    color: var(--main-color);
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    gap: 15px;
}

nav a {
    padding: 6px 12px;
    border-radius: 3px;
    transition: background 0.25s, color 0.25s, box-shadow 0.25s;
    text-decoration: none;
    color: inherit;
    line-height: 1;
}

nav a:hover,
nav a.active {
    /* color: #0033a0; */
    /* color: #02297e; */
    /* color: #3B82F6; */
    color: #235cba;
}

.nav-cta {
    display: flex;
    gap: 5px;
}

nav .cta {
    display: inline-flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    width: 110px;
    height: 100px;
    padding: 12px 10px;
    border-radius: 0;
    background: var(--main-color);
    color: #fff !important;
    gap: 3px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

nav .cta img {
    width: 70%;
}

nav .cta .label {
    font-size: 14px;
    white-space: nowrap;
}

nav .cta:hover {
    /* background: #073371; */
    /* filter: brightness(1.05); */
    color: #fff;
    opacity: .95;
}

nav .spacer {
    width: 12px;
}

@media (max-width: 1445px) {
    header {
        padding: 0;
    }

    .logo {
        padding-left: 1rem;
    }
}

@media (max-width: 1317px) {
    nav {
        gap: 1rem;
    }

    nav a {
        padding: 6px 8px;
    }
}

@media (max-width: 1279px) {
    header {
        height: 80px;
    }

    nav {
        display: none;
        top: 80px;
        right: 0;
        width: 100%;
        background: rgb(6 15 29 / 95%);
        color: #fff;
        position: fixed;
        /* top: 0;
        right: -100%; */
        height: 100vh;
        /* width: 250px; */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* background: #fff; */
        gap: 2rem;
        /* box-shadow: -2px 0 8px rgba(0,0,0,0.1); */
        transition: right 0.3s ease;
        z-index: 1050;
    }

    nav.active {
        right: 0;
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        /* gap: 1rem; */
        gap: 1.5rem;
        text-align: center;
    }

    .nav-cta {
        flex-direction: row;
        gap: 1rem;
    }

    nav .cta {
        background: none;
        box-shadow: none;
    }

    nav .cta:hover {
        background: var(--main-color);
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    }
}

@media (max-width: 500px) {
    header .logo img {
        height: 28px;
    }

    .logo {
        padding-left: 5px;
    }
}

.header-margin {
    margin-top: 100px;
}

@media (max-width: 1279px) {
    .header-margin {
        margin-top: 80px;
    }
}

/* ーーーーーWP用ーーーーー */
body.admin-bar header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar header {
        top: 0;
    }

    body.admin-bar .header-margin {
        margin-top: 34px;
    }
}

/* ーーーーーーーーーーー */


.main-color {
    color: var(--main-color);
}

.section-bg {
    background: var(--section-bg);
}


h2 {
    font-weight: 300 !important;
    font-size: 60px !important;
    margin: 3rem 0;
    line-height: 1.4;
}

h2 span {
    font-size: 48px;
}

h2 span.span-top {
    font-size: 32px;
}

@media (max-width: 1599px) {
    h2 {
        font-size: 50px !important;
    }

    h2 span {
        font-size: 40px;
    }
}

@media (max-width: 1279px) {
    h2 {
        margin: 2.5rem 0;
    }
}

@media (max-width: 1200px) {
    h2 {
        font-size: 44px !important;
        margin: 1.5rem 0;
    }

    h2 span {
        font-size: 34px;
    }
}

@media (max-width: 500px) {
    h2 {
        font-size: 32px !important;
    }

    h2 span {
        font-size: 27px;
    }
}


/* section */
.mv-section {
    color: #fff;
}

.single-page.mv-section {
    background: url(assets/img/page-header-MV.png) left center / cover no-repeat;
}

.about .mv-section {
    background: url(assets/img/about-MV.png) right 22% center / cover no-repeat;
}

.reasons .mv-section {
    background: url(assets/img/reasons-MV.png) left 70% center / cover no-repeat;
}

.solution .mv-section {
    background: url(assets/img/solution-MV.png) right 22% center / cover no-repeat;
}

.inheritance .mv-section {
    background: url(assets/img/inheritance-MV.png) right 28% center/cover no-repeat;
}

.overview .mv-section,
.vision-mission-value .mv-section,
.access .mv-section,
.message .mv-section,
.history .mv-section,
.csr .mv-section,
.publications .mv-section {
    background: url(assets/img/overview-MV.png) right top / cover no-repeat;
}

.office .mv-section {
    background: url(assets/img/office-MV.png) right center / cover no-repeat;
}

.services .mv-section {
    background: url(assets/img/services-MV.png) right center / cover no-repeat;
}

/* .staff .mv-section {
    background: url(assets/img/staff-MV.png) left 30% center / cover no-repeat;
} */

.land-utilization .mv-section {
    background: url(assets/img/land-utilization-MV.png) right 28% center/cover no-repeat;
}

.rental-management .mv-section {
    background: url(assets/img/rental-management-MV.png) right center / cover no-repeat;
}

.commercial-rental .mv-section {
    background: url(assets/img/commercial-rental-MV.png) right center / cover no-repeat;
}

.renovation .mv-section {
    background: url(assets/img/renovation-MV.png) right center / cover no-repeat;
}

.property-sales .mv-section {
    background: url(assets/img/property-sales-MV.png) left center / cover no-repeat;
}

.totono-page-section .mv-section {
    background: url(assets/img/totono-MV.png) right center / cover no-repeat;
}

.wealthpark-page-section .mv-section {
    background: url(assets/img/wealthpark-MV.png) right center / cover no-repeat;
}

.partnership-section .mv-section {
    /* background: url(assets/img/partnership-MV.png) right center / cover no-repeat; */
    background: url(assets/img/partnership-MV.png) right bottom 42% / cover no-repeat;
}

.company .mv-section {
    background: url(assets/img/company-MV.png) center / cover no-repeat;
}

.column .mv-section {
    background: url(assets/img/column-MV.png) right 10% center / cover no-repeat;
}

.land-case-single .mv-section {
    background: url(assets/img/land-case-single-MV.png) center / cover no-repeat;
}

.recruit .mv-section {
    background: url(assets/img/recruit-MV.png) right center / cover no-repeat;
}

.recruit-section.section-bg-img {
    background: url(assets/img/recruit-img-bg.png) center / cover no-repeat;
}

.recruit-section.section-bg-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(59, 33, 9, 0.55);
    z-index: 1;
}

.benefits .mv-section,
.staff .mv-section,
.numbers .mv-section {
    background: url(assets/img/recruit-MV.png) right top 30% / cover no-repeat;
}

.privacy .mv-section {
    background: url(assets/img/privacy-MV.png) left center / cover no-repeat;
}

.privacy .mv-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(59, 33, 9, 0.5);
}

.customer_harassment_policy .mv-section {
    background: url(assets/img/customer_harassment_policy-MV.png) center / cover no-repeat;
}

.customer_harassment_policy .mv-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(59, 33, 9, 0.5);
}

.r_week_schedule .mv-section {
    background: url(assets/img/r_week_schedule-MV.png) right top / cover no-repeat;
}

.r_week_schedule .mv-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(59, 33, 9, 0.5);
}

.topics .mv-section {
    background: url(assets/img/topics-MV.png) left center / cover no-repeat;
}

.topics .mv-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(59, 33, 9, 0.5);
}

.contact .mv-section {
    background: url(assets/img/contact-MV.png) right 20% top / cover no-repeat;
}

.contact .mv-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(59, 33, 9, 0.5);
}

.mv-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(59, 33, 9, 0.5);
}

.inheritance .mv-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(59, 33, 9, 0.55);
}

@media (max-width: 991px) {
    /* .about .mv-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
    } */

    .services .mv-section {
        background: url(assets/img/services-MV.png) right 20% center / cover no-repeat;
    }

    .staff .mv-section {
        background: url(assets/img/staff-MV.png) left 40% center / cover no-repeat;
    }

    /* .totono-page-section .mv-section::after,
    .wealthpark-page-section .mv-section::after,
    .partnership-section .mv-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.2);
    }

    .totono-page-section .mv-section__content,
    .wealthpark-page-section .mv-section__content,
    .partnership-section .mv-section__content {
        position: relative;
        z-index: 1;
    } */

    .topics .mv-section {
        background: url(assets/img/topics-MV.png) center / cover no-repeat;
    }
}

@media (max-width: 767px) {
    .partnership-section .mv-section {
        background: url(assets/img/partnership-MV.png) right 30% bottom 42% / cover no-repeat;
    }
}

@media (max-width: 480px) {
    .reasons .mv-section {
        background: url(assets/img/reasons-MV.png) left 60% center / cover no-repeat;
    }

    .totono-page-section .mv-section {
        background: url(assets/img/totono-MV.png) right 13% center / cover no-repeat;
    }

    .partnership-section .mv-section {
        background: url(assets/img/partnership-MV.png) right 38% bottom 42% / cover no-repeat;
    }
}

.mv-section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: #ffffff22;
}

.mv-section__content {
    position: relative;
    padding: 9rem 3rem;
    font-family: "M PLUS 2", sans-serif;
    font-weight: 400;
    z-index: 1;
}

.inheritance .mv-section__content,
.rental-management .mv-section__content,
.commercial-rental .mv-section__content,
/* .land-utilization .mv-section__content, */
.renovation .mv-section__content {
    padding: 11.5rem 3rem;
}

.property-sales .mv-section__content {
    padding: 10.35rem 3rem;
}

.land-utilization .mv-section__content {
    /* padding: 9.4rem 3rem; */
    padding: 9rem 3rem;
}

.totono-page-section .mv-section__content {
    /* padding: 8.7rem 3rem; */
    padding: 8rem 3rem 9.4rem;
}

.wealthpark-page-section .mv-section__content {
    /* padding: 10rem 3rem; */
    /* padding: 8.5rem 3rem; */
    padding: 8rem 3rem 9rem;
}

.partnership-section .mv-section__content {
    padding: 14rem 3rem;
}

.totono-page-section .mv-section__content img,
.wealthpark-page-section .mv-section__content img {
    width: 20%;
}

.mv-section__grid {
    display: grid;
    gap: 28px;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    padding: 5rem 3rem;
    font-family: "M PLUS 2", sans-serif;
}

.about .mv-section__grid {
    padding: 2.7rem 3rem;
}

.reasons .mv-section__grid,
.privacy .mv-section__grid,
.customer_harassment_policy .mv-section__grid,
.r_week_schedule .mv-section__grid {
    grid-template-columns: 1fr;
}

.solution .mv-section__grid {
    padding: 14.92rem 3rem;
}

.services .mv-section__grid {
    padding: 15rem 3rem;
}

.office .mv-section__grid,
.content .mv-section__grid {
    padding: 17rem 3rem;
}

.company .mv-section__grid,
.recruit .mv-section__grid {
    padding: 18rem 3rem;
}

/* .company .mv-section__grid,
.content .mv-section__grid {
    padding: 18rem 3rem;
} */

.vision-mission-value .mv-section__grid {
    /* padding: 3.3rem 3rem; */
    grid-template-columns: 1fr;
}

.privacy .mv-section__grid,
.customer_harassment_policy .mv-section__grid,
.r_week_schedule .mv-section__grid {
    padding: 3.4rem 3rem;
}

.mv-section__title {
    font-size: 65px;
    margin: 0 0 6px;
    font-weight: 400;
}

.mv-section__title small {
    font-size: 70%;
}

.mv-section__title p {
    font-size: 32px;
    margin-top: 1rem;
    font-weight: 300;
    margin-bottom: 4rem;
}

/* .totono-page-section .mv-section__title,
.wealthpark-page-section .mv-section__title,
.partnership-section .mv-section__title {
    color: #000;
} */

.section__grid {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
}

.section__grid.reverse {
    grid-template-columns: 0.7fr 1fr;
}

.access .section__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.section__grid p {
    font-size: 18px;
}

.section__grid p span {
    font-size: 20px;
    font-family: "M PLUS 2", sans-serif;
    color: var(--main-color);
    font-weight: 500;
}

.section__panel--img {
    margin: 0;
}

.section__panel--img img {
    width: 100%;
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    /* aspect-ratio: 16/9 */
}

.section__panel--text {
    padding: 22px 0;
    z-index: 1;
}

.section__p {
    opacity: .95;
    margin: 0 0 18px;
    font-size: 20px;
    font-weight: 300;
    margin: 3rem 0;
}

.section__p--small {
    margin-bottom: 2rem;
}

.section__p--small small {
    font-size: 16px;
    font-weight: 300;
}

.section__title {
    margin: 0 0 3rem;
    font-family: "M PLUS 2", sans-serif;
}

.vision-mission-value .section__title {
    font-family: "M PLUS 2", sans-serif;
    color: var(--main-color);
    /* text-align: center; */

    /* font-weight: 400 !important;
    font-size: 80px !important; */

    font-size: clamp(50px, 5vw, 75px) !important;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 800 !important;
}

/* .vision-mission-value .section__title::after {
    content: "";
    display: block;
    width: 80px; 
    height: 5px;
    margin: 12px auto 0;
    background: linear-gradient(
    to right,
    #8a8266 0%, 
    #8a8266 50%,
    #d9d9d9 50%,
    #d9d9d9 100%
    );
} */

/* .vision-mission-value .section__title::before {
  content: "";
  width: 60px;
  height: 2px;
  background: #8a8266;
} */


.section__grid p.section__point__text {
    font-family: "M PLUS 2", sans-serif;
    color: var(--main-color);
    font-size: 32px;
    line-height: 1.4;
}

.totono-page-section .section__p,
.wealthpark-page-section .section__p {
    /* color: #000; */
    opacity: 1;
    margin: 2rem 0 1rem;
    font-weight: 400;
}

@media (max-width: 1773px) {
    .solution .mv-section__grid {
        padding: 14.87rem 3rem;
    }
}

@media (max-width: 1599px) {
    .mv-section__grid {
        padding: 0 3.5rem;
    }

    .solution .mv-section__grid {
        padding: 9.08rem 3rem;
    }

    .about .mv-section__grid {
        padding: 0rem 3rem;
    }

    .office .mv-section__grid,
    .content .mv-section__grid {
        padding: 11rem 3rem;
    }

    .services .mv-section__grid {
        padding: 9.1rem 3rem;
    }

    /* .company .mv-section__grid,
    .content .mv-section__grid {
        padding: 12rem 3rem;
    } */
    .company .mv-section__grid,
    .recruit .mv-section__grid {
        padding: 12rem 3rem;
    }

    .privacy .mv-section__grid,
    .customer_harassment_policy .mv-section__grid,
    .r_week_schedule .mv-section__grid {
        padding: 0 3.5rem;
    }

    .mv-section__content {
        padding: 9rem 3.5rem;
    }

    .land-utilization .mv-section__content {
        padding: 9.4rem 3rem;
    }

    .property-sales .mv-section__content {
        padding: 10.55rem 3rem;
    }

    .mv-section__title {
        font-size: 56px;
    }

    .mv-section__title p,
    .section__grid p.section__point__text {
        font-size: 28px;
    }

    .section__panel--text {
        padding: 3rem 0;
    }

    .overview .section__panel--text,
    .access .section__panel--text,
    .history .section__panel--text,
    .csr .section__panel--text,
    .message .section__panel--text,
    .publications .section__panel--text,
    .column .section__panel--text,
    .topics .section__panel--text,
    .numbers .section__panel--text,
    .benefits .section__panel--text,
    .staff .section__panel--text,
    .single-page .section__panel--text,
    .vision-mission-value .section__panel--text {
        /* padding: 5.2rem 0; */
        padding: 5rem 0;
    }

    .about .section__panel--text {
        padding: 2.9rem 0;
    }

    .privacy .section__panel--text,
    .customer_harassment_policy .section__panel--text,
    .r_week_schedule .section__panel--text {
        padding: 3.4rem 0;
    }

    /* .vision-mission-value .section__panel--text {
        padding: 0 !important;
    } */

    .section__p {
        font-size: 18px;
        margin: 2rem 0;
    }

    /* .section-type-a .section__p,
    .section-type-b .section__p {
        margin: -1rem 0 2rem;
    } */
    .section-type-a .section__p,
    .section-type-b .section__p {
        margin: 0 0 2rem;
    }
}

/* @media (max-width: 1327px) {
    .renovation .mv-section__content {
        padding: 9.4rem 3rem;
    }
} */

@media (max-width: 1245px) {
    .solution .mv-section__grid {
        padding: 8.12rem 3rem;
    }
}

@media (max-width: 1212px) {
    .solution .mv-section__grid {
        padding: 7.18rem 3rem;
    }
}

@media (max-width: 1200px) {
    .mv-section__grid {
        padding: 0 2rem;
    }

    .solution .mv-section__grid {
        padding: 9.12rem 2rem;
    }

    .office .mv-section__grid,
    .content .mv-section__grid {
        padding: 11rem 2rem;
    }

    .services .mv-section__grid {
        padding: 9.1rem 2rem;
        grid-template-columns: 1fr;
    }

    .about .mv-section__grid {
        padding: 0rem 2rem;
    }

    /* .company .mv-section__grid,
    .content .mv-section__grid {
        padding: 13rem 2rem;
    } */
    .company .mv-section__grid,
    .recruit .mv-section__grid {
        padding: 12rem 2rem;
    }

    /* .vision-mission-value .mv-section__grid {
        padding: 3.3rem 2rem;
    } */

    .privacy .mv-section__grid,
    .customer_harassment_policy .mv-section__grid,
    .r_week_schedule .mv-section__grid {
        padding: 0 2rem;
    }

    .about .section__panel--text {
        padding: 2.5rem 0;
    }

    .mv-section__title p {
        margin-bottom: 3rem;
    }

    .mv-section__content {
        padding: 6rem 2rem;
    }

    .inheritance .mv-section__content,
    .rental-management .mv-section__content,
    .commercial-rental .mv-section__content,
    /* .land-utilization .mv-section__content, */
    .renovation .mv-section__content {
        padding: 8rem 2rem;
    }

    .property-sales .mv-section__content {
        padding: 7.05rem 2rem;
    }

    /* .renovation .mv-section__content, */
    .land-utilization .mv-section__content {
        padding: 5.9rem 2rem;
    }

    .totono-page-section .mv-section__content {
        /* padding: 5.6rem 2rem; */
        padding: 5rem 2rem 6.2rem;
    }

    .wealthpark-page-section .mv-section__content {
        /* padding: 7rem 2rem; */
        /* padding: 5.25rem 2rem; */
        padding: 5rem 2rem 5.5rem;
    }

    .partnership-section .mv-section__content {
        /* padding: 11rem 2rem; */
        padding: 9.8rem 2rem;
    }
}

@media (max-width: 1180px) {
    .solution .mv-section__grid {
        padding: 8.18rem 2rem;
    }
}

@media (max-width: 1024px) {
    .section-type-a__grid {
        grid-template-columns: 1fr;
    }

    .mv-section__grid {
        grid-template-columns: 1fr;
    }

    .solution .mv-section__grid {
        padding: 11.05rem 2rem;
    }
}

@media (max-width: 999px) {
    .land-utilization .mv-section__content {
        padding: 5.1rem 2rem;
    }
}

@media (max-width: 991px) {
    .mv-section__title {
        font-size: 52px;
    }

    .mv-section__title p,
    .section__grid p.section__point__text {
        font-size: 25px;
        margin-bottom: 3rem;
    }

    .vision-mission-value .section__grid p.section__point__text {
        margin-bottom: 1rem;
    }

    .mv-section__grid .section__p br {
        display: none;
    }

    .solution .mv-section__grid .section__p br,
    .office .mv-section__grid .section__p br,
    .staff .mv-section__grid .section__p br {
        display: block;
    }

    .about .mv-section__grid {
        padding: 3.2rem 2rem;
    }

    .solution .mv-section__grid {
        padding: 9.02rem 2rem;
    }

    .company .mv-section__grid,
    .content .mv-section__grid,
    .recruit .mv-section__grid {
        padding: 10rem 2rem;
    }

    .office .mv-section__grid {
        padding: 9rem 2rem;
    }

    .services .mv-section__grid,
    .solution .mv-section__grid {
        padding: 8.05rem 2rem;
    }

    /* .content .mv-section__grid {
        padding: 11rem 2rem;
    } */

    .overview .section__panel--text,
    .access .section__panel--text,
    .history .section__panel--text,
    .csr .section__panel--text,
    .message .section__panel--text,
    .publications .section__panel--text,
    .column .section__panel--text,
    .topics .section__panel--text,
    .privacy .section__panel--text,
    .customer_harassment_policy .section__panel--text,
    .r_week_schedule .section__panel--text,
    .numbers .section__panel--text,
    .benefits .section__panel--text,
    .staff .section__panel--text,
    .single-page .section__panel--text,
    .vision-mission-value .section__panel--text {
        padding: 4.85rem 0;
    }

    .totono-page-section .mv-section__content img,
    .wealthpark-page-section .mv-section__content img {
        width: 30%;
    }

    .section__grid,
    .section__grid.reverse {
        grid-template-columns: 1fr;
    }

    .section__grid p {
        font-size: 17px;
    }

    .section__grid p span {
        font-size: 19px;
    }

    .access .section__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 873px) {
    .solution .mv-section__grid {
        padding: 8.07rem 2rem;
    }

    /* .land-utilization .mv-section__content {
        padding: 6rem 2rem;
    } */
}

@media (max-width: 861px) {
    .customer_harassment_policy .section__panel--text {
        padding: 3.27rem 0;
    }
}

@media (max-width: 843px) {
    .inheritance .mv-section__content {
        padding: 6rem 2rem;
    }
}

@media (max-width: 815px) {
    .customer_harassment_policy .section__panel--text {
        padding: 2.42rem 0;
    }
}

@media (max-width: 703px) {
    .customer_harassment_policy .section__panel--text {
        padding: 3.27rem 0;
    }
}

@media (max-width: 675px) {
    .solution .mv-section__grid {
        padding: 7.12rem 2rem;
    }
}

@media (max-width: 640px) {

    .totono-page-section .mv-section__content img,
    .wealthpark-page-section .mv-section__content img {
        width: 40%;
    }
}

@media (max-width: 637px) {
    .solution .mv-section__grid {
        padding: 6.15rem 2rem;
    }
}

@media (max-width: 583px) {
    .vision-mission-value .section__panel--text {
        padding: 1.7rem 0;
    }
}

@media (max-width: 500px) {
    .mv-section__grid {
        padding: 0 1.5rem;
    }

    .solution .mv-section__grid {
        padding: 3.6rem 1.5rem;
    }

    .content .mv-section__grid {
        /* padding: 0 1.5rem; */
        padding: 7rem 1.5rem;
    }

    .services .mv-section__grid {
        padding: 4.45rem 1.5rem;
    }

    .office .mv-section__grid {
        padding: 6.15rem 1.5rem;
    }

    .about .mv-section__grid {
        padding: 0rem 1.5rem;
    }

    .company .mv-section__grid,
    .recruit .mv-section__grid {
        padding: 7.85rem 1.5rem;
    }

    /* .content .mv-section__grid {
        padding: 8rem 1.5rem;
    } */

    /* .vision-mission-value .mv-section__grid {
        padding: 3.3rem 1.5rem;
    } */

    .privacy .mv-section__grid,
    .customer_harassment_policy .mv-section__grid,
    .r_week_schedule .mv-section__grid {
        padding: 0 1.5rem;
    }

    .mv-section__content {
        padding: 4rem 1.5rem;
    }

    .rental-management .mv-section__content,
    .commercial-rental .mv-section__content,
    /* .land-utilization .mv-section__content, */
    /* .renovation .mv-section__content, */
    .property-sales .mv-section__content {
        padding: 6.5rem 1.5rem;
    }

    .inheritance .mv-section__content {
        padding: 5.7rem 1.5rem;
    }

    .renovation .mv-section__content {
        padding: 4.815rem 1.5rem;
    }

    .land-utilization .mv-section__content {
        padding: 3.1rem 1.5rem;
    }

    /* .renovation .mv-section__content {
        padding: 3.4rem 1.5rem;
    } */

    .totono-page-section .mv-section__content {
        /* padding: 5.6rem 1.5rem; */
        padding: 5rem 1.5rem 6.2rem;
    }

    .wealthpark-page-section .mv-section__content {
        /* padding: 6rem 1.5rem; */
        /* padding: 4rem 1.5rem; */
        padding: 4rem 1.5rem 4.8rem;
    }

    .partnership-section .mv-section__content {
        /* padding: 10rem 1.5rem; */
        padding: 9.5rem 1.5rem;
    }

    .mv-section__title {
        font-size: 45px;
    }

    .mv-section__title p,
    .section__grid p.section__point__text {
        font-size: 22px;
    }

    .overview .section__panel--text,
    .access .section__panel--text,
    .history .section__panel--text,
    .csr .section__panel--text,
    .message .section__panel--text,
    .publications .section__panel--text,
    .column .section__panel--text,
    .topics .section__panel--text,
    .privacy .section__panel--text,
    .numbers .section__panel--text,
    .benefits .section__panel--text,
    .staff .section__panel--text,
    .single-page .section__panel--text {
        padding: 4.65rem 0;
    }

    .vision-mission-value .section__panel--text {
        padding: 1.95rem 0;
    }

    .about .section__panel--text {
        padding: 2.89rem 0;
    }

    .r_week_schedule .section__panel--text {
        padding: 5.5rem 0;
    }

    .customer_harassment_policy .section__panel--text {
        padding: 3.3rem 0;
    }

    .section__p,
    .section__grid p {
        font-size: 16px;
    }

    .section__grid p span {
        font-size: 18px;
    }

    .vision-mission-value .section__title {
        gap: 10px;
    }
}

@media (max-width: 431px) {
    .customer_harassment_policy .section__panel--text {
        padding: 2.45rem 0;
    }
}

@media (max-width: 415px) {
    .solution .mv-section__grid {
        padding: 1.9rem 1.5rem;
    }
}

@media (max-width: 390px) {

    .property-sales .mv-section__title br,
    .property-sales .section__p br {
        display: none;
    }
}

@media (max-width: 371px) {
    .numbers .section__panel--text {
        padding: 3.3rem 0;
    }
}

@media (max-width: 367px) {
    .privacy .section__panel--text {
        padding: 3.8rem 0;
    }

    .r_week_schedule .section__panel--text {
        padding: 4.75rem 0;
    }
}

@media (max-width: 362px) {
    .publications .section__panel--text {
        padding: 3.3rem 0;
    }
}

/* @media (max-width: 349px) {
    .vision-mission-value .mv-section__grid {
        padding: 1.95rem 1.5rem;
    }
} */

@media (max-width: 335px) {
    .message .section__panel--text {
        padding: 3.3rem 0;
    }
}



.btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: #fff;
    color: #000 !important;
    border-radius: 999px;
    border: 2px solid var(--main-color);
    padding: 1.5rem;
    /* box-shadow: var(--shadow-1); */
    width: 70%;
    justify-content: center;
    font-family: "M PLUS 2", sans-serif;
}

.btn:hover {
    background: #ECF0FF;
    border: 2px solid var(--main-color);
}

.btn span {
    font-size: 20px;
    font-weight: 300;
}

@media (max-width: 1599px) {
    .btn {
        width: 75%;
    }
}

@media (max-width: 1279px) {
    .btn {
        width: 100%;
        padding: 1.2rem;
    }

    .btn span {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .btn {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .btn {
        width: 70%;
    }
}

@media (max-width: 500px) {
    .btn {
        width: 80%;
    }

    .btn span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
    }
}



.section-type-a {
    background: #fff;
    color: #000;
}

.section-type-a::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: #ffffff22;
}

.section-type-a__grid {
    display: grid;
    gap: 8rem;
    /* grid-template-columns: 1.2fr 1fr; */
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 9rem 3rem;
}

/* .section-type-a__grid01 {
    padding: 6rem 0 7rem;
} */
.section-type-b {
    /* background: #F2F0EA; */
    background: #f2f0ea9c;
    color: #000;
}

.section-type-b::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: #ffffff22;
}

.section-type-b__grid {
    display: grid;
    gap: 8rem;
    /* grid-template-columns: 1fr 1.2fr; */
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 9rem 3rem;
}

.section-type-a__grid .section__panel--text,
.section-type-b__grid .section__panel--text {
    padding: 0;
}

@media (max-width: 1880px) {

    .section-type-a__grid,
    .section-type-b__grid {
        gap: 6rem;
        /* padding: 6rem 3rem; */
    }
}

@media (max-width: 1599px) {

    .section-type-a__grid,
    .section-type-b__grid {
        gap: 3rem;
        padding: 9rem 0;
    }

    .section-type-a__grid .section__panel--text,
    .section-type-b__grid .section__panel--text {
        padding: 0 3.5rem;
    }
}

@media (max-width: 1279px) {

    .section-type-a__grid,
    .section-type-b__grid {
        gap: 3rem;
        padding: 7rem 0;
    }

    .section-type-a__grid .section__panel--text,
    .section-type-b__grid .section__panel--text {
        padding: 0 2rem;
    }
}

@media (max-width: 1024px) {

    .section-type-a__grid,
    .section-type-b__grid {
        grid-template-columns: 1fr;
    }

    .section-type-b__grid .section__panel--text {
        order: 2;
    }

    .section-type-a__grid .section__panel--text div,
    .section-type-b__grid .section__panel--text div {
        text-align: center;
        margin-top: 3rem;
    }

    .section-pattern {
        display: none;
    }
}

@media (max-width: 991px) {

    .section-type-a__grid,
    .section-type-b__grid {
        padding: 6rem 0;
    }
}

@media (max-width: 500px) {

    .section-type-a__grid,
    .section-type-b__grid {
        padding: 5rem 0;
    }

    .section-type-a__grid .section__panel--text div,
    .section-type-b__grid .section__panel--text div {
        margin-top: 2.5rem;
    }
}

@media (max-width: 480px) {

    .section-type-a__grid .section__panel--text,
    .section-type-b__grid .section__panel--text {
        padding: 0 1.5rem;
    }
}


.point-section {
    color: #000;
    padding: 8rem 0;
}

.point-section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: #ffffff22;
}

.point-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.point-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-decoration: none;
    color: #fff;
    padding: 30px 20px 10px;
    background: linear-gradient(180deg, #000B1F 0%, #002567 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0;
}

.point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.point-card .label {
    display: inline-block;
    background: #918b6c;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 2rem;
    border-radius: 20px;
    margin: 0 auto 15px;
    text-align: center;
    width: fit-content;
    font-family: "M PLUS 2", sans-serif;
}

.point-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
    flex-shrink: 0;
    text-align: center;
    min-height: 3.5em;
    align-content: center;
    font-family: "M PLUS 2", sans-serif;
    font-weight: 400;
}

.point-card p {
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 0;
    font-weight: 300;
}

.point-card .arrow {
    text-align: center;
    margin-top: 1.2rem;
}

.point-card .arrow svg {
    width: 38px;
    height: 38px;
    fill: #ffffff;
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin-top: -10px;
}

/* .point-card:hover .arrow svg {
    transform: translateY(5px);
    opacity: 1;
} */
@media (max-width: 1279px) {
    .point-card .label {
        font-size: 13px;
    }

    .point-card h3 {
        font-size: 18px;
    }

    .point-card p {
        font-size: 15px;
    }

    .point-card .arrow {
        margin-top: 1rem;
    }
}

@media (max-width: 991px) {
    .point-card {
        justify-content: space-between;
    }
}

@media (max-width: 600px) {
    .point-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* @media (max-width: 1024px) {
    .point-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .point-cards {
        grid-template-columns: 1fr;
    }
} */

.point-section__panel {
    text-align: center;
}

.point-num {
    background: #918b6c;
    color: #fff;
    border-radius: 100px;
    font-size: 24px;
    font-family: 'M PLUS 2', sans-serif;
    width: 142px;
    height: 142px;
    margin: 0 auto;
    align-content: center;
}

.point-text__lead {
    color: var(--main-color);
    font-size: 24px;
    font-family: 'M PLUS 2', sans-serif;
    margin-bottom: 3rem;
}

.point-text__description {
    font-size: 20px;
    margin-bottom: 0;
    line-height: 2;
}

@media (max-width: 1599px) {
    .point-num {
        width: 136px;
        height: 136px;
        font-size: 22px;
    }

    .point-text__lead {
        font-size: 22px;
        margin-bottom: 2rem;
    }

    .point-text__description {
        font-size: 18px;
    }
}

@media (max-width: 1279px) {
    .point-section {
        padding: 6rem 0;
    }

    .point-num {
        width: 136px;
        height: 136px;
        font-size: 22px;
    }
}

@media (max-width: 1200px) {
    .point-section {
        padding: 5rem 0;
    }

    .point-text__lead {
        font-size: 20px;
    }

    .point-text__description {
        font-size: 17px;
    }

    .point-num {
        width: 117px;
        height: 117px;
        font-size: 18px;
    }

    .point-section__panel {
        padding: 0 2rem;
    }
}

@media (max-width: 991px) {
    .point-section {
        padding: 4rem 0;
    }

    .point-card {
        padding: 20px 15px 7px;
    }

    .point-card .arrow {
        margin-top: 0;
    }

    .point-card .arrow svg {
        width: 32px;
        height: 32px;
    }

    .point-card h3 {
        font-size: 15px;
    }

    .point-card .label {
        padding: 4px 1.5rem;
    }

    .point-text__description {
        text-align: start;
    }

    .point-text__description br {
        display: none;
    }
}

@media (max-width: 500px) {
    .point-num {
        width: 90px;
        height: 90px;
        font-size: 15px;
    }

    .point-text__lead {
        font-size: 17px;
    }

    .point-text__description {
        font-size: 15px;
    }

    .point-section__panel {
        padding: 0 1.5rem;
    }
}



.mv-section,
.section-type-a,
.section-type-b,
.point-section,
.solution-section {
    position: relative;
}

.section-pattern {
    position: absolute;
    top: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.section-pattern--right {
    right: 0;
}

.section-pattern--left {
    left: 0;
}

.section-pattern img {
    height: clamp(120px, 55vw, 700px);
    width: auto;
    display: block;
}

.solution-section {
    padding: 6rem 0;
}

.solution-bg {
    background: #F6F4F0;
}

.solution-split {
    display: grid;
    /* gap: 28px; */
    gap: 42px;
    grid-template-columns: 1fr 2fr;
    /* align-items: center; */
    margin: 2rem auto;
    padding: 0 7rem;
}

.solution-split--reverse {
    grid-template-columns: 2fr 1fr;
    margin-top: 2rem;
}

.reasons .solution-split {
    grid-template-columns: 1fr 1.5fr;
    padding: 0 15rem;
}

.reasons .solution-split--reverse {
    grid-template-columns: 1.5fr 1fr;
}


.solution-split--reverse-mb01,
.solution-split--reverse-mb02 {
    grid-template-columns: 1.5fr 1fr;
}

.solution-split--reverse-mb01 {
    margin-bottom: 9rem;
}

.solution-split--reverse-mb02 {
    margin-bottom: 6rem;
}

.solution-split__title {
    font-family: "M PLUS 2", sans-serif;
    font-size: clamp(20px, 2.4vw, 32px);
    /* margin: 0 0 .75rem;
    color: #0b1d3a; */
}

.solution-split__p {
    font-family: "M PLUS 2", sans-serif;
    font-size: 20px;
    margin: 0 0 3rem;
    color: var(--main-color);
}

.solution-split__content-title {
    font-family: "M PLUS 2", sans-serif;
    font-size: 32px;
    margin: 4rem 0 3rem;
    text-align: center;
    color: var(--main-color);
    line-height: 1.4;
}

.lead-block {
    position: relative;
    padding: 5rem 0 9rem;
    background: #fff;
    font-family: "M PLUS 2", sans-serif;
    /* background: url(assets/img/inheritance-img01.png) center/cover no-repeat; */
    background: url(assets/img/content_photo_.png) center/cover no-repeat;
}

.lead-block::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(255, 255, 255, 0.2); */
    background: rgba(237, 231, 220, 0.3);
}

/* .land-utilization .lead-block {
    background: url(assets/img/land-utilization-img01.png) center/cover no-repeat;
}

.rental-management .lead-block {
    background: url(assets/img/rental-management-img01.png) right center/cover no-repeat;
}

.commercial-rental .lead-block {
    background: url(assets/img/commercial-rental-img01.png) center/cover no-repeat;
}

.renovation .lead-block {
    background: url(assets/img/renovation-img01.png) center/cover no-repeat;
}

.property-sales .lead-block {
    background: url(assets/img/property-sales-img01.png) center/cover no-repeat;
} */

.text__lead {
    text-align: center;
    z-index: 1;
    position: relative;
}

.lead-desc {
    /* max-width: 70ch; */
    /* margin: 0 auto; */
    text-align: center;
    font-size: 24px !important;
    color: var(--main-color);
    margin: 3rem;
}

.publications .lead-desc {
    font-size: 22px !important;
}

.lead-desc02 {
    font-size: 18px !important;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #fff !important;
}

.lead-desc-shadow {
    line-height: 1.8;
    text-shadow:
        2px 0 0 var(--stroke-color),
        -2px 0 0 var(--stroke-color),
        0 2px 0 var(--stroke-color),
        0 -2px 0 var(--stroke-color),
        1px 1px 0 var(--stroke-color),
        -1px -1px 0 var(--stroke-color),
        1px -1px 0 var(--stroke-color),
        -1px 1px 0 var(--stroke-color),
        0 0 var(--shadow-glow) rgba(255, 255, 255, 0.6);
}

.lead-point-box {
    align-items: center;
    display: flex;
    justify-content: center;
}

.lead-point {
    font-size: 24px;
    background: var(--main-color);
    color: #fff;
    width: fit-content;
    padding: 15px 20px 15px 35px;
    margin: 4rem 0 3rem;
    font-weight: 300;
    opacity: 0.8;
}


.bubble-section {
    /* padding: 18rem 0 10rem; */
    padding: 16rem 0 10rem;
}

.land-utilization .bubble-section {
    padding: 20rem 0 10rem;
}

.rental-management .bubble-section {
    padding: 58rem 0 10rem;
}

.renovation .bubble-section {
    padding: 36rem 0 10rem;
}

.property-sales .bubble-section {
    padding: 11rem 0 10rem;
}

.bubble {
    position: absolute;
    /* background: var(--bubble-color); */
    background: var(--main-color);
    color: #fff;
    padding: 2.5rem 2.5rem 1.5rem;
    border-radius: 12px;
    /* max-width: 250px; */
    top: -80px;
    right: 50%;
    transform: translatex(50%);
    width: 815px;
    opacity: 0.85;
}

.land-utilization .bubble {
    max-width: 1170px;
    width: 90%;
}

.rental-management .bubble {
    max-width: 900px;
    padding: 2.5rem 4.5rem 1.5rem;
    width: 90%;
}

.renovation .bubble {
    max-width: 900px;
    padding: 2.5rem 4.5rem 1.5rem;
    width: 90%;
}

.bubble::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 40px 40px 0 40px;
    border-style: solid;
    /* border-color: var(--bubble-color) transparent transparent transparent; */
    border-color: var(--main-color) transparent transparent transparent;
}

.bubble__grid p {
    font-family: "M PLUS 2", sans-serif;
    font-size: 24px !important;
    margin-bottom: 0;
    text-align: center;
}

.grids-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    box-sizing: border-box;
    width: 100%;
    /* max-width: 400px; */
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 4px;
    font-size: 20px;
    font-family: "M PLUS 2", sans-serif;
}

.rental-management .grid,
.renovation .grid {
    grid-template-columns: 1fr;
}

.grid div {
    text-align: left;
    font-weight: 300;
}

.grid img {
    width: 38px;
    height: 38px;
}

.grid span {
    display: contents;
    /* color: #FFCD00; */
    color: #fff;
}

.bubble p {
    font-size: 14px;
    line-height: 1.6;
    /* text-align: start; */
    font-weight: 300;
}

.solution-item {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.solution-item-title {
    background: #fff;
    border: 1px solid #707070;
    padding: 10px;
    font-size: 20px;
    white-space: nowrap;
    width: 185px;
    text-align: center;
}

.solution-item-text {
    margin-left: 10px;
    flex: 1;
}

.sep {
    position: relative;
}

.sep:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 80px solid #F6F4F0;
}

.solution-bg.sep:before {
    border-top-color: #F6F4F0;
    top: 0;
    border-top: 80px solid #fff;
}

.ex-text {
    font-size: 32px;
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 300;
    margin-bottom: 3rem;
}

.split__p-text01 {
    font-size: 18px;
    margin-bottom: 0;
}

.split__p-text02 {
    font-size: 18px;
    margin-bottom: 2rem;
}

.reasons .solution-split__p {
    font-size: 24px;
}

.reasons .split__p-text01 {
    font-size: 20px;
}

@media (max-width: 1599px) {
    .lead-desc {
        font-size: 23px !important;
    }

    .publications .lead-desc {
        font-size: 21px !important;
    }

    .lead-point {
        font-size: 22px;
    }

    .bubble-section {
        padding: 14rem 1rem 8rem;
    }

    .land-utilization .bubble-section {
        padding: 17.5rem 1rem 8rem;
    }

    .rental-management .bubble-section {
        padding: 50.5rem 0 8rem;
    }

    .renovation .bubble-section {
        padding: 33rem 0rem 8rem;
    }

    .property-sales .bubble-section {
        padding: 11rem 0 9rem;
    }

    .bubble {
        padding: 2.2rem 2.2rem 1.2rem;
        max-width: 768px;
        width: 90%;
    }

    .land-utilization .bubble {
        max-width: 1069px;
    }

    .bubble__grid p {
        font-size: 22px !important;
    }

    .grid {
        font-size: 18px;
    }

    .grid img {
        width: 30px;
        height: 30px;
        margin-right: 3px;
    }

    .reasons .solution-split {
        padding: 0 5rem;
    }
}

@media (max-width: 1428px) {
    .reasons .solution-split__p br {
        display: none;
    }
}

@media (max-width: 1279px) {
    .solution-item-title {
        font-size: 19px;
    }

    .solution-section {
        padding: 6rem 1rem;
    }

    .bubble-section {
        padding: 14rem 1rem 8rem;
    }

    .land-utilization .bubble .grids-wrapper {
        letter-spacing: -0.3px;
    }

    .solution-split {
        grid-template-columns: 1fr 1.5fr;
        padding: 0 2rem;
    }

    .solution-split--reverse {
        grid-template-columns: 1.5fr 1fr;
    }

    .reasons .solution-split {
        padding: 0 3.5rem;
    }
}

@media (max-width:1200px) {
    .rental-management .bubble-section {
        padding: 51rem 1rem 8rem;
    }

    .renovation .bubble-section {
        padding: 33rem 1rem 8rem;
    }

    .solution-split__content-title {
        font-size: 30px;
    }

    .publications .lead-desc {
        font-size: 20px !important;
    }

    .reasons .solution-split {
        padding: 0 2rem;
    }
}

@media (max-width:1138px) {
    .land-utilization .bubble-section {
        padding: 19rem 1rem 8rem;
    }
}

@media (max-width:1099px) {
    .land-utilization .bubble-section {
        padding: 21rem 1rem 8rem;
    }
}

@media (max-width:1042px) {
    .rental-management .solution-split__title br {
        display: none;
    }
}

@media (max-width:1024px) {
    .lead-point {
        margin: 2rem 0 1rem;
    }

    .solution-split,
    .solution-split--reverse {
        grid-template-columns: 1fr;
    }

    .reasons .solution-split,
    .reasons .solution-split--reverse {
        grid-template-columns: 1fr;
    }

    .solution-split__visual {
        text-align: center;
    }

    .solution-split__visual img {
        width: 70% !important;
    }

    /* .property-sales .solution-split__visual img {
        width: 100% !important;
    } */

    .order-sp {
        order: 2;
    }

    .reasons .solution-split__p {
        font-size: 23px;
    }

    .reasons .split__p-text01 {
        font-size: 19px;
    }
}

@media (max-width: 991px) {
    .solution-section {
        padding: 6rem 1rem 5rem;
    }

    .bubble-section {
        padding: 14rem 1rem 5rem;
    }

    .land-utilization .bubble-section {
        padding: 21rem 1rem 7rem;
    }

    .renovation .bubble-section {
        padding: 33rem 1rem 7rem;
    }

    .rental-management .bubble,
    .renovation .bubble {
        padding: 2.2rem 2.2rem 1.2rem;
    }
}

@media (max-width: 942px) {
    .land-utilization .bubble-section {
        padding: 23rem 1rem 7rem;
    }
}

@media (max-width: 923px) {
    .property-sales .solution-split__title br {
        display: none;
    }
}

@media (max-width: 855px) {
    .property-sales .bubble-section {
        padding: 13rem 0 8rem;
    }
}

@media (max-width:826px) {
    .bubble-section {
        padding: 17rem 1rem 5rem;
    }

    .renovation .bubble-section {
        padding: 35rem 1rem 7rem;
    }
}

@media (max-width: 784px) {
    .land-utilization .bubble-section {
        padding: 25rem 1rem 7rem;
    }

    .property-sales .bubble-section {
        padding: 15rem 0 8rem;
    }
}

@media (max-width: 779px) {
    .land-utilization .solution-split__title br {
        display: none;
    }

    .rental-management .bubble-section {
        padding: 54rem 1rem 7rem;
    }
}

@media (max-width: 767px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .bubble {
        width: 68%;
    }

    .bubble-section {
        padding: 25rem 1rem 5rem;
    }

    .land-utilization .bubble-section {
        padding: 28rem 1rem 5rem;
    }

    .property-sales .bubble-section {
        padding: 19rem 0 8rem;
    }

    .solution-item {
        flex-direction: column;
        align-items: baseline;
    }

    .solution-item-text {
        margin-left: 0;
    }

    .solution-split {
        padding: 0 1rem;
    }

    .reasons .solution-split {
        padding: 0;
    }

    .reasons .solution-split,
    .reasons .solution-split--reverse {
        margin-bottom: 0;
    }
}

@media (max-width: 761px) {
    .renovation .bubble-section {
        padding: 37rem 1rem 7rem;
    }
}

@media (max-width: 747px) {
    .rental-management .bubble-section {
        padding: 61rem 1rem 7rem;
    }
}

@media (max-width: 707px) {
    .rental-management .bubble-section {
        padding: 67rem 1rem 7rem;
    }
}

@media (max-width: 670px) {
    .renovation .bubble-section {
        padding: 39rem 1rem 7rem;
    }
}

@media (max-width: 646px) {
    .renovation .bubble-section {
        padding: 41rem 1rem 7rem;
    }
}

@media (max-width: 636px) {
    .land-utilization .bubble-section {
        padding: 30rem 1rem 7rem;
    }
}

@media (max-width: 627px) {
    .rental-management .bubble-section {
        padding: 73rem 1rem 7rem;
    }
}

@media (max-width: 619px) {
    .land-utilization .bubble-section {
        padding: 32rem 1rem 7rem;
    }
}

@media (max-width: 608px) {
    .rental-management .bubble-section {
        padding: 75rem 1rem 7rem;
    }

    .renovation .bubble-section {
        padding: 43rem 1rem 7rem;
    }
}

@media (max-width: 606px) {
    .lead-block {
        padding: 4rem 0 9rem;
    }

    .bubble {
        width: 90%;
    }

    .solution-split__visual img {
        width: 100% !important;
    }
}

@media (max-width: 600px) {
    .land-utilization .bubble-section {
        padding: 35rem 1rem 7rem;
    }
}

@media (max-width: 521px) {
    .land-utilization .bubble-section {
        padding: 37rem 1rem 7rem;
    }

    .renovation .bubble-section {
        padding: 45rem 1rem 7rem;
    }
}

@media (max-width: 500px) {
    .lead-block {
        padding: 3rem 0 8rem;
    }

    .lead-desc {
        font-size: 20px !important;
        margin: 2rem 0;
    }

    .publications .lead-desc {
        font-size: 18px !important;
    }

    .lead-desc02 {
        font-size: 16px !important;
    }

    .lead-point {
        margin: 1rem 0 0;
        font-size: 17px;
        padding: 15px 10px;
    }

    .property-sales .lead-point-box {
        margin-bottom: 3rem;
    }

    .bubble__grid p {
        font-size: 18px !important;
    }

    .bubble {
        padding: 1.2rem 1.7rem 0.4rem;
    }

    .rental-management .bubble,
    .renovation .bubble {
        padding: 1.2rem 1.7rem 0.4rem;
    }

    .grid img {
        width: 28px;
        height: 28px;
    }

    .grid {
        font-size: 17px;
    }

    .solution-section {
        padding: 6rem 1rem 3rem;
    }

    .bubble-section {
        padding: 22rem 1rem 3rem;
    }

    .land-utilization .bubble-section {
        padding: 32rem 1rem 5rem;
    }

    .rental-management .bubble-section {
        padding: 69rem 1rem 5rem;
    }

    .renovation .bubble-section {
        padding: 40rem 1rem 5rem;
    }

    .solution-split__p {
        font-size: 17px;
    }

    .solution-item-title {
        font-size: 17px;
        padding: 8px;
        width: 175px;
    }

    .solution-item {
        font-size: 16px;
    }

    .ex-text {
        font-size: 26px;
    }

    .land-utilization .solution-split__p {
        margin: 0 0 2rem;
    }

    .solution-split__content-title {
        font-size: 24px;
        margin: 3rem 0 2rem;
    }

    .solution-split--reverse-mb01 {
        margin-bottom: 4rem;
    }

    .solution-split--reverse-mb02 {
        margin-bottom: 3rem;
    }

    .reasons .solution-split__p {
        font-size: 20px;
    }

    .reasons .split__p-text01 {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .property-sales .bubble-section {
        padding: 40rem 0 6rem;
    }
}

@media (max-width: 461px) {
    .land-utilization .bubble-section {
        padding: 34rem 1rem 5rem;
    }
}

@media (max-width: 451px) {
    .renovation .bubble-section {
        padding: 42rem 1rem 5rem;
    }
}

/* @media (max-width: 440px) {
    .rental-management .lead-block {
        background: url(assets/img/rental-management-img01.png) right 4% center / cover no-repeat;
    }
} */

@media (max-width: 430px) {
    .rental-management .bubble-section {
        padding: 76rem 1rem 5rem;
    }
}

@media (max-width: 424px) {
    .land-utilization .bubble-section {
        padding: 36rem 1rem 5rem;
    }

    .renovation .bubble-section {
        padding: 44rem 1rem 5rem;
    }
}

@media (max-width: 411px) {
    .land-utilization .bubble-section {
        padding: 34rem 1rem 5rem;
    }

    .rental-management .bubble-section {
        padding: 70.5rem 1rem 5rem;
    }

    .grids-wrapper {
        padding: 16px 0;
    }

    .solution-split {
        padding: 0;
    }
}

@media (max-width: 397px) {
    .rental-management .bubble-section {
        padding: 72.5rem 1rem 5rem;
    }
}

@media (max-width: 394px) {
    .rental-management .bubble-section {
        padding: 76rem 1rem 5rem;
    }
}

@media (max-width: 389px) {
    .land-utilization .bubble-section {
        padding: 36rem 1rem 5rem;
    }
}

@media (max-width: 375px) {
    .rental-management .bubble-section {
        padding: 69rem 1rem 5rem;
    }

    .renovation .bubble-section {
        padding: 41rem 1rem 5rem;
    }
}

@media (max-width: 374px) {
    .land-utilization .bubble-section {
        padding: 32rem 1rem 5rem;
    }

    .rental-management .bubble-section {
        padding: 72.5rem 1rem 5rem;
    }
}

@media (max-width: 369px) {
    .renovation .bubble-section {
        padding: 43rem 1rem 5rem;
    }
}

@media (max-width: 358px) {
    .rental-management .bubble-section {
        padding: 74rem 1rem 5rem;
    }
}

@media (max-width: 356px) {
    .rental-management .bubble-section {
        padding: 79rem 1rem 5rem;
    }
}

@media (max-width: 341px) {
    .rental-management .bubble-section {
        padding: 81rem 1rem 5rem;
    }
}

@media (max-width: 344px) {
    .land-utilization .bubble-section {
        padding: 34rem 1rem 5rem;
    }
}

@media (max-width: 326px) {
    .land-utilization .bubble-section {
        padding: 37rem 1rem 5rem;
    }
}

@media (max-width: 320px) {
    .renovation .bubble-section {
        padding: 46rem 1rem 5rem;
    }
}

.customer-voice {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
}

.customer-card {
    /* background: white; */
    /* border: 1px solid #ddd; */
    /* border-radius: 8px; */
    width: 100%;
    /* padding: 16px; */
    /* box-shadow: 0 2px 6px rgba(0,0,0,0.1); */
    box-sizing: border-box;
}

.customer-card-img {
    text-align: center;
    margin-bottom: 1.5rem;
}

.customer-card-img img {
    width: 50%;
}

.customer-card-title {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 500;
}

.customer-card-text {
    margin-top: 2rem;
}

@media (max-width: 1517px) {
    .customer-card-title {
        min-height: 3em;
    }
}

@media (max-width: 991px) {
    .customer-voice {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .customer-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .customer-card-title {
        min-height: 0;
    }

    .customer-card-text {
        margin-top: 1rem;
    }
}



/* cta */
.cta {
    position: relative;
    color: #fff;
    padding: 0 3rem;
}

/* .commercial-rental .cta {
    color: #000;
} */

.rental-management main .cta {
    padding-bottom: 8rem;
}

.cta__bg {
    position: absolute;
    inset: 0;
    background: url(assets/img/cta_bg.png) center/cover no-repeat;
}

.cta__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(15 45 95 / 65%);
}

.totono-page-section .cta__bg {
    background: url(assets/img/totono-img01.png) right center/cover no-repeat;
}

.totono-page-section .cta__bg::after {
    background: transparent;
}

.cta__content {
    position: relative;
    padding: 6rem 0 1rem;
}

.cta__content02 {
    padding: 4rem 0 0;
}

.totono-page-section .cta__content {
    padding: 5rem 0;
}

.cta__title {
    color: #fff;
    font-weight: 400 !important;
}

/* .commercial-rental .cta__title {
    color: #000;
} */

.totono-page-section .cta__title {
    color: #000;
    font-size: 40px !important;
    line-height: 1;
}

.totono-page-section h2 span {
    font-size: 24px;
    /* font-weight: 300; */
}

.cta__sub-title {
    color: #fff;
    font-family: "M PLUS 2", sans-serif;
    font-weight: 300;
    font-size: 28px;
    margin-bottom: 2rem;
}

.commercial-rental .cta__sub-title {
    /* color: #000; */
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 400;
    padding-top: 2rem;
}

.cta__tiles {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.cta__tile {
    /* background: rgba(94, 105, 15, .90); */
    background: var(--main-color);
    opacity: 80%;
    padding: 2rem 14px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #fff;
    font-size: 28px;
    font-family: "M PLUS 2", sans-serif;
    font-weight: 300;
    line-height: 1.5;
    align-content: center;
}

.property-sales .cta__tile {
    font-size: 26px;
}

.rental-management .cta__tile {
    text-align: start;
    padding: 2rem 4rem;
    width: fit-content;
    margin: 0 auto 6.5rem;
}

/* .property-sales .cta__tile {
    text-align: start;
    padding: 2rem 10rem;
    width: fit-content;
    margin: 2rem auto 0;
} */

.cta-text__panel {
    position: relative;
}

.cta-text01 {
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.cta-text02 {
    text-align: center;
    font-size: 20px;
    font-weight: 300;
}

.cta-text-point {
    /* background: #D6D9C2; */
    background: #c2c8d9;
    border-radius: 10px;
    display: flex;
    width: fit-content;
    margin: 4rem auto 5rem;
    padding: 2rem 2rem;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    color: #000;
}

.cta-text-point:hover {
    opacity: 0.95;
}

.cta-text-point img {
    width: 94px;
    opacity: 0.9;
}

.cta-text-point p {
    font-size: 18px;
}

.cta-text-point p span {
    font-size: 28px;
}

.cta__actions {
    position: relative;
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding-bottom: 10rem;
    margin-top: 2rem;
}

.cta__btn {
    width: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    border-radius: 999px;
    padding: 1.6rem 1.4rem 1rem;
    /* padding: 1rem 1.4rem; */
}

.partnership .cta__btn {
    padding: 1rem 1.4rem;
}

.rental-management .cta__btn {
    width: 600px;
    padding: 1rem 1.4rem;
}

.cta__btn.btn-tel {
    /* background: #BAE1E8; */
    background: #ede7dc;
    color: var(--main-color);
}

.cta__btn.btn-mail {
    /* background: #FAD78A; */
    background: #ede7dc;
    color: var(--main-color);
}

.cta__btn.btn-mail:hover {
    opacity: 0.95;
}

.btn-item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-tel .btn-item-wrapper {
    margin-top: -10px;
}

.cta__btn .btn-item01 {
    display: flex;
    align-items: center;
    height: 54px;
}

.cta__btn .btn-item02 {
    align-self: flex-end;
}

.rental-management .cta__btn .btn-item02 {
    align-self: center;
    font-size: 24px;
}

.cta__btn img {
    width: 45px;
    /* height: fit-content; */
}

.cta__btn.btn-ai img {
    width: 70px;
}

.cta__btn.btn-tel .btn-item01 img {
    margin-right: 5px;
}

.cta__btn.btn-mail .btn-item01 img {
    margin-right: 12px;
}

.cta__btn .tel-num {
    font-family: "M PLUS 2", sans-serif;
    font-size: 42px;
    margin-bottom: 0;
    font-weight: 500;
}

.cta__btn .mail-text {
    font-family: "M PLUS 2", sans-serif;
    font-size: 32px;
    margin-bottom: 0;
    font-weight: 500;
}

.rental-management .cta__btn .mail-text {
    letter-spacing: -1px;
}

.partnership .cta__btn .mail-text {
    font-size: 30px;
    line-height: 1.4;
}

.cta__btn .ai-text {
    text-align: end;
    line-height: 1.2;
}

.cta-mini {
    font-family: "M PLUS 2", sans-serif;
}

.cta-mini .tel-box {
    gap: 2rem;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.totono-tel01,
.totono-tel02 {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000;
}

.totono-tel01 p:nth-child(1),
.totono-tel02 p:nth-child(1) {
    background: #fff;
    border: 1px solid #707070;
    padding: 10px;
    font-size: 20px;
    white-space: nowrap;
    /* font-weight: 300; */
    text-align: center;
    width: 100%;
    margin-bottom: 0.75rem;
}

.totono-tel01 p:nth-child(2),
.totono-tel01 p:nth-child(3),
.totono-tel02 p:nth-child(2) {
    font-size: 24px;
    /* font-weight: 300; */
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin: 0;
    line-height: 1.4;
}

.totono-tel02 p:nth-child(2) {
    flex-direction: column;
    line-height: 1.2;
}

.totono-tel01 p:nth-child(2) span,
.totono-tel01 p:nth-child(3) span {
    font-size: 32px;
    font-weight: 500;
    margin-left: 2rem;
}

.totono-tel02 p:nth-child(2) span {
    font-size: 45px;
    font-weight: 500;
}

.cta_br_sp {
    display: none;
}

.cta__btn .btn-item02 p {
    color: #222;
}

@media (max-width: 1599px) {
    .cta {
        padding: 0 3.5rem;
    }

    .cta__sub-title {
        font-size: 24px;
    }

    .cta__tile,
    .property-sales .cta__tile {
        font-size: 24px;
    }

    .rental-management .cta__tile {
        margin: 0 auto 6rem;
    }

    .cta-text01,
    .cta-text02 {
        font-size: 18px;
    }

    .cta-text-point p span {
        font-size: 24px;
    }

    .cta__btn {
        width: 420px;
        padding: 1.2rem 1.4rem 1rem;
    }

    .partnership .cta__btn {
        padding: 1rem 1.4rem;
    }

    .cta__btn .btn-item01 {
        height: 51px;
    }

    .cta__btn img {
        width: 38px;
    }

    .cta__btn .tel-num {
        font-size: 36px;
    }

    .cta__btn .mail-text {
        font-size: 30px;
    }

    .partnership .cta__btn .mail-text {
        font-size: 28px;
    }

    .cta__btn .btn-item02 p {
        font-size: 14px;
    }

    .rental-management .cta__btn .btn-item02 p {
        font-size: 22px;
    }
}

@media (max-width: 1509px) {
    .property-sales .cta__tile br {
        display: none;
    }
}

@media (max-width: 1399px) {

    .totono-tel01,
    .totono-tel02 {
        width: 50%;
    }
}

@media (max-width: 1299px) {

    .cta__tile,
    .property-sales .cta__tile {
        font-size: 22px;
    }

    .cta__sub-title {
        font-size: 22px;
    }

    .cta-text-point p span {
        font-size: 22px;
    }

    .totono-page-section .cta__title {
        font-size: 34px !important;
    }

    .totono-page-section h2 span {
        font-size: 23px;
    }

    .totono-tel01 p:nth-child(1),
    .totono-tel02 p:nth-child(1) {
        font-size: 18px;
    }

    .totono-tel01 p:nth-child(2),
    .totono-tel01 p:nth-child(3),
    .totono-tel02 p:nth-child(2) {
        font-size: 22px;
    }

    .totono-tel02 p:nth-child(2) {
        padding-top: 8px;
    }

    .totono-tel01 p:nth-child(2) span,
    .totono-tel01 p:nth-child(3) span {
        font-size: 30px;
    }

    .totono-tel02 p:nth-child(2) span {
        font-size: 40px;
    }
}

@media (max-width: 1200px) {
    .cta {
        padding: 0 2rem;
    }

    .rental-management .cta__tile {
        margin: 0 auto 5rem;
    }

    .cta__btn.btn-ai img {
        width: 65px;
    }

    .rental-management .cta__btn .mail-text {
        font-size: 29px;
    }

    .rental-management .cta__btn .btn-item02 p {
        font-size: 20px;
    }
}

@media (max-width: 1156px) {
    .cta__tile br {
        display: none;
    }

    .rental-management .cta__tile br {
        display: block;
    }
}

@media (max-width: 1042px) {
    .cta__btn.btn-ai img {
        width: 60px;
    }

    .rental-management .cta__btn .mail-text {
        font-size: 28px;
    }

    .rental-management .cta__btn .btn-item02 p {
        font-size: 19px;
    }
}

@media (max-width: 991px) {
    .cta__content {
        padding: 5rem 0 1rem;
    }

    .cta__btn .tel-num {
        font-size: 34px;
    }

    .cta__btn .mail-text {
        font-size: 28px;
    }

    .partnership .cta__btn .mail-text {
        font-size: 26px;
    }

    .cta__btn .btn-item01 {
        height: 40px;
    }

    .cta__btn .btn-item02 p {
        font-size: 13px;
    }

    .cta__actions {
        padding-bottom: 7rem;
    }

    .rental-management .cta__btn .mail-text {
        font-size: 26px;
    }

    .rental-management .cta__btn .btn-item02 p {
        font-size: 18px;
    }

    .cta__btn.btn-ai img {
        width: 55px;
        margin-right: 4px !important;
    }

    .cta-mini .tel-box {
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem;
        margin-top: 3rem;
    }

    .totono-tel01,
    .totono-tel02 {
        width: 100%;
    }
}

@media (max-width: 901px) {
    .rental-management .cta__btn .mail-text {
        font-size: 24px;
    }

    .cta__btn.btn-ai img {
        width: 50px;
    }

    .rental-management .cta__btn .btn-item02 p {
        font-size: 15px;
    }
}

@media (max-width: 843px) {
    .rental-management .cta__btn .mail-text {
        font-size: 21px;
    }

    .cta__btn.btn-ai img {
        width: 47px;
    }

    .rental-management .cta__btn .btn-item02 p {
        font-size: 14px;
    }
}

@media (max-width: 804px) {
    .cta__btn img {
        width: 34px;
    }

    .cta__btn .tel-num {
        font-size: 30px;
    }

    .cta__btn .mail-text {
        font-size: 25px;
    }

    .partnership .cta__btn .mail-text {
        font-size: 23px;
    }

    .cta__btn .btn-item01 {
        height: 30px;
    }
}

@media (max-width: 767px) {
    .cta__tiles {
        grid-template-columns: 1fr;
    }

    .cta__actions {
        flex-direction: column;
        align-content: center;
        flex-wrap: wrap;
        margin-top: 3rem;
    }

    .cta__btn {
        width: 60%;
    }

    .rental-management .cta__btn {
        width: 70%;
        height: 89px;
    }

    .rental-management .cta__tile {
        padding: 2rem;
    }

    /* .property-sales .cta__tile {
        padding: 2rem 5rem;
    } */

    .cta-text-point img {
        width: 82px;
    }
}

@media (max-width: 606px) {
    .cta__btn {
        width: 80%
    }

    .rental-management .cta__btn {
        width: 80%
    }

    /* .property-sales .cta__tile {
        padding: 2rem 3rem;
    } */
}

@media (max-width: 500px) {
    .rental-management main .cta {
        padding-bottom: 6rem;
    }

    .cta {
        padding: 0 1.5rem;
    }

    .cta__sub-title {
        font-size: 20px;
    }

    .cta__content {
        padding: 4rem 0 1rem;
    }

    .cta__tile,
    .property-sales .cta__tile {
        font-size: 20px;
    }

    .cta-text01,
    .cta-text02 {
        font-size: 17px;
    }

    .cta-text-point p {
        font-size: 16px;
    }

    .cta-text-point p span {
        font-size: 20px;
    }

    .cta__btn {
        width: 100%;
    }

    .rental-management .cta__btn {
        width: 100%;
    }

    .cta__btn img {
        width: 30px;
    }

    .cta__btn .tel-num {
        font-size: 26px;
    }

    .cta__btn .mail-text {
        font-size: 21px;
    }

    .partnership .cta__btn .mail-text {
        font-size: 19px;
    }

    .cta__actions {
        padding-bottom: 6rem;
    }

    .rental-management .cta__actions {
        margin-bottom: 3rem;
    }

    /* .property-sales .cta__tile {
        padding: 2rem;
    } */

    .cta-text-point {
        flex-direction: column;
    }

    .cta-text-point img {
        width: 73px;
    }

    .cta_br_sp {
        display: block;
    }

    .totono-page-section .cta__title {
        font-size: 30px !important;
        line-height: 1.2;
        letter-spacing: 1px;
    }

    .totono-tel01 p:nth-child(1),
    .totono-tel02 p:nth-child(1) {
        white-space: unset;
    }

    .totono-tel01 p:nth-child(2),
    .totono-tel01 p:nth-child(3),
    .totono-tel02 p:nth-child(2) {
        font-size: 20px;
        flex-direction: column;
    }

    .totono-tel01 p:nth-child(2) span,
    .totono-tel01 p:nth-child(3) span {
        font-size: 28px;
        margin-left: 0;
    }

    .totono-tel02 p:nth-child(2) span {
        font-size: 34px;
    }

    .totono-page-section .cta__content {
        padding: 3rem 0;
    }
}

@media (max-width: 437px) {
    .property-sales .cta__tile br {
        display: block;
    }
}

@media (max-width: 411px) {
    .cta__btn {
        padding: 1.2rem 1rem 1rem;
        padding: 1rem;
    }

    .partnership .cta__btn {
        padding: 1rem;
    }

    .rental-management .cta__btn {
        padding: 1rem;
    }

    .cta__btn.btn-mail .btn-item01 img {
        margin-right: 6px;
    }

    .rental-management .cta__btn .mail-text {
        font-size: 19.5px;
    }

    .cta__btn.btn-ai img {
        width: 45px;
    }

    .rental-management .cta__btn .btn-item02 p {
        font-size: 13.5px;
    }
}

@media (max-width: 375px) {
    .bubble {
        padding: 1.2rem 1rem 0.4rem;
        width: 92%;
    }

    .bubble__grid p {
        font-size: 17px !important;
    }

    .grid {
        font-size: 16px;
    }

    .grid img {
        width: 26px;
        height: 26px;
    }

    .bubble-section {
        padding: 21rem 1rem 3rem;
    }
}


.support-services {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.support-services .support-services-item {
    flex: 1 1 calc(50% - 2rem);
    /* 2컬럼 (반응형에서 1컬럼으로 전환) */
    display: flex;
    flex-direction: column;
    /* 아이콘, 타이틀, 텍스트 세로 정렬 */
    justify-content: flex-start;
    border: 1.75px solid var(--main-color);
    border-radius: 15px;
    padding: 3rem 3rem 2rem;
}

.support-services .text-center {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    /* 아이콘 높이 영역 고정 */
    margin-bottom: 1rem;

}

.support-services img {
    width: 25%;
}

.support-services-title {
    font-size: 32px;
    font-family: 'M PLUS 2', sans-serif;
    /* font-weight: 300; */
    color: var(--main-color);
    text-align: center;
    line-height: 1.4;
}

.support-services-text {
    font-size: 18px;
    display: flex;
    justify-content: center;
    /* margin-top: auto; */
}

@media (max-width: 1599px) {
    .support-services-title {
        font-size: 30px;
    }
}

@media (max-width: 1279px) {
    .support-services img {
        width: 30%;
    }

    .px-5 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

@media (max-width: 991px) {
    .support-services .support-services-item {
        padding: 2rem 2rem 1rem;
    }

    .support-services img {
        width: 40%;
    }

    .support-services-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .support-services {
        flex-direction: column;
    }

    .support-services img {
        width: 30%;
    }
}

@media (max-width: 500px) {
    .support-services-text {
        font-size: 16px;
    }

    .support-services-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .support-services img {
        width: 40%;
    }

    .support-services .support-services-item {
        padding: 1.5rem 1.5rem 0.5rem;
    }
}

.step-box-wrap {
    margin-top: 6rem;
}

.step-box {
    border: 1.75px solid var(--main-color);
    background: #fff;
    /* margin: 70px auto; */
    margin: 40px 0;
    /* padding: 90px 50px 30px; */
    padding: 82px 50px 30px;
    position: relative;
    /* max-width: 900px; */
    /* min-height: 268px; */
    min-height: 259px;
    align-content: center;
}

.step-box02 {
    /* border: 1.75px solid #5E6910; */
    border: 1.75px solid var(--main-color);
}

.property-sales .step-box {
    padding: 67px 50px 40px;
    min-height: 170px;
}

.step-number {
    position: absolute;
    /* top: -35px; */
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--main-color);
    color: #fff;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    line-height: 1.2;
    font-family: "M PLUS 2", sans-serif;
}

.step-box02 .step-number {
    /* background: #5E6910; */
    background: var(--main-color);
}

.step-number span {
    font-size: 39px;
}

.step-content-wrap {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.step-box02 .step-content-wrap {
    flex-direction: column;
    gap: 20px;
}

.step-title {
    font-size: 32px;
    font-weight: 300;
    flex: 0 0 43%;
    /* max-width: 450px; */
    text-align: left;
    white-space: normal;
    font-family: "M PLUS 2", sans-serif;
    line-height: 1.4;
}

.property-sales .step-title {
    text-align: center;
}

.step-content {
    font-size: 18px;
    flex: 1;
    /* min-width: 200px; */
}

.step-content.img-info {
    display: grid;
    grid-template-columns: 0.5fr 0.5fr;
    gap: 6rem;
}

.property-sales .step-content a {
    /* background: #D6D9C2; */
    background: #c2c8d9;
    border-radius: 10px;
    display: flex;
    width: 80%;
    margin: 0.75rem auto 8px;
    padding: 1rem 2rem;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.property-sales .step-content a:hover {
    opacity: 0.9;
}

.property-sales .step-content img {
    width: 94px;
    opacity: 0.9;
}

.step-content p {
    margin-bottom: 0;
    line-height: 2;
}

@media (max-width: 1599px) {
    .step-box {
        /* padding: 80px 50px 20px;
        min-height: 250px; */
        padding: 67px 50px 22px;
        min-height: 236px;
    }

    .step-title {
        font-size: 28px;
    }

    .step-number {
        font-size: 20px;
        width: 100px;
        height: 100px;
    }

    .step-number span {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .step-box {
        padding: 55px 40px 20px;
        min-height: 276px;
    }

    .step-box02 {
        min-height: auto;
    }

    .step-title {
        flex: 1 1 100%;
        max-width: 100%;
        /* font-size: 26px; */
    }

    .step-title br {
        display: none;
    }

    .step-content {
        flex: 1 1 100%;
        font-size: 17px;
    }

    .step-content.img-info {
        grid-template-columns: 0.25fr 0.25fr;
        justify-content: center;
        gap: 3rem;
    }

    .step-content-wrap {
        gap: 20px;
    }

    .step-box02 .step-content-wrap {
        flex-direction: row;
    }

    .step-number {
        font-size: 18px;
        width: 90px;
        height: 90px;
    }

    .step-number span {
        font-size: 32px;
    }

    .property-sales .step-content img {
        width: 82px;
    }

    .property-sales .step-content a {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .step-box {
        padding: 55px 30px 20px;
    }

    .property-sales .step-box {
        padding: 67px 30px 40px;
    }

    .step-content.img-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-content.img-info img {
        padding: 0 8rem;
    }
}

@media (max-width: 500px) {
    .step-box-wrap {
        margin-top: 5rem;
    }

    .step-box {
        padding: 55px 30px 20px;
        min-height: 276px;
        /* margin: 60px auto 30px;  이거 적용할지 안할지 확인해 봐야됨! 9/16일날(월) 확인 필요함!!!*/
        margin: 60px auto;
    }

    .step-box02 {
        min-height: auto;
    }

    .property-sales .step-box {
        min-height: auto;
    }

    .step-title {
        font-size: 24px;
    }

    .step-content {
        font-size: 16px;
    }

    .step-content.img-info img {
        padding: 0 4rem;
    }

    .step-number {
        font-size: 16px;
        width: 80px;
        height: 80px;
        top: -38px;
    }

    .step-number span {
        font-size: 28px;
    }

    .property-sales .step-content a {
        flex-direction: column;
        gap: 1rem;
    }

    .property-sales .step-content img {
        width: 73px;
    }
}

@media (max-width: 480px) {

    .step-box,
    .property-sales .step-box {
        padding: 55px 24px 20px;
    }
}


.pcn-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* margin: 0; */
    max-width: 1000px;
    margin: 5rem auto 0;
    gap: 2px;
}

.rental-management .pcn-features {
    max-width: 1300px;
    gap: 30px;
}

.pcn-feature-box {
    padding: 40px 20px;
    text-align: center;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    border: 1.75px solid var(--main-color);
    border-radius: 15px;
}

.pcn-feature-box h3 {
    color: #918b6c;
    margin-bottom: 0.2em;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    font-family: "M PLUS 2", sans-serif;
}

.pcn-feature-box h3 span {
    font-size: 32px;
    border-bottom: 1.75px solid #918b6c;
    padding-bottom: 5px;
    font-weight: 300;
}

.pcn-feature-box p {
    margin: 1rem 0 0.5rem;
    font-size: 20px;
    font-family: "M PLUS 2", sans-serif;
    font-weight: 300;
}

.pcn-feature-box svg {
    margin: 20px auto;
    width: 65%;
}

/* .bg-dark1 {
    background: #4C5C74;
}

.bg-dark2 {
    background: #24344D;
} */

.app-section__title {
    font-size: 45px !important;
    font-weight: 300;
    font-family: "M PLUS 2", sans-serif;
    text-align: center;
    margin: 3rem 0;
}

.app-section {
    background: #f9f7f3;
    padding: 80px 20px 60px;
    text-align: center;
}

.app-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: white;
    padding: 5px 40px 40px;
    border: 1px solid #ddd;
    max-width: 1000px;
    margin: 5rem auto 3rem;
    position: relative;
}

.app-container::before {
    content: "";
    position: absolute;
    top: -39px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 80px solid #39475E;
}

.app-container h2 {
    grid-column: 1 / -1;
    margin-bottom: 1.5rem;
    font-size: 32px !important;
    font-weight: 300;
    font-family: "M PLUS 2", sans-serif;
    text-align: center;
}

/* .totono {
    padding-right: 1rem;
}

.wealthpark {
    border-left: 1px solid;
    padding-left: 1rem;
} */

.app-box div {
    text-align: left;
}

.app-box div img {
    vertical-align: middle;
    width: 50%;
}

.app-box p {
    line-height: 1.7;
    text-align: left;
}

.app-title {
    font-size: 18px;
    margin-top: 1.5rem;
    font-weight: 500;
}

.analysis-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 20px 0;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.analysis-section02 {
    grid-template-columns: 1fr;
    padding: 30px 20px 60px;
}

.analysis-box {
    border: 1.75px solid var(--main-color);
    padding: 20px 40px 30px;
    background: white;
    position: relative;
    display: flex;
    flex-direction: column;
}

.analysis-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    width: 17px;
    height: 86px;
    background: var(--main-color);
}

.analysis-box .title {
    color: var(--main-color);
    margin-bottom: 2rem;
    margin-top: 0;
    padding-left: 2rem;
    font-size: 32px;
    font-family: "M PLUS 2", sans-serif;
}

.analysis-box .sub-title {
    font-size: 32px;
    font-family: "M PLUS 2", sans-serif;
    font-weight: 300;
    margin-bottom: 0.8em;
}

.analysis-box p {
    font-size: 18px;
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: #F6F5F1;
    padding: 1.5rem;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 10px;
    flex-grow: 1;
}

.highlight-box02 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 7rem;
}

.highlight-box span {
    font-size: 18px;
    font-weight: 500;
}

.highlight-item {
    gap: 2rem;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1599px) {
    .app-section__title {
        font-size: 42px !important;
    }

    .analysis-section {
        padding: 50px 0 0;
    }

    .analysis-section02 {
        padding: 30px 0 60px;
    }

    .analysis-box .title,
    .analysis-box .sub-title {
        font-size: 30px;
    }
}

@media (max-width: 1200px) {
    .app-container {
        padding: 20px 40px 40px;
    }

    .app-section__title {
        font-size: 40px !important;
    }
}

@media (max-width: 991px) {
    .app-section__title {
        font-size: 38px !important;
    }

    .analysis-section {
        grid-template-columns: 1fr;
    }

    .highlight-box02 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pcn-features {
        grid-template-columns: 1fr;
        margin: 4rem auto 0;
    }

    .pcn-feature-box {
        padding: 30px 15px;
    }

    .app-container {
        padding: 20px 2rem;
        grid-template-columns: 1fr;
    }

    .totono {
        padding-right: 0;
    }

    /* .wealthpark {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid;
        margin-top: 1rem;
        padding-top: 2rem;
    } */
}

@media (max-width: 500px) {
    .pcn-feature-box h3 {
        font-size: 16px;
    }

    .pcn-feature-box h3 span {
        font-size: 26px;
    }

    .pcn-feature-box p {
        font-size: 17px;
    }

    .app-section__title {
        font-size: 29px !important;
    }

    .app-container h2 {
        font-size: 26px !important;
    }

    .app-container::before {
        border-left: 80px solid transparent;
        border-right: 80px solid transparent;
        border-top: 70px solid #39475E;
    }

    .app-box div img {
        width: 60%;
    }

    .analysis-section {
        padding: 40px 0 3rem;
    }

    .analysis-box {
        padding: 20px 32px 30px;
    }

    .analysis-box::before {
        left: 32px;
    }

    .analysis-box .title,
    .analysis-box .sub-title {
        font-size: 26px;
    }

    .analysis-box p {
        font-size: 17px;
    }

}

@media (max-width: 391px) {
    .pcn-features {
        margin: 2.5rem auto 0;
    }

    .pcn-feature-box {
        padding: 20px 15px;
    }

    .pcn-feature-box p br {
        display: none;
    }

    .pcn-feature-box svg {
        width: 75%;
    }

    .app-container {
        padding: 20px 1.5rem;
    }

    .app-box div img {
        width: 70%;
    }

    .app-section__title {
        font-size: 28px !important;
    }

    .app-container h2 {
        font-size: 25px !important;
    }

    .analysis-section {
        padding: 26px 0 3rem;
    }

    .analysis-box {
        padding: 20px 24px 15px;
    }

    .analysis-box::before {
        left: 24px;
    }
}


.proposal-perspectives {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto 5rem;
    width: 70%;
}

.perspective-item {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border: 1.75px solid var(--main-color);
    ;
    border-radius: 15px;
}

.perspective-label {
    background: var(--main-color);
    ;
    color: white;
    font-weight: 300;
    padding: 6px 12px;
    min-width: 118px;
    text-align: center;
    font-size: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 13px 0 0 13px;
    line-height: 1.2;
}

.perspective-label span {
    font-size: 18px;
}

.perspective-content {
    flex: 1;
    color: #333;
    padding: 0 3rem;
}

.perspective-title {
    font-family: "M PLUS 2", sans-serif;
    /* font-weight: 300; */
    margin-bottom: 0;
    font-size: 32px;
    color: var(--main-color);
    line-height: 1.2;
    margin-top: 2rem;
}

.perspective-text {
    font-size: 18px;
    margin: 0.5rem 0 2rem;
}

.totono .closing-message {
    margin: 7rem auto 0;
    /* width: 70%; */
}

@media (max-width: 1279px) {
    .proposal-perspectives {
        width: 90%;
    }

    /* .totono .closing-message {
        width: 90%;
    } */
}

@media (max-width: 1200px) {
    .perspective-title {
        font-size: 30px;
    }

    .perspective-label {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .proposal-perspectives {
        width: 100%;
    }

    /* .totono .closing-message {
        width: 100%;
    } */
}

@media (max-width: 600px) {
    .perspective-item {
        flex-direction: column;
    }

    .perspective-label {
        align-self: stretch;
        width: 100%;
        border-radius: 12px 12px 0 0;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        font-size: 32px;
        padding: 12px 0;
        gap: 5px;
    }

    .perspective-label span {
        font-size: 18px;
        margin-right: 5px;
    }

    .perspective-content {
        padding: 1rem;
    }

    .perspective-title {
        margin: 0;
    }

    .perspective-text {
        margin: 0.5rem 0 0;
    }
}

@media (max-width: 500px) {
    .proposal-perspectives {
        padding-top: 1rem;
        margin: 0 auto 3rem;
        /* margin: 0 auto 1rem;  9/15(월) 확인 필요함*/
        gap: 2rem;
    }

    .totono .closing-message {
        margin: 3rem auto;
    }

    .perspective-label {
        font-size: 30px;
    }

    .perspective-title {
        margin: 0;
        font-size: 24px;
    }

    .perspective-text {
        margin: 0.5rem 0 0;
        font-size: 17px;
    }
}


.sales-point-box {
    position: absolute;
    top: -80px;
    right: 50%;
    transform: translatex(50%);
}

.sales-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sales-point {
    font-family: "M PLUS 2", sans-serif;
    font-weight: 300;
    /* background: var(--bubble-color); */
    background: var(--main-color);
    opacity: 0.9;
    color: #fff;
    border-radius: 6px;
    padding: 34px 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    /* min-height: 180px; */
}

.sales-point .sales-point-num {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: .04em;
    color: #918b6c;
    position: relative;
}

.sales-point .sales-point-num::after {
    content: "";
    display: block;
    width: 1px;
    height: 18px;
    margin: 3px auto 0;
    background: #918b6c;
}

.sales-point .sales-point-text {
    margin: 2px 0 0;
    line-height: 1.7;
    font-size: 20px;
}

@media (max-width: 991px) {

    .sales-point .sales-point-num,
    .sales-point .sales-point-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .sales-points {
        grid-template-columns: repeat(2, 1fr);
    }

    .sales-point {
        padding: 20px;
    }
}

@media (max-width: 500px) {

    .sales-point .sales-point-num,
    .sales-point .sales-point-text {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .sales-points {
        grid-template-columns: 1fr;
    }
}

.concern-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
}

.concern-item {
    /* display: flex;
    flex-wrap: wrap;
    justify-content: center; */
    display: grid;
    grid-template-rows: 1fr auto;
    justify-items: center;
}

.concern-img {
    text-align: center;
    margin-top: 2.5rem;
}

.concern-img img {
    width: 75%;
}

.concern-bubble {
    background: #918b6c;
    /* border: 2px solid #ccc; */
    color: #fff;
    border-radius: 20px;
    padding: 20px;
    width: 100%;
    line-height: 1.5;
    position: relative;
    /* box-shadow: 0 2px 6px rgba(0,0,0,0.1); */
    /* height: 75px; */
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.concern-bubble::after {
    content: '';
    position: absolute;
    bottom: -38px;
    border-width: 20px;
    border-style: solid;
    border-color: #918b6c transparent transparent transparent;
}

@media (max-width: 1158px) {
    .concern-bubble br {
        display: none;
    }
}

@media (max-width: 767px) {
    .concern-container {
        grid-template-columns: 1fr;
        width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .concern-bubble {
        max-width: 100%;
    }
}

@media (max-width: 500px) {
    .concern-container {
        width: 90%;
    }

    .case-item {
        flex-direction: column;
    }

    .case-img {
        width: 70%;
    }

    .case-text {
        width: 100%;
    }
}

.case-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 4rem 0 3rem;
}

.case-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.case-img {
    width: 150px;
}

.case-img img {
    width: 100%;
}

.case-text {
    width: 70%;
}

.case-text p {
    font-size: 18px;
}

@media (max-width: 500px) {
    .case-item {
        flex-direction: column;
    }

    .case-img {
        width: 70%;
    }

    .case-text {
        width: 100%;
    }
}


/* Map Modal */
.map-modal {
    display: none;
    position: fixed;
    inset: 0;
    /* background: rgba(0,0,0,0.6); */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.map-modal__content {
    background: rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 2rem 3rem;
    /* border-radius: 12px; */
    text-align: center;
    /* max-width: 500px; */
    max-width: 700px;
    width: 90%;
}

.map-modal__content img {
    width: 100%;
}

.map-modal__title {
    margin-bottom: 15px;
    font-size: 45px;
    font-weight: 300;
    font-family: "M PLUS 2", sans-serif;
}

.map-modal__btn {
    margin: 1.5rem auto 0.5rem;
    display: flex;
    /* justify-content: space-around; */
    gap: 20px;
}

.map-modal__print, .map-modal__close {
    cursor: pointer;
    color: #fff;
    margin: 0;
    /* border-bottom: 1px solid;
    width: fit-content; */
    font-weight: 500;
    width: 50%;
    padding: 5px;
    /* box-shadow: 0 8px 24px rgb(255 255 255 / 10%); */
    border-radius: 4px;
    border: 2px solid #ffffff;
    background: #ffffff29;
}
.map-modal__print:hover, .map-modal__close:hover {
    background: #ffffff40;
}

/* .map-modal__close:hover {
    text-decoration: underline;
} */
@media (max-width: 991px) {
    .map-modal__title {
        font-size: 42px;
    }
}

@media (max-width: 500px) {
    .map-modal__content {
        padding: 1.5rem 1rem;
    }

    .map-modal__title {
        font-size: 36px;
    }
}

@media (max-height: 1000px) {
    .map-modal__content {
        max-height: 90vh;
        overflow-y: auto;
    }

    .map-modal__content img {
        max-height: 51vh;
        width: 100%;
        object-fit: contain;
    }
}


.staff .section01 {
    padding: 9rem 0 0;
}

.staff .section01,
.staff .section02,
.staff .section03 {
    position: relative;
}

.staff .section03 {
    padding-bottom: 10rem;
}

.staff-top-text {
    text-align: center;
    font-size: 24px;
    font-family: "M PLUS 2", sans-serif;
    color: var(--main-color);
    margin-bottom: 4rem;
}

.staff .section-column {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    flex-wrap: wrap;
    padding-top: 2rem;
}

.staff .section-column-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    padding: 4rem 4.5rem;
    box-sizing: border-box;
    /* background: #f2f0ea9c; */
    background: #efeff7;
    border: 1px solid #e0e0eb;
}

/* .staff .section-column-box01 {
    background: rgba(68, 125, 252, 0.3);
}

.staff .section-column-box02 {
    background: rgba(79, 198, 95, 0.3);
}

.staff .section-column-box03 {
    background: rgba(241, 115, 19, 0.3);
}

.staff .section-column-box04 {
    background: rgba(160, 77, 253, 0.3);
}

.staff .section-column-box05 {
    background: rgba(68, 184, 167, 0.3);
} */

.section-column-box>div:first-child {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.staff-type {
    font-family: "M PLUS 2", sans-serif;
    font-weight: 300;
    font-size: 60px;
    margin: 0;
}

.staff-type span {
    font-size: 20px;
    font-weight: 400;
}

.staff-msg-title {
    font-weight: 500;
    font-size: 20px;
    color: var(--main-color);
    margin: 0;
}

.staff-msg-text {
    line-height: 2;
    margin-bottom: 1.5rem;
}

.staff-qualification {
    border-top: 1px dashed #707070;
    padding-top: 1.75rem;
    margin-top: auto;
}

.staff-qualification p span {
    display: inline-block;
    color: #fff;
    background: var(--main-color);
    border-radius: 100px;
    padding: 2px 14px 5px;
    margin-right: 10px;
    vertical-align: middle;
    height: fit-content;
}

.staff-qualification p {
    display: flex;
}

.staff-qualification p span+text {
    display: block;
}


.staff-profile-wrap {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.staff-profile-img {
    width: 55%;
    position: relative;
    z-index: 2;
}

.staff-profile-img img {
    width: 100%;
    display: block;
    /* border-radius: 12px; */
    /* 사선 컷 */
    /* clip-path: polygon(
        0 0,     
        100% 0, 
        100% 92%, 
        92% 100%, 
        0 100%, 
        0 8%     
    ); */
    clip-path: polygon(0 0,
            /* 왼쪽 위 (각) */
            92% 0,
            /* 오른쪽 위 사선 시작 */
            100% 8%,
            /* 오른쪽 위 사선 끝 */
            100% 100%,
            /* 오른쪽 아래 (각) */
            8% 100%,
            /* 왼쪽 아래 사선 끝 */
            0 92%
            /* 왼쪽 아래 사선 시작 */
        );
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
}

.staff-profile-card {
    position: absolute;
    right: 0;
    top: 73%;
    transform: translateY(-50%);
    padding: 1rem 0.5rem 1rem 5rem;
    border-radius: 0;
    width: 52%;
    background: #fffffff7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.staff-name {
    font-family: "M PLUS 2", sans-serif;
    font-size: 42px;
    font-weight: 300;
    margin: 0 0 8px;
}

.staff-name span {
    font-size: 18px;
    margin-left: 6px;
}

.staff-job {
    font-size: 16px;
    margin-bottom: 16px;
    color: #1e3869f5;
}

.staff-job span {
    font-size: 15px;
    color: #575757;
}

.staff-line {
    width: 40px;
    height: 3px;
    background: var(--main-color);
    /* margin: 16px 0; */
    margin: 16px 0 4px;
}

.staff-meta {
    font-size: 14px;
    line-height: 1.8;
    color: #8c8c8c;
}

.staff .section-column-box {
    padding: 4rem 4.5rem;
}

@media (max-width: 1699px) {
    .staff-profile-card {
        padding: 1rem 1.5rem 1rem 4.5rem;
    }

    .staff .section-column-box {
        padding: 4rem;
    }
}

@media (max-width: 1599px) {
    .staff-top-text {
        font-size: 22px;
    }

    .staff-type {
        font-size: 50px;
    }

    .staff-type span,
    .staff-msg-title {
        font-size: 18px;
    }

    /* .staff-msg-text, */
    .staff-qualification {
        font-size: 15px;
    }
}

@media (max-width: 1399px) {
    .staff .section-column-box {
        padding: 3rem;
    }

    .staff-profile-card {
        padding: 0.5rem 0.5rem 0.5rem 3.5rem;
    }

    .staff-name {
        font-size: 36px;
    }

    .staff-name span {
        font-size: 16px;
    }

    .staff-job {
        font-size: 15px;
    }

    .staff-job span {
        font-size: 14.5px;
    }

    .staff-meta {
        font-size: 13px;
        margin-bottom: 10px;
    }
}

@media (max-width: 1279px) {
    .staff-top-text {
        padding: 0 3.5rem;
    }

    .staff-top-text br {
        display: none;
    }
}

@media (max-width: 1200px) {
    .staff .section01 {
        padding-top: 7rem;
    }

    .staff-top-text {
        font-size: 20px;
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }

    .staff .section03 {
        padding-bottom: 8rem;
    }

    .staff-type {
        font-size: 44px;
    }

    .staff-type span,
    .staff-msg-title {
        font-size: 17px;
    }

    .staff .section-column-box {
        padding: 2rem;
    }

    .staff-profile-card {
        padding: 0 0.5rem 0 4rem;
    }
}

@media (max-width: 991px) {
    .staff .section01 {
        padding-top: 6rem;
    }

    .staff .section03 {
        padding-bottom: 7rem;
    }

    .staff .section-column {
        flex-direction: column;
    }

    /* .section-column-box.section-column-box06 {
        display: none;
    } */

    .staff-profile-card {
        top: 80%;
        padding: 0 0.5rem 0 6rem;
    }
}

@media (max-width: 767px) {
    .staff-profile-card {
        padding: 0 0.5rem 0 4rem;
    }
}

@media (max-width: 500px) {
    .staff .section01 {
        padding-top: 5rem;
    }

    .staff .section03 {
        padding-bottom: 5rem;
    }

    .staff-top-text {
        font-size: 17px;
        margin-bottom: 1rem;
    }

    .staff-type {
        font-size: 32px;
    }

    .staff-type span,
    .staff-msg-title {
        font-size: 16px;
    }

    .staff-msg-text,
    .staff-qualification {
        font-size: 14px;
    }

    .staff .section-column-box {
        padding: 2rem;
    }

    .staff-profile-wrap {
        flex-direction: column;
    }

    .staff-profile-img {
        width: 100%;
    }

    .staff-profile-card {
        position: relative;
        transform: none;
        width: 100%;
        margin-top: -2rem;
        padding: 2.5rem 2rem 0.5rem;
    }

    .staff-msg-title.mt-5 {
        margin-top: 2rem !important;
    }

    .staff-name {
        font-size: 30px;
    }

    .staff-name span {
        font-size: 15px;
    }

}

@media (max-width: 480px) {
    .staff .section01 {
        padding-top: 4rem;
    }

    .staff .section03 {
        padding-bottom: 4rem;
    }

    .staff-top-text {
        font-size: 16.5px;
        padding: 0 12px;
    }

    .staff .section-column-box {
        padding: 1.75rem;
    }

    .staff-top-text {
        margin-bottom: 0.5rem;
    }
}



.services-section .sub-title {
    font-size: 32px;
    font-family: 'M PLUS 2', sans-serif;
    color: var(--main-color);
    line-height: 1.4;
    margin-bottom: 2rem;
}

.services-section.wealthpark-section .sub-title {
    color: #000;
    margin-top: 5rem;
}

@media (max-width: 1599px) {
    .services-section .sub-title {
        font-size: 30px;
    }
}

@media (max-width: 1200px) {
    .totono-page-section .services-section .sub-title {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .services-section .sub-title {
        font-size: 28px;
    }
}

@media (max-width: 500px) {
    .services-section .sub-title {
        font-size: 26px;
    }
}

.services-section {
    padding: 5rem 0 0;
}

.services-section02 {
    /* 원래 솔루션 섹션이였음 */
    padding: 6rem 0 9rem;
}

@media (max-width: 991px) {
    .services-section02 {
        /* 원래 솔루션 섹션이였음 */
        padding: 6rem 0 8rem;
    }
}

@media (max-width: 606px) {
    .services-section {
        padding: 4rem 0 0;
    }
}

@media (max-width: 500px) {
    .services-section {
        padding: 3rem 0 0;
    }

    .services-section02 {
        padding: 6rem 0;
    }
}


.qna-section {
    padding-bottom: 8rem;
}

.qna-section h2 {
    /* font-size: 60px !important; */
    font-family: "M PLUS 2", sans-serif;
}

.qna-category {
    border: 1px solid #BFBFBF;
    border-radius: 15px;
    margin-bottom: 1rem;
    background: #fff;
}

.qna-category-header {
    width: 100%;
    text-align: left;
    padding: 2rem 3rem;
    font-size: 24px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
    background: #fff;
    font-family: "M PLUS 2", sans-serif;
}

.qna-category-header::after {
    content: "";
    position: absolute;
    right: 2rem;
    top: 50%;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    background: url("assets/img/arrow_qna01.png") no-repeat center/contain;
}

.qna-category-header.active::after {
    background-image: url("assets/img/arrow_qna02.png");
}

.qna-category-content {
    display: none;
    padding: 2rem 3rem;
    border-top: 1px solid #BFBFBF;
}

.qna-subcategory-title {
    font-size: 24px;
    font-weight: 400;
    color: #2E73C2;
    /* margin: 1rem 0 0.5rem; */
    margin: 1.5rem 0 0;
    font-family: "M PLUS 2", sans-serif;
}

.qna-item {
    padding: 0 4rem;
}

.qna-question {
    width: 100%;
    display: flex;
    align-items: center;
    text-align: left;
    /* padding: 0.75rem 2rem 0.75rem 0.75rem; */
    padding: 0;
    background: #F2F2F2;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
    position: relative;
    font-family: "M PLUS 2", sans-serif;
    align-items: stretch;
}

.qna-question .q-icon {
    color: #fff;
    padding: 0.5rem 1.25rem;
    margin-right: 10px;
    width: 88px;
    text-align: center;
    font-size: 24px;
}

.totono-page-section .qna-question .q-icon {
    background: #00bfa5;

}

.wealthpark-page-section .qna-question .q-icon {
    background: #2E73C2;

}

.qna-question .q-text {
    flex: 1;
    color: #000;
    padding: 0.5rem 1rem;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.qna-question::after {
    content: "";
    position: absolute;
    right: 2rem;
    top: 50%;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    background: url("assets/img/open.png") no-repeat center/contain;
}

.qna-question.active::after {
    background-image: url("assets/img/close.png");
}

.qna-answer {
    display: none;
    background: #F2F2F2;
    padding: 0.75rem 1rem 1rem 1.75rem;
    margin-top: 6px;
    /* position: relative; */
    margin-left: 5.5rem;
    align-items: flex-start;
}

.qna-answer .a-icon {
    color: #EF3939;
    font-size: 24px;
    /* position: absolute;
    left: 1rem;
    top: 0.75rem; */
    font-family: "M PLUS 2", sans-serif;
}

.qna-answer .a-text {
    color: #000;
    line-height: 1.8;
}

.qna-answer .a-text p {
    margin: 0;
    padding-left: 1rem;
    font-size: 16px;
    padding-top: 7px;
}

/* .qna-answer .a-text a {
    color: #0090FA;
    text-decoration: underline;
} */

.totono-page-section .bottom-section {
    background: url(assets/img/totono-img02.png) right center/cover no-repeat;
}

.wealthpark-page-section .bottom-section {
    background: url(assets/img/wealthpark-img02.png) right center/cover no-repeat;
}

.bottom-section .services-section__panel {
    padding-bottom: 9rem;
}

.bottom-section h2 {
    font-family: "M PLUS 2", sans-serif;
}

.bottom-section .bottom-section-split__p {
    color: #000;
    font-size: 20px;
    margin: 0 0 3rem;
}

@media (max-width: 1440px) {
    .totono-page-section .bottom-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.3);
    }

    .wealthpark-page-section .bottom-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.4);
    }

    .bottom-section h2,
    .bottom-section .bottom-section-split__p,
    .bottom-section .services-section__panel {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 1279px) {
    .qna-category-header {
        font-size: 22px;
        padding: 1.5rem 3rem 1.5rem 2rem;
    }

    .qna-category-header::after {
        width: 36px;
        height: 36px;
        right: 1rem;
    }

    .qna-category-content {
        padding: 2rem;
    }

    .qna-subcategory-title {
        font-size: 22px;
    }

    .qna-question .q-icon {
        padding: 0.25rem 1.25rem;
        width: 80px;
        font-size: 22px;
    }

    .qna-question::after {
        width: 22px;
        height: 22px;
        right: 1.5rem;
    }

    .qna-question .q-text {
        font-size: 19px;
    }

    .qna-item {
        padding: 0;
    }

    .qna-answer .a-icon {
        font-size: 22px;
    }

    .qna-answer {
        margin-left: 5rem;
    }
}

@media (max-width: 991px) {
    .qna-section {
        padding-bottom: 7rem;
    }

    .bottom-section .services-section__panel {
        padding-bottom: 8rem;
    }

    .qna-question .q-text {
        padding: 0.5rem 2.5rem 0.5rem 1rem;
    }
}

@media (max-width: 500px) {
    .qna-section {
        padding-bottom: 4rem;
    }

    .bottom-section .services-section__panel {
        padding-bottom: 5rem;
    }

    .bottom-section .bottom-section-split__p {
        font-size: 17px;
    }

    .qna-category-header {
        font-size: 20px;
    }

    .qna-category-header::after {
        width: 34px;
        height: 34px;
    }

    .qna-subcategory-title {
        font-size: 20px;
    }

    .qna-question .q-icon {
        font-size: 20px;
        margin: 0;
        width: 56px;
    }

    .qna-question::after {
        width: 20px;
        height: 20px;
        right: 1rem;
    }

    .qna-question .q-text {
        font-size: 17px;
    }

    .qna-answer .a-icon {
        font-size: 20px;
    }

    .qna-answer {
        margin-left: 0;
        padding: 0.75rem 1rem 1rem 1.2rem;
    }
}



.section01__grid01 {
    padding-top: 9rem;
    padding-bottom: 9rem;
}

.h1 {
    font-size: 45px !important;
    font-weight: 300;
}

/* .column h1 {
    color: #000;
} */

.h2 {
    font-size: 32px !important;
    font-weight: 400 !important;
    color: #002567;
    font-family: "M PLUS 2", sans-serif;
    text-align: center;
    margin-bottom: 3rem;
}

.overview .h2 {
    text-align: start;
    margin-bottom: .5rem;
}

@media (max-width: 1599px) {
    .section01__grid01 {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}

@media (max-width: 1279px) {
    .h2 {
        font-size: 30px !important;
    }
}

@media (max-width: 991px) {
    .section01__grid01 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .h1 {
        font-size: 42px !important;
    }

    .h2 {
        font-size: 28px !important;
    }

    /* .overview .h2 {
        font-size: 30px !important;
    } */
}

@media (max-width: 500px) {
    .section01__grid01 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .h1 {
        font-size: 36px !important;
    }

    .h2 {
        font-size: 25px !important;
    }
}

@media (max-width: 371px) {

    .vision-mission-value .h1,
    .publications .h1 {
        letter-spacing: -1px;
    }
}



/* .vision-mission-value .vision {
    position: relative;
    background: url(assets/img/company_vision.png) right 22% center / cover no-repeat;
}

.vision-mission-value .mission {
    position: relative;
    background: url(assets/img/company_mission.png) left 22% center / cover no-repeat;
}

.vision-mission-value .value {
    position: relative;
    background: url(assets/img/company_value_.png) right 22% center / cover no-repeat;
} */

/* @media (max-width: 991px) {
    .vision-mission-value .section01::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.3);
    }

    .vision-mission-value .section01__grid01 {
        z-index: 1;
        position: sticky;
    }
} */

/* @media (max-width: 500px) {
    .vision-mission-value .mission {
        position: relative;
        background: url(assets/img/company_mission.png) left 10% center / cover no-repeat;
    }

    .vision-mission-value .value {
        background: url(assets/img/company_value.png) right 30% center / cover no-repeat;
    }
} */



.overview table {
    width: 100%;
    border-collapse: collapse;
    margin: 3rem auto 0;
}

.overview th,
.overview td {
    /* border-top: 1px solid #666; */
    border-bottom: 1px solid #666;
    /* padding: 2rem 0; */
    padding: 1.5rem 1rem;
    text-align: left;
    vertical-align: unset;
    font-size: 17px;
}

.overview th {
    width: 20%;
    font-weight: 400;
    background: var(--section-bg);
}

.overview td {
    width: 80%;
    font-weight: 300;
    line-height: 2.4;
}

.overview td p {
    margin-bottom: 1.5rem;
}

.overview td span {
    font-weight: 400;
}

.overview td .office-item {
    display: flex;
    gap: 5px;
}
.overview td .office-item span {
    font-weight: 300;
}
.overview td span.office-name {
    min-width: 119px;
}

.overview table a {
    /* color: #0090FA;
    text-decoration: underline; */
    font-weight: 400;
}

.overview table img {
    display: inline-block;
    width: 17px;
    margin-left: 2px;
    margin-top: -4px;
}

@media (max-width: 991px) {
    .overview table {
        margin: 2rem auto 0;
    }
}

@media (max-width: 500px) {
    .overview table {
        margin: 1.5rem auto 0;
    }

    .overview tr {
        border-top: 1px solid #666;
        display: flex;
        flex-direction: column;
    }

    .overview th {
        padding: 12px 1rem;
    }

    .overview td {
        padding: 1rem;
        border-bottom: 0;
    }

    .overview th,
    .overview td {
        font-size: 16px;
        width: 100%;
    }

    /* .overview tr {
    display: flex;
    flex-direction: column;
    }
    .overview th, .overview td {
    width: 100%;
    padding: 1rem 0;
    } */

    .overview td .office-item {
        flex-direction: column;
    }
}



/* .access-info {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 1rem;
    font-size: 15.75px !important;
}

.access-info strong {
    font-weight: 500;
}

.access-img-box {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 2.5rem;
}

.access-img img {
    height: 100%;
    object-fit: cover;
    display: block;
}

.access-img-text-box {
    display: flex;
    flex-direction: column;
}

.access-img-text-box p,
.access-img-text-box a {
    font-size: 15.75px;
}

.access-img-text-box a:hover {
    opacity: .95;
}

.access-detail-btn {
    background: var(--main-color);
    color: #FFF;
    padding: 10px;
    text-align: center;
    margin-top: 1rem;
}

.access iframe {
    width: 700px;
    height: 400px;
    margin: 20px auto;
}

@media (max-width: 991px) {
    .access iframe {
        width: 90%;
    }
}

@media (max-width: 500px) {
    .access .mb-5 {
        margin-bottom: 2rem !important;
    }

    .access-img-box {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .access iframe {
        width: 100%;
        height: 300px;
    }
} */



.history .section01__grid01 p {
    font-size: 21px;
    margin-bottom: 1.5rem;
}

.history .history-bg .section01__grid01 p {
    font-size: 19px;
    margin-bottom: 0;
}

.history .history-bg .section01__grid01 {
    z-index: 2;
    position: relative;
}

.history-bg {
    background: url(assets/img/history-img01.png) left center / cover no-repeat;
    position: relative;
}

.history-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
}

.history-logo-text {
    margin-bottom: 3rem;
}

.history-logo-text img {
    width: 50%;
}

.history .section__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.grid__item-box p {
    padding: 0 1rem;
    margin: 0;
    line-height: 2;
}

.grid__item {
    text-align: center;
    border-radius: 15px;
    border: 1.75px solid #425377;
    background: #F4F9FD;
    padding: 3.5rem 0;
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem
}

.grid__item img {
    height: 100%;
    object-fit: contain;
}

.history-logo {
    margin-bottom: 4rem;
    padding-top: 1rem;
}

.history-logo img {
    width: 25%;
}

.history-img {
    padding-top: 2rem;
    margin-bottom: 5rem;
}

.history-img img {
    width: 45%;
}

.timeline-title {
    padding-top: 9rem;
    margin: 0;
}

.timeline {
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    padding-top: 7rem;
}

.timeline-entry {
    position: relative;
    padding-left: 120px;
    padding-bottom: 80px;
    padding-top: 1.5rem;
}

.timeline-entry::before {
    content: '';
    position: absolute;
    left: 49px;
    top: 0;
    width: 5px;
    height: 100%;
    background-color: #0C4697;
}

.timeline-entry:last-child::before {
    height: 20px;
}

.timeline .circle-year {
    position: absolute;
    left: -15px;
    top: 0;
    width: 120px;
    height: 120px;
    background-color: var(--main-color);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: 28px;
    font-family: "M PLUS 2", sans-serif;
    text-align: center;
    line-height: 1.2;
}

.timeline .year-info {
    padding: 9px 15px 10px;
    display: flex;
    align-items: center;
}

.timeline .left-arrow-icon {
    color: #918b6c;
    font-size: 22px;
    font-family: "M PLUS 2", sans-serif;
}

.timeline .month {
    font-size: 28px;
    font-family: "M PLUS 2", sans-serif;
    /* margin-top: -10px; */
    width: 90px;
    text-align: end;
    /* font-weight: 300; */
}

.timeline .event {
    margin-left: 3rem;
    font-size: 20px;
    padding-top: 1px;
}

@media (max-width: 1599px) {
    .grid__item {
        height: 120px;
        padding: 2.7rem 0;
        margin-bottom: 1.2rem;
    }

    .grid__item-box p {
        line-height: 1.8;
    }

    .history-logo img {
        width: 24%;
    }

    .history-img img {
        width: 43%;
    }

    .timeline-title {
        padding-top: 6rem;
    }

    .timeline {
        padding-top: 5rem;
    }

    .timeline-entry {
        padding-bottom: 70px;
        padding-top: 32px;
    }

    .timeline .circle-year {
        left: -9px;
        width: 120px;
        height: 120px;
        font-size: 28px;
    }

    .timeline .month {
        font-size: 28px;
        margin-top: -7px;
        width: 80px;
    }

    .timeline .left-arrow-icon {
        font-size: 22px;
    }

    .timeline .event {
        margin-left: 2.5rem;
    }
}

@media (max-width: 1420px) {
    .timeline .event {
        width: 80%;
    }
}

@media (max-width: 1279px) {
    .history-logo img {
        width: 27%;
    }

    .history-img img {
        width: 48%;
    }
}

@media (max-width: 1200px) {
    .grid__item {
        height: 115px;
        margin-bottom: 1rem;
    }

    .history .section01__grid01 p,
    .timeline .event {
        font-size: 19px;
    }

    .history .history-bg .section01__grid01 p {
        font-size: 18px;
    }

    .timeline-entry {
        padding-left: 120px;
    }

    .timeline .circle-year {
        left: -4px;
        width: 110px;
        height: 110px;
        font-size: 26px;
    }

    .timeline .year-info {
        padding: 5px 15px 10px;
    }

    .timeline .left-arrow-icon {
        font-size: 20px;
    }

    .timeline .month {
        font-size: 26px;
        width: 75px;
        margin-top: -5px;
    }

    .timeline .event {
        margin-left: 2.2rem;
    }
}

@media (max-width: 991px) {
    .history-logo-text img {
        width: 55%;
    }

    .history .section__grid {
        grid-template-columns: 1fr;
    }

    .grid__item {
        height: 100px;
        padding: 2.2rem 0;
    }

    .history-logo {
        margin-bottom: 3rem;
        padding-top: 0;
    }

    .history-logo img {
        width: 30%;
    }

    .history-img {
        padding-top: 1rem;
        margin-bottom: 4rem;
    }

    .history-img img {
        width: 55%;
    }

    .timeline-title {
        padding-top: 5rem;
    }

    .timeline {
        padding-top: 4rem;
    }

    .timeline-entry {
        padding-bottom: 60px;
        padding-top: 22px;
        padding-left: 110px;
    }

    .timeline .year-info {
        padding: 7px 15px 10px;
    }

    .timeline .circle-year {
        left: 6px;
        width: 90px;
        height: 90px;
        font-size: 22px;
    }

    .timeline .left-arrow-icon {
        font-size: 18px;
    }

    .timeline .month {
        font-size: 22px;
        width: 60px;
        margin-top: -4px;
    }

    .timeline .event {
        margin-left: 2rem;
    }
}

@media (max-width: 767px) {
    .history-logo-text img {
        width: 90%;
    }

    .history-logo img {
        width: 50%;
    }

    .history-img img {
        width: 90%;
    }

    .timeline-title {
        line-height: 1.4;
    }
}

@media (max-width: 500px) {
    .history-logo-text img {
        width: 100%;
    }

    .grid__item {
        height: 80px;
        padding: 1.7rem 0;
    }

    .grid__item-box p {
        padding: 0;
    }

    .history .section01__grid01 p,
    .timeline .event {
        font-size: 17px;
    }

    .history .section01__grid01 p {
        margin-bottom: 1rem;
    }

    .history .history-bg .section01__grid01 p {
        font-size: 16px;
    }

    .history-logo img {
        width: 60%;
    }

    .history-img {
        padding-top: 0;
        margin-bottom: 3rem;
    }

    .history-img img {
        width: 100%;
    }

    .timeline-title,
    .timeline {
        padding-top: 4rem;
    }

    .timeline-entry {
        padding-left: 90px;
        padding-bottom: 20px;
    }

    .timeline .year-info {
        padding: 7px 15px 20px 20px;
        flex-direction: column;
        align-items: normal;
    }

    .timeline .circle-year {
        left: 11px;
        width: 80px;
        height: 80px;
        font-size: 20px;
    }

    .timeline .left-arrow-icon {
        display: none;
    }

    .timeline .month {
        font-size: 20px;
        width: auto;
        text-align: unset;
        margin-top: -6px;
    }

    .timeline .event {
        margin-left: 0;
        width: 100%;
    }
}



.csr .lead-desc {
    margin-bottom: 4rem;
    font-family: "M PLUS 2", sans-serif;
}

.csr .cta__sub-title {
    color: var(--main-color);
    text-align: center;
    font-weight: 400;
    margin: 7rem 0 0;
}

.csr .section01__grid01 {
    padding-bottom: 6rem;
}

.csr .item-row {
    flex-direction: row;
}

.csr .item-row-img {
    /* margin: 0 3rem; */
    margin: 0 3rem 0 1rem;
    /* width: 27%; */
    width: 11.4%;
    flex-shrink: 0;
}

.csr .item-row-img img {
    width: 100%;
    height: auto;
}

.item-row-text .support-services-title {
    text-align: start;
}

.item-row-text .support-services-text {
    margin-bottom: 1.5rem;
}

.csr-bg {
    position: relative;
    background: url(assets/img/csr-img01.png) center top / cover no-repeat;
}

.csr-bg:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 80px solid #fff;
}

.headline {
    font-size: 65px;
    text-align: center;
    padding-top: 40rem;
}

.headline rt {
    font-size: 25px;
    letter-spacing: .06em;
    text-align: center;
}

.headline-sub {
    font-family: "M PLUS 2", sans-serif;
    font-size: 28px;
    text-align: center;
    margin-top: 2rem;
}

.csr .cta-text01 {
    color: var(--main-color);
    font-weight: 400;
    margin-top: 3rem;
}

@media (max-width: 1599px) {
    .csr .section01__grid01 {
        padding-bottom: 5rem;
    }

    .headline {
        font-size: 55px;
        padding-top: 36rem;
    }

    .headline rt {
        font-size: 22px;
    }

    .headline-sub {
        font-size: 27px;
    }
}

@media (max-width: 1279px) {
    .csr .item-row-img {
        width: 13%;
        margin: 0 2.5rem 0 1rem;
    }
}

@media (max-width: 1200px) {
    .headline {
        font-size: 49px;
    }

    .headline rt {
        font-size: 20px;
    }

    .headline-sub {
        font-size: 25px;
    }
}

@media (max-width: 991px) {
    .csr .item-row-img {
        width: 17.6%;
    }

    .csr .cta__sub-title {
        margin: 5rem 0 0;
    }

    .csr .section01__grid01 {
        padding-bottom: 4rem;
    }
}

@media (max-width: 767px) {
    .csr .item-row {
        flex-direction: column;
    }

    .csr .item-row-img {
        width: 100%;
        margin: 0;
        margin-bottom: 1rem;
    }

    .csr .item-row-img img {
        width: 30%;
    }

    .item-row-text .support-services-title {
        text-align: center;
    }

    .item-row-text .support-services-text {
        margin-bottom: 1rem;
    }
}

@media (max-width: 500px) {
    .csr .cta__sub-title {
        margin: 3rem 0 0;
    }

    .csr-bg {
        background: url(assets/img/csr-img01.png) left 54% top / cover no-repeat;
    }

    .csr-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.2);
    }

    .csr .section01__grid01 {
        padding-bottom: 3rem;
        position: relative;
        z-index: 1;
    }

    .csr .cta-text01 {
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }

    .headline {
        font-size: 37px;
        padding-top: 6rem;
    }

    .headline rt {
        font-size: 17px;
    }

    .headline-sub {
        font-size: 22px;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .csr .item-row-img img {
        width: 40%;
    }
}



.publications .lead-desc {
    margin: 4rem 0 0;
    line-height: 1.6;
}

.book-box {
    margin-bottom: 7rem;
}

.publications .section__grid.book {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.publications .book-box .lead-desc,
.publications .articles-box .lead-desc {
    margin: 5px 0 0;
}

.book-img {
    margin-bottom: 3rem;
}

.book-img img {
    width: 80%;
}

.articles-box {
    padding: 0 10rem;
}

.publications .section__grid.articles {
    grid-template-columns: 0.3fr 1fr;
    gap: 1.5rem;
    border-bottom: 1px solid #CCC;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.articles-img img {
    width: 100%;
}

.book-box p,
.articles-box p {
    font-size: 18px;
}

/* .publications .book-box a,
.publications .articles-box a {
    color: #00A6F0;
    text-decoration: underline;
} */

@media (max-width: 1599px) {
    .articles-box {
        padding: 0 8rem;
    }
}

@media (max-width: 1399px) {
    .articles-box {
        padding: 0 3rem;
    }
}

@media (max-width: 1279px) {
    .articles-box {
        padding: 0;
    }
}

@media (max-width: 991px) {

    .book-box p,
    .articles-box p {
        font-size: 17px;
    }

    .publications .section__grid.book {
        grid-template-columns: 1fr;
        gap: 7rem;
    }

    .book-img img {
        width: 40%;
    }

    .publications .section__grid.articles {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .none-767 {
        display: none;
    }
}

@media (max-width: 500px) {
    .publications .section__grid.book {
        gap: 5rem;
    }

    .book-img {
        margin-bottom: 1.5rem;
    }

    .book-img img {
        width: 100%;
    }

    .publications .section__grid.articles {
        padding-bottom: 0.5rem;
    }
}



.column .page {
    display: flex;
    gap: 40px;
    padding: 20px;
    align-items: flex-start;
}

.column .news-column {
    flex: 1 1 0;
    min-width: 0;
}

.column .sidebar {
    flex: 0 0 var(--sidebar-width);
    /* 고정 너비 유지 */
    min-width: var(--sidebar-width);
    max-width: var(--sidebar-width);
}

.column .sidebar h3 {
    font-size: 20px;
    color: var(--column-main-color);
    margin: 1rem 0 0.75rem;
    font-weight: 400;
}

.column .news-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 0;
    border-bottom: 1px solid #e6eef5;
    padding-bottom: 26px;
}

.column .news-item {
    padding: 14px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.column .news-item img {
    width: 100%;
    /* height: 150px; */
    object-fit: cover;
}

.column .news-thumb-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.column .news-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.column .news-tags {
    font-size: 16px;
    color: var(--column-main-color);
    margin: 1rem 0 8px;
}

.column .news-date {
    font-size: 14px;
    color: #999;
    margin: 0 0 8px 0;
}

.column .news-title {
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 20px;
}

.column .news-content {
    font-size: 16px;
    line-height: 1.6;
    /* height: calc(1.4em * 4);
    overflow: hidden; */
    margin-bottom: 10px;
}

.column .news-button {
    margin-left: auto;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    text-align: end;
}

.column .news-button img {
    width: 30px;
    height: 30px;
}

/* .column .news-button:hover {
    opacity: 0.8;
} */

.column .news-thumb {
    transition: transform 0.4s ease;
}

.column .news-item a:hover .news-thumb {
    transform: scale(1.08);
}

.column .news-item a:hover .news-title {
    color: var(--main-color);
}

.column .news-item a:hover .news-button img {
    opacity: 0.8;
}


/* 페이지네이션 */
.column .pagination {
    margin-top: 6rem;
    text-align: center;
    justify-content: center;
}

.column .pagination button {
    margin: 0 6px;
    padding: 6px 10px;
    border: 1px solid #002567;
    background: #fff;
    color: #002567;
    cursor: pointer;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    line-height: normal;
}

.column .pagination button.active {
    background: #002567;
    color: #fff;
}


/* 사이드바 내부 스타일 */
.column .sidebar .block {
    padding: 5px 12px;
    margin-bottom: 16px;
}

/* .search-box h3 {
    margin-top: 0;
} */
.column .search-box input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 20px;
    border-radius: 99px;
    border: 1px solid #707070;
    font-size: 16px;
}

/* 최근기사 리스트 */
.column #recent-articles {
    padding-left: 0;
}

.column #recent-articles li {
    list-style: none;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.2s;
}

.column #recent-articles li:hover {
    /* background: rgba(0, 123, 255, 0.1); */
    /* 배경색 전체 변경 */
    background: rgba(0, 0, 0, 0.04);
}

.column #recent-articles li div.date {
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}

.column #recent-articles li a {
    font-size: 15px;
    cursor: pointer;
    color: #272727;
    text-decoration: none;
    display: block;
}

.column #recent-articles li a:hover {
    text-decoration: underline;
}

.column #recent-articles hr {
    opacity: 1;
}

.column #tag-list {
    padding-left: 0;
    margin: 0;
}

.column #tag-list li {
    display: inline-block;
    margin: 4px 6px 4px 0;
    padding: 1px 12px;
    min-height: 24px;
    border-radius: 999px;
    align-content: center;
    border: 1.75px solid var(--column-main-color);
    color: var(--column-main-color);
    font-size: 16px;
    cursor: pointer;
    transition: transform .08s ease, background .12s;
    user-select: none;
}

.column #tag-list li:hover {
    background: var(--column-main-color);
    color: #fff;
    /* transform: translateY(-2px); */
}

.column #tag-list li.active {
    background: var(--column-main-color);
    color: #fff;
}

.column .news-single-title-box {
    border-bottom: 4px solid #707070;
    border-top: 4px solid #707070;
    margin-bottom: 3rem;
}

.column .news-single-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.column .news-single-date {
    font-size: 15px;
}

.column .news-single-tag {
    display: inline-block;
    color: var(--column-main-color);
    font-size: 16px;
}

.column .news-single-tag div {
    display: inline-block;
    margin: 4px 6px 4px 0;
    padding: 1px 12px;
    min-height: 24px;
    border-radius: 999px;
    align-content: center;
    border: 1.75px solid var(--column-main-color);
}

.column .news-single-title-box h2 {
    font-size: 38px !important;
    margin: 0;
    border-top: 2px solid #D9D9D9;
    padding: 1rem 0;
}

.column .news-column .news-content-text p {
    font-size: 18.5px;
    margin: 1.5rem 0 0;
}

/* .column .news-main-text span {
    color: #EF3939;
} */

.column .news-column .news-content-text h3 {
    position: relative;
    /* padding-bottom: 8px; */
    padding-bottom: 13px;
    font-size: 26px;
    color: #096DC3;
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.column .news-column .news-content-text h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    /* background:
        linear-gradient(to right,
            #002567 0%,
            #002567 90%,
            transparent 90%,
            transparent 100%),
        repeating-linear-gradient(to right,
            transparent 0 5px,
            var(--column-main-color) 5px 10px) */
    background:
        linear-gradient(to right,
            var(--column-main-color) 0%,
            var(--column-main-color) 90%,
            transparent 90%,
            transparent 100%),
        repeating-linear-gradient(to right,
            transparent 0 5px,
            var(--column-main-color) 5px 10px)
}

.column .news-column h4 {
    font-size: 21px;
    margin: 2rem 0 0.75rem;
}

.column .news-column ul {
    list-style: none;
    /* padding-left: 8rem; */
    padding-left: 0;
    line-height: 2;
    font-size: 19px;
}

.column .news-column ul li span {
    font-size: 20px;
    font-weight: 500;
    margin-right: 1rem;
}

.column .news-column table {
    width: 100%;
    font-size: 19px;
}

.column .news-column th {
    background: #096DC3;
    color: #fff;
    text-align: center;
    padding: 10px;
    border: 1px solid #dcdcdc !important;
    border-width: unset !important;
    border-left: 0 !important;
    border-right: 0 !important;
}

.column .news-column th:first-child {
    border-left: 0 !important;
    border-right: 1px solid #dcdcdc !important;
}

.column .news-column td {
    padding: 10px 1rem;
    border: 1px solid #dcdcdc !important;
    border-left: 0 !important;
    border-right: 0 !important;
}

.column .news-column td:first-child {
    background: #e9e9e9;
    border-left: 0 !important;
    border-right: 1px solid #dcdcdc !important;
}

.column .news-column .news-content-text a {
    text-decoration: underline;
}

.column .news-column .news-content-text a:hover {
    color: #0090FA;
}

.column .news-column .news-content-text .p-box {
    border: 1px solid #868686;
    padding: 10px 1rem;
    margin: 2rem 0;
}

.column .news-column .news-content-text .p-box span {
    text-decoration: underline;
    font-weight: normal;
}

.column .author-box {
    position: relative;
    /* background-color: #e5e5e5;
    background-color: #e2e2e2;
    background-color: #ededed; */
    background-color: #e9e9e9;
    padding: 20px 24px;
    /* border-radius: 4px; */
    font-family: "Noto Sans JP", sans-serif;
    margin-top: 5rem;
}

.column .author-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 6px;
    background-color: #096DC3;
    /* border-top-left-radius: 4px; */
}

.column .author-box .author-title {
    font-size: 19px;
    color: #333;
    font-weight: 500;
    margin: 1rem 0;
    line-height: 1.6;
}

.column .author-box p {
    color: #333;
    font-size: 17px;
    line-height: 1.8;
}

.column .column-img-box {
    display: flex;
    justify-content: center;
}

.column .wp-block-gallery.has-nested-images figure.wp-block-image {
    display: flex !important;
    justify-content: center !important;
    align-content: center;
    flex-wrap: wrap;
}

.column .wp-block-gallery.has-nested-images figure.wp-block-image img,
.column .column-img-box img {
    width: 65% !important;
}

@media(max-width: 1699px) {

    .column .wp-block-gallery.has-nested-images figure.wp-block-image img,
    .column .column-img-box img {
        width: 70% !important;
    }
}

@media(max-width: 1535px) {

    .column .wp-block-gallery.has-nested-images figure.wp-block-image img,
    .column .column-img-box img {
        width: 75% !important;
    }
}

@media(max-width: 1399px) {
    .column .news-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .column .pagination button {
        width: 37px;
        height: 37px;
    }

    .column .news-single-title-box h2 {
        font-size: 34px !important;
    }

    .column .wp-block-gallery.has-nested-images figure.wp-block-image img,
    .column .column-img-box img {
        width: 90% !important;
    }
}

@media(max-width: 1350px) {

    .column .wp-block-gallery.has-nested-images figure.wp-block-image img,
    .column .column-img-box img {
        width: 95% !important;
    }
}

@media(max-width: 1299px) {

    .column .wp-block-gallery.has-nested-images figure.wp-block-image img,
    .column .column-img-box img {
        width: 100% !important;
    }
}

@media(max-width: 1200px) {
    .column .news-column .news-content-text h3 {
        font-size: 24px;
    }

    .column .news-column h4 {
        font-size: 20px;
    }

    .column .news-column ul {
        font-size: 17px;
    }

    .column .news-column ul li span {
        font-size: 18px;
    }

    .column .news-column .news-content-text p {
        font-size: 18px;
    }

    .column .news-column table {
        font-size: 17px;
    }

    .column .author-box p {
        font-size: 16px;
    }

    .column .author-box .author-title {
        font-size: 18px;
    }
}

@media(max-width: 991px) {
    .column .news-single-title-box h2 {
        font-size: 30px !important;
    }

    .column .page {
        flex-direction: column;
        gap: 5rem;
        padding: 0;
    }

    .column .sidebar {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
        width: 100%;
    }

    .column .news-column {
        width: 100%;
    }

    .column .sidebar .block {
        margin-bottom: 3.5rem;
        padding: 0;
    }

    .column #recent-articles {
        margin-bottom: -0.5rem;
    }

    .column .pagination {
        margin-top: 4rem;
    }
}

@media(max-width: 600px) {
    .column .news-container {
        grid-template-columns: 1fr;
    }

    .column .news-item {
        padding: 0;
    }
}

@media(max-width: 500px) {
    .column .news-button img {
        width: 25px;
        height: 25px;
    }

    .column .pagination button {
        width: 35px;
        height: 35px;
    }

    .column .news-single-title-box h2 {
        font-size: 26px !important;
    }

    .column .news-column .news-content-text p {
        font-size: 16px;
    }

    .column .news-column h4 {
        font-size: 18px;
    }

    .column .news-column ul {
        font-size: 16px;
    }

    .column .news-column ul li span {
        font-size: 17px;
    }

    .column .news-column table {
        font-size: 16px;
    }

    .column .author-box .author-title {
        font-size: 16px;
    }

    .column .author-box p {
        font-size: 15px;
    }
}

@media(max-width: 480px) {
    .column .sidebar h3 {
        font-size: 18px;
    }

    .column .search-box input {
        font-size: 14px;
    }

    .column .news-column .news-content-text h3 {
        font-size: 21px;
    }
}

.column .wp-block-gallery-1.has-nested-images figure.wp-block-image img {
    width: 100% !important;
}


.commercial-rental section {
    position: relative;
}

.commercial-rental .bubble-section {
    padding: 85rem 0 10rem;
}

.commercial-rental .office-management {
    padding-top: 3rem;
    margin-bottom: 5rem;
}

.commercial-rental .office-management-item {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: 2rem;
    border-bottom: 1.75px solid var(--main-color);
    padding-bottom: 2rem;
    padding-top: 2rem;
    font-size: 18px;
    line-height: 2;
}

.commercial-rental .office-management-item img {
    width: 100%;
}

.commercial-rental .office-management-item .h2 {
    text-align: start;
    margin-bottom: 2rem;
}

.commercial-rental .office-management-end {
    text-align: center;
    margin-top: 8rem;
}

.commercial-rental .solution-split__p02 {
    padding-top: 3rem;
}

.commercial-rental .cta-text02 {
    margin-bottom: 5rem;
}

@media (max-width: 1599px) {
    .commercial-rental .bubble-section {
        padding: 79rem 0 8rem;
    }

    .commercial-rental .office-management {
        padding-top: 1rem;
    }
}

@media (max-width: 991px) {
    .commercial-rental .bubble-section {
        padding: 79rem 0 5rem;
    }

    .commercial-rental .office-management {
        padding-top: 0rem;
        margin-bottom: 3rem;
    }

    .commercial-rental .office-management-item {
        grid-template-columns: 0.5fr 1fr;
    }

    .commercial-rental .cta__sub-title {
        padding-top: 1rem;
    }

    .commercial-rental .cta-text02 {
        margin-bottom: 4rem;
    }
}

@media (max-width: 813px) {
    .commercial-rental .bubble-section {
        padding: 81rem 0 5rem;
    }
}

@media (max-width: 780px) {
    .commercial-rental .bubble-section {
        padding: 83rem 0 5rem;
    }
}

@media (max-width: 767px) {
    .commercial-rental .bubble-section {
        padding: 109rem 0 5rem;
    }

    .commercial-rental .office-management-item {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 759px) {
    .commercial-rental .bubble-section {
        padding: 113rem 0 5rem;
    }
}

@media (max-width: 732px) {
    .commercial-rental .bubble-section {
        padding: 117rem 0 5rem;
    }
}

@media (max-width: 679px) {
    .commercial-rental .bubble-section {
        padding: 126rem 0 5rem;
    }
}

@media (max-width: 677px) {
    .commercial-rental .bubble-section {
        padding: 131rem 0 5rem;
    }
}

@media (max-width: 627px) {
    .commercial-rental .bubble-section {
        padding: 139rem 0 5rem;
    }
}

@media (max-width: 606px) {
    .commercial-rental .bubble-section {
        padding: 109rem 0 5rem;
    }
}

@media (max-width: 572px) {
    .commercial-rental .bubble-section {
        padding: 113rem 0 5rem;
    }
}

@media (max-width: 553px) {
    .commercial-rental .bubble-section {
        padding: 117rem 0 5rem;
    }
}

@media (max-width: 513px) {
    .commercial-rental .bubble-section {
        padding: 126rem 0 5rem;
    }
}

@media (max-width: 512px) {
    .commercial-rental .bubble-section {
        padding: 131rem 0 5rem;
    }
}

@media (max-width: 500px) {
    .commercial-rental .bubble-section {
        padding: 106rem 0 5rem;
    }

    .commercial-rental .solution-split__p02 {
        padding-top: 2rem;
    }

    .commercial-rental .solution-split__p02 .h2 {
        margin-bottom: 2.5rem;
    }

    .commercial-rental .office-management-item {
        font-size: 16.5px;
        line-height: 1.7;
    }
}

@media (max-width: 492px) {
    .commercial-rental .bubble-section {
        padding: 108rem 0 5rem;
    }
}

@media (max-width: 473px) {
    .commercial-rental .bubble-section {
        padding: 115rem 0 5rem;
    }
}

@media (max-width: 454px) {
    .commercial-rental .bubble-section {
        padding: 117rem 0 5rem;
    }
}

@media (max-width: 435px) {
    .commercial-rental .bubble-section {
        padding: 123rem 0 5rem;
    }
}

@media (max-width: 421px) {
    .commercial-rental .bubble-section {
        padding: 126rem 0 5rem;
    }
}

@media (max-width: 417px) {
    .commercial-rental .bubble-section {
        padding: 132rem 0 5rem;
    }
}

@media (max-width: 411px) {
    .commercial-rental .bubble-section {
        padding: 117rem 0 5rem;
    }
}

@media (max-width: 400px) {
    .commercial-rental .bubble-section {
        padding: 123rem 0 5rem;
    }
}

@media (max-width: 386px) {
    .commercial-rental .bubble-section {
        padding: 126.5rem 0 5rem;
    }
}

@media (max-width: 381px) {
    .commercial-rental .bubble-section {
        padding: 131.5rem 0 5rem;
    }
}

@media (max-width: 375px) {
    .commercial-rental .bubble-section {
        padding: 109.5rem 0 5rem;
    }
}

@media (max-width: 347px) {
    .commercial-rental .bubble-section {
        padding: 116rem 0 5rem;
    }
}

@media (max-width: 335px) {
    .commercial-rental .bubble-section {
        padding: 119rem 0 5rem;
    }
}

@media (max-width: 330px) {
    .commercial-rental .bubble-section {
        padding: 125rem 0 5rem;
    }
}



.page-single-nav {
    display: flex;
    justify-content: space-between;
    color: #848484;
    /* border-top: 1px solid #cacaca; */
    border-top: 1px solid #e6eef5;
    /* padding-top: 2.5rem; */
    padding-top: 6rem;
    margin-top: 4rem;
    padding-bottom: 2rem;
}

.page-single-nav p {
    font-size: 15px;
    margin: 0.5rem 0;
}

.page-single-nav a {
    padding: 6px 10px;
    border: 1px solid #002567;
    background: #fff;
    color: #002567;
    cursor: pointer;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    line-height: normal;
}

.page-single-nav a:hover {
    /* background: #002567;
    color: #fff; */
    color: var(--column-main-color);
}

.page-single-nav-left,
.page-single-nav-right {
    text-align: center;
    align-items: center;
    display: flex;
}

.page-single-nav-list {
    align-content: end;
}

.page-single-nav-list a {
    width: 100%;
    padding: 0.6rem 2rem;
    height: auto;
    color: #fff;
    /* background: #fff; */
    background: #002567;
    /* background: rgba(6, 95, 233, 0.06); */
    font-weight: 400;
    font-size: 17px;
}

.page-link-btn {
    text-align: center;
    margin: 2rem 0 0;
}

.page-link-btn a {
    width: 100%;
    padding: 12px 2rem;
    height: auto;
    color: #fff;
    background: #002567;
    font-weight: 400;
    font-size: 17px;
}

.page-single-nav-list a:hover,
.page-link-btn a:hover {
    opacity: .95;
    color: #fff;
}


@media (max-width: 991px) {
    .page-single-nav {
        padding-top: 4rem;
    }
}

@media (max-width: 500px) {

    .page-single-nav a,
    .page-single-nav-list a,
    .page-link-btn a {
        font-size: 15px;
    }
}



.privacy .h2,
.customer_harassment_policy .h2 {
    text-align: unset;
}

.privacy h4,
.customer_harassment_policy h4 {
    font-weight: 400;
    border-bottom: 1.5px dashed #777777;
    padding-bottom: 10px;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    color: #002567;
}

.privacy .section01 p,
.customer_harassment_policy .section01 p {
    /* color: #333; */
    font-weight: 300;
}

.privacy .section01 ul,
.customer_harassment_policy .section01 ul {
    font-size: 95%;
    font-weight: 300;
    padding: 0;
}

.privacy .section01 ul li,
.customer_harassment_policy .section01 ul li {
    list-style: none;
    padding-left: 1rem;
}

@media (max-width: 500px) {

    .privacy h4,
    .customer_harassment_policy h4 {
        margin-bottom: 0.75rem;
        margin-top: 2rem;
    }
}





/* footer */
/* ===== Small Banner ===== */
.footer-banner {
    padding: 7rem 0 8rem;
}

.privacy .footer-banner,
.customer_harassment_policy .footer-banner {
    background: var(--solution-bg);
}

.mini-banner {
    display: flex;
    gap: 2rem;
    margin: 0 6rem;
}

.mini-banner a {
    border: 1px solid #BFBFBF;
}

.mini-banner a:hover {
    opacity: .9;
}

footer {
    font-family: "Noto Sans JP", "メイリオ", Meiryo, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
}

.footer-menu {
    display: flex;
    justify-content: space-between;
    background: #eae9d7;
    padding: 4rem 5%;
    position: relative;
}

.footer-menu a {
    color: var(--main-color);
    text-decoration: none;
    font-size: 14px;
}

.footer-menu a:hover,
.footer-menu a:active {
    color: #235cba;
}

.footer-menu a img {
    width: 20%;
}

.footer-menu h5 {
    border-bottom: 2px dotted var(--main-color);
    padding-bottom: 7px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-menu h5 a {
    font-size: 15px;
    font-family: "M PLUS 2", sans-serif;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    line-height: 2;
}

.footer-menu i {
    font-size: 70%;
}

.footer-menu div {
    width: 13%;
}

.footer-cta {
    position: absolute;
    right: 5%;
    bottom: 5rem;
    width: unset !important;
}

.inquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 999px;
    text-decoration: none;
    background: linear-gradient(to bottom, var(--footer-btn-top), var(--footer-btn-bottom));
    border: 1px solid var(--footer-btn-border);
    color: var(--footer-btn-text) !important;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .18), inset 0 0 0 1px rgba(255, 255, 255, .15);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    font-size: 18px !important;
    font-family: "M PLUS 2", sans-serif;
    justify-content: space-evenly;
}

.inquiry-btn i.fa-envelope {
    font-size: 120%
}

.inquiry-btn i.fa-angle-right {
    font-size: 90%;
}

.inquiry-btn:hover {
    transform: translateY(-.2rem);
    filter: brightness(1.05);
    box-shadow: 0 10px 18px rgba(0, 0, 0, .22), inset 0 0 0 1px rgba(255, 255, 255, .2);
}

.footer-address-box {
    color: #fff;
    background: var(--footer-addr-bg);
    padding: 2rem 5%;
}

.footer-address-box p {
    font-size: 13px;
    font-weight: lighter;
}

.footer-logo {
    text-align: center;
    padding: 1rem 0 3rem;
}

.footer-logo img {
    width: 20%;
}

.footer-address {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.footer-address span {
    font-weight: normal;
}

.footer-btn {
    background: linear-gradient(to right, #a99f6c, #918b6c);
    border: 2px solid #fff;
    color: #fff !important;
    box-shadow: 0 0 0 2.5px #9b9488 !important;
}

.copyright {
    background: var(--main-color);
    color: #fffffff0;
    padding: 13.5px 10px;
    text-align: center;
    margin: 0;
    font-family: "M PLUS 2", sans-serif;
    font-weight: 300;
}

@media (max-width: 1599px) {
    .footer-logo img {
        width: 25%;
    }
}

@media (max-width: 1445px) {
    .footer-cta {
        right: 2rem;
    }

    .footer-address-box {
        padding: 2rem;
    }

    .footer-menu {
        flex-wrap: wrap;
        gap: 2rem 3rem;
        padding: 4rem 2rem;
    }

    .footer-menu>div {
        flex: 1 1 calc(33.333% - 3rem);
        /* min-width: 165px; */
        min-width: 110px;
    }
}

@media (max-width: 1145px) {
    .footer-logo img {
        width: 30%;
    }
}

@media (max-width: 1024px) {
    .mini-banner {
        margin: 0;
    }

    .footer-banner {
        padding: 6rem 0;
    }

    .footer-address {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 0 5rem;
    }
}

@media (max-width: 960px) {
    .footer-logo img {
        width: 35%;
    }
}

@media (max-width: 791px) {
    .footer-address {
        padding: 0 1rem;
    }
}

@media (max-width: 767px) {
    .mini-banner {
        flex-direction: column;
    }

    .footer-logo img {
        width: 40%;
    }

    .copyright {
        font-size: 15px;
    }
}

@media (max-width: 679px) {
    .footer-logo img {
        width: 50%;
    }

    .footer-address {
        display: flex;
        justify-content: unset;
        gap: 0;
        flex-direction: column;
        text-align: center;
    }

    .footer-address-box {
        padding: 2rem 0;
    }
}

@media (max-width: 670px) {
    .footer-menu {
        gap: 1rem 3rem;
        padding: 2rem 2rem 3.5rem;
    }

    .footer-cta {
        position: static;
        text-align: center;
    }
}

@media (max-width: 500px) {
    .footer-logo img {
        width: 60%;
    }

    .footer-banner {
        padding: 4rem 0;
    }

    .inquiry-btn {
        padding: 18px 30px;
    }

    .footer-menu a img {
        width: 18%;
    }

    .footer-address-box p {
        font-size: 14px;
    }

    .copyright {
        font-size: 13px;
    }
}

@media (max-width: 390px) {
    .footer-logo img {
        width: 75%;
    }
}


@media print {
    header,
    footer,
    .btn,
    .sidebar,
    .floating-menu,
    .breadcrumb,
    .footer-banner {
        display:none !important;
    }

    * {
        background:none !important;
        box-shadow:none !important;
    }

    body,
    p,
    h1,
    h2,
    h3,
    a {
        color:#000 !important;
    }

    a{
        text-decoration:underline;
    }

    a::after{
        content:"";
    }

    body{
        margin:20mm;
    }

    .section{
        break-inside:avoid;
        margin:0 !important;
        padding:20px 0 !important;
        min-height:auto !important;
    }

    .container{
        padding:0 !important;
    }

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

    .no-print{
        display:none !important;
    }
}