@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap");
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  transition: 1s;
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  line-height: 1.5;
  background-color: #004CAD;
}

.en {
  font-family: "Oswald", sans-serif;
}

/*@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media screen and (min-width: 768px) {
  .disp_sp {
    display: none !important;
    visibility: hidden !important;
  }
}
@media screen and (max-width: 767px) {
  .disp_pc {
    display: none !important;
    visibility: hidden !important;
  }
}
.scrollanime {
  transition: all ease 1s;
}

.opacity {
  opacity: 0;
}

.updown {
  opacity: 0;
  transform: translateY(-50px);
}

.downup {
  opacity: 0;
  transform: translateY(50px);
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
}

.scaleup {
  opacity: 0;
  transform: scale(0.8);
}

.fadeIn.opacity {
  opacity: 1;
}
.fadeIn.updown {
  opacity: 1;
  transform: translateY(0);
}
.fadeIn.downup {
  opacity: 1;
  transform: translateY(0);
}
.fadeIn.slide-right {
  opacity: 1;
  transform: translateX(0);
}
.fadeIn.slide-left {
  opacity: 1;
  transform: translateX(0);
}
.fadeIn.scaleup {
  opacity: 1;
  transform: scale(1);
}

.ib {
  display: inline-block;
}

.fv {
  min-height: 100svh;
  background: center/cover url("../img/fv-bg-pc.jpg") no-repeat;
  display: flex;
  flex-direction: column;
  grid-row-gap: 11px;
  justify-content: center;
  align-items: center;
  padding: 0px 3% 5%;
  opacity: 0;
  animation: fvAnime 1s ease forwards;
}
@media screen and (max-width: 767px) {
  .fv {
    background-image: url("../img/fv-bg-sp.jpg");
    padding: 0 0 9%;
  }
}
.fv__ttl {
  width: 855px;
  max-width: 100%;
  opacity: 0;
  animation: fvAnime 1s .3s ease forwards;
}
@media screen and (max-width: 767px) {
  .fv__ttl {
    width: 375px;
  }
}
.fv__txtBox {
  text-align: center;
  opacity: 0;
  animation: fvAnime 1s .3s ease forwards;
}
.fv__mainCopy {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .fv__mainCopy {
    font-size: 23px;
    margin-bottom: 20px;
    line-height: 1.4;
  }
}
.fv__day {
  font-weight: 500;
  font-size: 70px;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .fv__day {
    font-size: 42px;
  }
}
.fv__day__week {
  font-size: 44px;
}
@media screen and (max-width: 767px) {
  .fv__day__week {
    font-size: 26px;
  }
}
.fv__place {
  font-size: 32px;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .fv__place {
    font-size: 16px;
  }
}
.fv__note {
  font-weight: 900;
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .fv__note {
    font-size: 10px;
    font-weight: 700;
  }
}
@keyframes fvAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.footer {
  background-color: #004CAD;
  position: relative;
}
.footer__top {
  padding: 100px 5% 20px;
}
@media screen and (max-width: 767px) {
  .footer__top {
    padding: 140px 5% 20px;
  }
}
.footer__logo {
  width: 244px;
  max-width: 100%;
  margin: 0 auto 33px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 208px;
  }
}
.footer__logo a {
  transition: all ease .3s;
}
.footer__logo a:hover {
  opacity: 0.8;
}
.footer__sns {
  font-weight: 900;
  margin-bottom: 16px;
  text-align: center;
}
.footer__snsLists {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 24px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .footer__snsLists {
    margin-bottom: 100px;
  }
}
.footer__snsLink {
  transition: all ease .3s;
}
.footer__snsLink:hover {
  opacity: 0.8;
}
.footer__at {
  font-weight: 300;
  text-align: center;
  font-size: 12px;
}
.footer__bottom {
  border-top: solid 1px #103665;
  padding: 14px 5%;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    padding: 22px 3%;
  }
}
.footer__bottom__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__links {
  display: flex;
  column-gap: 17px;
}
@media screen and (max-width: 767px) {
  .footer__links {
    column-gap: 8px;
  }
}
.footer__link {
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
  transition: all ease .3s;
  font-size: 11px;
  font-weight: 300;
  display: block;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .footer__link {
    font-size: 10px;
  }
}
.footer__link:hover {
  opacity: 0.8;
  border-color: transparent;
}
.footer__link__txtImg {
  height: 8.2px;
  width: auto;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .footer__link__txtImg {
    height: 7px;
  }
}
.footer__copyright {
  width: 80px;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    width: 34px;
  }
}
.footer__copyright a {
  transition: all ease .3s;
}
.footer__copyright a:hover {
  opacity: 0.8;
}

.toTop {
  background-color: #fff;
  border: 1px solid rgba(0, 76, 173, 0.25);
  border-radius: 50%;
  font-size: 0;
  height: 48px;
  width: 48px;
  position: absolute;
  right: 32px;
  top: 32px;
  transition: background-color .3s;
  z-index: 100;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .toTop {
    top: 21px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}
.toTop:after {
  border-right: 2px solid #001126;
  border-top: 2px solid #001126;
  content: "";
  display: block;
  height: 10px;
  left: 50%;
  position: absolute;
  top: calc(50% + 2px);
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: border-color .3s;
  width: 10px;
}
.toTop:hover {
  background-color: #001126;
}
.toTop:hover:after {
  border-color: #fff;
}

.notfound {
  margin-inline: auto;
  padding-bottom: 200px;
  padding-top: 200px;
  background-color: #fff;
  color: #1e1e1e;
  padding-right: 5%;
  padding-left: 5%;
  opacity: 0;
  animation: fvAnime 1s ease forwards;
}
@media screen and (max-width: 767px) {
  .notfound {
    padding-bottom: 120px;
    padding-top: 120px;
  }
}
.notfound__title {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.77;
  margin-bottom: 4px;
  text-align: center;
}
.notfound__notes {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.78;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .notfound__notes {
    margin-bottom: 32px;
  }
}
.notfound__btnLinks {
  align-items: center;
  column-gap: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .notfound__btnLinks {
    column-gap: 15px;
  }
}

.secondaryBtn {
  background-color: #fff;
  background-image: none;
  border: 1px solid #004cad;
  border-radius: 23px;
  box-sizing: border-box;
  color: #1e1e1e;
  display: grid;
  font-size: 16px;
  font-weight: 500;
  height: 46px;
  line-height: 1;
  overflow: hidden;
  place-items: center;
  width: 160px;
  transition: all ease .3s;
}
@media screen and (min-width: 768px) {
  .secondaryBtn:hover {
    background-color: #004cad;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .secondaryBtn {
    width: 128px;
  }
}
.secondaryBtn__txt {
  position: relative;
}

.notfoundLogo {
  font-size: 0;
  margin: 0 auto 60px;
  width: 584px;
}
@media screen and (max-width: 767px) {
  .notfoundLogo {
    margin-bottom: 40px;
    max-width: 315px;
    width: 100%;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #004cad;
  padding-left: 32px;
  height: 72px;
  display: flex;
  align-items: center;
  z-index: 100;
  opacity: 0;
  animation: fvAnime 1s ease forwards;
}
@media screen and (max-width: 767px) {
  .header {
    height: 56px;
    padding-left: 20px;
  }
}
.header__logo {
  width: 233px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 155px;
  }
}
.header__logo img {
  display: block;
}
