@charset "UTF-8";
/* CSS INFORMATION -====================================
File name : base.css
Description : 共通
===================================================== */
html {
  min-height: 100vh;
  font-size: calc(10 / 750 * 100vw);
  overflow-x: hidden;
}

#wrapper {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #476387;
  background: #fff;
  overflow-x: hidden;
}
#wrapper img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

section,
header,
footer {
  position: relative;
}

.inner {
  position: relative;
  width: calc(690 / 750 * 100%);
  margin: 0 auto;
  z-index: 2;
}

.is-sp {
  display: block;
}

.is-pc {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1600 * 100vw);
  }
  .wrapper {
    font-size: 1.6rem;
  }
  .wrapper a {
    transition: 0.5s ease;
  }
  .inner {
    width: 100%;
    max-width: 1600px !important;
    padding: 0 calc(260 / 1600 * 100%);
  }
  .is-sp {
    display: none;
  }
  .is-pc {
    display: block;
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 10px;
  }
}
/* =====================================================
    フッター
======================================================*/
#footer {
  position: relative;
  padding: 17.6rem 0 0;
  z-index: 50;
}

.pagetop {
  opacity: 0;
  position: fixed;
  right: 2rem;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  z-index: 100;
  cursor: pointer;
}
.pagetop a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  transition: all 0.5s ease;
}

/*　上に上がる動き　*/
.pagetop.UpMove {
  animation: UpAnime 0.5s forwards;
  bottom: 16rem;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
.pagetop.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(40px);
  }
}
.footer_bnr {
  padding: 0 13.3333333333%;
}
.footer_bnr li:not(:first-child) {
  margin-top: 2.6666666667%;
}
.footer_bnr li .link1 img:nth-of-type(1),
.footer_bnr li .link2 img:nth-of-type(1) {
  display: block;
}
.footer_bnr li .link1 img:nth-of-type(2),
.footer_bnr li .link2 img:nth-of-type(2) {
  display: none !important;
}

.footer_sns {
  width: 18.6666666667%;
  margin: 4% auto 25.3333333333%;
}

.copyright {
  background-color: #223854;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  padding: 8% 0;
}

@media screen and (min-width: 768px) {
  #footer {
    padding: 6.5rem 0 3rem;
  }
  .pagetop:hover a {
    opacity: 0.6;
  }
  .footer_sns {
    width: 11rem;
    margin: 3rem auto 10.6rem;
  }
  .footer_sns a {
    position: relative;
    top: 0;
    transition: all 0.5s ease;
  }
  .footer_sns a:hover {
    top: -7px;
  }
  .footer_bnr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 34rem;
  }
  .footer_bnr li {
    width: 48.5%;
  }
  .footer_bnr li:not(:first-child) {
    margin-top: 0;
  }
  .footer_bnr li a {
    position: relative;
    transition: all 0.5s ease;
  }
  .footer_bnr li .link1:hover img:nth-of-type(1),
  .footer_bnr li .link2:hover img:nth-of-type(1) {
    display: none !important;
  }
  .footer_bnr li .link1:hover img:nth-of-type(2),
  .footer_bnr li .link2:hover img:nth-of-type(2) {
    display: block !important;
  }
  .copyright {
    font-size: 1.6rem;
    padding: 4rem 0;
  }
}
/* =====================================================================
*    応募ボタン追従
* =================================================================== */
.btn_formFixed {
  opacity: 0;
  position: fixed;
  z-index: 200;
  background: #223854;
  border-radius: 2rem 0 0 2rem;
  right: 0;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 2rem 4.2rem;
  cursor: pointer;
}

/*　上に上がる動き　*/
.btn_formFixed.UpMove {
  bottom: 31rem;
  animation: UpBtnAnime 0.5s forwards;
}

@keyframes UpBtnAnime {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*　下に下がる動き　*/
.btn_formFixed.DownMove {
  animation: DownBtnAnime 0.5s forwards;
}

@keyframes DownBtnAnime {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
    transform: translateX(100px);
  }
}
@media screen and (min-width: 768px) {
  .btn_formFixed {
    transition: all 0.5s ease;
  }
  .btn_formFixed:hover {
    background: #fff443;
    color: #223854;
  }
  .btn_formFixed.UpMove {
    bottom: 17rem;
  }
}
/* =====================================================================
*    popup
* =================================================================== */
.popup {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
}

.popup_area {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.popup_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(33, 38, 51, 0.95);
}

.popup_inner {
  position: relative;
  margin: auto;
  align-self: flex-start;
  padding: 80px 0;
  width: calc(690 / 750 * 100%);
}

.popup_close {
  position: absolute;
  top: 30px;
  right: 0;
  width: 3em;
  height: 3em;
  z-index: 3;
}
.popup_close::before {
  content: "";
  display: block;
  width: 1px;
  padding-top: 100%;
  background-color: #cad3d6;
  transform: rotate(45deg);
  margin: 0 auto;
}
.popup_close::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  width: 1px;
  margin: 0 auto;
  padding-top: 100%;
  background-color: #cad3d6;
  transform: rotate(-45deg);
}

.popup_list {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
}
.popup_list > li {
  position: relative;
  display: none;
  margin: 0 auto;
  padding: 12rem 0;
  width: calc(560 / 690 * 100%);
  z-index: 2;
}

.popup_movie_embed {
  position: relative;
  padding-top: 56.25%;
}
.popup_movie_embed iframe,
.popup_movie_embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.popup_close2 {
  margin: 1em auto 0;
  padding: 0.5em;
  width: 30rem;
  font-size: 2.8rem;
  text-align: center;
  background: #223854;
  color: #fff;
  border: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  .popup_movie .popup_inner {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .popup_bg {
    cursor: pointer;
  }
  .popup_inner {
    padding: 5.5em 0;
    width: 80%;
    max-width: 1600px;
  }
  .popup_movie .popup_inner {
    max-width: 1000px;
  }
  .popup_close {
    top: 1.5em;
    cursor: pointer;
  }
  .popup_list > li {
    padding: 6rem 0;
    width: 90%;
    max-width: 880px;
  }
  .popup_close2 {
    width: 50rem;
    transition: 0.3s ease;
    cursor: pointer;
  }
  .popup_close2:hover {
    background-color: #223854;
  }
}/*# sourceMappingURL=base.css.map */