@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Poppins:wght@500;700&family=Zen+Old+Mincho:wght@500&display=swap');

html{
    overflow-x: hidden;
}
*{
    box-sizing: border-box;
}
:root{
    --base-color: #0F0F0F;
    --base-font-family: 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --poppins-font-family: 'Poppins', 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --mincho-font-family: 'Zen Old Mincho', 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,MS明朝,serif;
    --brand-color: #2077DB;
    --light-gray: #F5F6F8;
}

body{
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    line-height: 1.8;
    color: var(--base-color);
    letter-spacing: .1em;
    padding-top: 92px;
    font-family: var(--base-font-family)
}

body.home .wrap,
.wrap{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

a{
    transition: .2s;
    text-decoration: none;
}
a:hover{
    opacity: .6;
    text-decoration: none;
}
img{
    max-width: 100%;
    vertical-align: bottom;
}
.flex{
    display: flex;
    flex-wrap: wrap;
}
.ps-re{
    position: relative;
    z-index: 0;
}
.ps-ab{
    position: absolute;
}

.poppins{
    font-family: var(--poppins-font-family);
}
.mincho{
    font-family: var(--mincho-font-family);
}

.sp-only,
.tb-only{
    display: none !important;
}
@media screen and (max-width: 991px){
    .tb-only{
        display: block !important;
    }
    .pc-only{
        display: none;
    }
}
@media screen and (max-width: 991px){
    .sp-only{
        display: block !important;
    }
}


/* FADE */
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all .6s;
}
.fadeinr {
    opacity : 0;
    transform : translate(50px, 0);
    transition : all .6s;
}
.fadeinb {
    opacity : 0;
    transform : translate(0, -50px);
    transition : all .6s;
}

.fadeinl {
    opacity : 0;
    transform : translate(-50px, 0);
    transition : all .6s;
}

.fadeino {
    opacity : 0;
    transition : all .6s;
}

.ts1 {
    transition-delay: 150ms;
}

.ts2 {
    transition-delay: 300ms;
}

.ts3 {
    transition-delay: 450ms;
}

.ts4 {
    transition-delay: 600ms;
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeinl.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

.fadeino.scrollin {
    opacity : 1;
}


.view-btn a{
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
}
.view-btn a:hover{
    opacity: 1;
}
.view-btn a:hover span.arrow svg path{
    fill: var(--brand-color);
}
.view-btn.white a:hover span.arrow svg path{
    fill: #fff;
}
.view-btn a:hover span.arrow::before{
    transform: translate(-50%,-50%) scale(1.1);
    background-color: transparent;
}
.view-btn a:hover span.view-btn-text{
    color: var(--brand-color);
}
.view-btn.white a:hover span.view-btn-text{
    color: #fff;
}
.view-btn a:hover span.view-btn-text::before{
    width: 100%;
}
.view-btn span.arrow{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: relative;
    z-index: 0;
    margin: 0 auto;
}
.view-btn.white span.arrow::before{
    background-color: #fff;
    border: 1px solid #fff;
}
.view-btn.white span.arrow svg path{
    fill: var(--brand-color);
}
.view-btn span.arrow::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    z-index: -1;
    border-radius: 50%;
    border: 1px solid var(--brand-color);
    background-color: var(--brand-color);
    transition: .3s;
}
.view-btn span.arrow svg path{
    transition: .3s;
}
.view-btn span.view-btn-text{
    color: var(--base-color);
    font-size: 15px;
    display: inline-block;
    margin-left: 25px;
    transition: .3s;
}
.view-btn.white span.view-btn-text{
    color: #fff;
}
.title .title-en-text{
    font-size: 18px;
    letter-spacing: 0.2em;
    font-family: var(--poppins-font-family);
    position: relative;
    z-index: 0;
    font-weight: bold;
    color: var(--brand-color);
}
.title .title-en-text::before{
    content: attr(data-text);
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: -10px;
    color: var(--light-gray);
    z-index: -1;
    font-size: 100px;
    line-height: 1;
    letter-spacing: 0.2em;
    font-weight: bold;
}
.title .title-text{
    font-size: 46px;
    font-weight: 500;
    font-family: var(--mincho-font-family);
    letter-spacing: 0.3em;
    margin: 10px 0 30px;
}
.title .title-desc{
    line-height: 2.3;
    font-size: 15px;
}


