@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%;
  color: #343434;
  letter-spacing: 0.05em;
  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;
  }
}
/* header */
.header {
  position: fixed;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 45px;
  padding: 0 10px 0 5px;
  background-color: #fff;
}
@media screen and (min-width: 768px), print {
  .header {
    height: 100px;
    padding: 0 25px 0 30px;
  }
}

.header__logo {
  position: relative;
  z-index: 200;
  flex: 1 0 10%;
}
.header__logo > a img {
  width: 110px;
}
@media screen and (min-width: 768px), print {
  .header__logo > a img {
    max-width: 247px;
    width: 100%;
  }
}

.header__grobalNav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__grobalNav--icon > a {
  display: flex;
  align-items: center;
  margin-right: 0.6em;
}
@media screen and (min-width: 768px), print {
  .header__grobalNav--icon > a {
    margin-right: 1em;
  }
}
.header__grobalNav--icon > a > i {
  width: 24px;
  height: 24px;
  background: #da423a;
  transition: background 0.3s;
}
@media screen and (min-width: 768px), print {
  .header__grobalNav--icon > a > i {
    width: 26px;
    height: 26px;
  }
}
.header__grobalNav--icon > a:hover > i {
  background: #a6a6a6;
}

/* global nav */
.nav__toggle {
  position: relative;
  z-index: 100;
  display: inline-block;
  width: 28px;
  height: 24px;
  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);
}
@media screen and (min-width: 768px), print {
  .nav__toggle {
    width: 30px;
    height: 26px;
  }
}
.is-open .nav__toggle {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.nav__toggle span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 4px;
  background-color: #343434;
  transition: all 0.4s;
}
.nav__toggle span:nth-of-type(1) {
  top: 0;
}
.nav__toggle span:nth-of-type(2) {
  top: 10px;
}
@media screen and (min-width: 768px), print {
  .nav__toggle span:nth-of-type(2) {
    top: 11px;
  }
}
.nav__toggle span:nth-of-type(3) {
  bottom: 0;
}
.is-open .nav__toggle span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
@media screen and (min-width: 768px), print {
  .is-open .nav__toggle span:nth-of-type(1) {
    -webkit-transform: translateY(11px) rotate(-45deg);
    transform: translateY(11px) rotate(-45deg);
  }
}
.is-open .nav__toggle span:nth-of-type(2) {
  opacity: 0;
}
.is-open .nav__toggle span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}
@media screen and (min-width: 768px), print {
  .is-open .nav__toggle span:nth-of-type(3) {
    -webkit-transform: translateY(-11px) rotate(45deg);
    transform: translateY(-11px) rotate(45deg);
  }
}
@media screen and (min-width: 768px), print {
  .nav__toggle:hover span:nth-of-type(2) {
    width: 80%;
  }
}

.nav {
  position: fixed;
  top: 0;
  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;
  font-family: "Yuji Syuku", "游明朝体", "Yu Mincho", yumincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  opacity: 0;
  transition: all 0.3s;
  -webkit-transform: rotate(0.01deg);
  transform: rotate(0.01deg);
}
@media screen and (min-width: 768px), print {
  .nav {
    min-width: 270px;
    width: auto;
    height: auto;
    padding: 5em 0 3em 0;
  }
}
@media (orientation: landscape) and (max-width: 896px) {
  .nav {
    height: 100%;
    padding: 10em 0 2em 0;
  }
}
.is-open .nav {
  right: 0;
  opacity: 1;
  transition: all 0.3s;
}
.nav__list {
  width: 100%;
  margin: 70px 6% 0 6%;
  list-style: none;
  text-align: right;
}
@media screen and (min-width: 768px), print {
  .nav__list {
    margin: 70px 8% 0 8%;
  }
}
.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;
}
@media screen and (min-width: 768px), print {
  .nav__item a {
    padding-right: 30px;
    font-size: 2.4rem;
  }
}
.nav__item a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 10%;
  height: 2px;
  background: #da423a;
  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;
}
@media screen and (min-width: 768px), print {
  .nav__item a::after {
    right: 30px;
  }
}
.nav__item a:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.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;
}
@media screen and (min-width: 768px), print {
  .nav__icon > a {
    margin-right: 30px;
  }
}
.nav__icon > a > i {
  width: 26px;
  height: 26px;
  background: #000;
  transition: background 0.3s;
}
.nav__icon > a:hover > i {
  background: #a6a6a6;
}
.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);
}

