@charset "UTF-8";

/* base
------------------------------*/

:root {
    --color-primary: #1a2a4a;
    --color-accent: #e63329;
    --color-sub: #4db8d4;
    --color-white: #ffffff;
    --color-bg: #f5f5f5;
    --color-gray: #ddd;
    --maring-top-pc: 180px;
    --maring-top-sp: 100px;
    --margin-top-swiper-pc: 30px;
    --margin-top-swiper-sp: 10px;
    --easing: cubic-bezier(.2, 1, .2, 1);
    --transition: .8s var(--easing);
    --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
    --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
    --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #fff;
    --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(255,255,255, .2);
}

body {
    background: #fff;
    font-size: 20px;
    padding: 0;
    margin: 0;
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
}

@media only screen and (max-width: 991px) {
    body {
        line-height: 1.35;
    }
}

h1, h2, h3, h4, h5, h6,
nav, button, .navi-btn, .faq-tab {
    font-family: "Montserrat", sans-serif;
}

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

::-moz-selection {
    color: #fff;
    background: var(--color-primary);
}

::selection {
    color: #fff;
    background: var(--color-primary);
}

img {
    border: 0;
    margin: 0;
}

figure {
    margin: 0;
}

p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #333;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

main {
    background: #fff;
    display: block;
}

.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 10000;
    transform: translateY(-140%);
    border-radius: 6px;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 14px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
    outline: 3px solid var(--color-sub);
    outline-offset: 3px;
}

main:focus {
    outline: none;
}

.form-field-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* module flow and gallery
------------------------------*/


/* slider */

[class*=swiper]:focus {
    outline: none;
}

.slide-media,
.thumb-media {
    position: relative;
    overflow: hidden;
}

.slide-media img,
.thumb-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}


/* 前へ / 次へボタン */