/* HEADER */
#header .header-logo{
    position: fixed;
    top: 0;
    left: 0;
    width: 370px;
    height: 173px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
#header .header-logo img{
    display: block;
}
#header .header-menu{
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 998;
}
#header .header-menu nav,
#header .header-menu nav ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
#header .header-menu nav{
    justify-content: flex-end;
}
#header .header-menu nav ul li:not(:first-child){
    margin-left: 30px;
}
#header .header-menu nav ul li a{
    color: var(--base-color);
    font-size: 14px;
    display: inline-block;
    position: relative;
}
#header .header-menu nav ul li a::before{
    content: "";
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: -5px;
    background-color: var(--brand-color);
    width: 0;
    height: 1px;
    transition: .3s;
}
#header .header-menu nav ul li a:hover{
    opacity: 1;
    color: var(--brand-color);
}
#header .header-menu nav ul li a:hover::before{
    width: 100%;
}
#header .header-menu .header-link-btn{
    margin-left: 60px;
}
#header .header-menu .header-link-btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 240px;
    height: 92px;
    background-color: var(--brand-color);
    border: 1px solid var(--brand-color);
    color: #fff;
    font-size: 14px;
}
#header .header-menu .header-link-btn a:hover{
    opacity: 1;
    background-color: #fff;
    color: var(--brand-color);
}
#header .header-menu .header-link-btn a:hover svg{
    transform: translateX(10px);
}
#header .header-menu .header-link-btn a:hover svg path{
    fill: var(--brand-color);
}
#header .header-menu .header-link-btn a svg,
#header .header-menu .header-link-btn a svg path{
    transition: .3s;
}
#header .header-menu .header-link-btn a svg{
    margin-left: 16px;
}
.nav-toggle-wrap{
    display: none;
}


/* FOOTER */
#footer{
    margin-top: 120px;
    border-top: 6px solid var(--brand-color);
    padding: 76px 0;
}
#footer .footer-logo{
    margin-right: 390px;
}
#footer .link a{
    font-size: 12px;
    color: var(--base-color);
    display: inline-block;
}
#footer .link svg{
    margin-right: 5px;
    position: relative;
    bottom: -1px;
}
#footer .copyright-text{
    margin-top: 25px;
    font-size: 12px;
    font-family: var(--poppins-font-family);
    letter-spacing: 0.2em;
}



