/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFE200;
  color: #008DAC;
  font-family: effra, sans-serif;
  font-weight: 400;
  padding: 5px 0 0;
  width: 80px;
  height: 75px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  line-height: 1.3;
  border-radius: 50px;
  letter-spacing: 2px;
}
#page-top a:hover {
  background: #008DAC;
  color: #FFE200;
  animation: arrowrotate .3s;
}
@keyframes arrowrotate {
  100% {
    transform: rotate(360deg);
  }
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.f-bg {
  background: #008DAC;
}
.footer {
  padding: 3em 0 2em;
  color: #fff;
}
.footer_address {
  margin: 0 auto 1.5em;
}
.footer_address img {
  display: block;
  width: 150px;
  margin: auto;
}
.footer_address p {
  margin: 20px auto 10px;
  line-height: 2;
}
.footer_address a {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: underline;
}
.footer_address a:hover {
  text-decoration: none;
}
.footer_link {}
.footer_link p {
  font-family: effra, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin: 20px auto 0;
}
.footer_link div {
  font-size: 2.5rem;
}
.footer_link div a {
  margin: 0 8px;
  color: #fff;
}
.footer_link div a:hover {
  color: #008DAC;
}
.footer_btn.vleague {
  margin: 1em auto 0;
  background: #000;
  border: 1px solid #000;
  padding: 13px 0px 13px 0px;
}
.footer_btn.vleague span {
  color: #fff;
}
.footer_btn.vleague::before {
  display: none;
}
.footer_btn.vleague::after {
  color: #fff;
}
.footer_btn {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  border: 1px solid #fff;
	box-sizing: border-box;
  background: #fff;
  border-radius: 50px;
  padding: 13px 0px 13px 0px;
  width: 230px;
	margin: 0 auto;
  text-align: center;
  outline: none;
  transition: ease .2s;
}
.footer_btn span {
  position: relative;
  z-index: 3;
  color: #008DAC;
}
.footer_btn:hover span {
  color: #fff;
}
.footer_btn i {
  padding: 0 5px 0 0;
}
.footer_btn img {
  width: auto;
  height: 15px;
  margin: 0 10px 3px 0;
}
.footer_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #008DAC;
  width: 100%;
  height: 100%;
  transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 0);
  transform-origin: center;
  border-radius: 50px;
}
.footer_btn:hover::before {
  transform: scale(1, 1);
}
.footer_btn::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0%, -50%);
  content: '\f054';
  font-family: FontAwesome;
  font-weight: 400;
  color: #008DAC;
  font-size: 1rem;
  transition: ease .2s;
}
.footer_btn:hover::after {
  right: 5px;
  color: #fff;
}
a.f_pp {
  display: block;
  color: #fff;
  padding: 2em 0 0;
  font-size: 1.2rem;
  text-decoration: underline;
}
.cr {
  background: #595757;
  color: #fff;
  padding: 15px 0;
  font-size: 1.0rem;
}
/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  .footer {
    max-width: 1200px;
    width: 90%;
    padding: 4em 0 3em;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }
  .footer_address {
    width: 400px;
    margin: 0;
  }
  .footer_address img {
    width: 250px;
    margin: 0 auto 0 0;
  }
  .footer_address p {
    margin: 20px auto 0px;
    line-height: 2;
  }
  .footer_address a {
    font-size: 1.3rem;
  }
  .footer_link {
    text-align: right;
    width: calc(100% - 400px);
  }
  .footer_link p {
    display: inline-block;
    text-align: right;
    margin: 20px 10px 0px 0;
    font-size: 2rem;
  }
  .footer_link div {
    display: inline-block;
    text-align: right;
    font-size: 3rem;
    line-height: 1.3;
  }
  .footer_link div a {
    margin: 0 10px;
  }
  .footer_btn img {
    height: 15px;
    margin: 0 10px 7px 0;
  }
  .footer_btn {
	  display: inline-block;
    font-size: 1.6rem;
    padding: 13px 0px 13px 0px;
    width: 280px;
  }
  .footer_btn.vleague {
    margin: 0em auto 0 10px;
  }
  a.f_pp {
    font-size: 1.4rem;
  }
  .cr {
    font-size: 1.2rem;
  }
}