@charset "utf-8";
/* CSS Document */

:root{
    --main-color:#006ca2;
    --secondary-color:#8dabb9;
    --main-color-tranparent:rgb(11, 141, 192,0.7);
    --font-color:#006ca2;
}
*{
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
    color: var(--font-color);
}

a:link,a:visited{
    color: var(--font-color);
    text-decoration: none;
}
a:hover{
    color:#3a5d7a;
}
body{
    position: relative;
    overflow-x: hidden;
}


/*
 * GLOBAL
 */
.g-section{
    /* height: 100dvh; */
}

/*
 * GLOBAL
 */
.header{
    
}
.header-pc{
    position: fixed;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 9;
    margin: auto;
    width: 0%;
}
@media screen and (max-width: 1024px) {
    .header-pc{
        display:none;
    }
}

.header-sp{
    display: none;
}
@media screen and (max-width: 1024px) {
    .header-sp{
        position: fixed;
        top: 0px;
        display: block;
        z-index: 10;
        width: 65px;
        height: 65px;
        right: 0px;
        background-color: rgb(255, 255, 255,0.8);
        border-radius: 35% 0 5% 50%;
        cursor: pointer;
        box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
    }
    .header-sp > img{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        width: 65%;
        height: 65%;
    }
    .header-sp:hover{
        background-color: rgba(201, 218, 231, 0.8);
    }
}

.header-naviWrapper{
    padding: 0px 50px;
    background-color: rgb(255, 255, 255,0.8);
    border-radius: 55px;
    margin-top: 15px;
    border-top: 3px solid rgb(255, 255, 255,0.03);
    border-right: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
}

.header-naviWrapper:hover{
    background-color: rgb(255, 255, 255,1);
}
.header_navi{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}
.header_item{
    margin: 0 5px;
}
.header_item:hover{
    background-color: rgb(0, 108, 162,0.7);
    border-radius: 25px;

}
.header_link{
    padding: 10px 25px;
    display: inline-block;
    letter-spacing: 1.5px;
    font-size: 17px;
    font-weight: bold;
    display: block;
}
.header_link:hover{
    color: #ffffff;
}

.header-hamburger{
    display: none;
}
@media screen and (max-width: 1024px) {
    .header-hamburger{
        display: block;
    }
}



/*
 * SP MENU
 */
.spMenu{
    display: none;
}
@media screen and (max-width: 1024px) {
    .spMenu{
        position: fixed;
        top: 0;
        right: -100dvw;
        width: 85dvw;
        height: 100%;
        background-color: rgb(0, 108, 162,0.95);
        display: block;
        z-index: 10;
        transition: all 0.5s 0s ease;
    }
    .spMenu-closeBtn{
        position: absolute;
        top: 0px;
        display: block;
        z-index: 10;
        width: 65px;
        height: 65px;
        left: -10px;
        background-color: rgb(255, 255, 255,0.8);
        border-radius: 0 35%  50% 5%;
        cursor: pointer;
        box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);

    }
    .spMenu-closeBtn > img{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        width: 65%;
        height: 65%;
    }
    .spMenu-closeBtn:hover{
        background-color: rgba(201, 218, 231, 0.8);
    }
    .spMenu-list{
        width: 85%;
        margin: 35% auto;
    }
    .spMenu-item{
        padding: 5px 15px;
        text-align: center;
        font-size: 23px;
        color: #ffffff;
        border: 1px solid rgb(255, 255, 255,0.7);
        border-radius: 50px;
        background-color: rgb(255, 255, 255,0.3);
        margin: 15px 0;
        cursor: pointer;
    }
}

/*
 * HERO
 */