/* TOP */
.mv{
    margin-left: 60px;
    position: relative;
}
.mv .mv-img img{
    width: 100%;
}
.mv .mv-text-img{
    position: absolute;
    bottom: -3.9vw;
    right: 10.4vw;
}
.mv .mv-text-img img{
    width: 46.3vw;
}
.mv .mv-text{
    position: absolute;
    bottom: 6.9vw;
    left: 7.3vw;
    font-size: 2.9vw;
    color: #fff;
    letter-spacing: 0.3em;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 0 6px 20px rgba(13, 38, 51, 0.5);
    z-index: 1;
}
.home-sec01{
    padding: 215px 0 140px;
    position: relative;
}
.home-sec01 .wrap{
    max-width: 1023px;
}
.home-sec01 .bg-text{
    font-family: var(--poppins-font-family);
    font-size: 180px;
    line-height: 1;
    font-weight: bold;
    color: var(--light-gray);
    position: absolute;
    top: 215px;
    right: 0;
    transform: translateY(-50%);
    letter-spacing: 0.2em;
    z-index: -1;
}
.home-sec01 .flex{
    justify-content: space-between;
}
.home-sec01 .ttl-text{
    font-family: var(--poppins-font-family);
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: var(--brand-color);
}
.home-sec01 .text{
    font-size: 15px;
    line-height: 3;
}
.home-sec02 .works-img{
    width: 22.2%;
}
.home-sec02 .box{
    width: 55.6%;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    position: relative;
    z-index: 0;
}
.home-sec02 .box::before{
    content: "";
    z-index: -1;
    width: 50%;
    height: 100%;
    background-color: #F0F2F5;
    position: absolute;
    bottom: 0;
    right: 0;
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
}
.home-sec02 .ttl-text{
    color: var(--brand-color);
    font-size: 18px;
    font-weight: bold;
    font-family: var(--poppins-font-family);
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    position: relative;
    z-index: 0;
    padding-top: 40px;
}
.home-sec02 .ttl-text::before{
    content: attr(data-text);
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: -15px;
    color: #fff;
    font-family: var(--poppins-font-family);
    font-weight: bold;
    font-size: 100px;
    letter-spacing: 0.2em;
    z-index: -1;
    line-height: 1;
}
.home-sec02 .text.top{
    font-size: 46px;
    letter-spacing: 0.3em;
    font-weight: 500;
    margin: 20px 0 40px;
}
.home-sec02 .text:not(.top){
    font-size: 15px;
    line-height: 2.33;
    margin-bottom: 60px;
}
.home-sec03{
    position: relative;
    padding-top: 140px;
    z-index: 0;
    color: #fff;
}
.home-sec03 .title-en-text{
    color: #fff;
}
.home-sec03 .bg{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: calc(100% - 143px);
    background-color: var(--brand-color);
}
.home-sec03 .bg::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 43%;
    height: 100%;
    background-color: rgba(15, 15, 15, .1);
    clip-path: polygon(27% 0, 100% 0, 100% 100%, 0 100%);
}
.home-sec03 .people-img{
    display: grid;
    grid-template-columns: repeat(3,1fr);
}
.home-sec03 .people-img .img{
    overflow: hidden;
}
.home-sec03 .people-img .img img{
    transition: .6s;
}
.home-sec03 .people-img .img a:hover{
    opacity: 1;
}
.home-sec03 .people-img .img a:hover img{
    transform: scale(1.1);
}
.home-sec03 .flex{
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    position: relative;
}
.home-sec03 .flex .bg-text{
    font-family: var(--poppins-font-family);
    line-height: 1;
    font-size: 180px;
    letter-spacing: 0.2em;
    opacity: 0.04;
    color: var(--light-gray);
    position: absolute;
    bottom: 0;
    right: 0;
    font-weight: bold;
    transform: translateX(160px);
    z-index: -1;
}
.home-sec04{
    padding-top: 220px;
}
.home-sec04 .title{
    text-align: center;
    margin-bottom: 60px;
}
.home-sec04 ol{
    max-width: 880px;
    margin: 0 auto;
    counter-reset: count;
}
.home-sec04 ol li{
    padding: 40px 20px;
    border-top: 1px dashed #ccc;
    counter-increment: count;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.3em;
    font-family: var(--mincho-font-family);
}
.home-sec04 ol li::before{
    content: '0'counter(count);
    font-family: var(--poppins-font-family);
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0;
    margin-right: 20px;
    position: relative;
    top: -2px;
}
.home-sec04 ol li:last-child{
    border-bottom: 1px dashed #ccc;
}
.home-sec04 .view-btn{
    text-align: right;
    max-width: 880px;
    margin: 40px auto 0;
}


/* BREADCRUMBS */
.breadcrumbs{
    padding: 50px 0 180px;
    text-align: right;
}
.breadcrumbs span.devide{
    padding: 0 12px;
    vertical-align: middle;
}
.breadcrumbs span,
.breadcrumbs span a{
    font-size: 12px;
    color: var(--brand-color);
}