.swiper-button-prev,
.swiper-button-next {
    display: grid;
    place-content: center;
    /*width: 6.4rem;
  height: 6.4rem;*/
    width: 50px;
    height: 50px;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

@media only screen and (min-width: 1025px) {
    .swiper-button-prev::before,
    .swiper-button-next::before {
        -webkit-transition: var(--transition);
        transition: var(--transition);
    }
    .swiper-button-prev:hover::before,
    .swiper-button-next:hover::before {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

.swiper-button-prev::before,
.swiper-button-next::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    border-radius: 50%;
    /*-webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);*/
    background: var(--color-accent);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    width: 1.2rem;
    height: 1.2rem;
    content: "";
    border: solid #fff;
    border-width: 2px 2px 0 0;
}

.swiper-button-prev::after {
    margin-left: 0.4rem;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.swiper-button-next::after {
    margin-right: 0.4rem;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.swiper-button-disabled {
    pointer-events: none;
    opacity: 0;
}


/* -----------------------------------------------
* header
-------------------------------------------------- */

header {
    text-align: center;
    padding: 25px 0;
    position: fixed;
    /* 固定位置に設定 */
    top: 0;
    /* 画面上部に配置 */
    left: 0;
    width: 100%;
    /* 横幅を画面全体に設定 */
    background: white;
    /* 背景色を設定（必要に応じて透明にすると見やすい） */
    z-index: 1000;
    /* 他の要素より前面に表示 */
}

header nav {
    font-size: 16px;
    display: flex;
    gap: 60px;
    justify-content: center;
    line-height: 1.75;
    width: 100%;
}

header nav .logo {
    margin-right: 65px;
}

header nav .logo img {
    width: 160px;
}

header nav .navi {
    padding-top: 20px;
    line-height: 1.35;
}

header nav .navi-btn {
    background: var(--color-accent);
    border-radius: 6px;
    color: #fff;
    line-height: 1.75;
    padding: 10px 60px;
    padding-top: 14px;
    text-align: center;
    display: inline-block;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

header nav .navi-btn:hover {
    opacity: 0.85;
}

header nav .navi-btn a {
    color: white;
    text-decoration: none;
    display: block;
}

header .navi a {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: opacity 0.3s ease;
}

header .navi a:hover {
    opacity: 0.4;
}

header .navi a.is-current {
    color: var(--color-accent);
    font-weight: 700;
}

header .navi a.is-current::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 999px;
}

header nav a.is-current-contact .navi-btn {
    background: #c92922;
}

@media only screen and (max-width: 991px) {
    header {
        display: none;
        visibility: hidden;
    }
}


/* -----------------------------------------------
* slide image
-------------------------------------------------- */

.section-slide-img {
    margin-top: 135px;
}

.block-title {
    margin: 35px 0 10px;
}

.block-title .tit {
    text-align: center;
    font-size: 48px;
    line-height: 1.25;
    font-weight: 600;
    position: relative;
    width: fit-content;
    height: auto;
    margin: auto;
}

.block-title .tit img {
    max-width: 840px;
}

@media only screen and (max-width: 991px) {
    .section-slide-img {
        margin-top: 85px;
    }
    .block-title .tit {
        max-width: 840px;
        padding: 0 25px;
    }
    .block-title .tit img {
        width: 100%;
    }
}

.gallery03 .l-inner {
    padding-bottom: 0;
}

.gallery03 .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.gallery03 .swiper-slide {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.gallery03 .slide {
    width: var(--slide-width);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    --slide-width: 309px;
}

@media only screen and (max-width: 599px) {
    .gallery03 .slide,
    .gallery03 .slide img {
        --slide-width: 220px;
        height: 100px;
    }
}

.gallery03 .slide-media {
    height: var(--slide-width);
    height: 170px;
    margin-right: 18px;
}

.gallery03 .slide-media img {
    border-radius: 6px;
}


/* -----------------------------------------------
* lead
-------------------------------------------------- */

.lead {
    width: 1100px;
    margin: 0 auto;
    margin-top: 70px;
}

.lead h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.lead p {
    font-weight: 300px;
}

.lead fieldset {
    margin-top: 30px;
    border-radius: 7px;
    padding: 10px 30px 20px 30px;
}

.lead fieldset legend {
    font-weight: bold;
    font-size: 20px;
    padding: 0 20px;
}

.lead fieldset ul {
    margin: 0;
    margin-left: 20px;
    margin-top: 10px;
}

.lead fieldset li {
    list-style-type: disc;
    margin: 0;
    margin-bottom: 4px;
}

.lead fieldset li:last-child {
    margin-bottom: 0;
}

.lead fieldset h2 {
    background: var(--color-primary);
    color: #fff;
    border-radius: 7px;
    margin-top: 30px;
    padding: 15px 20px 5px;
    font-size: 24px;
}

.lead fieldset .block {
    display: flex;
    margin-top: 20px;
    gap: 30px;
    align-items: center;
    line-height: 1.6;
}

.lead fieldset .block div:first-child {
    width: 100%;
}

.lead fieldset .block div:first-child img {
    width: 100%;
    height: auto;
}

.lead fieldset li span,
.lead fieldset .block p span {
    background: linear-gradient(transparent 70%, #ff6 70%);
}

.lead fieldset li {
    margin-bottom: 10px;
}

@media only screen and (max-width: 991px) {
    .lead {
        padding: 0 15px;
        width: auto;
        margin: 0 auto;
        margin-top: 50px;
    }
    .lead h1 {
        font-size: 22px;
        margin-bottom: 10px;
        line-height: 1.35;
    }
    .lead fieldset {
        padding: 10px 8px 20px 8px;
    }
    .lead fieldset legend {
        padding: 0 10px;
    }
    .lead fieldset h2 {
        font-size: 18px;
        padding: 10px 10px 5px;
    }
    .lead fieldset .block {
        display: flex;
        margin-top: 20px;
        gap: 30px;
        align-items: center;
        line-height: 1.6;
    }
    .lead fieldset .block div:first-child {
        display: none;
    }
    .lead fieldset .block div:first-child img {
        width: 100%;
        height: auto;
    }
}


/* -----------------------------------------------
* aboutus
-------------------------------------------------- */

.aboutus {
    width: 1100px;
    margin: 0 auto;
    padding-top: 5px;
    margin-top: -5px;
}

.aboutus h2 {
    margin-top: 140px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    background: #e7e8eb;
    font-size: 46px;
    padding: 60px 0 60px 100px;
    color: var(--color-primary);
    border-radius: 7px;
    background-image: url('./img/bg-aboutus.png');
    background-repeat: no-repeat;
    background-position: right 70px center;
    background-size: auto;
}

.aboutus h3 {
    font-size: 26px;
    margin-top: 30px;
}

.aboutus .block {
    display: flex;
    margin-top: 10px;
    gap: 40px;
    align-items: center;
    line-height: 1.6;
}

.aboutus .block div {
    order: 2;
}

.aboutus .block p {
    order: 1;
}

@media only screen and (max-width: 991px) {
    .aboutus {
        width: 100%;
        margin: 0 auto;
    }
    .aboutus h2 {
        margin-top: 70px;
        background: #e7e8eb;
        font-size: 30px;
        padding: 55px 0 55px 0px;
        text-align: center;
        background-image: url('./img/bg-aboutus.png');
        background-repeat: no-repeat;
        background-position: right 70px center;
        background-size: 80%;
    }
    .aboutus h3 {
        font-size: 20px;
        margin-top: 20px;
        padding: 0 15px;
    }
    .aboutus .block {
        flex-direction: column;
        display: flex;
        margin-top: 10px;
        gap: 20px;
        align-items: center;
        line-height: 1.6;
        padding: 0 15px;
    }
    .aboutus .block div {
        order: 1;
    }
    .aboutus .block p {
        order: 2;
        line-height: 1.35;
    }
}


/* -----------------------------------------------
* logo scroll
-------------------------------------------------- */

@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.scroll-infinity {
    margin-top: 60px;
}

.scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
}

.scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0;
}

.scroll-infinity__list li {
    padding-right: 0px;
}

.scroll-infinity__list--left {
    animation: infinity-scroll-left 40s infinite linear 0.5s both;
}

.scroll-infinity__item {
    width: calc(100vw /10);
}

.scroll-infinity__item>img {
    width: 55%;
}

@media only screen and (max-width: 991px) {
    .scroll-infinity {
        margin-top: 20px;
    }
    .scroll-infinity__item {
        width: calc(100vw /5);
    }
    .scroll-infinity__item>img {
        width: 65%;
    }
}


/* -----------------------------------------------
* serivce
-------------------------------------------------- */

.serivce {
    width: 1100px;
    margin: 0 auto;
    padding-top: 5px;
    margin-top: -5px;
}

.serivce h2 {
    margin-top: 140px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 46px;
    color: var(--color-primary);
    text-align: center;
}

.serivce .block {
    display: flex;
    margin-top: 30px;
    gap: 60px;
    align-items: center;
}

.serivce .block .imgs {
    margin: 0;
}

.serivce .block div p {
    line-height: 1.6;
}

.serivce .block .imgs img {
    margin: 0;
    padding: 0;
    display: block;
}

.serivce .block .imgs img:first-child {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.serivce .block .imgs img:last-child {
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.serivce .block .service-s {
    display: flex;
    margin-top: 20px;
    gap: 20px;
    justify-content: space-between;
}

.serivce .block .service-s img {
    width: 130px;
    height: auto;
}

.serivce .block .service-s div {
    text-align: center;
}

.serivce .block p:first-child {
    display: block;
    margin-bottom: 25px;
}

.serivce .block p:last-child {
    display: block;
    margin-top: 25px;
}

@media only screen and (max-width: 991px) {
    .serivce {
        width: auto;
        margin: 0 auto;
        padding-left: 15px;
        padding-right: 15px;
    }
    .serivce h2 {
        margin-top: 70px;
        font-size: 30px;
        text-align: center;
        line-height: 1.35;
    }
    .serivce .block {
        display: block;
        margin-top: 20px;
        gap: 0px;
    }
    .serivce .block .imgs img:first-child {
        border-radius: 7px;
        width: 100%;
        margin-bottom: 10px;
    }
    .serivce .block .imgs img:last-child {
        display: none;
    }
    .serivce .block p:first-child {
        display: block;
        margin-top: 10px;
        margin-bottom: 25px;
    }
    .serivce .block .service-s {
        gap: 15px;
    }
    .serivce .block .service-s img {
        width: 100px;
        height: auto;
    }
}


/* -----------------------------------------------
* whychooseus
-------------------------------------------------- */

.whychooseus {
    width: 1100px;
    margin: 0 auto;
    margin-top: 60px;
}

.whychooseus h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 46px;
    color: var(--color-primary);
    border-radius: 7px;
    border: 1px solid var(--color-primary);
    ;
    text-align: center;
    margin-bottom: 30px;
}

.whychooseus .block {
    display: flex;
    margin-top: 20px;
    gap: 40px;
    align-items: center;
}

.whychooseus h3 {
    margin-bottom: 5px;
}

.whychooseus .block-child {
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: center;
}

.whychooseus .block-child div:first-child {
    flex: 0 0 186px;
}

.whychooseus .block-child div:first-child img {
    width: 100%;
    height: auto;
}

.whychooseus .block-child div:last-child {
    flex: 1;
}

@media only screen and (max-width: 991px) {
    .whychooseus {
        width: 100%;
        margin-top: 50px;
        padding: 0 15px;
    }
    .whychooseus h2 {
        font-size: 30px;
        margin-bottom: 40px;
        padding: 10px 0px;
    }
    .whychooseus .block {
        display: block;
        margin-top: 0px;
        gap: 0px;
    }
    .whychooseus .block-child {
        display: block;
        margin-bottom: 30px;
    }
    .whychooseus .block-child div:first-child {
        text-align: center;
    }
    .whychooseus .block-child div:first-child img {
        width: 150px;
        height: auto;
    }
    .whychooseus .block1 .block-child:nth-child(2) img {
        margin-bottom: -10px;
    }
    .whychooseus .block2 .block-child:nth-child(1) img {
        margin-bottom: 0px;
    }
    .whychooseus .block2 .block-child:nth-child(2) img {
        margin-bottom: -5px;
    }
    .whychooseus .block-child h3 {
        margin-bottom: 10px;
        margin-top: 0px;
        text-align: center;
        font-size: 20px;
        font-weight: 700;
    }
}


/* -----------------------------------------------
* flow1
-------------------------------------------------- */

.flow01 {
    width: 1100px;
    margin: 0 auto;
    line-height: 1.6;
    padding-top: 5px;
    margin-top: -5px;
}

.flow01 h2 {
    margin-top: 140px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 46px;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 30px;
}

.flow01 .lead {
    width: 730px;
    margin: 0 auto;
}

.flow01 h3 {
    margin-bottom: 5px;
}

.flow01 p {
    line-height: 1.6;
}

@media only screen and (max-width: 991px) {
    .flow01 {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .flow01 h2 {
        margin-top: 70px;
        font-size: 30px;
        line-height: 1.35;
        margin-bottom: 20px;
    }
    .flow01 .lead {
        width: 100%;
        margin: 0 auto;
    }
    .flow01 p {
        line-height: 1.35;
    }
}

.flow01 {
    /* コンテナ */
    overflow: hidden;
    /* ページネーション（親） */
    /* ページネーション（子） */
    /* 前へ / 次へボタン（親） */
    /* スライド（親） */
    /* スライド（子） */
}

.flow01 .swiper-main {
    overflow: visible;
    margin-top: 50px;
}

.flow01 .swiper-main {
    max-width: 865px;
    margin: auto;
}

.flow01 .swiper-pagination-main {
    max-width: 800px;
    margin: auto;
}

@media only screen and (max-width: 1024px) and (min-width: 600px) {
    .flow01 .swiper-main,
    .flow01 .swiper-pagination-main {
        max-width: calc(100% - 6.4rem);
    }
}

@media only screen and (max-width: 599px) {
    .flow01 .swiper-main,
    .flow01 .swiper-pagination-main {
        max-width: calc(100% - 3.2rem);
    }
}

.flow01 .swiper-pagination-main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 70px;
    margin-top: 70px;
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet {
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-bottom: 2.4rem;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    text-align: center;
    color: var(--color-gray);
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet::before,
.flow01 .swiper-pagination-main .swiper-pagination-bullet::after {
    position: absolute;
    content: "";
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background-color: var(--color-primary);
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet::before {
    z-index: 1;
    right: 0;
    bottom: -6px;
    left: 0;
    width: 1.0rem;
    height: 1.0rem;
    margin: auto;
    border-radius: 100px;
    -webkit-box-shadow: 0 0 0 5px var(--color-bg);
    box-shadow: 0 0 0 5px var(--color-bg);
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet::after {
    right: 50%;
    bottom: 0;
    width: 100%;
    height: 3px;
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet:first-child::after {
    display: none;
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet .step {
    font-size: 18px;
    font-weight: 500;
    padding-right: 3px;
}

@media only screen and (max-width:991px) {
    .flow01 .swiper-pagination-main .swiper-pagination-bullet {
        font-size: 20px;
        padding-bottom: 18px;
    }
    .flow01 .swiper-pagination-main .swiper-pagination-bullet::before {
        bottom: -5px;
    }
    .flow01 .swiper-pagination-main .swiper-pagination-bullet .step {
        font-size: 14px;
        font-weight: bold;
        display: block;
        margin-bottom: 0.5em;
        text-indent: 0.5em;
        /*ここから追加*/
        margin-top: -40px;
    }
    .flow01 .swiper-wrapper {
        /*background-color: lime;*/
        margin-top: -25px;
    }
    .flow01 .swiper-pagination-main .swiper-pagination-bullet::before {
        bottom: -6px;
        width: 0.7rem;
        height: 0.7rem;
    }
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet-active {
    color: var(--color-primary);
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet-active::before {
    -webkit-box-shadow: 0 0 0 4px var(--color-bg), 0 0 0 7px var(--color-primary);
    box-shadow: 0 0 0 4px var(--color-bg), 0 0 0 7px var(--color-primary);
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet-active~*::before,
.flow01 .swiper-pagination-main .swiper-pagination-bullet-active~*::after {
    background-color: var(--color-gray);
}

.flow01 .swiper-pagination-sub {
    font-size: 0;
    text-align: center;
}

.flow01 .swiper-pagination-sub .swiper-pagination-bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    vertical-align: top;
    background-color: var(--color-gray);
}

.flow01 .swiper-pagination-sub .swiper-pagination-bullet:not(:first-child) {
    margin-left: 8px;
}

.flow01 .swiper-pagination-sub .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
}

.flow01 .swiper-button-prev,
.flow01 .swiper-button-next {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    margin: auto;
}

.flow01 .swiper-button-prev::before,
.flow01 .swiper-button-next::before {
    display: none;
}

.flow01 .swiper-button-prev::after,
.flow01 .swiper-button-next::after {
    position: relative;
    width: 2.2rem;
    height: 2.2rem;
    content: "";
    border: solid var(--color-primary);
    border-width: 4px 4px 0 0;
}

@media only screen and (max-width:991px) {
    .flow01 .swiper-button-prev::after,
    .flow01 .swiper-button-next::after {
        width: 2.2rem;
        height: 2.2rem;
    }
}

@media only screen and (min-width: 1025px) {
    .flow01 .swiper-button-prev::after,
    .flow01 .swiper-button-next::after {
        -webkit-transition: var(--transition);
        transition: var(--transition);
    }
}

.flow01 .swiper-button-prev {
    right: calc(100% + 0.6rem);
}

@media only screen and (min-width: 1025px) {
    .flow01 .swiper-button-prev:hover::after {
        -webkit-transform: translateX(-0.8rem) rotate(-135deg);
        transform: translateX(-0.8rem) rotate(-135deg);
    }
}

.flow01 .swiper-button-next {
    left: calc(100% + 0.6rem);
}

@media only screen and (max-width:991px) {
    .flow01 .swiper-button-prev {
        right: calc(100% - 1rem);
    }
    .flow01 .swiper-button-next {
        left: calc(100% - 1rem);
    }
}

@media only screen and (min-width: 1025px) {
    .flow01 .swiper-button-next:hover::after {
        -webkit-transform: translateX(0.8rem) rotate(45deg);
        transform: translateX(0.8rem) rotate(45deg);
    }
}

.flow01 .swiper-slide {
    height: auto;
}

.flow01 .mainslide {
    background: #f7f8f7;
    width: 100%;
    height: 100%;
    padding: 10px 40px 30px;
    text-align: left;
    border-radius: 7px;
}

.flow01 .subslide {
    /*padding: 1.8rem;*/
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0!important;
    margin: 0!important;
}

.flow01 .subslide img {
    width: 187px;
    height: 198px;
    margin-top: 30px;
}

.flow01 .subslide-media {
    margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
    .flow01 .mainslide {
        padding: 0;
    }
    .flow01 .subslide {
        display: block;
        align-items: center;
        gap: 0px;
    }
    .flow01 .subslide-media {
        text-align: center;
    }
    .flow01 .subslide img {
        width: 100px;
        height: auto;
        margin-top: 20px;
    }
    .flow01 .subslide h3 {
        padding: 0 10px;
        font-size: 20px;
        line-height: 1.55;
        margin-bottom: 10px;
        margin-top: 0;
    }
    .flow01 .subslide p {
        padding: 0 10px;
        padding-bottom: 20px;
    }
}


/* -----------------------------------------------
* cta
-------------------------------------------------- */

.cta {
    width: 100%;
    margin-top: 120px;
    padding: 90px 24px;
    background: var(--color-primary);
}

.cta .cta-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: 54px;
    align-items: start;
}

.cta .cta-copy h2 {
    margin: 14px 0 18px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2rem, 4vw, 3.75rem);
    font-weight: 900;
    line-height: 1.06;
}

.cta .cta-copy p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.9;
}

.cta .cta-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta .cta-whatsapp,
.cta .cta-line {
    min-width: 190px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 6px;
    background: var(--color-accent);
    color: #fff;
    text-align: left;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cta .cta-line {
    background: #05b800;
    min-width: 394px;
}

.cta .cta-whatsapp {
    background: #25D366;
}

.cta .cta-whatsapp .icon img,
.cta .cta-line .icon img {
    display: block;
    filter: brightness(0) invert(1);
}

.cta .cta-whatsapp:hover,
.cta .cta-line:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.cta .cta-whatsapp img {
    width: 34px;
    height: 34px;
}

.cta .cta-line img {
    width: 32px;
    height: 32px;
}

.cta .cta-line-card {
    display: grid;
    grid-template-columns: 142px auto;
    align-items: center;
    justify-content: center;
    gap: 26px;
    width: min(100%, 520px);
    margin-top: 30px;
    padding: 18px 22px;
    border-radius: 6px;
    background: #20bf00;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cta .cta-line-card:hover {
    opacity: 0.94;
    transform: translateY(-2px);
}

.cta .cta-line-qr {
    display: block;
    width: 142px;
    padding: 6px;
    border-radius: 3px;
    background: #fff;
}

.cta .cta-line-qr img {
    display: block;
    width: 100%;
}

.cta .cta-line-content {
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 14px;
    min-width: 0;
}

.cta .cta-line-service {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 0 10px;
    align-items: center;
    width: fit-content;
    color: #fff;
    line-height: 1.05;
    text-transform: uppercase;
}

.cta .cta-line-service img {
    grid-row: span 2;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #fff;
    padding: 5px;
}

.cta .cta-line-service span {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1.05;
}

.cta .cta-line-service strong {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.05;
}

.cta .cta-line-id {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.2;
    padding: 8px 12px;
}

.cta .cta-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta .cta-info span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.cta .cta-info strong {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
}

.cta .cta-direct-contact {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 42px;
}

.cta .cta-direct-contact a {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.cta .cta-direct-contact a:hover {
    opacity: 0.75;
}

.cta .cta-note {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 0.86rem !important;
}

.cta .cta-visual {
    position: relative;
}

.cta .cta-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.cta .cta-form-panel {
    width: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
    padding: 28px;
}

.cta .cta-form-panel .wpcf7 {
    width: 100%;
}

.cta .cta-form-panel .wpcf7-form {
    display: grid;
    gap: 14px;
}

.cta .cta-form-panel .contact-form-field {
    display: grid;
    gap: 8px;
    margin: 0;
}

.cta .cta-form-panel .contact-form-field > span:first-child {
    color: #2d2d2d;
    font-family: "Montserrat", sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.35;
}

.cta .cta-form-panel .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.cta .cta-form-panel input,
.cta .cta-form-panel select,
.cta .cta-form-panel textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid #d4d0c5;
    border-radius: 2px;
    background: #fff;
    color: #222;
    font-family: "Noto Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    padding: 13px 15px;
}

.cta .cta-form-panel textarea {
    min-height: 96px;
    resize: vertical;
}

.cta .cta-form-panel input:focus,
.cta .cta-form-panel select:focus,
.cta .cta-form-panel textarea:focus {
    border-color: var(--color-sub);
    box-shadow: 0 0 0 3px rgba(77, 184, 212, 0.18);
    outline: none;
}

.cta .cta-form-panel .form-wide,
.cta .cta-form-panel .form-wide-field,
.cta .cta-form-panel .wpcf7-form-control-wrap[data-name="message"],
.cta .cta-form-panel .cta-submit,
.cta .cta-form-panel .wpcf7-response-output {
    grid-column: 1 / -1;
}

.cta .cta-form-panel .cta-submit {
    margin-top: 4px;
}

.cta .cta-form-panel .cta-submit .wpcf7-submit {
    width: auto;
    min-width: 174px;
    min-height: 54px;
    border: 0;
    border-radius: 2px;
    background: var(--color-accent);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    padding: 15px 30px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cta .cta-form-panel .cta-submit .wpcf7-submit:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.cta .cta-form-panel .cta-submit p {
    margin-top: 10px;
    color: #555;
    font-size: 0.83rem;
    line-height: 1.55;
}

.cta .cta-form-panel .wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 0.78rem;
}

.cta .cta-form-panel .wpcf7-response-output:empty {
    display: none;
}

@media only screen and (max-width: 991px) {
    .cta {
        margin-top: 70px;
        padding: 64px 16px;
    }

    .cta .cta-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .cta .cta-copy h2 {
        font-size: 2rem;
    }

    .cta .cta-contact {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .cta .cta-whatsapp,
    .cta .cta-line {
        width: 100%;
        min-width: 0;
    }

    .cta .cta-direct-contact {
        flex-direction: column;
        gap: 8px;
    }

    .cta .cta-line-card {
        width: 100%;
    }

    .cta .cta-visual img {
        height: auto;
    }

    .cta .cta-form-panel {
        padding: 24px 20px;
    }
}

@media only screen and (max-width: 520px) {
    .cta .cta-line-card {
        grid-template-columns: 116px auto;
        gap: 16px;
        padding: 16px;
    }

    .cta .cta-line-qr {
        width: 116px;
    }

    .cta .cta-line-service {
        grid-template-columns: 30px 1fr;
        gap: 0 8px;
    }

    .cta .cta-line-service img {
        width: 30px;
        height: 30px;
    }

    .cta .cta-line-service strong {
        font-size: 1.12rem;
    }

    .cta .cta-line-id {
        font-size: 0.82rem;
        padding: 7px 10px;
    }
}


/* -----------------------------------------------
* cta-form 
-------------------------------------------------- */

.cta-form {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    margin-top: 60px;
}

.cta-form h3 {
    margin-bottom: 30px;
}

.cta-form form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cta-form input,
.cta-form select {
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
    font-size: 18px;
    color: #212121;
}

.cta-form input::placeholder,
.cta-form select::placeholder {
    font-size: 20px;
    color: #888;
    font-family: "Montserrat", sans-serif;

}

.cta-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('./img/arrow-down.svg');
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: right 13px center;
    padding-right: 40px;
    font-family: "Montserrat", sans-serif;

}

.cta-submit {
    grid-column: span 2;
    text-align: center;
    margin-top: 20px;
}

.cta-submit button {
    background-color: var(--color-accent);
    color: white;
    padding: 20px 60px 15px;
    font-size: 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s ease;
    font-family: "Montserrat", sans-serif;

}

.cta-submit button:hover {
    transform: translateY(-5px);
}

.cta-submit p {
    margin-top: 15px;
}

@media only screen and (max-width: 991px) {
    .cta-form {
        max-width: auto;
        padding: 0 20px;
    }
    .cta-form h3 {
        margin-bottom: 15px;
    }
    .cta-form form {
        display: block;
    }
    .cta-form form input,
    .cta-form form select {
        margin-bottom: 20px;
    }
    .cta-form form select.preferred_renovation {
        margin-bottom: 0px;
    }
}

---------------------------------------------- */

/* -----------------------------------------------
* footer
-------------------------------------------------- */

.footer {
    width: 100%;
    background: #fff;
    padding: 42px 24px;
    color: #333;
    font-size: 14px;
    margin-top: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    background: #fff;
    border-radius: 6px;
}

.footer-logo {
    width: 150px;
    display: block;
}

.footer-company {
    max-width: 470px;
}

.footer-brand p,
.footer-company address,
.footer-legal p {
    color: #333;
    font-size: 13px;
    line-height: 1.6;
}

.footer-company address {
    color: #666;
    font-style: normal;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 22px;
    text-align: right;
}

.privacy-policy {
    color: #333;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    transition: opacity 0.3s ease;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.privacy-policy:hover {
    opacity: 0.7;
}

@media only screen and (max-width: 991px) {
    .footer {
        padding: 36px 20px;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 26px;
    }

    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        text-align: left;
    }

    .footer-logo {
        width: 140px;
    }

    .footer-brand p,
    .footer-company address,
    .footer-legal p {
        font-size: 12px;
    }
}


/* -----------------------------------------------
* Navigation for Smartphone
-------------------------------------------------- */

.block-menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    position: fixed;
    z-index: 6500;
    width: 100%;
    height: 60px;
    top: 0;
    visibility: hidden;
    /*padding-top:16px;*/
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.block-menu-btn .logo {
    /*position: absolute;
  left: 50%;
  transform: translateX(-50%);*/
    padding-left: 10px;
    margin-top: 10px;
}

.block-menu-btn .logo img {
    width: 120px;
}

.block-menu-btn .navi-btn {
    background: var(--color-accent);
    border-radius: 50px;
    line-height: 1.05;
    padding: 12px 15px 6px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    margin-right: 15px;
    font-size: 16px;
}

.block-menu-btn .navi-btn a {
    color: #fff;
}

.block-menu-btn .side-right {
    margin-left: auto;
    padding-right: 15px;
    display: flex;
}


/*.block-menu-btn .icon-contact img {
  width:46px;
  padding:8px 18px 0 0;
  filter: invert(37%) sepia(98%) saturate(442%) hue-rotate(314deg) brightness(97%) contrast(100%);
}*/

.block-menu-btn .menu-btn {
    /*display: flex;
  flex-direction: column;*/
    align-items: center;
    /*flex-grow: 0;*/
    padding: 9px 0px;
    height: 60px;
}


/*.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}*/

.menu-trigger,
.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}

.menu-trigger {
    position: relative;
    width: 32px;
    height: 24px;
}

.menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 4px;
}

.menu-trigger span:nth-of-type(1) {
    top: 0;
}

.menu-trigger span:nth-of-type(2) {
    top: 10px;
}

.menu-trigger span:nth-of-type(3) {
    bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
}

@media only screen and (max-width: 991px) {
    .block-menu-btn {
        visibility: visible;
    }
}

.burger-navi .overlay {
    position: fixed;
    top: 0;
    z-index: 997;
    display: none;
    width: 100%;
    height: 100%;
    /*background:var(--color-primary);*/
    background: #fff;
    padding-top: 42px;
    display: none;
    font-size: 20px;
    overflow-y: auto;
}

.burger-navi .menu-sp {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 70px;
    gap: 40px;
}

.burger-navi .menu-sp > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 0 24px;
}

.burger-navi .icon {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    justify-content: center;
}

.burger-navi .navi-btn {
    background: var(--color-accent);
    border-radius: 50px;
    line-height: 1.75;
    padding: 10px 50px 6px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
}

.burger-navi .navi-btn a {
    color: #fff;
}


/* -----------------------------------------------
* COMPANY INFO
-------------------------------------------------- */

.company-page {
    padding-top: 162px;
    color: #000;
}

.company-page .wrapper-company {
    max-width: 1170px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.company-page .txt-head {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 46px;
    color: var(--color-primary);
    margin: 0;
}

.company-page .txt-topic {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 46px;
    color: var(--color-primary);
    margin: 0;
}

.company-page .txt-desc {
    font-weight: 400;
    font-size: 20px;
    margin: 0;
}

.company-page .mt44 {
    margin-top: 44px;
}

.company-page .mt34 {
    margin-top: 34px;
}

.company-page .mt100 {
    margin-top: 100px;
}

.company-page .section-head {
    padding: 70px 0 70px 86px;
    border-radius: 10px;
    background: #E7E8EC;
}

.company-page .section-contents {
    margin-top: 122px;
}

.company-page .flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.company-page .inline-flex {
    display: inline-flex;
}

.company-page .flex-column {
    flex-direction: column;
}

.company-page .flex-middle {
    align-items: center;
}

.company-page .block-company-desc {
    gap: 30px;
}

.company-page .row-data {
    width: 100%;
}

.company-page .col-data-left {
    width: 317px;
}

.company-page .txt-black-bold {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
}

.company-page .txt-black-reg {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
}

.company-page .col-data-right {
    flex: 1;
}

.company-page .location-map {
    gap: 8px;
    margin-top: 2px;
}

.company-page .location-map .txt-location {
    font-weight: 400;
    font-size: 20px;
    color: var(--color-primary);
}

.company-page .wrap-inner {
    gap: 20px;
}

.company-page .inner-list {
    list-style: disc outside none;
    padding-left: 20px;
}

@media only screen and (max-width: 991px) {
    .company-page {
        padding-top: 100px;
    }
    .company-page .section-contents {
        margin-top: 50px;
    }
    .company-page .txt-head {
        font-size: 30px;
    }
    .company-page .txt-topic {
        font-size: 30px;
    }
    .company-page .section-head {
        padding: 50px 20px;
    }
    .company-page .mt44 {
        margin-top: 30px;
    }
    .company-page .mt34 {
        margin-top: 30px;
    }
    .company-page .mt100 {
        margin-top: 50px;
    }
    .company-page .block-company-desc {
        gap: 20px;
    }
    .company-page .row-data {
        flex-direction: column;
    }
    .company-page .mobile-block {
        margin-top: 10px;
    }
}


.l-wrapper {
    padding-left: 40px;
    padding-right: 40px;
}

.l-inner,
.cms-inner {
    max-width: 1140px;
    margin: 0 auto;
}

@media screen and (max-width: 1024px) {
    .l-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
    .l-inner {
        max-width: 700px;
    }
}

.wpcf7-form>p {
    display: contents;
}

.wpcf7-form>p>br {
    display: contents;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
    width: 100%;
    grid-column: span 2;
}

#sample {
    position: absolute;
    bottom: 12%;
    right: 0%;
    width: 40% !important;
    height: auto;
    overflow: visible;
}

#base {
    width: 100%;
    height: auto;
}

#base path {
    fill: #5684C5;
    /* 塗りの色 */
}

#mask path {
    fill: none;
    stroke: #ffffff;
    stroke-width: 10px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media only screen and (max-width: 991px) {
    #sample {
        top: -145%;
        right: 5%;
        width: 36% !important;
    }
}


/* -----------------------------------------------
 * Subpage Common
 * ----------------------------------------------- */
.subpage {
    padding-top: 135px;
}
 
/* Hero */
.subpage-hero {
    background: var(--color-primary);
    padding: 60px 40px;
    text-align: center;
}
.subpage-hero h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}
.subpage-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 20px;
}
.subpage-hero .badge {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    margin-top: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
 
/* Layout */
.subpage-layout {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}
 
/* Sidebar */
.page-sidebar {
    width: 240px;
    flex-shrink: 0;
    padding-top: 50px;
}
.page-sidebar-sticky {
    position: sticky;
    top: 110px;
}
.page-sidebar nav {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}
.sidebar-label {
    background: var(--color-primary);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 20px;
}
.page-sidebar nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    border-left: 3px solid transparent;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}
.page-sidebar nav a:last-child {
    border-bottom: none;
}
.page-sidebar nav a:hover,
.page-sidebar nav a.active {
    color: var(--color-primary);
    border-left-color: var(--color-accent);
    background: #f8f9ff;
}
.page-sidebar nav a .nav-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}
.sidebar-cta {
    margin-top: 20px;
    background: var(--color-accent);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}
