@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 14px;
	max-width: 100%;
    box-sizing: border-box;
    background-color:#f4f4f4
}
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: absolute;
      z-index: 9999;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger.active {
  /* 20220218 PCサイト対応 */
  /* position: fixed; */
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}
/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
  top: 16px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  /* 20220218 PCサイト対応 */
  /* top: 0; */
  /* left: 0; */
  color: #fff;
  background-color: rgba(0, 102, 255, 0.9);
  text-align: center;
  width: 100%;
  display: none;
}
nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 20px 0 5px;
  width: 100%;
}
nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 0;
  text-decoration: none;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}
nav.globalMenuSp p.icon img {
  width: 30.7px;
  height: 40px;
  margin: 38px auto 10px;
  display: block;
}
nav.globalMenuSp ul li a span {
  font-size: 18px;
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
  animation: bgAnime 20s infinite;
	    z-index: 999;
	    height: 100vh;
	width: 100%;
  /* 20220218 PCサイト対応 */
  max-width: 600px;
}


/* Safari用のハックは、Chromeに適用されないようにする */
@supports (-webkit-touch-callout: none) {
nav.globalMenuSp.active  {
    /* Safari用のハック */
    height: -webkit-fill-available;
  }
}
@keyframes bgAnime {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.nav .dl {
  background: rgba(256, 256, 256, 0.5);
}
.nav .dl .icon-free img {
  width: 85px;
  margin-right: 15px;
}
.nav .dl {
  color: #000;
  padding: 15px 0;
	    bottom: 0;
	    position: absolute;
}
.nav .dl .lead p {
  font-size: 14px;
  text-align: left;
  font-weight: bold;
  margin-bottom: 5px;
}
.nav .dl .lead span {
  font-size: 9px;
  font-weight: normal;
  display: block;
  text-align: left;
}
.nav .dl .lead {
  width: 90%;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: start;
}
.nav .dl .lead .flex-item.left {
  margin-right: 5px;
}
.nav .dl .lead .flex-item.right {
  margin-left: 5px;
}
.nav .dl .lead .flex.icon {
  margin: 10px auto 0px;
  width: 90%;
}
.nav .dl .flex.icon {
  margin: 10px auto 0px;
  width: 90%;
}
.nav .dl .flex.icon img {
  width: 100%;
  height: auto;
}
.nav .dl .flex.icon .flex-item.left {
  margin-right: 5px;
}
.nav .dl .flex.icon .flex-item.right {
  margin-left: 5px;
}
footer {
  background: #0066FF;
  padding: 45px 5% 110px;
}
footer ul li a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}
footer ul li a::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: 0 0;
  position: absolute;
  right: -30px;
  top: calc(50% - 11px);
  margin: auto;
  background: url("../images/icon-window.png");
  background-size: contain;
}
footer ul {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 12px;
}
footer ul li {
  list-style: none;
  line-height: 2.5;
}

footer .copy {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}
#page-top a {
      background: #0066FF;
  text-decoration: none;
  color: #fff;
  width: 60px;
	height: 60px;
  padding: 28px 5px;
  text-align: center;
  display: block;
  border-radius: 50%;
  opacity: 0.5;
  transition: all .3s ease;
	  position: relative;
	box-sizing: border-box;


}
#page-top a::before{
  font-family: "Font Awesome 5 Free";
  content: '\f106';
  font-weight: 900;
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 10px;
  bottom: 10px;
  right: 0;
  left: 0;
  margin: auto;
}
#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}

 /* 20220218 PCサイト対応 */
.body-wrapper{
  position: relative;
  overflow-x: hidden;
  max-width: 600px;
  min-height: 100vh;
  margin: 0 auto;
  background-color: #ffffff;
  box-shadow: 0 2px 20px 0 rgba(48,48,48,.15)
}