.hero{
    position: relative;
    width: 100dvw;
    height: 100dvh;
    overflow: hidden;
}
.hero-backgroundWrapper{
    position: absolute;
    width: 100dvw;
    height: 100dvh;
    overflow: hidden;
}
.hero-bg{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.hero-bg-1{
    z-index: 1;
    opacity: 0.1;
    filter: grayscale(100%) hue-rotate(120deg);
}
.hero-bg-2{
    z-index: 0;
    scale:1.3;
}

/* TOP WAVE */
.hero-topWave{
    position: absolute;
    top: 0;
    width: 100%;
    min-width:2000px;
    z-index: 3;
}


/* BOTTOM WAVE */
.hero-bottomWave{
    position: absolute;
    bottom: -15px;
    width: 100%;
    min-width:2000px;
    z-index: 3;
    /* display: none; */
}
.hero-bottomSvg{
    width: 100%;
}
@media screen and (max-width: 1024px) {
    .hero-bottomWave{
        /* bottom: 115px; */
    }
}
@media screen and (max-width: 640px) {
    .hero-bottomWave{
        /* bottom: 100px; */
    }
}

/* HERO CARROUSEL*/
.hero-carrouselWrapper{
    position: absolute;
    display: flex;
    flex: 1;
    flex-wrap: nowrap;
    height:100dvh;
    overflow: hidden;
    width: 100%;
    top:0;
    z-index: 2;
    opacity: 0.7;
}
.hero-carrousel{
    display: flex;
    flex-wrap: nowrap;
    height: 100%;
    animation: scrollingToLeft 35s linear infinite;
}
@keyframes scrollingToLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
}
.hero-item{
    flex: none;
    height: 100%;
    width: 560px;
    margin: 0 3px;
}
.hero-slide{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* COMPANY NAME*/
.hero-companyName{
    position: absolute;
    color: #ffffff;
    font-size: 100px;
    font-weight: bold;
    top: calc(35% - 67px);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 7;
    text-shadow: 2px 3px 3px rgb(4, 102, 151,0.7);
    width: 100%;
    text-align: center;
    font-family: "Playfair Display", serif;
}
@media screen and (max-width: 1024px) {
    .hero-companyName{
        font-size: 75px;
    }
}
@media screen and (max-width: 640px) {
    .hero-companyName{
        top: calc(45% - 67px);
        font-size: 37px;
    }
}
.hero-caption{
    position: absolute;
    font-size: 30px;
    z-index: 8;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    padding: 5px 5px;
    border-radius: 1px;
    width: 770px;
    text-align: center;
    color: #fff;
    text-shadow: 2px 3px 3px rgb(4, 102, 151,0.7);
}
@media screen and (max-width: 1024px) {
    .hero-caption{
        width: 85%;
        font-size: 27px;
        top: 39%;
    }
}
@media screen and (max-width: 640px) {
    .hero-caption{
        font-size: 19px;
        top: 43%;
    }
}
.hero-smallTtl{
    font-size: 50px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
}
@media screen and (max-width: 1024px) {
    .hero-smallTtl{
        font-size: 35px;
    }
}
@media screen and (max-width: 640px) {
    .hero-smallTtl{
        font-size: 25px;
    }
}
.hero-smallTtl-2{
    font-size: 35px;
    position: absolute;
    bottom:35px;
    transform: rotate(7deg);
    font-style: oblique;
}
@media screen and (max-width: 1024px) {
    .hero-smallTtl-2{
        font-size: 25px;
    }
}
@media screen and (max-width: 640px) {
    .hero-smallTtl-2{
        font-size: 18px;
        bottom:5px;
    }
}
.hero-bigTtl{
    color: #ffffff;
    font-family: "Playfair Display", serif;
}


 /*
 * ABOUT
 */
.aboutUs{
    position: relative;
    background-image: url(/assets/images/handshaking.png);
    min-height: 100dvh;
    padding: 45px 0 75px 0;
    opacity: 0.9;
    background-position-x: 37dvw;
    background-position-y: 0dvh;
    background-repeat: no-repeat;
    background-size: contain;
    clip-path: ellipse(100% 55% at 48% 44%);
}
@media screen and (max-width: 1024px) {
    .aboutUs{
        /* height: unset!important; */
        background-position-x: 0px!important;
        background-size: cover!important;
        background-position: center bottom -150px!important;
        clip-path: unset!important;
    }
}
.aboutUs-detail{
    position: absolute;
    top: 50%;
    left: 37%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 750px;
    padding: 50px 35px;
    background-color: rgb(255, 255, 255,0.8);
    /* border-radius: 100px; */
    border: solid #ffffff 3px;
}
@media screen and (max-width: 1024px) {
    .aboutUs-detail{
        top: 60%;
        width: 95%;
        margin: auto;
        left: 50%;
        display: block;
        background-color: rgba(255, 255, 255);
    }
}
@media screen and (max-width: 640px) {
    .aboutUs-detail{
        position: unset;
        margin: auto;
        transform:unset;
        -webkit-transform: unset;
        -ms-transform: unset;
    }
}
.aboutUs-title{
    position: relative;
    width: fit-content;
    font-family: "Playfair Display", serif;
    font-size: 75px;
    margin-bottom: 35px;
    background-image: linear-gradient(90deg,var(--main-color), var(--secondary-color),var(--main-color));
    color: transparent;
    background-clip: text;
}
@media screen and (max-width: 1024px) {
    .aboutUs-title{
        font-size: 55px;
    }
}
@media screen and (max-width: 640px) {
    .aboutUs-title{
        font-size: 35px;
    }
}
.aboutUs-title::before{
    content: '';
    position: absolute;
    bottom: -10%;
    left: 15px;
    /* transform: skew(-26deg); */
    width: 105%;
    height: 50px;
    background: #d1e8f3;
    border-radius: 15px;
    z-index: -1;
}

.aboutUs-description{
    position: relative;
    font-size: 18px;
    line-height: 1.5;
    padding: 5px 0;
    margin-top: 10px;
}


 /*
 * SERVICES
 */
.services{
    position: relative;
    width: 100%;
    height: max-content;
    padding: 15px 0 15px 0;
    background-color: #ffffff;
    background-image: url('/assets/images/image_pattern2.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position-x: center;
    background-position-y: top;
    margin: auto;
}
.services img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.services-topWave{
    position: absolute;
    top: -1px;
    width: 100%;
    z-index: 7;
    /* display: none; */
}
.services-wrapper{
    padding: 200px 0;
}
.services-wrapper img{
    /* border-radius: 15px 15px 50px 50px; */
    filter: brightness(100%) contrast(115%);
    border-radius: 45px;
    /* transform: skew(-7deg); */
}
.services-title{
    position: relative;
    font-family: "Playfair Display", serif;
    font-size: 85px;
    width: fit-content;
    text-align: center;
    height: fit-content;
    padding: 15px 5px;
    background-image: linear-gradient(90deg,var(--main-color), var(--secondary-color),var(--main-color));
    background-clip: text;
    display: inline-block;
    width: 100%;
}
.services-title::after{
    content: '';
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    /* bottom: -17%;
    left: -15px; */
    /* transform: skew(-26deg); */
    width: 410px;
    height: 50px;
    background: rgb(255, 255, 255,0.5);
    border-radius: 15px;
    z-index: -1;
}

/*
 * LEFT CONTAINER
 */
.sevices-container-l{
    position: relative;
    display: grid;
    max-width: 1120px;
    width:95%;
    margin: 75px auto;
    grid-template-columns: 30px 424px 30px 1fr 130px 10px;
    grid-template-rows: 30px 60px 20px 225px 20px;
}
@media screen and (max-width: 926px) {
    .sevices-container-l{
        grid-template-columns: 30px 350px 30px 1fr 130px 10px;
    }

}
.services-picBg-l{
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 5;
    /* filter: blur(10px); */
    opacity: 0.3;
    display: none;
}
.services-pic-l{
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 6;
    z-index: 1;
}
.services-ttl-l{
    font-family: "Playfair Display", serif;
    position: absolute;
    grid-column-start: 4;
    grid-column-end: 6;
    grid-row-start: 1;
    grid-row-end: 3;
    font-size: 43px;
    text-align: center;
    width: 100%;
}
@media screen and (max-width: 926px) {
    .services-ttl-l{
        font-size: 35px;
    }

}
.services-detail-l{
    position: absolute;
    grid-column-start: 3;
    grid-column-end: 6;
    grid-row-start: 3;
    grid-row-end: 5;
    z-index: 1;
    padding: 35px 50px;
    background-color: rgb(255, 255, 255,0.7);
    line-height: 1.5;
    vertical-align: middle;
    width: 100%;
    font-size: 19px;
}

@media screen and (max-width: 1024px) {
.services-detail-l{
    /* grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 3;
    grid-row-end: 5; */
}
}
.services-separator-l{
    grid-column-start: 5;
    grid-column-end: 7;
    grid-row-start: 2;
    grid-row-end: 4;
    background-color: rgb(0, 108, 162,0.08);
    z-index: 1;
    width: 150px;
    height: 150px;
    border-radius: 15%;
    transform: skew(-26deg);
}

/*
 * RIGHT CONTAINER
 */
 .sevices-container-r{
    display: grid;
    max-width: 1120px;
    width:95%;
    margin: 75px auto;
    grid-template-columns: 10px 130px 1fr 30px 424px 30px;
    grid-template-rows: 30px 60px 20px 225px 20px;

}

.services-picBg-r{
    grid-column-start: 5;
    grid-column-end: 7;
    grid-row-start: 1;
    grid-row-end: 5;
    /* filter: blur(10px); */
    opacity: 0.3;
    display: none;
}
.services-pic-r{
    grid-column-start: 4;
    grid-column-end: 6;
    grid-row-start: 2;
    grid-row-end: 6;
    z-index: 1;
}
@media screen and (max-width: 926px) {
    .services-pic-r{
        grid-column-start: 5;
        grid-column-end: 7;
        grid-row-start: 2;
        grid-row-end: 6;
        z-index: 1;
    }
}
.services-ttl-r{
    font-family: "Playfair Display", serif;
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 3;
    font-size: 43px;
    text-align: center;
    width: 100%;
}
@media screen and (max-width: 926px) {
    .services-ttl-r{
        font-size: 25px;
    }

}
.services-detail-r{
    grid-column-start: 2;
    grid-column-end: 5;
    grid-row-start: 3;
    grid-row-end: 5;
    z-index: 1;
    padding: 35px 50px;
    background-color: rgb(255, 255, 255,0.8);
    line-height: 1.5;
    vertical-align: middle;
    width: 100%;
    font-size: 19px;
}
@media screen and (max-width: 926px) {
    .services-detail-r{
        grid-column-start: 2;
        grid-column-end: 6;
        grid-row-start: 3;
        grid-row-end: 5;
        z-index: 1;
        padding: 35px 50px;
        background-color: rgb(255, 255, 255,0.8);
        line-height: 1.5;
        vertical-align: middle;
        width: 100%;
        font-size: 19px;
    }

}
.services-separator-r{
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 4;
    background-color: rgb(0, 108, 162,0.08);
    z-index: 1;
    width: 150px;
    height: 150px;
    border-radius: 15%;
    transform: skew(26deg);
}
.services-bottomWave{
    position: absolute;
    bottom: -20px;
    width: 100%;
    min-width:2000px;
    z-index: 7;
}
 /*
 * REQUIREMENT
 */
.requirements{
    position: relative;
    height: 100dvh;
    width: 100dvw;
    background-color: #ffffff;
    background-image: url('/assets/images/requirement.png');
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: right;
}
@media screen and (max-width: 1024px) {
    .requirements{
        padding: 0 60px;
        background-position: right bottom;
    }
}
.requirements-wrapper{
    width:1024px;
    margin: auto;
}
.requirements-title{
    position: relative;
    font-size: 75px;
    margin-top: 75px;
    text-align: left;
    font-family: "Playfair Display", serif;
    width: fit-content;
}
.requirements-title::after{
    content: '';
    position: absolute;
    bottom: -10%;
    left: 35px;
    /* bottom: -17%;
    left: -15px; */
    /* transform: skew(-26deg); */
    width: 105%;
    height: 50px;
    background: #d1e8f3;
    border-radius: 15px;
    z-index: -1;
}

.requirements-list{
    width: 97%;
    margin: 75px auto;
}
.requirements-item{
    display: flex;
    padding: 25px 0;
}
.requirements-text{
    font-size: 19px;
    padding: 0 15px;
    border-radius: 15px;
    /* margin-bottom: 25px; */
    margin-top: 9px;
}
.requirements-image{
    margin: 10px 5px 0 0;
    width: 50px;
    height: 50px;

}
.requirements-image > img{
    width: 100%;
    height: 100%;
}
.requirements-ttl{
    font-size: 27px;
    font-weight: bold;
}
.requirements-detail{
    font-style:oblique ;
}


/*
 * CONTACT
 */
.contact{
    position: relative;
    width: 100dvw;
    height: max-content;
    padding: 75px 0 125px 0;
    background-image: url('/assets/images/contact-us5.jpg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    background-attachment: fixed;
}
.contact-topWave{
    position: absolute;
    top: -1px;
    width: 100%;
    z-index: 7;
}

.contact-wrapper{
    max-width: 1024px;
    width: 95%;
    margin: auto;
}
.contact-title{
    position: relative;
    font-size: 75px;
    margin: 155px auto 0 auto; 
    text-align: center;
    font-family: "Playfair Display", serif;
    width: fit-content
}
.contact-title::after{
    content: '';
    position: absolute;
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    /* bottom: -17%;
    left: -15px; */
    /* transform: skew(-26deg); */
    width: 500px;
    height: 50px;
    background: #d5eaf4;
    border-radius: 15px;
    z-index: -1;
}

.contact-note{
    font-size: 25px;
    color: var(--main-color);
    text-align: center;
    margin-top: 35px;
}
.contact-noteSmall{
    font-size: 14px;
    text-align: right;
    color: var(--main-color);
}
.contact-table{
    display: table;
    width: 95%;
    margin: 35px auto;
    background-color: rgb(0, 107, 159,0.05);
    border-radius: 35px 35px 0 35px;
    padding: 32px;
    scale:1 1;
}
.contact-row{
    display: table-row;
    margin-bottom: 5px;
}
.contact-th{
    display:table-cell;
    padding:15px;
    width: 25%;
    font-size: 21px;
    font-weight: bold;
    color: var(--main-color);
    vertical-align: top;
    text-align: right;
    background-color: rgb(255, 255, 255,0.5);
}
.contact-td{
    display:table-cell;
    padding:15px;

}
.contact-td-button{
    text-align: right;
}
.contact-input{
    width: 100%;
    padding: 10px 25px;
    /* background-color: var(--secondary-color); */
    color:  var(--primary-color);
    font-size: 16px;
    border: 1px solid var(--secondary-color);
    border-radius: 10px 10px 0 10px;
}
.contact-btnWrapper{
    display: flex;
    justify-content: flex-end;
}
.contact-nextBtn,
.contact-sendBtn{
    padding: 10px 25px;
    background-color:  var(--main-color);
    border-radius: 15px;
    cursor: pointer;
    color: #ffffff;
}
.contact-backBtn{
    padding: 10px 25px;
    background-color: rgb(255, 255, 255,0.5);
    border-radius: 15px;
    border: 1px solid #ffffff;
    cursor: pointer;
    margin-right: 10px;
}
.contact-nextBtn:hover{
    background-color: var(--secondary-color);
}
.contact-noteComfirm{
    display: none;
    text-align: left;
    text-decoration: underline;
    font-size: 21px;
    color: #ffffff;
}
.contact-required{
    font-weight: bold;
    color: var(--primary-color);
    margin-right: 5px;
    font-size: 16px;
}
.contact-confirm{
    color: var(--primary-color);
    display: none;
}
.contact-error{
    font-size: 16px;
    color: #b3492f;
    margin-top: 10px;
    display: none;
}


.confirmBtn{
    display: none;
}

/*
 * FOOTER
 */

.footer{
    padding: 35px;
    background-color: var(--main-color);
    text-align: center;
}
.footer_copyright{
    font-size: 16px;
    color: #ffffff;
}
