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

.kv img {
    display: block;
    width: 1266px;
    height: 700px;
    margin-left: 100px;
    object-fit: cover;
    border-radius: 0 0 0 20px;
}

.kv-text {
    position: absolute;
    left: 160px;
    bottom: 30px;
    line-height: 1.3;
    font-size: 3.2rem;
    color: white;
    text-shadow: 1px 1px 3px gray;
}

.kv-text span {
    display: block;
    line-height: 1.5;
    font-size: 2.4rem;
    color: var(--sub);
}

@media screen and (max-width: 1365px) {
    .kv img {
        margin-left: 0;
        width: 100%;
        height: auto;
    }
    .kv-text {
        left: 60px;
        bottom: 30px;
    }
}

@media screen and (max-width: 1000px) {
    .kv-text {
        left: 40px;
        bottom: 20px;
        font-size: 2.6rem;
    }

    .kv-text span {
        font-size: 2.0rem;
    }
}

@media screen and (max-width: 790px) {
    .kv-text {
        left: 20px;
        bottom: 10px;
        font-size: 2.4rem;
    }

    .kv-text span {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 600px) {
    .kv-text {
        bottom: 0;
        font-size: 2.2rem;
    }

    .kv-text span {
        font-size: 1.6rem;
    }
}

/** About Us **/
.about {
    max-width: 1283px;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 80px 0;
}

.about-image {
    position: relative;
    flex: 1.2;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 0 20px 20px 0;
    object-fit: cover;
}

.about-label {
    position: absolute;
    top: 130px;
    right: 50px;
    color: white;
}

.about-label-title {
    font-size: 3.6rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.about-label-text {
    font-size: 1.6rem;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.8rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.6rem;
    line-height: 1.7;
}

@media screen and (max-width: 1200px) {
    .about-content h2 {
        font-size: 2.6rem;
    }
}

@media screen and (max-width: 1000px) {
    .about-image {
        flex: 1;
    }

    .about-label {
        top: 90px;
        right: 40px;
    }
}

@media screen and (max-width: 790px) {
    .about {
        flex-direction: column;
        gap: 20px;
        padding: 50px 0;
    }

    .about-image,
    .about-content {
        flex: none;
        width: 100%;
    }

    .about-content h2 {
        font-size: 2.0rem;
    }

    .about-content p {
        font-size: 1.4rem;
    }
}

/** Our Service **/
.service {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.service-items {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 20px 50px;
}

.service .section-header {
    margin-bottom: 50px;
}

.service .section-label .label-en {
    font-family: "Montserrat", sans-serif;
    font-size: 3.6rem;
    font-weight: 500;
}

.service .section-label .label-jp {
    font-size: 1.6rem;
    padding-bottom: 13px;
    color: #B7B7B7;
}

.service-items-row {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.service-item {
    flex: 1;
    text-align: center;
    padding: 0 10px;
}

.service-circle {
    max-width: 170px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 20px;
    border: 1px solid #B1A999;
    border-radius: 50%;
    position: relative;
}

.service-number {
    position: absolute;
    top: -40px;
    left: -45px;
    transform: translateX(-50%);
    font-family: "Oswald", sans-serif;
    font-size: 5.0rem;
    font-weight: 500;
    color: var(--sub);
}

.service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
}

.service-icon.icon01 {
    max-width: 78px;
}

.service-icon.icon02 {
    max-width: 93px;
}

.service-icon.icon03 {
    max-width: 62px;
}

.service-title {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #B1A999;
}

.service-desc {
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.7;
}

@media screen and (max-width: 790px) {
    .service-items {
        padding: 20px 20px;
    }

    .service-items-row {
        flex-direction: column;
        gap: 50px;
    }

    .service-item {
        padding: 0;
    }

    .service-circle {
        max-width: 200px;
    }

    .service-circle.second {
         margin-top: 0;
    }

    .service-number {
        font-size: 4.0rem;
        left: -15px;
    }

    .service-icon.icon01 {
        max-width: 100px;
    }

    .service-icon.icon02 {
        max-width: 122px;
    }

    .service-icon.icon03 {
        max-width: 76px;
    }

    .service-desc {
        font-size: 1.4rem;
    }
}

/** two-column-block **/
.two-column-block {
    display: flex;
    width: 100%;
    background-color: white;
}

.two-column-block .text-col {
    width: 50%;
    padding: 30px;
}

.two-column-block .section-label {
    padding-left: 1.5em;
}

.two-column-block .section-label .label-en {
    font-family: "Montserrat", sans-serif;
    font-size: 3.6rem;
    font-weight: 500;
}

.two-column-block .section-label .label-jp {
    color: #B7B7B7;
    font-size: 1.6rem;
}

.two-column-block .text-desc {
    padding-left: 2.4rem;
}

.two-column-block .text-col h2 {
    font-size: 2.0rem;
    margin-bottom: 20px;
    color: #B1A999;
    font-weight: 600;
}

.two-column-block .text-col p {
    font-size: 1.6rem;
    line-height: 1.7;
}

.two-column-block .link-button {
    width: 100%;
    text-align: right;
}

.two-column-block .link-button a {
    display: inline-flex;
    align-items: center;
    font-size: 1.4rem;
    margin-top: 50px;
}

.two-column-block .link-button a:hover {
    opacity: 0.5;
}

.two-column-block .link-button a .link-icon {
    border: 1px solid var(--sub);
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    padding: 10px;
    margin-left: 5px;
    display: flex;
    align-items: center;
}

.two-column-block .link-button .link-icon.gray {
    border: 1px solid #DBDBDB;
}

.two-column-block .image-col {
    width: 50%;
}

.two-column-block .image-col img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .two-column-block {
        flex-direction: column;
    }
    .two-column-block.reverse {
        flex-direction: column-reverse;
    }

    .two-column-block .text-col {
        width: 100%;
        padding: 20px;
    }

    .two-column-block .image-col {
        width: 100%;
    }

    .two-column-block .section-label {
        text-indent: 0;
        padding-left: 0;
    }

    .two-column-block .text-desc {
        padding-left: 0;
    }

    .two-column-block .text-col h2 {
        font-size: 1.8rem;
        letter-spacing: -0.05rem;
    }

    .two-column-block .text-col p {
        font-size: 1.4rem;
    }
}
