@charset "utf-8";
@import url("reset.css");
@import url("header.css");
@import url("navigation.css");
@import url("../plugin/font/css/font.css");
@import url("pagetop.css");
.pc {
  display: none
}
.sp {
  display: block
}
/*footer*/
footer {
  padding: 0.5em 0 0.3em 0;
  text-align: center
}
.footer_logo {
  width: 280px;
  height: 70px;
  margin: 0 auto;
  background: url("../images/logo_footer.svg")center center / 100% 100% no-repeat
}
footer p {
  margin-top: 0.5em;
  color: #8A8A8A;
  font-size: 0.9em
}

.leadbox h2 {
  margin-left: 0;
  margin-bottom: 0.5em;
  font-size: 1.5em;
  text-align: center;
}
.leadbox h2 span {
  display: block;
  font-family: 'arial2';
  color: #707070;
  font-size: 0.6em;
  font-weight: 500
}
.leadbox h2 span::after{
    content: " ―"
}

.h_b{
    margin-top: 0.5em;
    border-top: 1px solid #cccccc
}

/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: #D1C5C5;
    text-align: center;
    color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:120px;
}

@media screen {
    .fade {
  transition: all 2000ms;
  opacity: 0;
  visibility: hidden;
  transform: translate(0px, 50px)
}
.fadein {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px)
}
    /* fadeUpをするアイコンの動き */
.fadeUp{
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);
  }
}
}

@media print, screen and (min-width: 990px) {
    /* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}

 /* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:250px;
}
}

@media print, screen and (min-width: 600px) {
  footer {
    padding: 0.7em 0;
  }
  .footer_logo {
    width: 300px;
    height: 75px;
  }
}
@media print, screen and (min-width: 1025px) {
  .pc {
    display: block
  }
  .sp {
    display: none
  }
  .leadbox h2 {
    margin-bottom: 0.8em;
    font-size: 1.7em;
    text-align: left
  }
}