@charset "UTF-8";
/* =====================================
	index
===================================== */

#splash{
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 1000;
    width: 100%;
    height: 100vh;
}

#splash .wrap{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#splash .wrap > svg{
    margin: 0 auto;
    display: block;
}

#splash svg .logo{
    fill: #0086d1;
}

#splash #splash_text{
    text-align: center;
    margin-top: 10px;
}

#splash #splash_text svg{
    display: none!important;
}

.visual{
    width: 100%;
    height: calc(100vh - 38px);
    position: relative;
}

.visual.patternA{
    background: url("../img/index/bg01.jpg") center;
    background-size: cover;
}

.visual.patternB{
    background: url("../img/index/bg02.jpg") center;
    background-size: cover;
}

.visual.patternC{
    background: url("../img/index/bg03.jpg") center;
    background-size: cover;
}

.visual.patternD{
    background: url("../img/index/bg04.jpg") center;
    background-size: cover;
}

.visual.patternE{
    background: url("../img/index/bg05.jpg") center;
    background-size: cover;
}

.visual.patternF{
    background: url("../img/index/bg06.jpg") center;
    background-size: cover;
}

.visual .inner{
    width: 100%;
    height: calc(100vh - 38px);
    margin: 0 auto;
    position: relative;
}

.visual::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(2%);
    opacity: 0;
}

.visual.patternA::before{
    background: url("../img/index/gundam01.png") center no-repeat;
    background-size: cover;
}

.visual.patternB::before{
    background: url("../img/index/gundam02.png") center no-repeat;
    background-size: cover;
}

.visual.patternC::before{
    background: url("../img/index/gundam03.png") center no-repeat;
    background-size: cover;
}

.visual.patternD::before{
    background: url("../img/index/gundam04.png") center no-repeat;
    background-size: cover;
}

.visual.patternE::before{
    background: url("../img/index/gundam05.png") center no-repeat;
    background-size: cover;
}

.visual.patternF::before{
    background: url("../img/index/gundam06.png") center no-repeat;
    background-size: cover;
}

.loaded .visual::before{
    animation: gundamAnime 1.2s ease 2.6s forwards;
}