.sidebar-cta p {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}
.sidebar-cta a {
    display: block;
    background: #fff;
    color: var(--color-accent);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 10px;
    border-radius: 6px;
    transition: opacity 0.2s;
}
.sidebar-cta a:hover {
    opacity: 0.85;
}
 
/* Main Content */
.page-content {
    flex: 1;
    padding: 50px 0 0 50px;
    min-width: 0;
}
 
/* Sections */
.page-section {
    margin-bottom: 70px;
    scroll-margin-top: 130px;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    background: var(--color-sub);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.page-section h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 8px;
    line-height: 1.2;
}
.page-section .section-subtitle {
    font-size: 17px;
    color: #666;
    margin-bottom: 24px;
}
.section-divider {
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-sub) 100%);
    border-radius: 2px;
    margin-bottom: 24px;
    width: 60px;
}
 
/* Sidebar Info Blocks */
.sidebar-info-block {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 16px;
}
.sidebar-info-block .sidebar-label {
    display: block;
}
.sidebar-info-list {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.sidebar-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}
.sidebar-info-item .info-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}
.sidebar-info-item a {
    color: var(--color-primary);
    font-weight: 600;
    word-break: break-all;
}
.sidebar-info-item a:hover {
    color: var(--color-accent);
}
 
/* Responsive */
@media only screen and (max-width: 991px) {
    .subpage { padding-top: 60px; }
    .subpage-hero h1 { font-size: 30px; }
    .subpage-hero p { font-size: 16px; }
    .subpage-layout {
        flex-direction: column;
        padding: 0 15px 60px;
    }
    .page-sidebar {
        width: 100%;
        padding-top: 20px;
    }
    .page-sidebar-sticky { position: static; }
    .page-sidebar nav {
        flex-direction: row;
        flex-wrap: wrap;
        border-radius: 8px;
    }
    .sidebar-label { width: 100%; }
    .page-sidebar nav a {
        flex: 0 0 50%;
        font-size: 12px;
        padding: 10px 12px;
        border-left: none;
        border-bottom: 3px solid transparent;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 4px;
    }
    .page-sidebar nav a:hover,
    .page-sidebar nav a.active {
        border-left-color: transparent;
        border-bottom-color: var(--color-accent);
    }
    .sidebar-cta { display: none; }
    .page-content { padding: 30px 0 0; }
    .page-section h2 { font-size: 26px; }
}
 