/* PAGE */
.page-mv{
    margin-bottom: 120px;
}
.page-mv .title .title-en-text::before{
    transform: translateX(-120px);
    left: 0;
    bottom: -45px;
    font-size: 180px;
}
.page-mv .wrap{
    position: relative;
    z-index: 0;
}
.page-mv .title{
    position: absolute;
    top: 0;
    left: 0;
}
.page-mv .img{
    margin-left: 520px;
    height: 420px;
    width: calc(680px + (100vw - 1200px)/2);
}
.page-mv .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* COMPANY */
.company-sec01 .box{
    border-top: 1px dashed #ccc;
    max-width: 880px;
    padding: 60px 20px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.company-sec01 .box:last-child{
    padding-bottom: 0;
}
.company-sec01 .box .img img{
    width: 300px;
}
.company-sec01 .box .text-box{
    width: calc(100% - 300px);
    padding-left: 55px;
}
.company-sec01 .num{
    font-family: var(--poppins-font-family);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--brand-color);
}
.company-sec01 .ttl-text{
    font-size: 26px;
    letter-spacing: 0.3em;
    font-family: var(--mincho-font-family);
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 500;
}
.company-sec01 .text{
    font-size: 15px;
}


/* WORKS */
.works-menu-sec ul{
    display: grid;
    grid-template-columns: repeat(3,1fr);
}
.works-menu-sec ul li{
    border: 1px solid var(--brand-color);
}
.works-menu-sec ul li:not(:last-child){
    border-right: none;
}
.works-menu-sec ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
    text-align: center;
    color: var(--brand-color);
    font-weight: bold;
    font-size: 15px;
    height: 80px;
}
.works-menu-sec ul li a::before{
    content: "";
    z-index: -1;
    background-color: var(--brand-color);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: .3s;
}
@media screen and (min-width: 992px){
    .works-menu-sec ul li a:hover{
        opacity: 1;
        color: #fff;
    }
    .works-menu-sec ul li a:hover::before{
        height: 100%;
    }
    .works-menu-sec ul li a:hover svg circle{
        stroke: #fff;
    }
}
.works-menu-sec ul li a svg{
    position: absolute;
    transform: translate(-50%,50%);
    left: 50%;
    bottom: 0;
}
.works-menu-sec ul li a svg circle{
    transition: .3s;
}
.works-sec01 .box{
    background-color: #fff;
    padding: 100px 80px;
    max-width: 1040px;
    margin: 0 auto 40px;
}
.works-sec01 .box:last-child{
    margin-bottom: 0;
}
.works-sec01 .box .en-text{
    font-family: var(--poppins-font-family);
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: var(--brand-color);
}
.works-sec01 .box .ttl-text{
    font-family: var(--mincho-font-family);
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.3em;
    margin-bottom: 30px;
}
.works-sec01 .box .text{
    font-size: 15px;
    margin-bottom: 30px;
}
.works-sec01{
    position: relative;
    z-index: 0;
    padding: 110px 0;
    margin-top: 135px;
}
.works-sec01::before{
    content: "";
    width: calc(880px + (100% - 1200px)/2);
    height: 100%;
    z-index: -1;
    background-color: var(--brand-color);
    position: absolute;
    top: 0;
    right: 0;
}


/* PEOPLE */
.people-sec01 .box{
    max-width: 880px;
    margin: 0 auto;
    padding: 60px 20px;
    border-top: 1px dashed #ccc;
}
.people-sec01 .box:last-child{
    padding-bottom: 0;
}
.people-sec01 .box .flex{
    margin-bottom: 60px;
    align-items: center;
}
.people-sec01 .box .flex .img img{
    width: 300px;
}
.people-sec01 .box .flex .text-box{
    width: calc(100% - 300px);
    padding-left: 55px;
}
.people-sec01 .num{
    font-family: var(--poppins-font-family);
    font-size: 15px;
    font-weight: 500;
    color: var(--brand-color);
    letter-spacing: 0;
}
.people-sec01 .name{
    font-family: var(--mincho-font-family);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.3em;
}
.people-sec01 .career{
    font-family: var(--mincho-font-family);
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.3em;
    margin-bottom: 30px;
}
.people-sec01 .text{
    font-size: 15px;
}