/* slide */
.swiper {
  position: relative;
  overflow: visible !important;
  width: 100%;
  height: calc(100vh - 40px);
  height: calc(var(--vh, 1vh) * 100 - 40px);
  transition: opacity 1s ease-in;
}
@media screen and (min-width: 768px), print {
  .swiper {
    height: calc(100vh - 120px);
    height: calc(var(--vh, 1vh) * 100 - 120px);
  }
}
.swiper.js-loading {
  visibility: hidden;
  opacity: 0;
}
.swiper .swiper-wrapper {
  list-style: none;
}
@media screen and (min-width: 768px), print {
  .swiper .slide-img {
    aspect-ratio: 1390/780;
  }
}
.swiper .slide-img img {
  width: 100%;
  height: calc(100vh - 40px);
  height: calc(var(--vh, 1vh) * 100 - 40px);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50 50%;
  object-position: 50 50%;
}
@media screen and (min-width: 768px), print {
  .swiper .slide-img img {
    height: calc(100vh - 120px);
    height: calc(var(--vh, 1vh) * 100 - 120px);
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
  }
}
@supports (-webkit-touch-callout: none) {
  .swiper .slide-img img {
    height: -webkit-fill-available;
  }
}
.swiper .swiper-pagination {
  bottom: 15px !important;
}
@media screen and (min-width: 768px), print {
  .swiper .swiper-pagination {
    bottom: 20px !important;
  }
}
.swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 0.5em !important;
  border-radius: 50%;
  background: #fff;
  opacity: 1;
}
.swiper .swiper-pagination-bullet-active {
  background: #222;
  opacity: 1;
}

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

.flex__grow {
  flex: 1 0 10%;
}

/* box */
@media screen and (min-width: 768px), print {
  .wrap {
    max-width: calc(1300px + 6em);
    padding: 0 3em;
    margin-inline: auto;
  }
}

.text__unit {
  margin-right: 1em;
  margin-left: 1em;
  line-height: 2;
  opacity: 0;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px), print {
  .text__unit {
    margin-right: auto;
    margin-left: auto;
    font-size: 1.8rem;
  }
}
.text__unit > p {
  margin-top: 1.8em;
}
.text__unit > p:nth-of-type(1) {
  margin-top: 0;
}
.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: 1024px), 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 {
  color: #000;
  text-align: center;
  font-weight: 400;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Helvetica Neue", Arial, "メイリオ", meiryo, "游ゴシック体", "Yu Gothic", yugothic, "MS Pゴシック", "MS PGothic", sans-serif;
  opacity: 0;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px), print {
  .ttl__primary {
    font-size: 1.6rem;
  }
}
.ttl__primary::before {
  display: block;
  content: attr(data-sub);
  letter-spacing: 0.03em;
  font-family: "Old Standard TT", serif;
  font-size: 3.7rem;
}
@media screen and (min-width: 768px), print {
  .ttl__primary::before {
    font-size: 4.7rem;
  }
}
.ttl__primary.is-scrollAni {
  -webkit-animation: fadeInShort 0.7s ease-in 0.2s both;
  animation: fadeInShort 0.7s ease-in 0.2s both;
}
.ttl__primary.-white {
  color: #fff;
}

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

/* link */
.link__text {
  position: relative;
  color: #da423a;
  text-decoration: none;
}
.link__text::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #da423a;
  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: #da423a;
  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 */
.slider {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 40px);
  height: calc(var(--vh, 1vh) * 100 - 40px);
  margin-top: 40px;
}
@media screen and (min-width: 768px), print {
  .slider {
    height: calc(100vh - 120px);
    height: calc(var(--vh, 1vh) * 100 - 120px);
    margin: 100px 20px 20px 20px;
  }
}
.slider__cap {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 100%;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  font-style: normal;
  line-height: 1.4;
  opacity: 0;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  font-size: 3.2rem;
}
@media screen and (min-width: 768px), print {
  .slider__cap {
    font-size: 5.4rem;
  }
}
.is-loading .slider__cap {
  -webkit-animation: fadeIn 1s ease-in 1s both;
  animation: fadeIn 1s ease-in 1s both;
}