/* -----------------------------------------------
 * Privacy Policy Page
 * ----------------------------------------------- */
.privacy-layout {
    max-width: 960px;
    margin: 0 auto;
    padding: 50px 20px 90px;
}
.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.privacy-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 36px 40px;
}
.privacy-lead {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 28px;
}
.privacy-heading {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.3;
    margin: 0 0 8px;
}
.privacy-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.privacy-item {
    border-top: 1px solid #eef0f4;
    padding-top: 22px;
}
.privacy-item:first-child {
    border-top: none;
    padding-top: 0;
}
.privacy-item h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.5;
    margin: 0 0 8px;
}
.privacy-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}
.privacy-updated {
    color: #777;
    font-size: 14px;
    line-height: 1.7;
    text-align: right;
}

@media only screen and (max-width: 991px) {
    .privacy-layout {
        padding: 30px 15px 60px;
    }
    .privacy-section {
        padding: 26px 22px;
    }
    .privacy-heading {
        font-size: 24px;
    }
    .privacy-item h2 {
        font-size: 16px;
    }
    .privacy-item p,
    .privacy-lead {
        font-size: 14px;
    }
}


/* -----------------------------------------------
 * About Page
 * ----------------------------------------------- */
.about-lead-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    overflow: hidden;
}
.about-lead-copy {
    padding: 36px 40px;
}
.about-lead-copy p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-lead-copy p:last-child {
    margin-bottom: 0;
}
.about-stat-grid {
    background: #f8f9fb;
    border-left: 1px solid #eef0f4;
    display: grid;
    grid-template-columns: 1fr;
}
.about-stat {
    padding: 26px 28px;
    border-bottom: 1px solid #e8ebf0;
}
.about-stat:last-child {
    border-bottom: none;
}
.about-stat span {
    display: block;
    color: var(--color-accent);
    font-family: "Montserrat", sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}
