@charset "UTF-8";
.content-width {
  max-width: calc(90rem + 40px);
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .content-width {
    max-width: unset;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

#header {
  top: 0;
  position: fixed;
  /*　上に上がる動き　*/
  /*　下に下がる動き　*/
}
@media screen and (max-width: 768px) {
  #header {
    transition: ease 0.3s all;
    right: -100%;
  }
}
#header.UpMove {
  animation: UpAnime 0.5s forwards;
}
@media screen and (max-width: 768px) {
  #header.UpMove {
    animation: none;
  }
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-98px);
  }
}
#header.DownMove {
  animation: DownAnime 0.5s forwards;
}
@media screen and (max-width: 768px) {
  #header.DownMove {
    animation: none;
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-98px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header {
  width: 100%;
  position: absolute;
  z-index: 9998;
}
@media screen and (max-width: 768px) {
  .header {
    height: 100vh;
  }
}
.header-width {
  width: 100%;
  padding-top: 2.3rem;
  padding-left: 3.35vw;
  padding-right: 4.07vw;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .header-width {
    height: 100%;
    padding-top: 0;
    padding-right: 0;
    padding-left: 5.49rem;
  }
}
.header-logo {
  min-width: 16rem;
  width: 16rem;
}
@media screen and (max-width: 768px) {
  .header-logo {
    display: none;
  }
}
.header-logo a {
  display: block;
  width: inherit;
  height: 9.8rem;
  position: absolute;
}
.header-logo a img {
  width: 100%;
}
.header-nav {
  margin-top: 1.5rem;
  max-width: max(110.7rem, 63vw);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header-nav.invert .header-nav__item a {
  color: #000;
}
@media screen and (max-width: 768px) {
  .header-nav.invert .header-nav__item a {
    color: #fff;
  }
}
.header-nav.invert .header-nav__item--k a {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .header-nav.invert .header-nav__item--k a {
    color: #000;
  }
}
@media screen and (max-width: 768px) {
  .header-nav {
    margin-top: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    flex-direction: column;
    justify-content: center;
    gap: 3.46rem;
  }
}
.header-nav__inner {
  max-width: 50rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .header-nav__inner {
    gap: unset;
    max-width: unset;
    flex-direction: column;
  }
}
.header-nav__inner--k {
  max-width: 34.4rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header-nav__inner--k {
    max-width: unset;
    flex-direction: column-reverse;
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .header-nav__item {
    height: auto;
    padding-top: 1.13rem;
    padding-bottom: 1.53rem;
    border-bottom: 1px solid #fff;
  }
}
.header-nav__item a {
  display: block;
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .header-nav__item a {
    width: 22.1rem;
    font-size: 1.3rem;
    font-weight: 400;
  }
  .header-nav__item a::before {
    content: attr(data-en);
    display: block;
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    height: 3rem;
    line-height: 3rem;
    margin-bottom: 0.2rem;
  }
}
.header-nav__item--k {
  width: 16.2rem;
  height: 2.7rem;
  background-color: #000;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .header-nav__item--k {
    width: 21.8rem;
    height: 3.7rem;
    background-color: #fff;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.header-nav__item--k a {
  line-height: 2.7rem;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .header-nav__item--k a {
    text-align: center;
    color: #000;
    font-size: 1.2rem;
    line-height: 3.7rem;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .header-nav__item--k a::before {
    display: none;
  }
}
.header-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 17.8rem;
  width: 100%;
  gap: 0.7rem;
}
.header-icon__item {
  min-width: 2.7rem;
  width: 2.7rem;
  height: 2.7rem;
}
@media screen and (max-width: 768px) {
  .header-icon {
    margin-right: 4rem;
    margin-top: 1rem;
  }
}
.header-icon img {
  width: 100%;
}
.header-right {
  max-width: 55.2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .header-right {
    flex-direction: column;
  }
}

.sp-header-logo {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-header-logo {
    display: block;
    position: fixed;
    z-index: 9999;
    top: 0.9rem;
    left: 1.5rem;
  }
  .sp-header-logo img {
    width: 7.61rem;
    height: 5.92rem;
  }
}

/*-------------------------------------------
ハンバーガーメニュー
-------------------------------------------*/
@media screen and (max-width: 768px) {
  .hamburger_menu {
    display: block;
    position: relative;
    width: 25px;
    height: 8px;
    cursor: pointer;
    z-index: 9999;
    position: fixed;
    top: 1.5rem;
    right: 1.4rem;
  }
  .hamburger_menu span {
    position: absolute;
    background-color: #000;
    height: 1px;
    width: 100%;
    border-radius: 1px;
    transition: all 0.4s ease-in-out;
  }
  /* 平時の位置 */
  .hamburger_menu span:nth-of-type(1) {
    top: 0px;
  }
  .hamburger_menu span:nth-of-type(2) {
    top: 8px;
  }
  /* クリック時に横アイコンが斜めになる */
  .hamburger_menu.active span:nth-of-type(1) {
    transform: translateY(4px) rotate(-45deg);
  }
  .hamburger_menu.active span:nth-of-type(2) {
    transform: translateY(-4px) rotate(45deg);
  }
}
.more-btn {
  display: block;
  width: 21.2rem;
  height: 3.5rem;
  line-height: 3.5rem;
  background-color: #000;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .more-btn {
    width: 16.2rem;
  }
}

.swiper .swiper-button-prev {
  left: 21.39vw;
  width: 1.691rem;
  height: 2.618rem;
  background: url(../images/common/swiper-left-arrow.png) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .swiper .swiper-button-prev {
    display: none;
  }
}
.swiper .swiper-button-prev::after {
  display: none;
}
.swiper .swiper-button-next {
  right: 21.39vw;
  width: 1.691rem;
  height: 2.618rem;
  background: url(../images/common/swiper-right-arrow.png) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .swiper .swiper-button-next {
    display: none;
  }
}
.swiper .swiper-button-next::after {
  display: none;
}

.keyvis {
  width: 100%;
  height: 48.45rem;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .keyvis {
    height: 12.4rem;
  }
}
.keyvis-head {
  position: absolute;
}
.keyvis-head--en {
  font-family: "Roboto", sans-serif;
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  height: 6.6rem;
  line-height: 6.6rem;
}
@media screen and (max-width: 768px) {
  .keyvis-head--en {
    font-size: 2.6rem;
    height: 3.4rem;
    line-height: 3.4rem;
  }
}
.keyvis-head--jp {
  margin-top: 0.5rem;
  font-weight: 500;
  height: 2.4rem;
  line-height: 2.4rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .keyvis-head--jp {
    margin-top: 0;
    font-size: 1rem;
    height: 1.5rem;
    line-height: 1.5rem;
  }
}

.common-sec {
  padding-top: 12.3rem;
}
@media screen and (max-width: 768px) {
  .common-sec {
    padding-top: 3.2rem;
  }
}
.common-sec__head {
  font-family: "Roboto", sans-serif;
  font-size: 10.5rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 13.8rem;
  height: 13.8rem;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .common-sec__head {
    font-size: 3.1rem;
    height: 4rem;
    line-height: 4rem;
  }
}
.common-sec__head--ja {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  font-weight: 500;
  line-height: 1.56;
  margin-top: -0.2rem;
}
@media screen and (max-width: 768px) {
  .common-sec__head--ja {
    font-size: 1.4rem;
    line-height: 1.78;
    margin-top: -0.55rem;
  }
}

.footer {
  background-color: #000;
  color: #fff;
  padding-top: 2.98rem;
  padding-bottom: 4.99rem;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 1.91rem;
    padding-bottom: 2.18rem;
    position: relative;
  }
}
.footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .footer-nav {
    margin-top: 0.88rem;
    gap: unset;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-nav__inner {
  max-width: 49.9rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .footer-nav__inner {
    flex-direction: column;
    max-width: unset;
    width: -moz-fit-content;
    width: fit-content;
    align-items: flex-start;
    padding-left: 1rem;
    gap: 1.2rem;
  }
}
.footer-nav__inner a {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2.125;
}
@media screen and (max-width: 768px) {
  .footer-nav__inner a {
    font-size: 1.4rem;
    height: 2rem;
    line-height: 2rem;
  }
}
.footer-nav__inner--k {
  max-width: 26.4rem;
}
@media screen and (max-width: 768px) {
  .footer-nav__inner--k {
    width: 27.9rem;
    padding-left: 0;
    margin: 0 auto;
    margin-top: 2.7rem;
    max-width: unset;
    flex-direction: row-reverse;
  }
}
.footer-nav__inner--k .footer-nav__item--k {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12.2rem;
  height: 2.7rem;
  line-height: 2.7rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .footer-nav__inner--k .footer-nav__item--k {
    width: 12.9rem;
  }
}
.footer-nav__inner--k .footer-nav__item--k a {
  color: #000;
}
@media screen and (max-width: 768px) {
  .footer-nav__inner--k .footer-nav__item--k a {
    font-size: 0.8rem;
  }
}
.footer-bottom {
  margin-top: 3.5rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer-bottom {
    margin-top: 0;
    justify-content: center;
  }
}
.footer-bottom-left, .footer-bottom-right {
  display: flex;
  flex-direction: column;
}
.footer-bottom-right {
  width: 16rem;
}
@media screen and (max-width: 768px) {
  .footer-bottom-right {
    position: absolute;
    top: 2rem;
    right: 3.55rem;
  }
}
.footer-text {
  padding-top: 0.88rem;
  font-size: 1.5rem;
  letter-spacing: 0.07em;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .footer-text {
    padding-top: 0;
    text-align: center;
    margin-top: 2.36rem;
    font-size: 1.3rem;
    line-height: 1.9rem;
    height: 1.9rem;
  }
}
.footer-tel {
  color: #fff;
  margin-top: 0.7rem;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 4.3rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  height: 5rem;
  line-height: 5rem;
}
@media screen and (max-width: 768px) {
  .footer-tel {
    text-align: center;
    margin-top: 0.71rem;
    font-size: 3.6rem;
    letter-spacing: 0.07em;
    height: 4.2rem;
    line-height: 4.2rem;
    margin-top: 0.71rem;
  }
}
.footer-address {
  margin-top: 1.3rem;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.07em;
  line-height: 1.92;
}
@media screen and (max-width: 768px) {
  .footer-address {
    text-align: center;
    margin-top: 0.66rem;
    font-size: 1rem;
    line-height: 1.875;
  }
  .footer-address span {
    font-size: 0.8rem;
  }
}
.footer-copyright {
  margin-top: 1.09rem;
  font-size: 1rem;
  font-weight: 100;
  line-height: 2.28;
  letter-spacing: 0.015em;
}
@media screen and (max-width: 768px) {
  .footer-copyright {
    text-align: center;
    margin-top: 1.39rem;
    height: 1.5rem;
    line-height: 1.5rem;
  }
}
.footer-logo {
  width: 100%;
  height: 14rem;
}
.footer-logo img {
  width: 100%;
}
.footer-icon {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
}
@media screen and (max-width: 768px) {
  .footer-icon {
    margin-top: 1.53rem;
    gap: 0.5rem;
  }
}
.footer-icon a {
  display: block;
  min-width: 2.7rem;
  width: 2.7rem;
  height: 2.7rem;
}
.footer-icon a img {
  width: 100%;
}/*# sourceMappingURL=common.css.map */