@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: 'Noto Serif CJK JP Bold', serif;
  font-weight: 900;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #0075C2;
  text-align: center;
  color: #fff;
}
/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 260px;
}
.loading {
  font-family: "Noto Serif CJK JP Black", serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.4rem;
  color: #fff;
  line-height: 2.0;
}
/* fadeUpをするアイコンの動き */
.fadeUp, .loading {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#transition {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #333;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#transition-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
@media (min-width: 1160px) {
  .loading {
    font-size: 4.8rem;
  }
  #splash_logo img {
    width: 360px;
  }
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}
header {
  width: 100%;
  height: auto;
  background-color: #0075C2;
  color: #fff;
}
.header_wrapper {
  padding: 0 37px 0 37px;
}
.title {
  position: relative;
  text-align: left;
  padding: 15px 0 8px;
  width: 90px;
}
.title h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: -3px;
}
.title p {
  font-size: 1.0rem;
  font-weight: 700;
  padding-left: 6px;
  margin-top: -5px;
}
.title a {
  text-decoration: none;
  color: #fff;
}
.service_bnr {
  display: none;
}
.header_nav {
  display: none;
}
.header_nav ul li a {
  text-decoration: none;
  color: #fff;
}
@media (max-width: 1160px) {
  .open-button {
    display: block;
    position: absolute;
    right: 22px;
    top: 23px;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .open-button span, .open-button span:before, .open-button span:after {
    position: absolute;
    height: 2px;
    width: 25px;
    background: #fff;
    display: block;
    content: "";
  }
  .open-button span:before {
    bottom: -7px;
  }
  .open-button span:after {
    bottom: -14px;
  }
  .close-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 20px;
    padding: 20px;
    font-family: 'Noto Sans JP Bold', sans-serif;
  }
  .header_nav {
    display: none;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #0075C2;
    width: 70%;
    height: 100%;
    padding-top: 67px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.4);
    text-align: left;
  }
  .header_nav ul {
    width: 100px;
    margin-left: 20px;
  }
  .header_nav ul li {
    margin-bottom: 44px;
  }
  .header_nav ul li:first-child {
    margin-bottom: 44px;
  }
  .header_nav ul li a {
    font-weight: 600;
    line-height: 40px;
    vertical-align: middle;
    text-decoration: none;
    color: #fff;
  }
  .nav_bnr {
    margin: 0 20px;
  }
  .nav_bnr img {
    width: 100%;
  }
}
@media (min-width: 1160px) {
  .content_wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
  }
  .header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 18.750%;
    height: 100vh;
  }
  .container {
    width: 81.25%;
  }
  header {
    height: 100vh;
  }
  .header_wrapper {
    padding: 35px 0;
  }
  .title {
    margin: 0 auto 40px;
    width: 158px;
    padding: 0;
  }
  .title h1 {
    font-size: 4.6rem;
    line-height: 1.5;
    width: 158px;
  }
  .title p {
    font-size: 2.0rem;
    padding-left: 7px;
    width: 158px;
    margin-top: -10px;
  }
  .service_bnr {
    display: block;
    width: 100%;
    margin-bottom: 40px;
  }
  .header_nav {
    display: block;
  }
  .close-button, .nav_bnr {
    display: none;
  }
  header nav ul {
    font-size: 1.8rem;
    text-align: left;
    width: 158px;
    margin: 0 auto;
  }
  header nav ul li {
    margin-bottom: 32px;
  }
}
footer {
  width: 100%;
  height: auto;
  background-color: #0075C2;
  color: #fff;
}
.footer_wrapper {
  margin: 0 auto;
  padding: 56px 24px;
}
footer nav {
  font-size: 1.1rem;
}
footer nav ul {
  display: flex;
  border-bottom: solid 1px #fff;
}
footer nav ul li {
  margin: 0 44px 15px 0;
}
footer nav ul li:last-child {
  margin-right: 0;
}
footer p {
  font-size: 1.1rem;
  padding-top: 40px;
  line-height: 1.8;
  margin-bottom: 5px;
  text-align: left;
}
footer small {
  font-size: 1.1rem;
  text-align: left;
  display: block;
}
footer a {
  text-decoration: none;
  color: #fff;
}
@media (min-width: 1160px) {
  .footer_wrapper {
    padding: 52px 100px 124px;
  }
  footer nav {
    font-size: 1.6rem;
  }
  footer nav ul li {
    margin: 0 24px 16px 0;
  }
  footer p {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  footer small {
    font-size: 1.1rem;
  }
}
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

