.philosophy {
  margin-top: 2em;
}
@media screen and (min-width: 1024px), print {
  .philosophy {
    margin-top: 4em;
  }
}

.philosophy__intro {
  margin-top: 2em;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .philosophy__intro {
    margin-top: 3.5em;
  }
}
.philosophy__intro > p {
  margin-top: 2em;
  line-height: 1.8;
  opacity: 0;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .philosophy__intro > p {
    font-size: 2rem;
  }
}
.philosophy__intro > p.is-scrollAni {
  -webkit-animation: fadeIn 1s ease-in both;
  animation: fadeIn 1s ease-in both;
}

.philosophy__lead {
  margin-top: 0.5em;
  font-weight: 400;
  line-height: 1.3;
  opacity: 0;
  font-size: 3.2rem;
}
@media screen and (min-width: 768px), print {
  .philosophy__lead {
    font-size: 4.5rem;
  }
}
.philosophy__lead.is-scrollAni {
  -webkit-animation: fadeIn 1s ease-in both;
  animation: fadeIn 1s ease-in both;
}

.quality,
.recruit {
  margin-top: 5em;
}
@media screen and (min-width: 1024px), print {
  .quality,
  .recruit {
    margin-top: 7em;
  }
}

.quality__unit {
  position: relative;
}
.quality__unit:nth-child(even) {
  margin-top: 3em;
}
@media screen and (min-width: 768px), print {
  .quality__unit:nth-child(even) {
    margin-top: 4em;
  }
}
@media screen and (min-width: 1024px), print {
  .quality__unit:nth-child(even) .quality__pic {
    max-width: 820px;
    width: 50%;
    margin-right: 2em;
  }
}
.quality__unit:nth-child(odd) {
  margin-top: 3.5em;
}
@media screen and (min-width: 768px), print {
  .quality__unit:nth-child(odd) {
    margin-top: 4em;
  }
}
@media screen and (min-width: 1024px), print {
  .quality__unit:nth-child(odd) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px), print {
  .quality__unit:nth-child(odd) .quality__pic {
    max-width: 820px;
    width: 50%;
    margin-left: 2em;
  }
}

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

.gallery {
  margin-top: 4em;
  background-color: #eee;
}
.gallery__slide {
  position: relative;
  overflow: hidden;
  padding: 2em 1.5em 2em 1.5em;
}
@media screen and (min-width: 768px), print {
  .gallery__slide {
    padding: 1em;
  }
}
@media screen and (min-width: 1024px), print {
  .gallery__slide {
    max-width: calc(1300px + 6em);
    padding: 4em 6em;
    margin-inline: auto;
  }
}
.gallery__slide:not(.swiper-initialized) .swiper-scrollbar {
  display: none;
}
.gallery__slide .swiper-wrapper {
  display: flex;
}
@media screen and (min-width: 768px), print {
  .gallery__slide .swiper-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
  }
}
@media screen and (min-width: 1024px), print {
  .gallery__slide .swiper-wrapper {
    gap: 2em;
  }
}
.gallery__slide .swiper-slide {
  width: 260px;
  height: auto;
  margin-right: 1.5em;
  opacity: 0;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 260/170;
}
@media screen and (min-width: 768px), print {
  .gallery__slide .swiper-slide {
    width: calc((100% - 2em) / 3);
    margin-right: 0;
  }
}
@media screen and (min-width: 1024px), print {
  .gallery__slide .swiper-slide {
    width: calc((100% - 4em) / 3);
  }
}
.gallery__slide .swiper-slide:last-child {
  margin-right: 0;
}
@media screen and (min-width: 768px), print {
  .gallery__slide .swiper-slide:last-child {
    margin-right: 0;
  }
}
.gallery__slide .swiper-slide.is-scrollAni {
  -webkit-animation: fadeIn 1s ease-in both;
  animation: fadeIn 1s ease-in both;
}

