@import url("ress.css");
html{
    font-size: 62.5%;
}
body{
    font-size: 1.6rem;
    line-height: 1.9;
    background-color: #f2f5f7;
    color: #252525;
    font-family: YakuHanJP, 'Noto Sans JP', sans-serif;
}
a{
    text-decoration: none;
    color: #252525;
}
*::selection {
    background: rgba(2,46,77,1);
    color: #fff;
}
.footer *::selection {
    background: rgba(255,255,255,0.2);
}
ul.horizon{
    list-style: none;
}
ul.horizon li{
    display: inline;
}
ul.horizon li a{
    display: inline-block;
    cursor: pointer;
}
.header{
    position: relative;
    background-color: #000;
}
.menu{
    position: fixed;
    padding: 20px 60px 0 40px;
    width: 100%;
    height: 100px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content:space-between;
    transition: all .7s;
}
.header .menu .siteid a{
    font-size: 2.8rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    transition: all 1s;
}
.header .menu .globalnav{
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
}
@media screen and (max-width : 960px){
    .header .menu .globalnav{
        display: none;
    }
}
.header .menu .globalnav li a{
    position: relative;
    transition: all 0.3s;
    padding: 15px 0;
    color: #fff;
}
.header .menu .globalnav li a::after {
    content: "";
    display: block;
    width: 0;
    transition: all 0.3s;
}
.header .menu .globalnav li a:hover::after{
    display: block;
    content: "";
    width: 80%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.header .menu.fix .globalnav li a:hover::after{
    background-color: #022e4d;
}
.header .menu .globalnav li{
    margin-left: 1.5em;
}
.header .menu .globalnav li:first-child{
    margin-left: 0;
}
.menu.fix{
    padding: 0 60px 0 40px;
    height: 80px;
    background-color: #fff;
    color: #022e4d;
}
.header .menu.fix .siteid a,
.header .menu.fix .globalnav li a{
    color: #022e4d;
}
.mainvisual{
    padding: 40px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    min-height: 600px;
    background: transparent url("../images/tokyo.jpg") no-repeat center center / cover;
    box-shadow:0px 0px 100px 100px rgba(2,46,77,0.3) inset;
}
@media screen and (max-width : 960px){
    .mainvisual{
        box-shadow:0px 0px 75px 75px rgba(2,46,77,0.2) inset;
    }
}
.header .catchcopy{
    font-size: 12rem;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    color: #fff;
}
.header .catchcopy p{
    white-space: nowrap;
    overflow: hidden;
    width: 0%;
}
.header .catchcopy p.line1{
    animation: typing  .3s linear .5s forwards;
}
.header .catchcopy p.line2{
    animation: typing  .4s linear 1.2s forwards;
}
@keyframes typing{
    0% {width: 0%;}
    100% {width: 100%;}
}
@media screen and (max-width : 960px){
    .header .catchcopy{
        font-size: 8rem;
    }
}
.header .catchcopy p{
    display: block;
}
.header .catchcopy p.w400{
    font-weight: 400;
}
.header .catchcopy p.w700{
    font-weight: 700;
}
.footer{
    background-color: #022e4d;
    color: #fff;
}
.footer .inner{
    max-width: 1000px;
    margin: 140px auto 0 auto;
    padding: 100px 40px;
}
.footer .inner .siteid{
    font-size: 1.8rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}
.footer .inner address{
    font-style: normal;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.footer .inner .footernav{
    margin-bottom: 20px;
}
.footer .inner .footernav li{
    margin-left: 1em;
}
.footer .inner .footernav li:first-child{
    margin-left: 0;
}
.footer .inner .footernav li a{
    color: #fff;
}
.section{
    padding: 150px 40px 0 40px;
    max-width: 1000px;
    margin: 0 auto ;
}
.ns {
    -ms-user-select: none;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
h2{
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1em;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.05em;
    color: #022e4d;
}
h2 span{
    display: block;
    font-size: 1.4rem;
}
dl.table{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
dl.table dt,
dl.table dd{
    margin-bottom: 4px;
    background-color: #fff;
}
dl.table dt{
    width: 30%;
    padding: 20px;
    text-align: center;
}
dl.table dd{
    width: 70%;
    padding: 20px 20px 20px 0;
}
ul.businessdomain{
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
ul.businessdomain li{
    background-color: #fff;
    border-radius: 10px;
    width: 24%;
    text-align: center;
    padding: 80px 10px;
}
@media screen and (max-width : 960px){
    ul.businessdomain{
        flex-wrap:wrap
    }
    ul.businessdomain li{
        width: 49%;
        margin-bottom: 2%;
    }
}
.list{
    padding-left: 1.5em;
}
.list li{
    margin-bottom: .3em;
}
.inquiry{
    text-align: center;
    color: #4f4f4f;
    font-size: 2rem;
    font-weight: 700;
}
.copyright{
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-align: right;
}