@charset "UTF-8";
/* ===== KV ===== */
.kv {
    position: relative;
}

.kv-pic,
.kv-img {
    display: block;
    width: 100%;
}

.kv-img {
    height: auto;
    object-fit: cover;
}

.service,
.contact {
    padding: 90px 0;
}

.about {
    padding: 90px 0 0;
}

.area {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .service,
    .contact {
        padding: 55px 0;
    }
    .about {
        padding: 55px 0 0;
    }
    .area {
        padding: 50px 0;
    }
}

/* =========================================================
   Our Services
========================================================= */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 55px 50px;
}

.service-card {
    position: relative;
    padding-top: 25px;
}

.service-num {
    position: absolute;
    top: 0;
    left: 10px;
    z-index: 2;
}

.service-num img {
    width: 45px;
    height: auto;
}

.service-photo {
    position: relative;
    overflow: hidden;
}

.service-photo > img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.service-label {
    position: absolute;
    right: 0;
    top: calc(100% - 25px);
    bottom: auto;
    width: 300px;
    max-width: 100%;
    margin: 0;
    padding: 5px 25px 8px;
    color: var(--white);
    font-size: 1.2em;
    text-align: right;
    z-index: 2;
}

.service-label--blue {
    background: var(--blue);
}

.service-label--green {
    background: var(--green);
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .service-card {
        padding-top: 30px;
    }
    .service-num img {
        width: 48px;
    }
    .service-label {
        width: 320px;
        font-size: 1.3em;
    }
}

/* =========================================================
   About Us
========================================================= */
.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.about-left {
    position: relative;
    color: var(--white);
    background-image: url("/home/imgs/about_ph1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-msg {
    text-align: center;
    padding: 70px 40px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.28);
}

.about-msg-text {
    font-size: 1.3em;
    line-height: 2em;
    margin-bottom: 35px;
}

.about-btn {
    width: 280px;
    max-width: 100%;
}

.about-right img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-row {
        grid-template-columns: 1fr;
    }
    .about-msg {
        padding: 50px 25px;
    }
    .about-msg-text {
        font-size: 1.1em;
        margin-bottom: 30px;
    }
    .about-right img {
        height: 240px;
    }
}

/* =========================================================
   Service Area
========================================================= */
.area {
    background: var(--grey);
    background-image: url("/home/imgs/area_img.svg");
    background-repeat: no-repeat;
    background-position: 90% center;
}

.area-inner {
    text-align: center;
}

.area-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
.area-head img{
    width: 360px;
    max-width: 85%;
}

.area-jp {
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 1.8em;
    margin: 0;
}

.area-line {
    display: block;
    width: 1px;
    height: 40px;
    margin: 15px 0;
    background: #222222;
}

.area-en {
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-size: 3.4em;
    margin-top: 5px;
    color: var(--blue);
}

.area-en::first-letter {
    color: var(--green);
}

.area-main {
    font-size: 1.3em;
    margin-top: 15px;
}

.area-sub {
    font-size: 1.2em;
}

@media (max-width: 900px) {
    .area {
        background-position: right;
        background-size: 40%;
    }
}

@media (max-width: 768px) {
    .area {
        background-size: 50%;
    }
    .area-en {
        font-size: 2.1em;
    }
    .area-main {
        font-size: 1.1em;
    }
    .area-sub {
        font-size: 1em;
    }
}

/* =========================================================
   Contact
========================================================= */
.contact .sec-title {
    text-align: left;
    margin-left: 0;
}

.contact-lead {
    text-align: left;
    font-size: 1.1em;
    margin-bottom: 35px;
}

.contact-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-tel {
    display: inline-flex;
    align-items: center;
}

.contact-tel-img {
    height: 40px;
    width: auto;
}

@media (max-width: 850px) {
    .contact-tel-img {
        height: 40px;
    }
}
@media (max-width: 768px) {
    .contact-box {
        flex-direction: column;
        gap: 30px;
    }
    .contact-btn {
        width: 100%;
        max-width: 320px;
    }
    .contact-tel-img {
        height: auto;
        width: 100%;
        max-width: 320px;
    }
}