@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports not (translate: none) {
    .gallery__slide .swiper-slide {
      margin: 0 1em;
    }
  }
}
.shop__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 330px;
  background-image: url(../img/shop-ttl-sp.jpg);
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px), print {
  .shop__ttl {
    background-image: url(../img/shop-ttl.jpg);
    background-position: top center;
    background-size: cover;
  }
}

.shop__list {
  margin: 3em 1em 0 1em;
  border-bottom: 1px solid #707070;
  opacity: 0;
}
@media screen and (min-width: 768px), print {
  .shop__list {
    max-width: 740px;
    margin-top: 4em;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024px), print {
  .shop__list {
    max-width: 800px;
  }
}
.shop__list.is-scrollAni {
  -webkit-animation: fadeIn 1s ease-in 0.2s both;
  animation: fadeIn 1s ease-in 0.2s both;
}

.shop__item {
  padding: 1.2em 0;
  border-top: 1px solid #707070;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .shop__item {
    display: flex;
    align-items: center;
    padding: 1.2em 0.5em;
    text-align: left;
  }
}
.shop__item > dt {
  text-align: center;
  font-size: 2.2rem;
}
@media screen and (min-width: 768px), print {
  .shop__item > dt {
    width: 18%;
    margin-right: 1em;
  }
}
.shop__item > dd {
  margin-top: 0.5em;
  line-height: 1.6;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .shop__item > dd {
    flex: 1 0 10%;
    margin-top: 0;
    line-height: 1.8;
    font-size: 1.8rem;
  }
}
.shop__item > dd > p {
  margin-top: 0.5em;
}
@media screen and (min-width: 768px), print {
  .shop__item > dd > p {
    margin-top: 0;
  }
}
.shop__item > dd a {
  letter-spacing: normal;
}

.shop__time {
  display: block;
  padding-left: 4.8em;
}
@media screen and (min-width: 768px), print {
  .shop__time {
    display: inline-block;
    padding-left: 0;
  }
}

.recruit__unit {
  position: relative;
  margin-top: 3em;
}
@media screen and (min-width: 768px), print {
  .recruit__unit {
    margin-top: 4em;
  }
}
.recruit__unit .recruit__pic {
  width: 100%;
  margin-bottom: 1.5em;
  text-align: center;
  opacity: 0;
}
@media screen and (min-width: 1024px), print {
  .recruit__unit .recruit__pic {
    max-width: 650px;
    width: 50%;
    margin-right: 2em;
    margin-bottom: 0;
    text-align: left;
  }
}
.recruit__unit .recruit__pic.is-scrollAni {
  -webkit-animation: fadeIn 1s ease-in 0.2s both;
  animation: fadeIn 1s ease-in 0.2s both;
}

/* footer */
.footer {
  margin-top: 5em;
  padding: 3em 1em;
  border-top: 5px solid #000;
}
@media screen and (min-width: 768px), print {
  .footer {
    margin-top: 8em;
    padding: 4em 1em 3em 1em;
  }
}

.footer__inner {
  margin-right: 1em;
  margin-left: 1em;
  text-align: center;
}
@media screen and (min-width: 1024px), print {
  .footer__inner {
    width: 1024px;
    margin-inline: auto;
  }
}

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

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

.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: #343434;
  text-decoration: none;
  font-family: "游明朝体", "Yu Mincho", yumincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", 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: #343434;
  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: 2em;
  }
}
.footer__icon > a {
  display: flex;
  align-items: center;
  height: 40px;
  margin: 0 0.5em;
}
.footer__icon > a > i {
  width: 40px;
  height: 40px;
  background: #343434;
  transition: background 0.3s;
}
.footer__icon > a:hover > i {
  background: #a6a6a6;
}

.footer__copyright {
  margin-top: 3em;
  color: #8f8f8f;
  text-align: center;
  letter-spacing: normal;
  font-family: "Old Standard TT", serif;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px), print {
  .footer__copyright {
    font-size: 1.4rem;
  }
}

/***** 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: 1024px) {
  .display--tab {
    display: none !important;
  }
}

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

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

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