@charset "utf-8";

/*============================================================
変数指定
*============================================================*/
:root {
  --text-color: #2c2c2c;
  --main-blue: #0da3ba;
  --bg-blue: rgba(147, 195, 203, 0.35);
  --yellow: #ffeb00;
}

/*
global > setting
------------------------------
*/
.contents-wrapper {
  max-width: 480px;
  width: 100%;
  margin: auto;
  background-color: #fff;
  position: relative;
  z-index: 0;
  box-shadow: 0px 0px 30px rgba(142, 155, 170, 0.2);
}
.inner {
  margin: 0 auto;
  padding: 0 24px;
  max-width: 480px;
}

body {
  color: #2c2c2c;
  font-family: YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}

/*============================================================
Header
*============================================================*/
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 50px;
  max-width: 480px;
  width: 100%;
  margin: auto;
}

@media screen and (min-width: 1024px) {
  .header {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    z-index: -1;
  }

  .header__bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 157px;
    z-index: -100;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    background: transparent url(../img/common/site_bg.png) repeat top left / cover;
  }
  .header__bg img {
    height: 157px;
    object-fit: cover;
  }
}
/*============================================================
グローバルナビ
*============================================================*/
.global-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  padding: 4.8rem 0;
  width: 100%;
  height: 120%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.global-nav__inner {
  position: absolute;
  top: 67px;
  left: 50%;
  transform: translateX(-50%);
}
.global-nav__items {
  margin-top: 28px;
}
.global-nav__items a {
  color: var(--main-blue);
  font-size: 16px;
  font-weight: 700;
}

.global-nav a {
  display: block;
  transition: opacity 0.3s ease-in-out;
  padding: 10px 0;
}

.global-nav a:hover {
  opacity: 0.7;
}

.sns__items {
  display: flex;
  gap: 16px;
  margin-top: 48px;
}
.sns__items li {
  height: 29px;
}
.sns__items img {
  display: block;
}

@media screen and (min-width: 1024px) {
  .global-nav {
    background-color: transparent;
    padding: 0;
    opacity: 1;
    visibility: visible;
    z-index: -1;
    width: calc(50% - 240px);
    top: 0;
    left: 0;
  }
  .global-nav__inner {
    left: 55%;
  }
}
@media screen and (min-width: 1366px) {
  .global-nav__inner {
    left: auto;
    transform: translateX(0);
    right: 95px;
  }
}

/*
module > hamburger
------------------------------
*/
.button-hamburger {
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  margin: auto 0;
  background-color: transparent;
  width: 2.4rem;
  height: 2.4rem;
}

.hamburger {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border-radius: 0.4rem;
  background-color: #111;
  width: 28px;
  height: 2px;
}

.hamburger::before,
.hamburger::after {
  display: block;
  position: absolute;
  transition: all 0.3s ease-in-out;
  border-radius: 0.4rem;
  background-color: inherit;
  width: 100%;
  height: 100%;
  content: "";
}

.hamburger::before {
  top: 8px;
}

.hamburger::after {
  top: -8px;
}

@media screen and (min-width: 1024px) {
  .button-hamburger {
    display: none;
  }
}
/*
module > drawer
------------------------------
*/
.is-active-drawer .hamburger {
  z-index: 100;
  background-color: transparent;
}

.is-active-drawer .hamburger::before,
.is-active-drawer .hamburger::after {
  top: 0;
  background-color: #111;
}

.is-active-drawer .hamburger::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.is-active-drawer .hamburger::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.is-active-drawer .global-nav {
  opacity: 1;
  visibility: visible;
}
/*============================================================
Footer
*============================================================*/
.footer {
  background-color: var(--text-color);
  color: #fff;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__copyright {
  font-size: 13px;
  letter-spacing: 0.39px;
}
/*============================================================
Button
*============================================================*/
.button {
  display: block;
  transition: opacity 0.3s ease-in-out;
  background-color: var(--main-blue);
  width: 235px;
  height: 41px;
  color: #fff;
  text-align: center;
  border-radius: 20px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.button:hover {
  opacity: 0.7;
}
/*============================================================
セクション関連
*============================================================*/
.section[data-bg="blue"] {
  background-color: var(--bg-blue);
  position: relative;
}
.section[data-bg="blue"]::before {
  content: "";
  background: transparent url(../img/wave01.png) repeat top left / contain;
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 25px;
}

.sec-header {
}
.sec-title {
  font-weight: 600;
  font-size: 30px;
  line-height: 1.33;
  text-align: center;
}
.sec-title--en {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  display: block;
  color: #0da3ba;
  padding-bottom: 8px;
}
.forPC {
  display: none;
}

@media screen and (min-width: 1024px) {
  .forPC {
    display: block;
  }
  .forSP {
    display: none;
  }
}

/*============================================================
ローディング
*============================================================*/
.js-fixed.is-load-fixed{
	overflow: hidden;
}
#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background: #fff;
}
#loading_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
}
.loading-slide {
  width: 100vw;
  height: 100vh;
}
.swiper-area {
  width: 100vw;
  height: 100vh;
}
.swiper {
  width: 100vw;
  height: 100vh;
}

#loading .kvArea {
  width: 100%;
}
.swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading-slide img {
  margin: auto;
  display: block;
  height: auto;
}
.loading__img01 img {
  width: 217px;
}
.loading__img02 img {
  width: 206px;
}
.loading__img03 img {
  width: 174px;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.2s;
  animation-delay: 5.2s;
  animation-fill-mode: forwards;
  opacity: 1;
}
@keyframes fadeUpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