@keyframes gundamAnime{
    0%{
        opacity: 0;
        transform: translateX(2%);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}

.visual .inner h1{
    font-size: 5.833vw;
    font-weight: 500;
    line-height: 1.457;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    letter-spacing: 0.2em;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}

.en_page .visual .inner h1{
    font-size: 2.8vw;
    letter-spacing: 0;
	line-height:1.6;
}

.en_page .visual .inner h1 .wrap01 {
	font-weight:bold;
}

.en_page .visual .inner h1 .wrap02, .en_page .visual .inner h1 .wrap03 {
    font-size: 5.8vw;
	font-weight:bold;
	line-height:1.1;
}

.visual .inner h1 small{
    font-size: 85%;
}

.visual .inner h1 .subTxt{
    font-size: 30%;
    font-weight: bold;
    line-height: 1.57;
    display: block;
    margin-top: 10px;
    letter-spacing: 0.08em;
}

.en_page .visual .inner h1 .subTxt{
    font-size: 70%;
	font-weight:normal;
}

.visual .inner h1 .wrap{
    position: relative;
}

.visual .inner h1 .wrap .txt{
    opacity: 0;
}

.visual .inner h1 .wrap::before{
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: #fff;
    z-index: 5;
}

.visual .inner h1 .wrap01::before, .visual .inner h1 .wrap02::before{
    height: 90%;
}

.loaded .visual .inner h1 .wrap01 .txt{
    animation: txtAnime .8s ease 1s forwards;
}

.loaded .visual .inner h1 .wrap02 .txt{
    animation: txtAnime .8s ease 1.2s forwards;
}

.loaded .visual .inner h1 .wrap03 .txt{
    animation: txtAnime .8s ease 1.4s forwards;
}

.loaded .visual .inner h1 .wrap04 .txt{
    animation: txtAnime .8s ease 1.6s forwards;
}

.loaded .visual .inner h1 .wrap01::before{
    animation: txtOverlayAnime .8s ease 1s forwards;
}

.loaded .visual .inner h1 .wrap02::before{
    animation: txtOverlayAnime .8s ease 1.2s forwards;
}

.loaded .visual .inner h1 .wrap03::before{
    animation: txtOverlayAnime .8s ease 1.4s forwards;
}

.loaded .visual .inner h1 .wrap04::before{
    animation: txtOverlayAnime .8s ease 1.6s forwards;
}

@keyframes txtAnime{
    0%{
        opacity: 0;
    }
    48%{
        opacity: 0;
    }
    52%{
        opacity: 1;
    }
    100%{
        opacity: 1;
    }
}

@keyframes txtOverlayAnime{
    0%{
        width: 0;
        left: 0;
        right: auto;
    }
    48%{
        width: 100%;
        left: 0;
        right: auto;
    }
    52%{
        width: 100%;
        left: auto;
        right: 0;
    }
    100%{
        width: 0;
        left: auto;
        right: 0;
    }
}

.visual p a{
    font-size: 1.44rem;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    position: absolute;
    bottom: 18px;
    transform: translateX(-50%);
    padding: 0 20px 7px 0;
}

.visual.patternA p a{
    left: 50%;
}

.visual.patternB p a{
    left: 47%;
}

.visual.patternC p a{
    left: 47%;
}

.visual.patternD p a{
    left: 47%;
}

.visual.patternE p a{
    left: 45%;
}

.visual.patternF p a{
    left: 40%;
}

.visual p a::before{
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    opacity: 0.5;
}

.visual p a::after{
    content: "";
    width: 17px;
    height: 1px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    opacity: 0.5;
    transform: rotate(45deg);
    transform-origin: right bottom;
}

.visual p a span{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.visual p a span::before{
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    animation: visualArrow01 2.2s ease 0.4s infinite forwards;
}

.visual p a span::after{
    content: "";
    width: 17px;
    height: 1px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    transform: rotate(45deg);
    transform-origin: right bottom;
    animation: visualArrow02 2.2s ease 0.4s infinite forwards;
}

@keyframes visualArrow01{
    0%{
        width: 0;
        left: 0;
    }
    10%{
        width: 0;
        left: 0;
    }
    25%{
        width: 100%;
        left: 0;
    }
    50%{
        width: 100%;
        left: 0;
    }
    65%{
        width: 0;
        left: 100%;
    }
    100%{
        width: 0;
        left: 100%;
    }
}

@keyframes visualArrow02{
    0%{
        width: 0;
        bottom: 0;
        right: 0;
    }
    25%{
        width: 0;
        bottom: 0;
        right: 0;
    }
    50%{
        width: 17px;
        bottom: 0;
        right: 0;
    }
    65%{
        width: 17px;
        bottom: 0;
        right: 0;
    }
    80%{
        width: 0;
        bottom: calc(17px / 1.41421356237);
        right: calc(17px / 1.41421356237);
    }
    100%{
        width: 0;
        bottom: calc(17px / 1.41421356237);
        right: calc(17px / 1.41421356237);
    }
}

.visual .scroll{
    font-size: 1.4rem;
    line-height: 1;
    color: #fff;
    position: absolute;
    bottom: 200px;
    left: 46px;
    padding: 0 0 0 85px;
    transform: rotate(90deg);
    transform-origin: left bottom;
}

.visual .scroll::before{
    content: "";
    width: 80px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0.5;
}

.visual .scroll::after{
    content: "";
    width: 80px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: visualscroll 2s ease 0.5s infinite forwards;
}

@keyframes visualscroll{
    0%{
        width: 0;
        left: 0;
    }
    12%{
        width: 0;
        left: 0;
    }
    30%{
        width: 80px;
        left: 0;
    }
    50%{
        width: 80px;
        left: 0;
    }
    68%{
        width: 0;
        left: 80px;
    }
    100%{
        width: 0;
        left: 80px;
    }
}

.works{
    width: 100%;
    padding: 52px 40px 0;
    position: relative;
}

.works::before{
    content: "";
    width: 100%;
    height: 1455px;
    position: absolute;
    top: 92px;
    right: 0;
    background: url("../img/index/bg07.jpg") center;
    background-size: cover;
    clip-path: polygon(0 508px, 100% 0%, 100% calc(100% - 508px), 0% 100%);
}

.works .inner{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.works h2{
    font-size: 1.9rem;
    line-height: 1;
    font-weight: bold;
    color: #b2b2b2;
    vertical-align: middle;
    margin-bottom: 49px;
}

.works h2 span{
    font-size: 7.0rem;
    color: #0086d1;
    vertical-align: middle;
    margin-right: 20px;
}

.works ul{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto 78px;
}

.works ul li{
    width: 18.181%;
    position: relative;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    padding-top: 25.456%;
    background: #fff;
}

.works ul li img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.works ul li .overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 5%;
    left: 0;
    background:rgba(51, 51, 51,0.8);
    color: #fff;
    line-height: 1.3;
    opacity: 0;
    transition: 0.3s all ease;
}

.works ul li .overlay.active{
    opacity: 1;
    top: 0;
}

@media (hover: hover) {

.works ul li .overlay:hover{
    opacity: 1;
    top: 0;
}

.imgArea img:hover + .bubble{
    opacity: 1;
}

}

.works ul li .overlay h4{
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.works ul li .overlay p{
    font-size: 1.0rem;
}

.works ul li .overlay a{
	width: 100%;
	height: 100%;
    font-size: 1.0rem;
    color: #fff;
	display: block;
    padding: 20px 15px 10px;
	color: #FFFFFF;
}

.works ul li .overlay .link_wrap{
    font-size: 1.0rem;
    color: #fff;
    display: table;
    padding-right: 17px;
    position: absolute;
    bottom: 10px;
    right: 15px;
}

.works ul li .overlay .link_wrap::before{
    content: "";
    background: url("../img/common/arrow01.svg");
    background-size: contain;
    width: 11px;
    height: 8px;
    position: absolute;
    top: 24%;
    right: 0;
}

.entertainment{
    width: 100%;
    position: relative;
    margin-top: 72px;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.entertainment .imgArea{
    width: 41.33%;
}

.entertainment .imgArea img{
    width: 100%;
}

.entertainment .txtArea{
    width: 58.167%;
    padding-top: 73px;
}

.entertainment .txtArea h3{
    font-size: min(2.25vw, 2.7rem);
    font-weight: bold;
    color: #b2dbf1;
    line-height: 1;
    letter-spacing: 0.2em;
    margin-bottom: 48px;
}

.entertainment .txtArea h3 span{
    font-size: min(5.833vw, 7.0rem);
    color: #fff;
    line-height: 1;
    display: block;
    letter-spacing: 0;
    margin-bottom: 17px;
}

.entertainment .txtArea p{
    font-size: 1.9rem;
    color: #fff;
    line-height: 1.789;
    width: 100%;
    max-width: 550px;
    margin-bottom: 31px;
}

.imgArea .bubble{
    position: absolute;
    bottom: 18px;
    right: -50%;
    height: 50px;
    background: #fff;
    color: #0086d1;
    font-size: 1.757rem;
    font-weight: bold;
    line-height: 1;
    padding: 16px 16px 0;
    letter-spacing: 0.08em;
    opacity: 0;
    transition: 0.3s opacity ease;
	border:#0088D2 1px solid;
}

.service{
    width: 100%;
    margin-top: -143px;
    padding: 0 40px 38px;
}

.service .inner{
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
}

.service .inner h2{
    font-size: 1.9rem;
    line-height: 1;
    font-weight: bold;
    color: #b2b2b2;
    margin: 0 22px 79px auto;
    display: block;
    text-align: right;
}

.service .inner h2 span{
    font-size: 7.0rem;
    color: #0086d1;
    margin-bottom: 5px;
    display: block;
}

.service .inner .wrap{
    position: relative;
}

.service .inner img{
    width: 100%;
}

.service .inner dl dd{
    font-size: min(1.33vw, 1.6rem);;
    line-height: 1.75;
    width: min(22.5vw, 270px);
}

.service .inner .txt01{
    position: absolute;
    top: min(1.5vw, 18px);
    left: min(65.67vw, 788px);
}

.service .inner .txt02{
    position: absolute;
    top: min(40.833vw, 490px);
    left: min(1.8519%, 20px);
}

.service .inner .txt03{
    position: absolute;
    top: min(31.25vw, 375px);
    left: min(65.67vw, 788px);
}

.en_page .txt01, .en_page .txt02, .en_page .txt03{
	display:none;
}

.service .inner a{
    margin: 62px 0 0 auto;
    display: table;
}

.business{
    width: 100%;
}

.business h2{
    width: 100%;
    background: #0086d1;
}

.business h2 span{
    width: 100%;
    max-width: 1200px;
    height: 63px;
    font-size: 1.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 0 54px;
    color: #fff;
    margin: 0 auto;
}

.business h2 small{
    font-size: 1.4rem;
    font-weight: normal;
    margin-left: 22px;
}

.business ul{
    display: flex;
    width: 100%;
}

.business ul li{
    width: calc(100% / 3);
}

.business ul li img{
    width: 100%;
}

.news{
    width: 100%;
    padding: 88px 40px 82px;
    background: #f4f6f7;
}

.news .inner{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news .inner .ttlArea{
    width: 300px;
    padding-left: 22px;
}

.news .inner .ttlArea h2{
    font-size: 1.9rem;
    line-height: 1;
    font-weight: bold;
    color: #b2b2b2;
    margin: 0 0 55px auto;
    display: block;
}

.news .inner .ttlArea h2 span{
    font-size: 7.0rem;
    color: #0086d1;
    margin-bottom: 5px;
    display: block;
}

.news .inner .newsArea{
    width: calc(100% - 300px);
}

.news .inner .newsArea dl{
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #e5e5e5;
}

.news .inner .newsArea dl dt{
    width: 216px;
    border-bottom: 1px solid #e5e5e5;
    padding: 34px 0;
    font-size: 1.4rem;
    color: #808080;
}

.news .inner .newsArea dl dt .cat{
    height: 22px;
    text-align: center;
    padding: 3px 7px 0;
    color: #fff;
    background: #0086d1;
    display: inline-block;
    line-height: 1;
    margin-left: 17px;
}

.news .inner .newsArea dl dd{
    width: calc(100% - 216px);
    border-bottom: 1px solid #e5e5e5;
    padding: 30px 0 30px 26px;
    font-size: 1.4rem;
    line-height: 1.857;
}

.news .inner .newsArea dl dd a{
    color: #333333;
    transition: 0.3s all ease;
}

.news .inner .newsArea dl dd a:hover{
    opacity: 1;
    color: #999;
    text-decoration: underline;
}

.news .inner .newsArea dl dd .icon{
    height: 20px;
    text-align: center;
    padding: 2px 7px 0;
    color: #fff;
    background: #999999;
    display: inline-block;
    line-height: 1;
    margin-left: 10px;
}

.news .inner .newsArea dl dd .icon a{
	color:#FFFFFF;
}

.linkArea{
    width: 100%;
}

.linkArea ul{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.linkArea ul li{
    width: 49.833%;
    height: 390px;
}

.linkArea ul li a{
    width: 100%;
    height: 390px;
    padding: 50px 25px 20px 45px;
    display: block;
    position: relative;
    overflow: hidden;
}

.linkArea ul li a:hover{
    opacity: 1;
}

.linkArea ul li:nth-child(1) a::before{
    content: "";
    width: 100%;
    height: 390px;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/index/pic04.jpg") center;
    background-size: cover;
    transition: all .3s ease;
    z-index: -1;
}

.linkArea ul li:nth-child(1) a:hover::before{
    transform: scale(1.1);
}

.linkArea ul li:nth-child(2) a::before{
    content: "";
    width: 100%;
    height: 390px;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/index/pic05.jpg") center;
    background-size: cover;
    transition: all .3s ease;
    z-index: -1;
}

.linkArea ul li:nth-child(2) a:hover::before{
    transform: scale(1.1);
}
.linkArea ul li a h2{
    font-size: 1.6rem;
    line-height: 1;
    color: #fff;
    margin: 0 0 55px auto;
    display: block;
}

.linkArea ul li a h2 span{
    font-size: 6.2rem;
    font-weight: bold;
    color: #fff;
    display: block;
}

.linkArea ul li a .viewAll{
    font-size: 1.9rem;
    font-weight: bold;
    color: #fff;
    line-height: 22px;
    position: absolute;
    bottom: 20px;
    right: 25px;
}

.linkArea ul li a .viewAll span{
    top: -4px;
    position: relative;
}

.linkArea ul li a .viewAll svg{
    width: 22px;
    margin-left: 6px;
}

.close_btn {
	display:none;
}


@media screen and (max-width:1024px){

#splash .wrap > svg{
    width: 27.867vw;
}

#splash #splash_text{
    margin-top: 1.33vw;
    font-size: 3.27467vw!important;
}

.visual{
    height: 178vw;
}

.visual.patternA{
    background: url("../img/index/sp/bg01.jpg") center;
    background-size: cover;
}

.visual.patternB{
    background: url("../img/index/sp/bg02.jpg") center;
    background-size: cover;
}

.visual.patternC{
    background: url("../img/index/sp/bg03.jpg") center;
    background-size: cover;
}

.visual.patternD{
    background: url("../img/index/sp/bg04.jpg") center;
    background-size: cover;
}

.visual.patternE{
    background: url("../img/index/sp/bg05.jpg") center;
    background-size: cover;
}

.visual.patternF{
    background: url("../img/index/sp/bg06.jpg") center;
    background-size: cover;
}

.visual .inner{
    height: calc(100svh - 32px);
}

.visual.patternA::before{
    background: url("../img/index/sp/gundam01.png") center no-repeat;
    background-size: cover;
}

.visual.patternB::before{
    background: url("../img/index/sp/gundam02.png") center no-repeat;
    background-size: cover;
}

.visual.patternC::before{
    background: url("../img/index/sp/gundam03.png") center no-repeat;
    background-size: cover;
}

.visual.patternD::before{
    background: url("../img/index/sp/gundam04.png") center no-repeat;
    background-size: cover;
}

.visual.patternE::before{
    background: url("../img/index/sp/gundam05.png") center no-repeat;
    background-size: cover;
}

.visual.patternF::before{
    background: url("../img/index/sp/gundam06.png") center no-repeat;
    background-size: cover;
}

.visual .inner h1{
    font-size: 10.67vw;
    top: 18.933vw;
    left: 7.6vw;
    transform: translateY(0);
}

.visual .inner h1 .subTxt{
    margin-top: 1.33vw;
}

.en_page .visual .inner h1{
    font-size: 5.6vw;
	line-height:1.6;
}

.en_page .visual .inner h1 .wrap02, .en_page .visual .inner h1 .wrap03 {
    font-size: 11vw;
	line-height:1.1;
}

.en_page .visual .inner h1 .subTxt{
    font-size: 70%;
	font-weight:normal;
}

.visual p a{
    font-size: 2.4vw;
    line-height: 1.167;
    bottom: 4vw;
    left: 3.33vw;
    transform: translateX(0);
    padding: 0 3.467vw 0.933vw 0;
}

.visual.patternA p a, .visual.patternB p a, .visual.patternC p a, .visual.patternD p a, .visual.patternE p a, .visual.patternF p a{
    left: 3.33vw;
}

.visual p a::after{
    width: 2.8vw;
}

.visual p a span::after{
    width: 2.8vw;
}

@keyframes visualArrow02{
    0%{
        width: 0;
        bottom: 0;
        right: 0;
    }
    25%{
        width: 0;
        bottom: 0;
        right: 0;
    }
    50%{
        width: 2.8vw;
        bottom: 0;
        right: 0;
    }
    65%{
        width: 2.8vw;
        bottom: 0;
        right: 0;
    }
    80%{
        width: 0;
        bottom: calc(2.8vw / 1.41421356237);
        right: calc(2.8vw / 1.41421356237);
    }
    100%{
        width: 0;
        bottom: calc(17px / 1.41421356237);
        right: calc(17px / 1.41421356237);
    }
}

.visual .scroll{
    font-size: 2.468vw;
    bottom: auto;
    top: 50%;
    left: 4vw;
    padding: 0 0 0 15.2vw;
    transform: rotate(90deg) translateY(-50%);
    transform-origin: left bottom;
}

.visual .scroll::before{
    width: 13.867vw;
}

.visual .scroll::after{
    width: 13.867vw;
}

@keyframes visualscroll{
    0%{
        width: 0;
        left: 0;
    }
    12%{
        width: 0;
        left: 0;
    }
    30%{
        width: 13.867vw;
        left: 0;
    }
    50%{
        width: 13.867vw;
        left: 0;
    }
    68%{
        width: 0;
        left: 13.867vw;
    }
    100%{
        width: 0;
        left: 13.867vw;
    }
}

.works::before{
    height: 130vw;
    top: 22vw;
    clip-path: polygon(0 34vw, 100% 0%, 100% calc(100% - 34vw), 0% 100%);
}

.service {
    margin-top: 14vw;
}

.news .inner .newsArea dl{
    display: block;
}

.news .inner .newsArea dl dt{
    width: 100%;
    border-bottom: none;
    padding: 34px 0 15px;
}

.news .inner .newsArea dl dd{
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 0 30px;
}

.imgArea .bubble{
    bottom: 1.067vw;
    right: -50%;
}

.imgArea .bubble.active{
    opacity: 1;
}

}



@media screen and (max-width:768px){

.visual{
    height: calc(100svh - 32px);
    min-height: 178vw;
}

.works{
    padding: 8.933vw 0 0;
}

.works::before{
    height: 223.33vw;
    top: 37.867vw;
    clip-path: polygon(0 42.8vw, 100% 0%, 100% calc(100% - 42.8vw), 0% 100%);
}

.works h2{
    font-size: 3.24267vw;
    margin: 0 0 8.8vw 6.4vw;
}

.works h2 span{
    font-size: 11.252vw;
    margin-right: 2.933vw;
}

.works .wrap{
    width: 100%;
    margin: 0 0 10.133vw;
    overflow-x: scroll;
    padding-bottom: 4px;
}

.works ul{
    width: 229.06vw;
    padding: 0 7.33vw;
    margin: 0;
}

.works ul li{
    width: 40vw;
    padding-top: 56vw;
}

.works ul li .overlay{

}

.works ul li .overlay h4{
    font-size: 3.108vw;
    margin-bottom: 2.8vw;
}

.works ul li .overlay p{
    font-size: 2.28933vw;
}

.works ul li .overlay a{
	position:absolute;
    font-size: 2.54267vw;
    padding: 4.267vw 3.467vw 0;
	z-index:10;
}



.works ul li .overlay .link_wrap{
    font-size: 2.54267vw;
    padding-right: 4vw;
    bottom: 2.4vw;
    right: 2.4vw;
}

.works ul li .overlay .link_wrap::before {
    width: 2.67vw;
    height: 1.867vw;
    top: 25%;
}


.entertainment{
    width: 84vw;
    margin: 15.067vw auto 0;
    display: block;
}

.entertainment .imgArea{
    width: 100%;
}

.entertainment .imgArea img{
    width: 61.33vw;
    margin: -6.267vw auto 0;
}

.entertainment .txtArea{
    width: 100%;
    padding-top: 0;
}

.entertainment .txtArea h3{
    font-size: 4.68533vw;
    margin-bottom: 4.533vw;
}

.entertainment .txtArea h3 span{
    font-size: 9.3vw;
    margin-bottom: 6.933vw;
}

.entertainment .txtArea p{
    font-size: 3.63867vw;
    max-width: 100%;
    margin-bottom: 5.067vw;
}

.imgArea .bubble{
    bottom: -6vw;
    right: 1.067vw;
}

.service{
    margin-top: 10.67vw;
    padding: 0 0 8vw;
}

.service .inner h2{
    font-size: 3.24267vw;
    margin: 0 0 0 6.4vw;
    text-align: left;
}

.service .inner h2 span{
    font-size: 11.252vw;
    margin-bottom: 0.67vw;
}

.service .inner img{
    width: 98vw;
    margin: -6.4vw 0 1.867vw 1.467vw;
}

.service .inner dl{
    width: 85.33vw;
    margin: 0 auto;
}

.service .inner dl dt{
    font-size: 4.324vw;
    line-height: 1;
    width: 100%;
    padding: 4.533vw 11.467vw;
    border-bottom: 1px solid #898989;
    font-weight: bold;
    vertical-align: middle;
}

.service .inner dl dt span{
    font-size: 3.188vw;
    margin-left: 2.933vw;
    vertical-align: middle;
}

.service .inner dl dt.ttl01{
    color: #90b576;
    background: url("../img/index/sp/icon01.png") center left 0.533vw no-repeat;
    background-size: 7.467vw auto;
}

.service .inner dl dt.ttl02{
    color: #879c7f;
    background: url("../img/index/sp/icon02.png") center left 0.533vw no-repeat;
    background-size: 7.467vw auto;
}

.service .inner dl dt.ttl03{
    color: #506c7e;
    background: url("../img/index/sp/icon03.png") center left 0.533vw no-repeat;
    background-size: 7.467vw auto;
}

.service .inner dl dd{
    font-size: 3.27467vw;
    width: 100%;
    margin-top: 1.733vw;
}

.service .inner dl dd + dt{
    margin-top: 4vw;
}

.service .inner .txt01{
    position: inherit;
    top: auto;
    left: auto;
}

.service .inner .txt02{
    position: inherit;
    top: auto;
    left: auto;
}

.service .inner .txt03{
    position: inherit;
    top: auto;
    left: auto;
}

.en-page .txt01, .en-page .txt02, .en-page .txt03{
	display:block;
}

.service .inner a{
    margin: 9.33vw 4.4vw 0 auto;
}

.business h2 span{
    height: auto;
    font-size: 4.267vw;
    display: block;
    padding: 0;
    line-height: 1;
}

.business h2 small{
    font-size: 3.067vw;
    margin: 2.4vw 0 0;
    line-height: 1.466;
    display: block;
}

.business ul{
    flex-wrap: wrap;
}

.business ul li{
    width: 50%;
}

.business ul li:first-child{
    background: #0086d1;
    padding: 5vw 4.67vw 0;
}

.news{
    padding: 12vw 0 6.67vw;
}

.news .inner{
    display: block;
}

.news .inner .ttlArea{
    width: 100%;
    padding-left: 0;
}

.news .inner .ttlArea h2{
    font-size: 3.24267vw;
    margin: 0 auto 10.67vw;
    text-align: center;
}

.news .inner .ttlArea h2 span{
    font-size: 11.252vw;
    margin-bottom: 0.67vw;
}

.news .inner .newsArea{
    width: 88vw;
    margin: 0 auto;
}

.news .inner .newsArea dl{
    display: block;
}

.news .inner .newsArea dl dt{
    width: 100%;
    border-bottom: none;
    padding: 6vw 0 0;
    font-size: 3.75067vw;
}

.news .inner .newsArea dl dt .cat{
    height: 5.33vw;
    padding: 0.56vw 1.867vw 0;
    margin-left: 3.467vw;
}

.news .inner .newsArea dl dd{
    width: 100%;
    padding: 4vw 0 5.867vw;
    font-size: 3.63867vw;
}

.news .inner .newsArea dl dd a:hover{
    color: #333;
    text-decoration: none;
}

.news .inner .newsArea dl dd .icon{
    height: 5.067vw;
    padding: 0.72vw 1.867vw 0;
    margin-left: 1.33vw;
}

.news > a{
    margin: 6.67vw 4.67vw 0 auto;
    display: table!important;
}

.linkArea ul{
    display: block;
}

.linkArea ul li{
    width: 100%;
    height: 65.33vw;
}

.linkArea ul li + li{
    margin-top: 1.067vw;
}

.linkArea ul li a{
    height: 65.33vw;
    padding: 8.4vw 7.733vw 0;
}

.linkArea ul li:nth-child(1) a::before{
    height: 65.33vw;
}

.linkArea ul li:nth-child(1) a:hover::before{
    transform: scale(1);
}

.linkArea ul li:nth-child(2) a::before{
    height: 65.33vw;
}

.linkArea ul li:nth-child(2) a:hover::before{
    transform: scale(1);
}
.linkArea ul li a h2{
    font-size: 2.633vw;
    margin: 0;
}

.linkArea ul li a h2 span{
    font-size: 10.4vw;
    margin-bottom: 0.8vw;
}

.linkArea ul li a .viewAll{
    font-size: 3.164vw;
    line-height: 3.6vw;
    bottom: 3.2vw;
    right: 4.267vw;
}

.linkArea ul li a .viewAll span{
    top: -1.5vw;
}

.linkArea ul li a .viewAll svg{
    width: 3.6vw;
    margin-left: 0.8vw;
}

.close_btn {
	width:0;
	height:0;
}

}

@media screen and (max-width:767px){

.visual{
    min-height: inherit;
}

}