@charset "UTF-8";
/*Loading*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background-color: #fafafa;
}
#splash_logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 100%;
}
#splash_logo .img {
  width: 250px;
  margin: 0 auto 30px;
}
#splash_logo h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 54px;
  letter-spacing: 1px;
  margin: 0;
  text-align: center;
  color: #111;
}
/*Loadingここまで*/
a {
  outline: none;
  opacity: 1;
  transition: all .3s;
}
a:hover {
  opacity: 0.8;
  transition: all .3s;
}
*:hover {
  transition: all .3s;
}
figure {
  margin: 0;
}
figure img {
  width: 100%;
  vertical-align: bottom;
}
/*アニメーション*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}
/*テキスト　アニメーション*/
.anime-up {
  opacity: 0;
  visibility: hidden;
}
.anime-up.displayed {
  opacity: 1;
  visibility: visible;
}
@keyframes showTextFromBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0px);
  }
}
.anime-up.displayed span {
  display: inline-block;
}
.anime-up.displayed > span {
  overflow: hidden;
}
.anime-up.displayed > span > span {
  animation: showTextFromBottom 1s ease-out backwards;
}
body {
  margin: 0;
  padding: 0;
  color: #111;
  font-size: 15px;
  -webkit-text-size-adjust: 100%;
  background-color: #fafafa;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
body.fixed {
  overflow: hidden;
}
#wrapper {
  min-width: 1000px;
  overflow: hidden;
}
.inner {
  width: 1000px;
  margin: 0 auto;
}
br.sp {
  display: none;
}
/*-------------------トップ-------------------*/
.top {
  width: 100%;
  height: 100vh;
  min-height: 500px;
}
.top .wrap {
  width: 70%;
  height: 75vh;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.top .swiper {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.top .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/*-------------------トップ以下-------------------*/
/*-------------------内容-------------------*/
.contents.about {
  padding: 70px 0;
}
.contents.about .mission h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 54px;
  letter-spacing: 1px;
  text-align: center;
  margin: 0 auto 10px;
}
.contents.about .mission p {
  margin: 0;
  text-align: center;
  font-size: 20px;
  line-height: 40px;
}
.contents.about .video {
  margin: 70px auto;
}
.contents.about .video .video_box {
  width: 400px;
  height: 710px;
  position: relative;
  margin: 0 auto;
}
.contents.about .video .video_box video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
}
.contents.about .detail {
  width: 540px;
  margin: 0 auto;
}
.contents.about .detail section {
  margin-bottom: 50px;
}
.contents.about .detail section:last-child {
  margin-bottom: 0;
}
.contents.about .detail h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 1px;
  margin: 0 auto 10px;
}
.contents.about .detail h4 .jpn {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
}
.contents.about .detail p {
  margin: 0;
  line-height: 28px;
  text-align: justify;
}
/*-------------------店舗-------------------*/
.contents.location {
  padding: 50px 0;
}
.contents.location .banner {
  background-image: url("../img/bg_location.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
}
.contents.location .banner a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 100px 0 80px;
}
.contents.location .banner h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 54px;
  letter-spacing: 1px;
  text-align: center;
  margin: 0;
  color: #fff;
}
/*-------------------ギャラリー-------------------*/
.contents.gallery {
  padding: 60px 0 150px;
}
.contents.gallery ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contents.gallery ul li {
  width: 50%;
  margin: 0 0 100px;
}
.contents.gallery ul li figure {
  width: 100%;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
}
.contents.gallery ul li:nth-child(2) {
  width: 60%;
  margin: 0 0 100px auto !important;
}
.contents.gallery ul li:nth-child(3) {
  width: 65%;
  margin: 0 auto !important;
}
.contents.gallery ul li:nth-child(3) figure {
  width: 100%;
  height: 700px;
}
.contents.gallery ul li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width:1050px) {
  /*Loading*/
  #splash_logo .img {
    width: 150px;
    margin: 0 auto 20px;
  }
  #splash_logo h2 {
    font-size: 24px;
  }
  /*Loadingここまで*/
  #wrapper {
    min-width: 100%;
  }
  .inner {
    width: 90%;
  }
  br.sp {
    display: block;
  }
  /*-------------------トップ-------------------*/
  .top {
    min-height: 300px;
  }
  .top .wrap {
    width: 90%;
    height: 60vh;
  }
  .top .swiper {
    margin-top: 50px;
  }
  /*-------------------トップ以下-------------------*/
  /*-------------------内容-------------------*/
  .contents.about {
    padding: 0 0 30px;
  }
  .contents.about .mission h3 {
    font-size: 34px;
    margin: 0 auto 5px;
  }
  .contents.about .mission p {
    font-size: 17px;
    line-height: 30px;
  }
  .contents.about .video {
    margin: 40px auto;
  }
  .contents.about .video .video_box {
    width: 300px;
    height: 530px;
  }
  .contents.about .detail {
    width: 90%;
    margin: 0 auto;
  }
  .contents.about .detail section {
    margin-bottom: 30px;
  }
  .contents.about .detail section:last-child {
    margin-bottom: 0;
  }
  .contents.about .detail h4 {
    font-size: 28px;
    margin: 0 auto 5px;
  }
  .contents.about .detail h4 .jpn {
    font-size: 18px;
  }
  .contents.about .detail p {
    line-height: 24px;
  }
  /*-------------------店舗-------------------*/
  .contents.location {
    padding: 30px 0;
  }
  .contents.location .banner a {
    padding: 50px 0 40px;
  }
  .contents.location .banner h3 {
    font-size: 34px;
  }
  /*-------------------ギャラリー-------------------*/
  .contents.gallery {
    padding: 40px 0 80px;
  }
  .contents.gallery ul li {
    width: 80%;
    margin: 0 0 50px;
  }
  .contents.gallery ul li figure {
    height: 280px;
  }
  .contents.gallery ul li:nth-child(2) {
    width: 80%;
    margin: 0 0 50px auto !important;
  }
  .contents.gallery ul li:nth-child(3) {
    width: 100%;
    margin: 0 auto !important;
  }
  .contents.gallery ul li:nth-child(3) figure {
    height: 380px;
  }
}
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}