@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Roboto", "Noto Sans JP", 'Hiragino Sans,', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', '游ゴシック', YuGothic, '游ゴシック体', 'BIZ UDPGothic', 'Meiryo', sans-serif;
  color: #1a1a1a;
  font-size: 1.6rem;
  font-weight: 500;
  word-break: break-all;
  line-height: 2;
  letter-spacing: .015em;
  overflow-x: hidden;
  position: relative;
}

/*---link---*/
a {
  text-decoration: none;
  color: #1a1a1a;
}

/*---image---*/
img,
picture {
  display: block;
  width: 100%;
  height: auto;
}

.underline-w {
  display: inline-block;
  padding: 0 20px;
  background: linear-gradient(transparent 10%, rgba(255, 255, 255, .8) 10%, rgba(255, 255, 255, .8) 90%, transparent 90%);
}

/*---moveing---*/
.fadeIn {
  opacity: 0;
  transition: 1.5s;
}

.is-fadeIn {
  opacity: 1;
}

.fadeInUP {
  opacity: 0;
  transform: translate(0, 20px);
  transition: 1s;
}

.is-fadeInUP {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeInScale {
  transform: scale(.9);
  opacity: 0;
  transition: 1s;
}

.is-fadeInScale {
  transform: scale(1);
  opacity: 1;
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.font--en {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/*----------------------------------------------------
  #loading
----------------------------------------------------*/
.loading {
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

.loading__inner {
  width: 100%;
  height: auto;
}

.loading__inner>img {
  width: 50%;
  max-width: 200px;
  margin: 0 auto;
}

/*----------------------------------------------------
 mouse tracking
----------------------------------------------------*/
#stkr {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 26px;
  height: 26px;
  background: linear-gradient(45deg, rgba(135, 193, 153, .5), rgba(180, 187, 145, .5));
  border-radius: 50%;
  transition: .5s;
  transition-timing-function: ease-out;
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 1000;
}

/*----------------------------------------------------
  header
----------------------------------------------------*/
header {
  width: 100%;
  height: auto;
}

#header01 {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-sizing: border-box;
  transition: 1s cubic-bezier(.4, 0, .2, 1);
}

.head-animation {
  transform: translateY(-100%);
}

.global-nav {
  width: 90%;
  height: 80px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.global-nav__logo {
  width: 120px;
  height: auto;
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 1001;
}

.global-nav__logo>a,
.global-nav__logo>a>h1 {
  width: 100%;
  height: auto;
}

.global-nav__cta {
  width: 220px;
  height: 56px;
  margin-left: auto;
}

.global-nav__cta>a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: url('../img/top/bg-link-blk.png');
  background-size: cover;
  color: #fff;
  padding-right: 20px;
  box-sizing: border-box;
  font-weight: bold;
  border-radius: 6px;
}

.global-nav__cta>a>img {
  width: 32px;
  margin-right: 10px;
}

.global-nav__cta-inner {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 1rem;
}

.global-nav__cta-inner>span {
  font-size: 1.8rem;
  letter-spacing: .1em;
}

/*------------------------------------
  main
------------------------------------*/
main {
  width: 100%;
  height: auto;
  text-align: justify;
  position: relative;
  overflow: hidden;
}

/*------------------------------------
  mobile-nav
------------------------------------*/
#mobile-nav {
  display: none;
  width: 100%;
  max-width: 480px;
  height: 70px;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 998;
  box-sizing: border-box;
  background: rgba(255, 255, 255, .8);
}

.mobile-nav__body {
  width: 95%;
  height: auto;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mobile-nav-lead {
  width: 35%;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
}

#mobile-nav ul {
  width: 65%;
  height: auto;
  list-style: none;
  position: relative;
  z-index: 1;
}

#mobile-nav li {
  width: 100%;
  height: auto;
}

#mobile-nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 56px;
  background: url('../img/top/bg-link-blk.png');
  background-size: cover;
  color: #fff;
  line-height: 1.2;
  border-radius: 4px;
  box-sizing: border-box;
}

.mobile-nav__img {
  width: auto;
  height: 32px;
  margin-right: 5px;
}

.mobile-nav__img>img {
  width: auto;
  height: 100%;
}

.mobile-nav__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*------------------------------------
 .footer
------------------------------------*/
.footer {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.footer__body {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 0;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.footer__col {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer__logo {
  width: 180px;
  margin-bottom: 14px;
}

.footer-info {
  text-align: center;
  margin-bottom: 14px;
}

.footer-info>ul {
  list-style: none;
  font-size: 1.4rem;
  text-align: center;
}

.footer__sns {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
}

.footer__sns>a {
  display: block;
  width: auto;
  height: 24px;
}

.footer__sns>a>img {
  width: auto;
  height: 100%;
}

.footer__link {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}

.footer__link>a {
  font-size: 1rem;
  padding: 0 14px;
  position: relative;
}

.footer__link>a:nth-of-type(1)::after {
  display: block;
  content: '';
  width: 1px;
  height: 65%;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.copyright {
  font-size: 1rem;
  text-align: center;
  padding-bottom: 20px;
}

@media screen and (max-width:1440px) {
  html {
    font-size: calc(100vw/144.0);
  }
}

@media screen and (max-width:1360px) {
  .footer01 {
    width: 90%;
    max-width: initial;
  }
}

@media screen and (max-width:1280px) {
  html {
    font-size: calc(100vw/128.0);
  }
}

@media screen and (max-width:1024px) {
  html {
    font-size: calc(100vw/102.4);
  }

  #header01 {
    height: 60px;
    position: fixed;
    z-index: 1001;
  }

  .global-nav {
    height: 60px;
    justify-content: space-between;
    padding: 0 10px;
    box-sizing: border-box;
  }
}

@media screen and (max-width:896px) {
  html {
    font-size: calc(100vw/89.6);
  }

  /*---footer---*/
  .footer__body {
    text-align: center;
  }
}

@media screen and (max-width:786px) {
  html {
    font-size: calc(100vw/78.6);
  }
}

@media screen and (max-width:680px) {
  html {
    font-size: calc(100vw/68);
  }
}

@media screen and (max-width:480px) {
  html {
    font-size: 62.5%;
  }

  body {
    font-size: 1.4rem;
  }

  #stkr {
    display: none;
  }

  /*--- header ---*/
  #header01 {
    position: fixed;
    height: 60px;
  }

  .global-nav__logo {
    width: 80px;
    margin: 0 auto;
  }

  .global-nav__cta {
    display: none;
  }

  /*---footer---*/
  .footer {
    margin-bottom: 70px;
  }

  .footer__body {
    width: 90%;
    padding: 100px 0;
  }

  .footer__col {
    flex-direction: column;
  }

  .footer__logo {
    margin-bottom: 30px;
  }
}