.about-stat p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}
.about-strength-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.about-strength-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 26px 28px;
}
.about-strength-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--color-sub);
    border-radius: 50%;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}
.about-strength-card h3 {
    color: var(--color-primary);
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
}
.about-strength-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}
.about-profile-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
}
.about-profile-list {
    margin: 0;
}
.about-profile-list div {
    display: grid;
    grid-template-columns: 210px 1fr;
    border-bottom: 1px solid #eef0f4;
}
.about-profile-list div:last-child {
    border-bottom: none;
}
.about-profile-list dt,
.about-profile-list dd {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    padding: 18px 22px;
}
.about-profile-list dt {
    background: #f8f9fb;
    color: var(--color-primary);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}
.about-profile-list dd {
    color: #555;
}
.about-profile-list a {
    color: var(--color-accent);
    font-weight: 700;
}
.about-timeline {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 8px 0;
}
.about-timeline-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    padding: 24px 30px;
    position: relative;
}
.about-timeline-item:not(:last-child) {
    border-bottom: 1px solid #eef0f4;
}
.about-timeline-item time {
    color: var(--color-accent);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
}
.about-timeline-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

@media only screen and (max-width: 991px) {
    .about-lead-card,
    .about-strength-grid,
    .about-profile-list div,
    .about-timeline-item {
        grid-template-columns: 1fr;
    }
    .about-stat-grid {
        border-left: none;
        border-top: 1px solid #eef0f4;
    }
    .about-lead-copy,
    .about-strength-card {
        padding: 26px 22px;
    }
    .about-profile-list dt,
    .about-profile-list dd {
        padding: 14px 18px;
    }
    .about-profile-list dt {
        padding-bottom: 6px;
    }
    .about-profile-list dd {
        padding-top: 6px;
    }
    .about-timeline-item {
        gap: 8px;
        padding: 22px;
    }
}


/* -----------------------------------------------
 * Contact Page
 * ----------------------------------------------- */
/* Language Support */
.lang-support {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-primary);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
}
.lang-support .lang-badge {
    background: var(--color-accent);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    line-height: 1.4;
    white-space: nowrap;
}
.lang-support .lang-flags {
    color: #fff;
    font-size: 20px;
    letter-spacing: 4px;
}

/* QR Codes */
.qr-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
}
.qr-item {
    flex: 0 0 auto;
    text-align: center;
}
.qr-item img {
    width: 100%;
    max-width: 90px;
    height: auto;
    border-radius: 6px;
    border: 1px solid #eee;
}
.qr-item p {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #333;
    margin-top: 6px;
}

/* Direct Contact Buttons */
.direct-contact {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.direct-btn {
    flex: 1;
    min-width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.2s ease;
    text-align: center;
}
.direct-btn:hover { transform: translateY(-3px); }
.direct-btn img { width: 28px; height: 28px; }
.direct-btn.btn-whatsapp img,
.direct-btn.btn-line img {
    filter: brightness(0) invert(1);
}
.direct-btn.btn-whatsapp { background: #25D366; color: #fff; }
.direct-btn.btn-line { background: #06C755; color: #fff; }
.direct-btn.btn-phone { background: var(--color-primary); color: #fff; }
.direct-btn.btn-phone::before {
    content: "\260E";
    color: #fff;
    font-size: 22px;
    line-height: 1;
}

/* Intro Card */
.contact-intro {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 36px 40px;
    margin-bottom: 30px;
}
.contact-intro .free-badge {
    display: inline-block;
    background: var(--color-sub);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    letter-spacing: 1px;
}
.contact-intro h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 10px;
}
.contact-intro p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 6px;
}

/* Service Area */
.area-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 30px;
}
.area-section-header {
    background: var(--color-primary);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 24px;
}
.area-section-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.area-map-wrap {
    position: relative;
    overflow: hidden;
}
.area-map-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
}
.area-info {
    padding: 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    background: #f8f9fb;
}
.area-info h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 10px;
}
.area-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.area-badge {
    background: var(--color-sub);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
}
.area-badge.condo-only {
    background: var(--color-accent);
}
.area-address {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}
.area-address strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    color: var(--color-primary);
    margin-bottom: 4px;
}

