@charset "UTF-8";
:root {
    --elBlack: #000;
    --elDarkGrey: #4B6061;
    --elGreen: #216462;
    --elLightGreen: #43AB9B;
    --elOrange: #F15B37;
    --elPurple: #684D94;
    --elLightPurple: #E7DFEF;
    --elWhite: #FFFFFF;
    --poppins: "Poppins", sans-serif;
}
html {
    font-family: var(--poppins),-apple-system, BlinkMacSystemFont, Meiryo, sans-serif;
    font-size: calc(100vw / 375);
    color: var(--elBlack, #000);
}
.pc-br{
    display: none;
}
body{
    -webkit-text-size-adjust: 100%;
}
@media screen and (min-width: 769px) {
    :root {
        --contentsWidth: 1200rem;
    }
    html {
        font-size: 1px;
    }
    body {
        /* min-width: 1080px; */
    }
    .sp-br{
        display: none;
    }
    .pc-br{
        display: inline-block;
    }
}


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


/* header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60rem;
    background-color: var(--elWhite, #FFFFFF);
    z-index: 100;
}
.header__body{
    max-width: none;
}
.header__content{
    position: relative;
}
.el-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 20rem;
    position: relative;
    z-index: 110;
    background-color: var(--elWhite, #FFFFFF);
}
.el-logo{
    width: 163rem;
}
.el-logo__image{
    display: block;
    width: 100%;
}
.el-header-nav__list{
    display: none;
}

/* header menu button */
.el-header-nav__menu{
    position: relative;
    z-index: 110;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: fit-content;
    width: fit-content;
    padding: 22rem 18rem;
}
.el-header-nav__menu-line{
    width: 24rem;
    height: 1rem;
    background-color: var(--elBlack, #000);
    margin-bottom: 6rem;
    transition: all 0.4s;
}
.el-header-nav__menu-line:last-of-type {
    margin-bottom: 0;
}
/* END: header menu button */

/* hamburger menu */
.cancel-scroll{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    touch-action: none;
    -webkit-overflow-scrolling: none;
    overscroll-behavior: none;
}
.el-header__burger-menu-bg {
    position: fixed;
    top: 60rem;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(238, 244, 247, 0);
    transition: background-color 0.4s ease;
    z-index: 90;
    pointer-events: none;
}
.el-header__burger-menu-bg.active {
    background-color: rgba(238, 244, 247, 0.9);
    pointer-events: auto;
}
.el-header__burger-menu {
    position: fixed;
    top: 60rem;
    right: 0;
    width: 100%;
    height: auto;
    background-color: var(--elWhite, #FFFFFF);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 100;
}
.el-header__burger-menu.active {
    transform: translateY(0);
}
.el-header-nav__burger-menu-link{
    display: block;
    padding: 20rem;
    border-top: 1rem solid #CBD2D8;
    color: var(--elBlack, #000);
    font-size: 16rem;
    line-height: 150%;
    letter-spacing: 0.8rem;
}
/* END: hamburger menu */


@media screen and (min-width: 769px) {
    .header{
        /* position: static; */
        height: auto;
    }
    .header__body{
        padding: 20rem 35rem 20rem 20rem;
    }
    .el-header-wrapper{
        padding: 0;
    }
    .el-logo{
        width: 20%;
        min-width: 163rem;
    }
    .el-header-nav__list{
        display: flex;
        align-items: center;
    }
    .el-header-nav__item{
        position: relative;
        display: inline-block;
        overflow: hidden;
        margin-right: 24rem;
    }
    .el-header-nav__item:last-of-type{
        margin-right: 0;
    }
    .el-header-nav__link{
        color: var(--elBlack, #000);
        font-size: 15rem;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 0.8rem;
        position: relative;
        display: inline-block;
        padding: 5rem 0;
        transition: color 0.2s ease;
    }
    .el-header-nav__link::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1rem;
        background-color: var(--elBlack, #000);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.2s ease-in-out;
    }
    .el-header-nav__item:hover .el-header-nav__link::before {
        transform: scaleX(1);
        transform-origin: left;
    }
    .el-header-nav__item .el-header-nav__link::before {
        transition: transform 0.2s ease-in-out;
    }
    .el-header-nav__item:not(:hover) .el-header-nav__link::before {
        transform: scaleX(0);
        transform-origin: right;
    }

    /* header menu button */
    .el-header-nav__menu{
        display: none;
    }
    /* END: header menu button */

    /* hamburger menu */
    .el-header__burger-menu{
        display: none;
    }
    /* END: hamburger menu */
}


@media screen and (min-width: 1320px) {
    .header__body{
        padding: 25rem 55rem 25rem 40rem;
    }
    .el-logo{
        width: 272rem;
    }
    .el-header-nav__item{
        margin-right: 50rem;
    }
    .el-header-nav__link{
        font-size: 16rem;
    }
}
/* END: header */


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


/* hero image */
.el-mv{
    margin-top: 60rem;
    position: relative;
}
.el-mv__img{
    display: block;
    width: 100%;
}
.el-mv__text-block{
    position: absolute;
    top: 57rem;
    left: 30rem;
}
.el-mv__text{
    color: var(--elBlack, #000);
    font-size: 28rem;
    font-weight: 600;
    line-height: 125%;
    margin-bottom: 29rem;
}


@media screen and (min-width: 769px) {
    .el-mv{
        margin-top: 75rem;
    }
    .el-mv__text-block{
        top: 20%;
        left: 8%;
    }
    .el-mv__text{
        font-size: 4.5vw;
        margin-bottom: 10%;
    }
}


@media screen and (min-width: 1320px) {
    .el-mv{
        margin-top: 90rem;
    }
}
/* END: hero image */


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


/* contact link button */
.el-contact__link{
    display: flex;
    width: 160rem;
    height: 40rem;
    justify-content: center;
    align-items: center;
    border-radius: 30rem;
    background-color: var(--elGreen, #216462);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.el-contact__link:hover {
    background-color: var(--elLightGreen, #43AB9B);
}
/* .button_overlay */
.el-contact__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--elLightGreen, #43AB9B);
    transition: transform 0.3s ease;
    transform: scaleX(0);
    transform-origin: right center;
    mix-blend-mode: normal;
}
/* hover時にオーバーレイが広がる */
.el-contact__link:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
}
.el-contact__link-text{
    position: relative;
    z-index: 1;
    color: var(--elWhite, #FFF);
    font-size: 14rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.7rem;
}

@media screen and (min-width: 769px) {
    .el-contact__link{
        width: 264rem;
        height: 60rem;
    }
    .el-contact__link-text{
        font-size: 18rem;
        letter-spacing: 0.9rem;
    }
}
/* END: contact link button */


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


/* common */
.el-title{
    text-align: center;
    font-size: 30rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.6rem;
}
.el-section__title{
    color: var(--elBlack, #000);
    text-align: center;
    font-size: 20rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.4rem;
}


@media screen and (min-width: 769px) {
    .el-title{
        font-size: 64rem;
        letter-spacing: 1.28rem;
    }
    .el-section__title{
        font-size: 40rem;
        letter-spacing: 0.8rem;
    }
}
/* END: common */


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


/* Who We Are */
.el-who{
    padding: 40rem 20rem;
}
.el-title--who{
    color: var(--elBlack, #000);
    margin-bottom: 20rem;
}
.el-who__text{
    color: var(--elBlack, #000);
    text-align: center;
    font-size: 18rem;
    line-height: 175%;
}

/* numbers */
.content-block--el-numbers{
    background-color: var(--elGreen, #216462);
}
.el-numbers{
    padding: 17rem 25rem 19rem;
}
.el-numbers__list{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 26rem;
}
.el-numbers__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 71rem;
}
.el-numbers__item:nth-of-type(1){
    width: 107rem;
}
.el-numbers__item:nth-of-type(2){
    width: 57rem;
}
.el-numbers__item:nth-of-type(3){
    width: 87rem;
}
.el-numbers__image{
    display: block;
    width: 100%;
    margin-bottom: 12rem;
}
.el-numbers__text{
    display: inline-block;
    color: var(--elWhite, #FFF);
    text-align: center;
    font-size: 12rem;
    font-weight: 600;
    line-height: 125%;
    letter-spacing: 0.24rem;
}
/* END: numbers */


/* Our Mission, Our Team */
.el-about{
    padding: 40rem 20rem 60rem;
}
.el-contact__link--about{
    margin: 0 auto;
}

/* Our Mission */
.el-about__mission{
    margin-bottom: 40rem;
}
.el-section__title--mission{
    margin-bottom: 10rem;
}
.el-about__mission-text{
    color: var(--elBlack, #000);
    text-align: center;
    font-size: 16rem;
    line-height: 175%
}
/* END: Our Mission */

/* Our Team */
.el-about__team{
    margin-bottom: 40rem;
}
.el-section__title--team{
    margin-bottom: 19rem;
}
.el-about__team-list{
    display: flex;
    flex-wrap: wrap;
}
.el-about__team-item{
    width: calc((100% - 17rem) / 2);
    margin-right: 17rem;
    margin-bottom: 17rem;
}
.el-about__team-item:nth-of-type(2n){
    margin-right: 0;
}
.el-about__team-item:nth-of-type(n+3){
    margin-bottom: 0;
}
.el-about__team-item-img{
    display: block;
    width: 100%;
    border-radius: 10rem 10rem 0 0;
}
.el-about__team-item-text-block{
    border-radius: 0 0 10rem 10rem;
    padding: 11rem 0;
}
.el-about__team-item:first-of-type .el-about__team-item-text-block{
    background-color: var(--elOrange, #F15B37);
}
.el-about__team-item:nth-of-type(2) .el-about__team-item-text-block{
    background-color: var(--elLightgreen, #43AB9B);
}
.el-about__team-item:nth-of-type(3) .el-about__team-item-text-block{
    background-color: var(--elPurple, #684D94);
}
.el-about__team-item:last-of-type .el-about__team-item-text-block{
    background-color: var(--elGreen, #216462);
}
.el-about__team-item-text{
    color: var(--elWhite, #FFF);
    text-align: center;
    font-size: 14rem;
    font-weight: 600;
    line-height: 125%;
    letter-spacing: 0.28rem;
}
/* END: Our Team */
/* END: Our Mission, Our Team */


@media screen and (min-width: 769px) {
    .el-who{
        padding: 100rem 20rem 96rem;
    }
    .el-title--who{
        margin-bottom: 30rem;
    }
    .el-who__text{
        font-size: 22rem;
    }

    /* numbers */
    .el-numbers{
        padding: 46rem 25rem 34rem;
    }
    .el-numbers__list{
        width: 78%;
        margin: 0 auto;
        gap: normal;
    }
    .el-numbers__item{
        min-width: auto;
    }
    .el-numbers__item:nth-of-type(1){
        width: 28%;
    }
    .el-numbers__item:nth-of-type(2){
        width: 15%;
    }
    .el-numbers__item:nth-of-type(3){
        width: 23%;
    }
    .el-numbers__image{
        margin-bottom: 25rem;
    }
    .el-numbers__text{
        font-size: 20rem;
        line-height: 150%;
        letter-spacing: 0.4px;
    }
    /* END: numbers */


    /* Our Mission, Our Team */
    .el-about{
        padding: 100rem 20rem 120rem;
    }

    /* Our Mission */
    .el-about__mission{
        margin-bottom: 90rem;
    }
    .el-section__title--mission{
        margin-bottom: 20rem;
    }
    .el-about__mission-text{
        font-size: 18rem;
    }
    /* END: Our Mission */

    /* Our Team */
    .el-about__team{
        margin-bottom: 60rem;
    }
    .el-section__title--team{
        margin-bottom: 40rem;
    }
    .el-about__team-list{
        width: 86%;
        margin: 0 auto;
    }
    .el-about__team-item{
        width: calc((100% - 4% * 3) / 4);
        margin-right: 4%;
        margin-bottom: 0;
    }
    .el-about__team-item:nth-of-type(2){
        margin-right: 4%;
    }
    .el-about__team-item-img{
        border-radius: 20rem 20rem 0 0;
    }
    .el-about__team-item-text-block{
        border-radius: 0 0 20rem 20rem;
        padding: 16rem 0 18rem;
    }
    .el-about__team-item-text{
        font-size: 1.3vw;
        letter-spacing: 0.4rem;
    }
    /* END: Our Team */
    /* END: Our Mission, Our Team */
}
/* END: Who We Are */


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


/* What We Offer */
.content-block--el-offer{
    background-image: url(../images/bg_offer-sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.el-offer{
    padding: 50rem 20rem 90rem;
}
.el-title--offer{
    color: var(--elWhite, #FFF);
    margin-bottom: 40rem;
}
.el-offer__item{
    border-radius: 10rem;
    background-color: var(--elWhite, #FFF);
    padding: 20rem 20rem 30rem;
    margin-bottom: 40rem;
}
.el-offer__item:last-of-type{
    margin-bottom: 0;
}
.el-offer__img{
    display: block;
    width: 100%;
    border-radius: 10rem;
    margin-bottom: 20rem;
}
.el-offer__title{
    color: var(--elGreen, #216462);
    font-size: 20rem;
    font-weight: 600;
    line-height: 125%;
    margin-bottom: 20rem;
}
.el-offer__item-item{
    display: flex;
    color: var(--elBlack, #000);
    font-size: 16rem;
    line-height: 150%;
    margin-bottom: 10rem;
}
.el-offer__item-item:last-of-type{
    margin-bottom: 0;
}
.el-offer__item-item::before{
    content: "・";
}

/* Our Clients Are */
.el-clients{
    padding: 40rem 20rem 60rem;
}
.el-section__title--clients{
    margin-bottom: 20rem;
}
.el-clients__list{
    display: flex;
    flex-wrap: wrap;
}
.el-clients__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc((100% - 17rem) / 2);
    margin-right: 17rem;
    margin-bottom: 17rem;
    border-radius: 10rem;
    padding: 16rem 0 19rem;
}
.el-clients__item:first-of-type{
    background-color: var(--elOrange, #F15B37);
}
.el-clients__item:nth-of-type(2){
    background-color: var(--elLightgreen, #43AB9B);
}
.el-clients__item:nth-of-type(3){
    background-color: var(--elPurple, #684D94);
}
.el-clients__item:last-of-type{
    background-color: var(--elGreen, #216462);
}
.el-clients__item:nth-of-type(2n){
    margin-right: 0;
}
.el-clients__item:nth-of-type(n+3){
    margin-bottom: 0;
}
.el-clients__img{
    display: block;
    width: 60rem;
    margin-bottom: 7rem;
}
.el-clients__text{
    color: var(--elWhite, #FFF);
    text-align: center;
    font-size: 14rem;
    font-weight: 600;
    line-height: 125%;
    letter-spacing: 0.28rem;
}
/* END: Our Clients Are */


@media screen and (min-width: 769px) {
    .content-block--el-offer{
        background-image: url(../images/bg_offer-pc.png);
        background-size: cover;
    }
    .el-offer{
        padding: 100rem 20rem 170rem;
    }
    .el-title--offer{
        margin-bottom: 80rem;
    }
    .el-offer__list{
        width: 76%;
        margin: 0 auto;
    }
    .el-offer__item{
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 20rem;
        padding: 20rem 48rem 20rem 20rem;
        margin-bottom: 90rem;
    }
    .el-offer__item:nth-of-type(2n){
        flex-direction: row-reverse;
        padding: 20rem 20rem 20rem 48rem;
    }
    .el-offer__img{
        width: 39%;
        border-radius: 20rem;
        margin-bottom: 0;
        margin-right: 60rem;
    }
    .el-offer__item:nth-of-type(2n) .el-offer__img{
        margin-right: 0;
        margin-left: 60rem;
    }
    .el-offer__title{
        font-size: 24rem;
    }
    .el-offer__item-item{
        font-size: 18rem;
    }


    /* Our Clients Are */
    .el-clients{
        padding: 100rem 20rem;
    }
    .el-section__title--clients{
        margin-bottom: 40rem;
    }
    .el-clients__list{
        width: 86%;
        margin: 0 auto;
    }
    .el-clients__item{
        width: calc((100% - 4% * 3) / 4);
        margin-right: 4%;
        margin-bottom: 0;
        border-radius: 20rem;
        padding: 30rem 0 26rem;
    }
    .el-clients__item:nth-of-type(2){
        margin-right: 4%;
    }
    .el-clients__img{
        width: 80rem;
        margin-bottom: 19rem;
    }
    .el-clients__text{
        font-size: 1.3vw;
        letter-spacing: 0.4rem;
    }
    /* END: Our Clients Are */
}
/* END: What We Offer */


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


/* Meet Our Team */
.content-block--el-meet{
    background-color: var(--elLightPurple, #E7DFEF);
}
.el-meet{
    padding: 40rem 20rem 60rem;
}
.el-title--meet{
    margin-bottom: 30rem;
}
.el-meet__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20rem;
    border-radius: 10rem;
    background-color: var(--elWhite, #FFF);
    padding: 40rem 20rem 30rem;
}
.el-meet__img{
    display: block;
    width: 235rem;
    box-shadow: 5rem 10rem 20rem 0rem rgba(0, 0, 0, 0.10);
    margin-bottom: 30rem;
}
.el-meet__text{
    color: var(--elBlack, #000);
    font-size: 14rem;
    line-height: 175%;
}

@media screen and (min-width: 769px) {
    .el-meet{
        padding: 100rem 20rem 120rem;
    }
    .el-title--meet{
        margin-bottom: 68rem;
    }
    .el-meet__list{
        width: 76%;
        max-width: 1088rem;
        margin: 0 auto;
    }
    .el-meet__item{
        flex-direction: row;
        margin-bottom: 40rem;
        border-radius: 20rem;
        padding: 40rem 48rem 50rem;
    }
    .el-meet__img{
        width: 27%;
        max-width: 264rem;
        margin: 0 5% 0 0;
    }
    .el-meet__text{
        font-size: 16rem;
    }
}
/* END: Meet Our Team */


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


/* Request More Information */
.el-info{
    position: relative;
}
.el-info__img{
    display: block;
    width: 100%;
}
.el-info__text-block{
    position: absolute;
    top: 70rem;
    left: 20rem;
}
.el-info__text{
    color: var(--elBlack, #000);
    font-size: 30rem;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 0.6rem;
    margin-bottom: 30rem;
}

@media screen and (min-width: 769px) {
    .el-info{
        position: relative;
    }
    .el-info__img{
        display: block;
        width: 100%;
    }
    .el-info__text-block{
        position: absolute;
        top: 23%;
        left: 16%;
    }
    .el-info__text{
        font-size: 3vw;
        line-height: 150%;
        letter-spacing: 0.8rem;
        margin-bottom: 10%;
    }
}
/* END: Request More Information */


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


/* footer */
.footer{
    background-color: var(--elDarkGrey, #4B6061);
}
.el-footer__wrapper{
    padding: 45rem 30rem 26rem;
}
.el-footer__first-block{
    margin-bottom: 30rem;
}
.el-footer__logo-block{
    display: flex;
    align-items: center;
    margin-bottom: 38rem;
}
.el-footer__logo-link{
    display: block;
}
.el-footer__logo-link:first-of-type{
    margin-right: 37rem;
    width: 150rem;
}
.el-footer__logo-link:last-of-type{
    width: 69rem;
}
.el-footer__logo-img{
    display: block;
    width: 100%;
}
.el-footer__text{
    color: var(--elWhite, #FFF);
    font-size: 14rem;
    line-height: 150%;
    letter-spacing: 0.7rem;
}
.el-footer__link-list{
    display: flex;
    align-items: center;
    margin-bottom: 30rem;
}
.el-footer__link-item{
    margin-right: 40rem;
}
.el-footer__link-item:last-of-type{
    margin-right: 0;
}
.el-footer__link-item-link{
    display: block;
    color: var(--elWhite, #FFF);
    font-size: 14rem;
    line-height: 150%;
    letter-spacing: 0.7rem;
}
.el-footer__link-item-img{
    display: block;
    width: 22rem;
}
.el-footer__copyright{
    color: var(--elWhite, #FFF);
    font-size: 12rem;
    line-height: 150%;
    letter-spacing: 0.6rem;
}

@media screen and (min-width: 769px) {
    .footer{
        background-color: var(--elDarkGrey, #4B6061);
    }
    .el-footer__wrapper{
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        padding: 29rem 62rem 16rem 50rem;
    }
    .el-footer__first-block{
        display: flex;
        align-items: center;
        margin: 0;
        width: 48%;
        min-width: 380rem;
    }
    .el-footer__logo-block{
        flex-shrink: 0;
        width: auto;
        max-width: 47%;
        margin: 0 13% 0 0;
    }
    .el-footer__logo-link:first-of-type{
        width: 57%;
        min-width: 113rem;
        margin-right: 11%;
    }
    .el-footer__logo-link:last-of-type{
        width: 32%;
        min-width: 64rem;
    }
    .el-footer__text{
        width: 40%;
        max-width: 253rem;
        flex-grow: 1;
        flex-shrink: 0;
    }
    .el-footer__second-block{
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        width: 22%;
    }
    .el-footer__link-list{
        justify-content: flex-end;
        width: 100%;
        margin-bottom: 16rem;
    }
    .el-footer__link-item{
        margin-right: 13%;
    }
}
/* END: footer */