/* GUIDELINE */
.guideline-sec01 table{
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
}
.guideline-sec01 table th,
.guideline-sec01 table td{
    border-top: 1px dashed #ccc;
    padding: 40px 0;
}
.guideline-sec01 table th{
    width: 240px;
    text-align: left;
    padding-left: 20px;
    font-size: 15px;
    font-weight: bold;
}
.guideline-sec01 table td{
    width: calc(100% - 240px);
    font-size: 15px;
}
.guideline-sec01 table td ul li{
    padding-left: 1em;
}
.guideline-sec01 table td ul li::before{
    content: "・";
    margin-left: -1em;
}
.guideline-sec01 table td ol{
    counter-reset: count;
}
.guideline-sec01 table td ol li{
    counter-increment: count;
    padding-left: 1.5em;
}
.guideline-sec01 table td ol li::before{
    content: "("counter(count)")";
    margin-left: -1.5em;
}
.guideline-sec01 table td ol.mb li{
    margin-bottom: 25px;
}
.guideline-sec01 table td ol.mb li:last-child{
    margin-bottom: 0;
}
.guideline-sec01 table td .indent{
    padding-left: 1em;
    display: inline-block;
}
.guideline-sec01 table td ul.indent,
.guideline-sec01 table td ol.indent{
    display: block;
}
.guideline-sec01 table td.adjust span:not(.indent){
    font-weight: bold;
    margin-top: 25px;
    display: block;
}
.guideline-sec01 table td.adjust span:not(.indent):first-child{
    margin-top: 0;
}
.guideline-sec01 .view-btn{
    text-align: center;
    margin-top: 50px;
}



@media screen and (max-width: 1366px){
    body{
        padding-top: 70px;
    }


    /* HEADER */
    #header .header-logo{
        width: 360px;
        height: 140px;
    }
    #header .header-logo img{
        width: 260px;
    }
    #header .header-menu .header-link-btn a{
        width: 230px;
        height: 70px;
    }
}


@media screen and (max-width: 1199px){
    .wrap{
        padding: 0 20px;
    }


    /* PAGE */
    .page-mv .title{
        left: 20px;
    }
    .page-mv .title .title-en-text::before{
        transform: translateX(-20px);
        font-size: 130px;
        bottom: -20px;
    }
    .page-mv .img {
        margin-left: 420px;
        height: 420px;
        width: calc((100% - 420px) + 20px);
    }
}


@media screen and (max-width: 991px){
    body{
        padding-top: 45px;
    }


    /* HEADER */
    #header{
        background-color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
    }
    #header .header-logo{
        width: 290px;
        height: 85px;
    }
    #header .header-logo img{
        width: 225px;
    }
    #header .header-menu{
        visibility: hidden;
        opacity: 0;
        transition: .3s;
        position: fixed;
        top: 45px;
        left: 0;
        background-color: var(--brand-color);
        height: calc(100% - 45px);
    }
    #header .header-menu .header-link-btn{
        display: none;
    }
    #header .header-menu nav{
        justify-content: center;
        height: 100%;
    }
    #header .header-menu nav ul{
        display: block;
    }
    #header .header-menu nav ul li:not(:first-child){
        margin-left: 0;
    }
    #header .header-menu nav ul li{
        margin-bottom: 40px;
        text-align: center;
        transition: opacity .3s, transform .6s;
        transform: translateY(40px);
        opacity: 0;
    }
    #header .header-menu nav ul li:nth-of-type(1){
        transition-delay: .1s;
    }
    #header .header-menu nav ul li:nth-of-type(2){
        transition-delay: .2s;
    }
    #header .header-menu nav ul li:nth-of-type(3){
        transition-delay: .3s;
    }
    #header .header-menu nav ul li:nth-of-type(4){
        transition-delay: .4s;
    }
    #header .header-menu nav ul li:last-child{
        margin-bottom: 0;
    }
    #header.open .header-menu{
        opacity: 1;
        visibility: visible;
    }
    #header.open .header-menu nav ul li{
        transform: translateY(0);
        opacity: 1;
    }
    #header .header-menu nav ul li a{
        color: #fff;
        font-size: 15px;
    }
    .nav-toggle-wrap{
        width: 45px;
        height: 45px;
        margin-left: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--brand-color);
    }
    .nav-toggle{
        position: relative;
        width: 20px;
        height: 5px;
    }
    .nav-toggle span{
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #fff;
        transition: .3s;
    }
    .nav-toggle span:nth-of-type(1){
        top: 0;
    }
    .nav-toggle span:nth-of-type(2){
        top: 4px;
    }
    .open .nav-toggle span:nth-of-type(1){
        transform: translateY(2px) rotate(30deg);
    }
    .open .nav-toggle span:nth-of-type(2){
        transform: translateY(-2px) rotate(-30deg);
    }


    /* FOOTER */
    #footer{
        text-align: center;
    }
    #footer .flex{
        display: block;
    }
    #footer .footer-logo{
        margin-right: 0;
        margin-bottom: 25px;
    }



    /* TOP */
    .mv{
        margin-left: 30px;
    }
    .home-sec01 .bg-text{
        font-size: 110px;
        right: auto;
        left: 0;
        top: 135px;
    }
    .home-sec01{
        padding: 115px 0;
    }
    .home-sec02 .works-img{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
    .home-sec02 .box{
        width: 100%;
        padding: 100px 20px;
    }
    .home-sec03{
        padding-top: 100px;
    }
    .home-sec04{
        padding-top: 140px;
    }


    /* BREADCRUMBS */
    .breadcrumbs{
        display: none;
    }


    /* PAGE */
    .page-mv .title .title-en-text::before{
        font-size: 115px;
    }
    .page-mv{
        margin-bottom: 50px;
    }
    .page-mv .title{
        padding-top: 120px;
        position: initial;
    }
    .page-mv .img{
        width: 100vw;
        margin-left: 0;
        margin: 0 -20px;
    }


    /* WORKS */
    .works-sec01{
        margin-top: 65px;
    }
    .works-sec01 .box{
        padding: 50px 40px;
    }
    .works-sec01 .box .ttl-text{
        font-size: 30px;
    }
}