/* Contact Form */
.contact-form-wrap {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 36px 40px;
}
.contact-form-wrap h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 24px;
}

.contact-form-wrap .wpcf7-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-form-wrap .wpcf7-form > p {
    margin: 0;
}

.contact-form-wrap .wpcf7-form > p:has(.form-wide-field) {
    grid-column: 1 / -1;
}

.contact-form-wrap .contact-form-field {
    display: block;
    margin: 0;
}

.contact-form-wrap .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
    width: 100%;
    min-height: 48px;
    padding: 13px 15px;
    border: 1px solid #d9dde7;
    border-radius: 6px;
    background: #fff;
    color: #222;
    font-size: 15px;
    font-family: "Noto Sans", sans-serif;
    line-height: 1.5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-wrap textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
    border-color: var(--color-sub);
    box-shadow: 0 0 0 3px rgba(77, 184, 212, 0.18);
    outline: none;
}

.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder {
    color: #8a909c;
}

.contact-form-wrap .form-wide,
.contact-form-wrap .form-wide-field,
.contact-form-wrap .wpcf7-form-control-wrap[data-name="message"],
.contact-form-wrap .cta-submit,
.contact-form-wrap .wpcf7-response-output {
    grid-column: 1 / -1;
}

.contact-form-wrap .cta-submit {
    margin-top: 10px;
    text-align: center;
}

.contact-form-wrap .cta-submit .wpcf7-submit {
    width: auto;
    min-width: 180px;
    min-height: 54px;
    padding: 14px 44px;
    border: 0;
    border-radius: 6px;
    background: var(--color-accent);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-form-wrap .cta-submit .wpcf7-submit:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.contact-form-wrap .cta-submit p {
    margin-top: 12px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.contact-form-wrap .wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 12px;
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .contact-intro { padding: 24px 20px; }
    .contact-form-wrap { padding: 24px 20px; }
    .contact-form-wrap .wpcf7-form { grid-template-columns: 1fr; }
    .direct-contact { flex-direction: column; }
    .direct-btn { min-width: auto; }
    .area-section-body { grid-template-columns: 1fr; }
    .area-map-wrap iframe { min-height: 240px; }
}


/* -----------------------------------------------
 * Service Page
 * ----------------------------------------------- */
.service-proof-wrap {
    max-width: 1200px;
    margin: 28px auto 0;
    padding: 0 20px;
}

.service-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    background: #fff;
    border: 1px solid #ebedf2;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(26, 42, 74, 0.08);
}

.service-proof-grid div {
    padding: 24px 28px;
    border-right: 1px solid #ebedf2;
}

.service-proof-grid div:last-child {
    border-right: 0;
}

.service-proof-grid span {
    display: block;
    margin-bottom: 6px;
    color: var(--color-accent);
    font-family: "Montserrat", sans-serif;
    font-size: 2.1rem;
    font-weight: 900;
    line-height: 1;
}

.service-proof-grid p {
    color: var(--color-primary);
    font-family: "Montserrat", sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.35;
}

.service-case-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
}

.service-case-card {
    background: #fff;
    border: 1px solid #ebedf2;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(26, 42, 74, 0.07);
    overflow: hidden;
}

.service-case-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    display: block;
    object-fit: contain;
    background: #f8f9fb;
}

/* Package Card */
.package-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 20px;
}

.package-overview {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 0;
    align-items: stretch;
}

.package-overview-copy {
    padding: 34px 34px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.package-overview-copy h2 {
    margin-bottom: 10px;
}

.package-overview-copy .section-subtitle {
    margin-bottom: 22px;
}

.package-overview-image {
    min-height: 360px;
    background: #f5f7fa;
    overflow: hidden;
}

.package-overview-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.package-detail-body {
    border-top: 1px solid #eef0f4;
}

/* Package Images */
.package-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    height: 280px;
}
.package-images .img-main {
    grid-row: span 2;
    position: relative;
    overflow: hidden;
}
.package-images .img-main img,
.package-images .img-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.package-images .img-main img.pdf-graphic,
.package-images .img-sub img.pdf-graphic,
.plan-card-image img.pdf-graphic {
    object-fit: contain;
    background: #f8f9fb;
}
.package-images .img-sub {
    position: relative;
    overflow: hidden;
}
.before-after-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--color-primary);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}
.before-after-badge.after {
    background: var(--color-accent);
}

/* Package Body */
.package-body {
    padding: 30px;
}
.package-price-row {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.price-block {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}
.price-prefix {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-accent);
}
.price-amount {
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}
.price-unit {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-accent);
}
.price-note {
    font-size: 14px;
    color: #888;
    margin-bottom: 4px;
}
.vat-note {
    font-size: 13px;
    color: #999;
    font-style: italic;
}

/* Includes */
.includes-title {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 12px;
}
.includes-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
.include-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: #f5f7fa;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    min-width: 64px;
}
.include-chip .chip-icon {
    font-size: 20px;
}

/* Package List */
.package-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
}
.package-list li {
    font-size: 16px;
    padding-left: 18px;
    position: relative;
    color: #444;
}
.package-list li::before {
    content: "•";
    color: var(--color-sub);
    position: absolute;
    left: 0;
    font-weight: bold;
}
.package-footnote {
    font-size: 13px;
    color: #e63329;
    margin-top: 8px;
}
.package-footnote-detail {
    max-width: 760px;
    color: #777;
    line-height: 1.7;
}

/* Options */
.options-section {
    background: #f8f9fb;
    border-radius: 10px;
    padding: 24px;
    margin-top: 20px;
}
.options-title {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
}
.options-subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 18px;
}
.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.option-card {
    background: #fff;
    border-radius: 8px;
    padding: 16px 12px;
    text-align: center;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.option-card .option-icon {
    font-size: 28px;
    margin-bottom: 6px;
}
.option-card .option-name {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}
.option-card .option-price {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-accent);
}

/* Full Interior Plans */
.interior-plans {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.plan-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.plan-card-body {
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
}
.plan-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.plan-name {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
}
.plan-stars {
    color: #f5a623;
    font-size: 18px;
}
.plan-style {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin-bottom: 16px;
}
.plan-prices {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.plan-price-row {
    display: grid;
    gap: 4px;
    background: #f5f7fa;
    border-radius: 8px;
    padding: 16px 18px;
}
.plan-price-label {
    font-size: 14px;
    color: #666;
}
.plan-price-value {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: var(--color-accent);
}
.plan-price-value.featured {
    font-size: 28px;
}
.plan-price-value.small {
    font-size: 17px;
    line-height: 1.25;
}
.plan-card-image {
    position: relative;
    overflow: hidden;
    order: -1;
    aspect-ratio: 16 / 6;
    min-height: 0;
}
.plan-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.plan-card-image .plan-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26,42,74,0.9));
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 20px 16px 12px;
    letter-spacing: 1px;
}

.plan-image-copy {
    position: absolute;
    left: 28px;
    bottom: 24px;
    z-index: 2;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 6px 10px;
    color: #fff;
    text-shadow:
        0 0 4px rgba(0,0,0,0.9),
        0 0 12px rgba(0,0,0,0.72),
        0 0 24px rgba(0,0,0,0.58);
}

.plan-image-copy .plan-name {
    color: #fff;
}

.plan-image-copy .plan-style {
    grid-column: 1 / -1;
    margin: 0;
    color: rgba(255,255,255,0.92);
}

.plan-image-copy .plan-stars {
    color: #f5a623;
}

