#header {
    background-color: #053742;
    color: #fff;
    height: 100vh;
    font-family: 'Noto Sans JP', sans-serif;
}
#header [class^="col"]{
    z-index: 9;
}
.head-title {
    margin: 0;
    padding: 0;
    font-weight: 700;
    line-height: 1;
    font-size: 54px;
}
.head-title:hover {
    color: #fff;
}
.banner {
    background-image: url(img/banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.banner-overlay {
    position: absolute;
    height: 100%;
    width: 54%;
    clip-path: ellipse(56% 75% at 42% 50%);
    background: #053742;
    top: 0;
    left: 0;
    z-index: 1;
}
.left-banner-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.banner-title {
    z-index: 99999;
}
.banner-buttons{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 40px;
}
.banner-btn{
    padding: 15px 35px;
    border: 2px solid #fff;
    background-color: transparent;
    margin: 0 10px 0 0;
    z-index: 99999;
    color: #fff;
    text-decoration: none;
}
.banner-btn:hover{
    text-decoration: none;
    background-color: #fff;
    color: #053742;
    transition: all 0.4s;
}



.content-section {
    padding: 80px 0;
}
.section-title {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1;
    color: #053742;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    text-transform: uppercase;
    text-decoration: underline;
}
.service-bx{
    text-align: center;
}
.service-img{
    width: 70%;
    margin: 30px auto;
}
.service-title{
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: #053742;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    text-transform: uppercase;
}
.add-div {
    margin: 40px 0 30px;
    height: 100%;
    width: 100%;
    text-align: center;
}
.open-para {
    color: #334443;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 25px;
}



.gallery-section {
    background-color: #EFEFEF;
}
.gal-img{
    border: 2px solid #053742;
    overflow: hidden;
    object-fit: cover;
    border-radius: 10px;
}
.gallery-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.gallery-img:hover {
    -ms-transform:scale(1.2);
    -webkit-transform:scale(1.2);
    transform:scale(1.2);
}



.contact-btn,
.contact-foot-btn {
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    padding: 20px 30px;
    font-family: 'Noto Sans JP', sans-serif;
    text-transform: uppercase;
    color: #053742;
    border: 2px solid #053742;
    background-color: transparent;
}
.contact-btn:hover,
.contact-foot-btn:hover {
    text-decoration: none;
    background-color: #053742;
    border-color: #053742;
    color: #fff;
    transition: all 0.4s;
}
.map-section {
    background-color: #053742;
}
.map-col {
    display: flex;
    align-items: center;
}
.map-img {
    width: 100%;
    margin: 10px 0;
}



footer {
    padding: 30px 0;
}
.footer-heading {
    color: #393e46;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}
.foot-text {
    color: #334443;
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    list-style: none;
}
.foot-text>li>span {
    min-width: 45px;
    float: left;
}

@media only screen and (max-width: 991px) {
    .banner-overlay {
        width: 68%;
    }
    .banner-title h1 {
        font-size: 46px;
        text-align: center;
    }
    .banner-buttons{
        align-items: center;
        justify-content: center;
        margin: 20px 0px 50px;
    }
    .banner-btn{
        margin: 0 5px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-btn {
        padding: 15px 20px;
    }
    .banner-btn{
        padding: 10px 10px;
        font-size: 14px;
    }
    .banner-overlay {
        width: 100%;
        clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
        opacity: 0.6;
    }
    .gal-img {
        margin: 0 0 15px 0 !important;
    }
    .gallery-section.content-section {
        padding: 80px 0;
    }
    .add-div {
        text-align: center;
        padding: 0px;
        margin-bottom: 30px;
    }
    .banner-title h1 {
        font-size: 34px;
    }
    footer .row .col-md-4:first-child,
    footer .row .col-md-4:nth-child(2) {
        width: 50%;
    }
    footer .row .col-md-4:last-child {
        margin-top: 30px;
        text-align: center;
    }
    .foot-text>li>span {
        float: none;
        margin-right: 10px;
    }
    .contact-foot-btn {
        padding: 15px 15px;
    }
    .footer-heading+br {
        display: none;
    }
    footer .contact-foot-btn+br{
        display: none;
    }
}

@media only screen and (max-width: 320px) {
    .banner-btn {
        padding: 15px 10px;
        font-size: 14px;
    }
    .contact-foot-btn {
        padding: 10px 5px;
    }
}