@media screen and (max-width: 767px){
    .ts1,
    .ts2,
    .ts3,
    .ts4{
        transition-delay: 0s;
    }

    .view-btn span.view-btn-text{
        font-size: 14px;
    }
    .title .title-text{
        font-size: 40px;
        margin-bottom: 50px;
    }
    .title .title-en-text::before{
        font-size: 110px;
        transform: translateX(-20px);
        left: 0;
        bottom: -20px;
    }
    .title .title-en-text{
        font-size: 16px;
    }
    .title .title-desc{
        font-size: 14px;
    }


    /* FOOTER */
    #footer{
        margin-top: 100px;
        padding: 80px 0 50px;
    }
    #footer .footer-logo img{
        width: 225px;
    }
    #footer .footer-logo{
        margin-bottom: 50px;
    }
    #footer .copyright-text{
        margin-top: 50px;
    }


    /* TOP */
    .mv{
        margin-left: 0;
    }
    .mv .mv-text{
        bottom: auto;
        top: 40vw;
        font-size: 9.6vw;
        letter-spacing: 0.2em;
        line-height: 1.66;
    }
    .mv .mv-text span{
        font-weight: normal;
    }
    .mv .mv-text-img{
        bottom: auto;
        top: 80vw;
        right: 0;
    }
    .mv .mv-text-img img{
        width: 76.1vw;
    }
    .home-sec01{
        padding: 165px 0 100px;
    }
    .home-sec01 .flex{
        display: block;
    }
    .home-sec01 .bg-text{
        top: 195px;
    }
    .home-sec01 .ttl-text{
        margin-bottom: 40px;
    }
    .home-sec01 .text{
        font-size: 14px;
        line-height: 2.4;
    }
    .home-sec02 .box{
        text-align: left;
        display: block;
        padding: 190px 20px 100px;
    }
    .home-sec02 .ttl-text{
        padding-top: 0;
    }
    .home-sec02 .ttl-text::before{
        transform: translateX(-20px);
        left: 0;
    }
    .home-sec02 .text.top{
        font-size: 40px;
        margin: 14px 0 50px;
    }
    .home-sec02 .box::before{
        width: 76%;
        clip-path: polygon(45% 0, 100% 0, 100% 100%, 0 100%);
    }
    .home-sec02 .ttl-text::before{
        font-size: 110px;
    }
    .home-sec03 .flex .bg-text{
        font-size: 110px;
        right: auto;
        bottom: auto;
        top: -60px;
        transform: translateX(-20px);
        left: 0;
    }
    .home-sec03{
        padding-top: 190px;
    }
    .home-sec03 .bg::before{
        width: 84%;
        clip-path: polygon(55% 0, 100% 0, 100% 100%, 0 100%);
    }
    .home-sec03 .flex{
        display: block;
    }
    .home-sec03 .view-btn{
        margin-top: 50px;
    }
    .home-sec03 .people-img{
        display: block;
    }
    .home-sec03 .bg{
        height: 200vw;
    }
    .home-sec04{
        padding-top: 280px;
    }
    .home-sec04 ol li{
        padding: 40px 10px 40px 60px;
        font-size: 21px;
        position: relative;
        line-height: 1.6;
    }
    .home-sec04 ol li::before{
        font-size: 20px;
        position: absolute;
        top: 40px;
        left: 20px;
        margin-right: 0;
    }
    .home-sec04 .view-btn{
        text-align: left;
    }


    /* PAGE */
    .page-mv .img{
        height: auto;
    }
    .page-mv .img img{
        height: auto;
    }
    .page-mv .title{
        padding-top: 140px;
    }
    .page-mv .title .title-en-text::before{
        font-size: 110px;
    }


    /* COMPANY */
    .company-sec01 .box{
        display: block;
        padding: 40px 10px;
    }
    .company-sec01 .box .text-box{
        width: 100%;
        margin-bottom: 30px;
        padding-left: 0;
    }
    .company-sec01 .box .img img{
        width: 100%;
    }
    .company-sec01 .ttl-text{
        font-size: 21px;
    }
    .company-sec01 .text{
        font-size: 14px;
    }


    /* WORKS */
    .works-menu-sec ul{
        display: block;
    }
    .works-menu-sec ul li:not(:last-child){
        border-right: 1px solid var(--brand-color);
    }
    .works-menu-sec ul li:not(:last-child){
        border-bottom: none;
    }
    .works-menu-sec ul li a{
        height: 60px;
    }
    .works-menu-sec ul li a:hover{
        opacity: 1;
    }
    .works-menu-sec ul li a svg{
        right: 20px;
        left: auto;
        transform: translateY(-50%);
        bottom: auto;
        top: 50%;
        width: 25px;
        height: 25px;
    }
    .works-sec01{
        margin-top: 100px;
        padding: 100px 0;
    }
    .works-sec01::before{
        width: calc(100% - 75px);
    }
    .works-sec01 .box{
        margin: 0 -20px 40px;
        width: 100vw;
        padding: 100px 20px;
    }
    .works-sec01 .box .en-text{
        font-size: 16px;
    }
    .works-sec01 .box .ttl-text{
        font-size: 40px;
    }
    .works-sec01 .box .text{
        font-size: 14px;
        line-height: 2.4;
    }


    /* PEOPLE */
    .people-sec01 .box{
        padding: 40px 0;
    }
    .people-sec01 .box .flex{
        display: block;
        margin-bottom: 30px;
    }
    .people-sec01 .box .flex .img{
        margin-bottom: 40px;
    }
    .people-sec01 .box .flex .img img{
        width: 100%;
    }
    .people-sec01 .box .flex .text-box{
        padding-left: 0;
        width: 100%;
    }
    .people-sec01 .num{
        font-size: 14px;
    }
    .people-sec01 .text{
        font-size: 14px;
    }


    /* GUIDELINE */
    .guideline-sec01 table th,
    .guideline-sec01 table td{
        width: 100%;
        display: block;
        padding: 40px 10px;
        font-size: 14px;
    }
    .guideline-sec01 table th{
        padding-bottom: 0;
    }
    .guideline-sec01 table td{
        padding-top: 20px;
        border-top: none;
    }
}