/* General Interior Works */
.general-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.general-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    align-items: stretch;
}
.general-item-img {
    width: 90px;
    flex-shrink: 0;
    overflow: hidden;
}
.general-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.general-item-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.general-item-name {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
}
.general-item-price {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-accent);
}
.general-item-price span {
    font-size: 12px;
    font-weight: 500;
    color: #999;
}
.painting-note {
    margin-top: 18px;
    padding: 18px 20px;
    background: #f8f9fb;
    border-radius: 10px;
}
.painting-note-title {
    margin-bottom: 8px;
    color: var(--color-primary);
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 800;
}
.painting-note ul {
    margin: 0;
    padding-left: 18px;
    color: #555;
    line-height: 1.7;
}
.painting-note li {
    font-size: 17px;
}
.general-footnote {
    font-size: 13px;
    color: #999;
    margin-top: 16px;
    font-style: italic;
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .package-overview {
        grid-template-columns: 1fr;
    }

    .package-overview-copy {
        padding: 28px 22px 24px;
    }

    .package-overview-image {
        min-height: 260px;
    }

    .service-proof-grid,
    .service-case-grid {
        grid-template-columns: 1fr;
    }

    .service-proof-grid div {
        border-right: 0;
        border-bottom: 1px solid #ebedf2;
    }

    .service-proof-grid div:last-child {
        border-bottom: 0;
    }

    .package-images { height: 200px; }
    .price-amount { font-size: 36px; }
    .package-list { grid-template-columns: 1fr; }
    .options-grid { grid-template-columns: repeat(2, 1fr); }
    .plan-prices {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .plan-price-row {
        display: flex;
        align-items: baseline;
        gap: 10px;
    }

    .plan-price-label {
        min-width: 130px;
    }

    .plan-card-image { height: auto; }
    .general-grid { grid-template-columns: 1fr; }
}


/* -----------------------------------------------
 * FAQ Page
 * ----------------------------------------------- */
/* Accordion */
.accordion-wrap {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    overflow: hidden;
}
.accordion-item {
    border-bottom: 1px solid #f0f0f0;
}
.accordion-item:last-child { border-bottom: none; }
.accordion-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 18px 24px;
    border: 0;
    background: #fff;
    text-align: left;
    font: inherit;
    transition: background 0.2s;
    gap: 20px;
    appearance: none;
}
.accordion-header:hover { background: #fafbff; }
.accordion-header .accordion-title {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    line-height: 1.5;
    margin: 0;
}
.accordion-header .arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.accordion-item.active .accordion-header { background: #f8f9ff; }
.accordion-item.active .accordion-header .accordion-title { color: var(--color-primary); }
.accordion-item.active .arrow { transform: rotate(180deg); }
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s ease;
    padding: 0 24px;
    background: #f8f9ff;
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}
.accordion-item.active .accordion-content {
    max-height: 1200px;
    padding: 16px 24px 20px;
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .accordion-header .accordion-title { font-size: 15px; }
}


/* -----------------------------------------------
 * Blog
 * ----------------------------------------------- */
.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
}
.blog-card-thumb {
    aspect-ratio: 16 / 10;
    background: var(--color-primary);
    color: rgba(255,255,255,0.72);
    display: grid;
    place-items: center;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    overflow: hidden;
}
.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-card-body {
    padding: 24px;
}
.blog-meta,
.single-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    color: #888;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.blog-meta a,
.single-article-meta a {
    color: var(--color-accent);
}
.blog-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px;
}
.blog-card h3 a {
    color: var(--color-primary);
}
.blog-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
}
.blog-read-more {
    color: var(--color-accent);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
}
.blog-pagination {
    margin-top: 34px;
}
.blog-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.blog-pagination .page-numbers {
    background: #fff;
    border-radius: 6px;
    color: var(--color-primary);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    min-width: 38px;
    padding: 9px 12px;
    text-align: center;
}
.blog-pagination .page-numbers.current {
    background: var(--color-accent);
    color: #fff;
}
.blog-empty {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    color: #555;
    padding: 32px;
}
.single-hero h1 {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
.single-article {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
}
.single-article-thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.single-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.single-article-meta {
    padding: 32px 40px 0;
}
.single-article-content {
    color: #444;
    font-size: 16px;
    line-height: 1.9;
    padding: 18px 40px 42px;
}
.single-article-content h2,
.single-article-content h3,
.single-article-content h4 {
    color: var(--color-primary);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    line-height: 1.35;
    margin: 34px 0 14px;
}
.single-article-content h2 {
    font-size: 28px;
}
.single-article-content h3 {
    font-size: 22px;
}
.single-article-content p,
.single-article-content ul,
.single-article-content ol {
    margin-bottom: 20px;
}
.single-article-content ul,
.single-article-content ol {
    padding-left: 1.4em;
}
.single-article-content ul {
    list-style: disc;
}
.single-article-content ol {
    list-style: decimal;
}
.single-article-content a {
    color: var(--color-accent);
    font-weight: 700;
}
.single-article-content img {
    max-width: 100%;
    height: auto;
}
.single-post-nav {
    border-top: 1px solid #eef0f4;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 40px;
}
.single-post-nav a {
    color: var(--color-primary);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
}

@media only screen and (max-width: 991px) {
    .blog-card-grid {
        grid-template-columns: 1fr;
    }
    .blog-card-body,
    .single-article-meta,
    .single-article-content,
    .single-post-nav {
        padding-left: 22px;
        padding-right: 22px;
    }
    .single-article-content {
        font-size: 15px;
        padding-bottom: 32px;
    }
    .single-article-content h2 {
        font-size: 24px;
    }
    .single-post-nav {
        flex-direction: column;
    }
}


/* -----------------------------------------------
 * Home Refresh
-------------------------------------------------- */

.home-hero {
    background: #fff;
    overflow: hidden;
}

.home-hero-title {
    margin: 24px 0 34px;
}

.home-hero-copy {
    width: min(980px, calc(100% - 48px));
    margin: 0 auto;
    text-align: center;
}

.home-hero-copy h1 {
    margin: 0;
    color: var(--color-primary);
    /* To restore the previous serif style: Georgia, "Times New Roman", serif */
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: 0;
}

.home-hero-copy h1 span {
    display: inline-block;
    color: var(--color-primary);
}

.home-hero-main {
    display: block;
    font-size: 4.18rem;
    line-height: 1.12;
}

.home-hero-sub {
    display: block;
    margin-top: 18px;
    font-size: 2.14rem;
    line-height: 1.22;
}

.home-proof {
    padding: 34px 24px 12px;
}

.home-proof-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 40px rgba(26, 42, 74, 0.08);
}

.home-proof-inner div {
    padding: 22px 20px;
    border-right: 1px solid #e8e8e8;
}

.home-proof-inner div:last-child {
    border-right: 0;
}

.home-proof-inner span {
    display: block;
    margin-bottom: 6px;
    color: var(--color-accent);
    font-family: "Montserrat", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-proof-inner strong {
    color: var(--color-primary);
    font-size: 0.98rem;
    line-height: 1.35;
}

.home-section {
    width: min(1120px, calc(100% - 48px));
    margin: 96px auto 0;
    scroll-margin-top: 130px;
}

.home-section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.home-section-heading h1,
.home-section-heading h2,
.home-split-copy h2 {
    margin: 12px 0 16px;
    color: var(--color-primary);
    font-size: clamp(1.85rem, 3.45vw, 3.2rem);
    line-height: 1.05;
    font-weight: 900;
}

.home-section-heading p,
.home-split-copy p {
    color: #4d5667;
    font-size: 1rem;
    line-height: 1.9;
}

.home-concern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.home-concern-card {
    min-height: 188px;
    padding: 14px 24px 20px;
    display: grid;
    gap: 6px;
    align-items: start;
    background: #fff;
    border: 1px solid #ebedf2;
    border-left: 4px solid var(--color-accent);
    border-radius: 8px;
    color: #2f3542;
    box-shadow: 0 14px 30px rgba(26, 42, 74, 0.06);
}

.home-concern-card p {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.65;
}

.home-concern-card img {
    width: 152px;
    height: 152px;
    display: block;
    justify-self: center;
    object-fit: contain;
    order: -1;
}

.home-solution {
    width: 100%;
    max-width: none;
    padding: 86px 24px;
    background: #f6f7fa;
}

.home-split {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 54px;
    align-items: center;
}

.home-split-media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
}

.home-highlight-list {
    margin: 28px 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-highlight-list span {
    padding: 9px 13px;
    background: #fff;
    border: 1px solid #e4e7ee;
    border-radius: 6px;
    color: var(--color-primary);
    font-family: "Montserrat", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
}

.home-text-link,
.home-primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 6px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.86rem;
    font-weight: 900;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.home-text-link {
    min-width: 138px;
    margin-top: 22px;
    background: var(--color-accent);
    color: #fff;
}

.home-primary-link {
    background: var(--color-accent);
    color: #fff;
}

.home-text-link::after,
.home-primary-link::after {
    content: ">";
    margin-left: 10px;
}

.home-text-link:hover,
.home-primary-link:hover {
    opacity: 0.86;
    transform: translateY(-1px);
}

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.home-service-card {
    background: #fff;
    border: 1px solid #ebedf2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(26, 42, 74, 0.07);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-service-card:hover {
    border-color: rgba(77, 184, 212, 0.55);
    box-shadow: 0 18px 38px rgba(26, 42, 74, 0.11);
    transform: translateY(-2px);
}

.home-service-card a {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    color: inherit;
}

.home-service-card-image {
    min-height: 100%;
    background: #f5f7fa;
    overflow: hidden;
}

.home-service-card-image img {
    width: 100%;
    height: 220px;
    min-height: 0;
    display: block;
    object-fit: cover;
}

.home-service-card-body {
    min-height: 330px;
    padding: 24px 24px 22px;
    display: flex;
    flex-direction: column;
}

.home-service-meta {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.home-service-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 11px;
    border-radius: 999px;
    background: rgba(77, 184, 212, 0.12);
    color: var(--color-sub);
    font-family: "Montserrat", sans-serif;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-service-meta strong {
    color: var(--color-accent);
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
    white-space: nowrap;
}

.home-service-card h3 {
    margin: 0 0 10px;
    color: var(--color-primary);
    font-family: "Montserrat", sans-serif;
    font-size: 1.28rem;
    line-height: 1.25;
}

.home-service-card p {
    color: #4d5667;
    font-size: 0.9rem;
    line-height: 1.7;
}

.home-service-card ul {
    margin: 18px 0 22px;
    display: grid;
    gap: 7px;
}

.home-service-card li {
    position: relative;
    padding-left: 16px;
    color: #2f3542;
    font-size: 0.84rem;
    line-height: 1.45;
}

.home-service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-sub);
}

