@charset "UTF-8";
/* common */
html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overscroll-behavior-y: none;
}

body {
  width: 100%;
  font-weight: 400;
  font-family: "Yuji Syuku", "游明朝体", "Yu Mincho", yumincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px), print {
  body {
    font-size: 1.6rem;
  }
}

@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ", Meiryo, sans-serif;
  }
}
main {
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

@media screen and (min-width: 768px), print {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.icon-instagram {
  -webkit-mask: url("../img/icon-instagram.svg") no-repeat center center/contain;
  mask: url("../img/icon-instagram.svg") no-repeat center center/contain;
}

.icon-arrow {
  -webkit-mask: url("../img/icon-arrow.svg") no-repeat center center/contain;
  mask: url("../img/icon-arrow.svg") no-repeat center center/contain;
}

/* animation */
@-webkit-keyframes fadeInShort {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInShort {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes mark {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  15% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  60% {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-filter: blur(30px);
    filter: blur(30px);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
@keyframes mark {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  15% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  60% {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-filter: blur(30px);
    filter: blur(30px);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
@-webkit-keyframes menuIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes menuIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* header */
.header {
  position: fixed;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  padding-left: 2%;
  border-top: 10px solid #000;
  background-color: #fff;
}
@media screen and (min-width: 768px), print {
  .header {
    position: sticky;
    top: 0;
    display: block;
    width: 20%;
    height: 100vh;
    height: 100svh;
    padding: 9% 2% 13% 2%;
    border-top: none;
    background-color: transparent;
  }
  .is-active .header {
    -webkit-animation: menuIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) 2s both;
    animation: menuIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) 2s both;
  }
}
@media screen and (min-width: 1200px), print {
  .header {
    padding: 140px 2% 160px 2%;
  }
}

.header__logo {
  position: relative;
  z-index: 200;
}
.header__logo > a img {
  width: 160px;
}
@media screen and (min-width: 768px), print {
  .header__logo > a img {
    max-width: 292px;
    width: 100%;
  }
}

.header__grobalNav {
  margin-top: 3em;
  margin-left: 1em;
}

/* global nav */
@media screen and (max-width: 767px), print {
  .nav__toggle {
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 100;
    display: inline-block;
    width: 36px;
    height: 36px;
    outline: none;
    border: none;
    cursor: pointer;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .is-open .nav__toggle {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  .nav__toggle span {
    position: absolute;
    left: 3px;
    display: inline-block;
    width: 28px;
    height: 3px;
    background-color: #000;
    transition: all 0.5s;
  }
  .nav__toggle span:nth-of-type(1) {
    top: 8px;
  }
  .nav__toggle span:nth-of-type(2) {
    top: 16px;
  }
  .nav__toggle span:nth-of-type(3) {
    top: 24px;
  }
  .is-open .nav__toggle span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
  }
  .is-open .nav__toggle span:nth-of-type(2) {
    -webkit-transform: translateY(0px) rotate(45deg);
    transform: translateY(0px) rotate(45deg);
  }
  .is-open .nav__toggle span:nth-of-type(3) {
    opacity: 0;
  }
  .nav {
    position: fixed;
    top: 10px;
    right: -120%;
    z-index: 5;
    display: flex;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100%;
    padding: 3em 0 2em 0;
    background-color: #fff;
    opacity: 0;
    transition: all 0.3s;
    -webkit-transform: rotate(0.01deg);
    transform: rotate(0.01deg);
  }
  .is-open .nav {
    right: 0;
    opacity: 1;
    transition: all 0.3s;
  }
  .nav__list {
    width: 84%;
    margin: 70px 8% 0 8%;
    list-style: none;
    text-align: right;
  }
  .nav__item {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 1em;
    padding: 5px 0;
    opacity: 0;
    transition: opacity 0.6s 0.4s, -webkit-transform 0.3s 0.4s;
    transition: transform 0.3s 0.4s, opacity 0.6s 0.4s;
    transition: transform 0.3s 0.4s, opacity 0.6s 0.4s, -webkit-transform 0.3s 0.4s;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }
  .is-open .nav__item {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .nav__item:first-child {
    font-family: Arial, Helvetica, sans-serif;
  }
  .nav__item a {
    position: relative;
    display: block;
    color: #000 !important;
    text-decoration: none;
    line-height: 1.5;
    font-size: 1.8rem;
  }
  .nav__icon {
    display: inline-block;
    margin-top: 1em;
    margin-bottom: 2em;
    vertical-align: bottom;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  .nav__icon > a {
    display: flex;
    align-items: center;
    height: 26px;
    margin-right: 0.6em;
  }
  .nav__icon > a > i {
    width: 26px;
    height: 26px;
    background: #000;
  }
  .is-open .nav__icon {
    transition: -webkit-transform 0.2s 0.8s;
    transition: transform 0.2s 0.8s;
    transition: transform 0.2s 0.8s, -webkit-transform 0.2s 0.8s;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media screen and (min-width: 768px), print {
  .nav__list {
    list-style: none;
  }
  .nav__item {
    font-size: 7px;
    font-size: 2.1875vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px), print {
  .nav__item {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px), print {
  .nav__item > a {
    display: flex;
    align-items: center;
    padding: 0.5em 0;
    color: #000 !important;
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px), print {
  .nav__item > a {
    padding: 0.8em 0;
  }
}
@media screen and (min-width: 768px), print {
  .nav__item > a > i {
    position: relative;
    top: 3px;
    width: 12px;
    height: 12px;
    margin-left: 0.8em;
    background: #000;
    opacity: 0;
    transition: opacity 0.2s, margin-left 0.3s;
  }
}
@media screen and (min-width: 768px), print {
  .nav__item > a:hover i {
    margin-left: 1em;
    opacity: 1;
  }
}
@media screen and (min-width: 768px), print {
  .nav__icon {
    display: inline-block;
    margin-top: 2em;
  }
  .nav__icon > a {
    display: flex;
    align-items: center;
    height: 32px;
  }
  .nav__icon > a > i {
    width: 32px;
    height: 32px;
    background: #000;
    opacity: 1;
    transition: opacity 0.2s;
  }
  .nav__icon > a:hover > i {
    opacity: 0.6;
  }
}
@media screen and (min-width: 768px), print {
  .nav__toggle {
    display: none;
  }
}
/* slide */
.swiper {
  position: relative;
  overflow: visible !important;
  width: 100%;
  height: calc(100vh - 60px);
  height: calc(var(--vh, 1vh) * 100 - 60px);
  transition: opacity 1s ease;
}
@media screen and (min-width: 768px), print {
  .swiper {
    height: calc(100vh - 17px);
    height: calc(var(--vh, 1vh) * 100 - 17px);
  }
}
.is-active .swiper {
  -webkit-animation: slideIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) 2s both;
  animation: slideIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) 2s both;
}
@-webkit-keyframes slideIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.swiper-wrapper {
  list-style: none;
}

@media screen and (min-width: 768px), print {
  .slide-img {
    aspect-ratio: 1150/800;
  }
}
.slide-img img {
  max-width: 100%;
  width: 100%;
  height: calc(100vh - 60px);
  height: calc(var(--vh, 1vh) * 100 - 60px);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50 50%;
  object-position: 50 50%;
}
@media screen and (min-width: 768px), print {
  .slide-img img {
    height: calc(100vh - 40px);
    height: calc(var(--vh, 1vh) * 100 - 40px);
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
  }
}

@supports (-webkit-touch-callout: none) {
  .slide-img img {
    height: -webkit-fill-available;
  }
}
.swiper-pagination {
  bottom: 15px !important;
}
@media screen and (min-width: 768px), print {
  .swiper-pagination {
    bottom: 40px !important;
  }
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 0.5em !important;
  border-radius: 50%;
  background: #a1a1a1;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #222;
  opacity: 1;
}

/***** allpage parts *****/
/* flex */
.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex__grow {
  flex: 1 0 10%;
}

/* box */
.text__unit {
  line-height: 2;
  opacity: 0;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px), print {
  .text__unit {
    line-height: 2.2;
    font-size: 1.8rem;
  }
}
.text__unit.is-scrollAni {
  -webkit-animation: fadeIn 0.6s ease-in 0.2s both;
  animation: fadeIn 0.6s ease-in 0.2s both;
}

.link__unit {
  margin-top: 2em;
  text-align: center;
  opacity: 0;
}
@media screen and (min-width: 1200px), print {
  .link__unit {
    text-align: left;
  }
}
.link__unit.is-scrollAni {
  -webkit-animation: fadeIn 0.6s ease-in 0.2s both;
  animation: fadeIn 0.6s ease-in 0.2s both;
}

/* title */
.ttl__primary {
  margin-bottom: 1em;
  text-align: center;
  font-weight: 400;
  opacity: 0;
  font-size: 2.8rem;
}
@media screen and (min-width: 768px), print {
  .ttl__primary {
    margin-bottom: 2em;
    font-size: 3.8rem;
  }
}
.ttl__primary.is-scrollAni {
  -webkit-animation: fadeInShort 0.7s ease-in 0.2s both;
  animation: fadeInShort 0.7s ease-in 0.2s both;
}

.ttl__secondary {
  margin-bottom: 0.6em;
  text-align: center;
  font-weight: 400;
  line-height: 1.6;
  font-size: 2.2rem;
}
@media screen and (min-width: 768px), print {
  .ttl__secondary {
    margin-bottom: 1em;
    font-size: 2.8rem;
  }
}

/* link */
.link__text {
  position: relative;
  color: #04a1ff;
  text-decoration: none;
}
.link__text::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #04a1ff;
  content: "";
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
}
.link__text:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.link__btn {
  position: relative;
  display: inline-block;
  min-width: 230px;
  padding: 0.7em 1em;
  outline: none;
  border-radius: 5px;
  background-color: #55bfdb;
  color: #fff !important;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 2.1rem;
}
@media screen and (min-width: 768px), print {
  .link__btn {
    padding: 0.7em 1.3em 0.7em 1.8em;
  }
}
.link__btn:hover {
  border-radius: 0;
}
.link__btn > i {
  position: relative;
  top: -0.2em;
  right: 0.2em;
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0;
  transition: opacity 0.2s, right 0.3s;
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
}
.link__btn:hover i {
  right: -0.3em;
  opacity: 1;
}

/* page common */
.container {
  position: relative;
}
@media screen and (min-width: 768px), print {
  .container {
    border-top: 17px solid #000;
  }
}

.slider {
  overflow: hidden;
  height: calc(100vh - 60px);
  height: calc(var(--vh, 1vh) * 100 - 60px);
  margin-top: 60px;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .slider {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: calc(100vh - 17px);
    height: calc(var(--vh, 1vh) * 100 - 17px);
    margin-top: 0;
  }
}

.page__contents {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px), print {
  .page__contents {
    padding-left: 20%;
  }
}
.page__contentsBg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}
.page__contentsBg::before {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/page-bg.webp");
  background-position: top 60px center;
  background-size: cover;
  content: "";
}
@media screen and (min-width: 768px), print {
  .page__contentsBg::before {
    background-position: top center;
  }
}
.no-webp .page__contentsBg::before {
  background-image: url("../img/page-bg.png");
}

.page__inner {
  position: relative;
  padding-top: 2em;
  padding-right: 1em;
  padding-bottom: 8em;
  padding-left: 1em;
}
@media screen and (min-width: 768px), print {
  .page__inner {
    padding: 2em 3% 14em 3%;
  }
}

.tenpo,
.recruit {
  margin-top: 6em;
}
@media screen and (min-width: 1200px), print {
  .tenpo,
  .recruit {
    margin-top: 8em;
  }
}

.concept__unit {
  position: relative;
}
@media screen and (min-width: 1200px), print {
  .concept__unit:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px), print {
  .concept__unit:nth-child(even) .concept__pic {
    margin-top: -5em;
  }
}
@media screen and (min-width: 1200px), print {
  .concept__unit:nth-child(even) .concept__pic {
    max-width: 820px;
    width: 50%;
    margin-top: 0;
    margin-left: 4em;
  }
}
.concept__unit:nth-child(odd) {
  margin-top: 3em;
}
@media screen and (min-width: 1200px), print {
  .concept__unit:nth-child(odd) {
    margin-top: 6em;
  }
}
@media screen and (min-width: 1200px), print {
  .concept__unit:nth-child(odd) .concept__pic {
    max-width: 820px;
    width: 48%;
    margin-right: 4em;
  }
}

.concept__pic {
  width: 100%;
  margin-bottom: 1.5em;
  text-align: center;
  opacity: 0;
}
@media screen and (min-width: 1200px), print {
  .concept__pic {
    margin-bottom: 0;
  }
}
.concept__pic.is-scrollAni {
  -webkit-animation: fadeIn 1s ease-in 0.2s both;
  animation: fadeIn 1s ease-in 0.2s both;
}

.tenpo__unit {
  position: relative;
}
@media screen and (min-width: 768px), print {
  .tenpo__unit:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1200px), print {
  .tenpo__unit:nth-child(even) .tenpo__pic {
    max-width: 820px;
    width: 50%;
    margin-left: 4em;
  }
}

.tenpo__pic {
  width: 100%;
  margin-bottom: 1.5em;
  text-align: center;
  opacity: 0;
}
@media screen and (min-width: 1200px), print {
  .tenpo__pic {
    margin-bottom: 0;
    text-align: left;
  }
}
.tenpo__pic > picture:nth-child(even) {
  display: block;
  margin-top: 0.8em;
}
@media screen and (min-width: 768px), print {
  .tenpo__pic > picture:nth-child(even) {
    margin-top: 1em;
  }
}
.tenpo__pic.is-scrollAni {
  -webkit-animation: fadeIn 1s ease-in 0.2s both;
  animation: fadeIn 1s ease-in 0.2s both;
}

.tenpo__list {
  margin-top: 3em;
  border-bottom: 1px solid #707070;
  opacity: 0;
}
@media screen and (min-width: 1200px), print {
  .tenpo__list {
    margin-top: 2em;
  }
}
.tenpo__list.is-scrollAni {
  -webkit-animation: fadeIn 1s ease-in 0.2s both;
  animation: fadeIn 1s ease-in 0.2s both;
}

.tenpo__item {
  padding: 1em 0.5em;
  border-top: 1px solid #707070;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .tenpo__item {
    display: flex;
    align-items: center;
    text-align: left;
  }
}
.tenpo__item > dt {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px), print {
  .tenpo__item > dt {
    width: 45%;
    margin-right: 1em;
    font-size: 2rem;
  }
}
.tenpo__item > dd {
  margin-top: 0.5em;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Helvetica Neue", Arial, "メイリオ", meiryo, "游ゴシック体", "Yu Gothic", yugothic, "MS Pゴシック", "MS PGothic", sans-serif;
}
@media screen and (min-width: 768px), print {
  .tenpo__item > dd {
    flex: 1 0 10%;
    margin-top: 0;
    font-size: 1.6rem;
  }
}
.tenpo__item > dd a {
  display: inline-block;
  margin-top: 0.5em;
}
@media screen and (min-width: 768px), print {
  .tenpo__item > dd a {
    margin-top: 0;
  }
}

.recruit__unit {
  position: relative;
}
.recruit__unit:nth-child(even) .recruit__pic {
  width: 100%;
  margin-bottom: 1.5em;
  text-align: center;
  opacity: 0;
}
@media screen and (min-width: 1200px), print {
  .recruit__unit:nth-child(even) .recruit__pic {
    max-width: 704px;
    width: 48%;
    margin-right: 4em;
    margin-bottom: 0;
    text-align: left;
  }
}
.recruit__unit:nth-child(even) .recruit__pic.is-scrollAni {
  -webkit-animation: fadeIn 1s ease-in 0.2s both;
  animation: fadeIn 1s ease-in 0.2s both;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  visibility: visible;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #05040a;
  color: #fff;
  font-size: 12px;
  opacity: 1;
}
.is-active .loading {
  -webkit-animation: fadeOut 1s cubic-bezier(0.23, 1, 0.32, 1) 2s both;
  animation: fadeOut 1s cubic-bezier(0.23, 1, 0.32, 1) 2s both;
}
.is-loading .loading {
  visibility: hidden;
  opacity: 0;
}

.loading__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading__logoMark {
  position: relative;
  opacity: 0;
}
.is-active .loading__logoMark {
  -webkit-animation: mark 2s cubic-bezier(0.03, 0.45, 0.8, 0.63) 0.5s both;
  animation: mark 2s cubic-bezier(0.03, 0.45, 0.8, 0.63) 0.5s both;
}
.loading__logoMark > img {
  width: 230px;
}
@media screen and (min-width: 768px), print {
  .loading__logoMark > img {
    width: auto;
  }
}

/* footer */
.footer {
  padding: 4em 1em 3em 1em;
  background-color: #000;
  color: #fff;
}

.footer__inner {
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .footer__inner {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
  }
}

.footer__logo {
  display: inline-block;
}
.footer__logo > img {
  width: 230px;
}
@media screen and (min-width: 768px), print {
  .footer__logo > img {
    width: 290px;
  }
}

.footerMenu__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 200px;
  margin-top: 3em;
  list-style: none;
  margin-inline: auto;
}
@media screen and (min-width: 768px), print {
  .footerMenu__list {
    width: auto;
  }
}

.footerMenu__item {
  position: relative;
  margin-right: 0.2em;
  padding-right: 1.2em;
}
.footerMenu__item:last-child {
  padding-right: 0;
}
.footerMenu__item::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "／";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.footerMenu__item:last-child:after {
  content: "";
}
.footerMenu__item > a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Helvetica Neue", Arial, "メイリオ", meiryo, "游ゴシック体", "Yu Gothic", yugothic, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px), print {
  .footerMenu__item > a {
    font-size: 1.6rem;
  }
}
.footerMenu__item > a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  content: "";
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
}
.footerMenu__item > a:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.footer__icon {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2em;
  vertical-align: bottom;
}
@media screen and (min-width: 768px), print {
  .footer__icon {
    margin-top: 1em;
  }
}
.footer__icon > a {
  display: flex;
  align-items: center;
  height: 30px;
  margin: 0 0.5em;
}
.footer__icon > a > i {
  width: 34px;
  height: 34px;
  background: #fff;
  transition: background 0.3s;
}
@media screen and (min-width: 768px), print {
  .footer__icon > a > i {
    width: 30px;
    height: 30px;
  }
}
.footer__icon > a:hover > i {
  background: #a6a6a6;
}

.footer__copyright {
  margin-top: 3em;
  color: #9b9898;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px), print {
  .footer__copyright {
    font-size: 1.3rem;
  }
}

/***** utility *****/
/* align */
.ta--left {
  text-align: left;
}

.ta--center {
  text-align: center;
}

.ta--right {
  text-align: right;
}

/* margin */
.mt--xl {
  margin-top: 8rem;
}
@media screen and (min-width: 768px), print {
  .mt--xl {
    margin-top: 8rem;
  }
}
.mt--lg {
  margin-top: 5rem;
}
@media screen and (min-width: 768px), print {
  .mt--lg {
    margin-top: 5rem;
  }
}
.mt--md {
  margin-top: 3rem;
}
@media screen and (min-width: 768px), print {
  .mt--md {
    margin-top: 3rem;
  }
}
.mt--sm {
  margin-top: 2rem;
}
@media screen and (min-width: 768px), print {
  .mt--sm {
    margin-top: 2rem;
  }
}
.mt--xs {
  margin-top: 1rem;
}
@media screen and (min-width: 768px), print {
  .mt--xs {
    margin-top: 1rem;
  }
}

.mb--xl {
  margin-bottom: 8rem;
}
@media screen and (min-width: 768px), print {
  .mb--xl {
    margin-bottom: 8rem;
  }
}
.mb--lg {
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px), print {
  .mb--lg {
    margin-bottom: 5rem;
  }
}
.mb--md {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px), print {
  .mb--md {
    margin-bottom: 3rem;
  }
}
.mb--sm {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px), print {
  .mb--sm {
    margin-bottom: 2rem;
  }
}
.mb--xs {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px), print {
  .mb--xs {
    margin-bottom: 1rem;
  }
}

/* display */
@media screen and (min-width: 767px) {
  .display--sp {
    display: none !important;
  }
}

@media screen and (min-width: 1200px) {
  .display--tab {
    display: none !important;
  }
}

.display--tabOnly {
  display: none;
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .display--tabOnly {
    display: block !important;
  }
}

@media screen and (max-width: 1199px) {
  .display--pc {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .none--sp {
    display: none !important;
  }
}