@charset "utf-8";

body.jp .en {
  display: none;
}
body.jp .jp {
  display: block;
}
body.en .jp {
  display: none;
}
body.en .en {
  display: block;
}

#progress-box {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 800;
}
#progress-bar {
  position: absolute;
  width: 0;
  height: 4px;
  background: #004f9d;
  top: calc(50% - 2px);
  transition: all .5s cubic-bezier(0,0,.2,1) 0s;
}

#entrance {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.global {
  position: absolute;
  top: 38px;
  right: 50px;
  color: #fff;
  z-index: 1;
}
.global p {
  margin-left: 27px;
  padding-left: 35px;
  font-size: 18px;
  position: relative;
  cursor: pointer;
}
.global p:before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  width: 25px;
  height: 25px;
  background: url(../images/icon_global.svg) no-repeat;
  background-size: 100%;
}

h1 {
  margin: 0;
  position: absolute;
  top: 30px;
  left: 50px;
  z-index: 3;
}
h1 img {
  display: block;
}

.container-l {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: url(../images/bg_left2.jpg) no-repeat center;
  background-size: cover;
}
.container-l:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #004f9e;
}
.container-l .ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.container-l a.en {
  padding: 5px 0 7px 14px;
}
.ttl img {
  display: block;
}
.ttl a {
  margin-top: 34px;
  padding: 13px 0 15px 14px;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #004f9e;
  text-decoration: none;
  background: #fff;
  text-align: center;
  border-radius: 25px;
}
.container-l a.en {
  font-size: 15px;
  line-height: 16px;
}
.ttl a:after {
  content: '▶';
  display: inline-block;
  padding-left: 10px;
}
.ttl a:hover {
  background: #004f9e;
  color: #fff;
}

.container-r {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url(../images/bg_right.jpg) no-repeat center;
  background-size: cover;
}
.container-r:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00a0e9;
}
.container-r .ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.container-r .ttl a {
  color: #00a0e9;
}
.container-r .ttl a:hover {
  background: #00a0e9;
  color: #fff;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.5;
  }
}
.container-l.over:after {
  opacity: 0.5;
  animation: fadeOut .8s;
}
.container-r.over:after {
  opacity: 0.5;
  animation: fadeOut .8s;
}


footer {
  padding-bottom: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 12px;
  text-align: center;
  color: #fff;
}
footer ul {
  display: none;
}
footer .cp {
  padding: 20px;
}