.home-service-detail {
    margin-top: auto;
    color: var(--color-primary);
    font-family: "Montserrat", sans-serif;
    font-size: 0.82rem;
    font-weight: 900;
}

.home-service-detail::after {
    content: ">";
    margin-left: 8px;
    color: var(--color-accent);
}

.home-guide-card {
    padding: 22px 26px;
    display: grid;
    grid-template-columns: 154px minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    width: min(860px, 100%);
    margin: 0 auto;
    background: #faf7f0;
    border: 0;
    border-left: 3px solid rgba(230, 51, 41, 0.62);
    border-radius: 6px;
    box-shadow: none;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-guide-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(26, 42, 74, 0.08);
}

.home-guide-cover img {
    width: 100%;
    display: block;
    border-radius: 6px;
    box-shadow: 0 10px 22px rgba(26, 42, 74, 0.12);
}

.home-guide-copy .section-tag {
    min-height: 0;
    padding: 0;
    background: transparent;
    color: #6f7885;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
}

.home-guide-copy h4 {
    margin: 7px 0 9px;
    color: var(--color-primary);
    font-size: 1.48rem;
    line-height: 1.32;
}

.home-guide-copy p {
    max-width: 720px;
    color: #4d5667;
    font-size: 0.94rem;
    line-height: 1.6;
}

.home-guide-copy .home-guide-subtitle {
    margin: 0 0 10px;
    color: #606a78;
    font-weight: 400;
    line-height: 1.5;
}

.home-guide-points {
    margin: 0 0 12px;
    display: grid;
    gap: 4px;
}

.home-guide-points li {
    position: relative;
    padding-left: 13px;
    color: #5f6875;
    font-size: 0.84rem;
    line-height: 1.45;
}

.home-guide-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(230, 51, 41, 0.62);
}

.home-guide-copy .home-primary-link {
    display: inline-flex;
    align-items: center;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: var(--color-accent);
    font-size: 0.88rem;
    line-height: 1.4;
}

.home-section-action {
    margin-top: 30px;
    text-align: center;
}

.home-process {
    width: 100%;
    max-width: none;
    padding: 90px 24px;
    background: var(--color-primary);
}

.home-process .home-section-heading {
    width: min(1120px, 100%);
    margin: 0 auto 36px;
}

.home-process .section-tag {
    background: var(--color-sub);
    color: #fff;
}

.home-process .home-section-heading h2,
.home-process .home-section-heading p {
    color: #fff;
    text-align: left;
}

.home-process.process-vertical {
    color: #fff;
}

.home-process.process-vertical .l-inner {
    width: min(960px, 100%);
    padding: 0;
}

.process-steps-list {
    display: grid;
    gap: 22px;
    margin-top: 48px;
}

.process-step-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 22px;
    position: relative;
    align-items: stretch;
}

.process-step-card:not(:last-child)::before {
    position: absolute;
    top: 76px;
    bottom: -22px;
    left: 51px;
    width: 2px;
    content: "";
    background: rgba(255, 255, 255, 0.35);
}

.process-step-index {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding-top: 16px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    line-height: 1;
}

.process-step-index span {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.process-step-index strong {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-sub);
    font-size: 1.15rem;
}

.process-step-content {
    display: flex;
    align-items: center;
    gap: 34px;
    background: #fff;
    border-radius: 8px;
    padding: 26px 40px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.process-step-media {
    flex: 0 0 187px;
}

.process-step-media img {
    display: block;
    width: 187px;
    height: 198px;
    object-fit: contain;
}

.process-step-copy h3 {
    color: var(--color-primary);
    margin: 0 0 10px;
    font-size: 1.35rem;
    line-height: 1.35;
}

.process-step-copy p {
    color: #4d5667;
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.65;
}

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

.home-why-grid article {
    background: #fff;
    border: 1px solid #ebedf2;
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(26, 42, 74, 0.06);
    overflow: hidden;
}

.home-why-grid img {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    object-fit: cover;
    display: block;
}

.home-why-body {
    padding: 24px 18px 26px;
}

.home-why-grid h3 {
    margin: 0 0 12px;
    color: var(--color-primary);
    font-size: 1.08rem;
    line-height: 1.35;
}

.home-why-grid h3 span {
    color: var(--color-accent);
}

.home-why-grid h3 em {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin-left: 8px;
    padding: 3px 12px 2px;
    border-radius: 999px;
    background: var(--color-accent);
    color: #fff;
    font-size: 0.78rem;
    font-style: normal;
    line-height: 1;
    vertical-align: middle;
}

.home-why-grid p {
    color: #4d5667;
    font-size: 0.93rem;
    line-height: 1.75;
}

.home-blog {
    margin-bottom: 96px;
}

.home-blog-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media only screen and (max-width: 991px) {
    .home-proof {
        padding-top: 26px;
    }

    .home-hero-title {
        margin: 22px 0 28px;
    }

    .home-hero-copy {
        width: min(100% - 32px, 680px);
    }

    .home-hero-copy h1 {
        line-height: 1.16;
    }

    .home-hero-main {
        font-size: 2.74rem;
    }

    .home-hero-sub {
        margin-top: 14px;
        font-size: 1.46rem;
    }

    .home-proof-inner,
    .home-concern-grid,
    .home-split,
    .home-service-grid,
    .home-why-grid,
    .home-blog-grid {
        grid-template-columns: 1fr;
    }

    .home-proof-inner div {
        border-right: 0;
        border-bottom: 1px solid #e8e8e8;
    }

    .home-proof-inner div:last-child {
        border-bottom: 0;
    }

    .home-section {
        width: min(100% - 32px, 680px);
        margin-top: 68px;
    }

    .home-section-heading h1,
    .home-section-heading h2,
    .home-split-copy h2 {
        font-size: 1.95rem;
    }

    .home-solution,
    .home-process {
        padding: 64px 16px;
    }

    .process-steps-list {
        gap: 18px;
        margin-top: 32px;
    }

    .process-step-card {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .process-step-card:not(:last-child)::before {
        display: none;
    }

    .process-step-index {
        flex-direction: row;
        justify-content: flex-start;
        padding-top: 0;
    }

    .process-step-index strong {
        width: 42px;
        height: 42px;
        border-width: 3px;
        font-size: 0.95rem;
    }

    .process-step-content {
        display: block;
        padding: 24px 18px 26px;
    }

    .process-step-media {
        margin-bottom: 10px;
        text-align: center;
    }

    .process-step-media img {
        width: 118px;
        height: auto;
        margin: 0 auto;
    }

    .process-step-copy h3 {
        font-size: 1.18rem;
    }

    .process-step-copy p {
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .home-split-media img {
        height: 280px;
        min-height: 0;
    }

    .home-concern-card {
        min-height: auto;
    }

    .home-guide-card {
        grid-template-columns: 1fr;
    }

    .home-service-card a {
        grid-template-columns: 1fr;
    }

    .home-service-card-image img {
        height: 240px;
        min-height: 0;
    }

    .home-service-card-body {
        min-height: 0;
    }

    .home-guide-card {
        padding: 20px 22px;
    }

    .home-guide-cover {
        max-width: 140px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 599px) {
    .home-proof-inner div {
        padding: 18px;
    }

    .home-section-heading h1,
    .home-section-heading h2,
    .home-split-copy h2 {
        font-size: 1.68rem;
    }

    .home-service-card a {
        grid-template-columns: 1fr;
    }

    .home-service-card-image img {
        min-height: 210px;
        aspect-ratio: 16 / 9;
    }

    .home-service-card-body {
        min-height: 0;
        padding: 20px;
    }

    .home-concern-card {
        gap: 6px;
        padding: 14px 16px 18px 20px;
    }

    .home-concern-card img {
        width: 128px;
        height: 128px;
    }

    .home-service-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .home-hero-main {
        font-size: 2.02rem;
    }

    .home-hero-sub {
        margin-top: 12px;
        font-size: 1rem;
        line-height: 1.34;
    }

    .block-menu-btn .logo img {
        width: 112px;
    }

    .block-menu-btn .navi-btn {
        margin-right: 10px;
        padding: 11px 13px 7px;
        font-size: 14px;
    }

    .home-guide-card {
        gap: 16px;
        padding: 18px 18px 20px;
    }

    .home-guide-cover {
        max-width: 128px;
        margin: 0 auto;
    }

    .home-guide-copy h4 {
        font-size: 1.22rem;
    }
}

.grecaptcha-badge {
    visibility: hidden;
}
