@charset "UTF-8";
/*=====================================================================
#mv
=====================================================================*/
.mv {
  background: url(../img/sp_topimage.jpg) no-repeat center center/cover;
  height: 100vh;
  width: 100vw;
  display: flex; /* フレックスにする */
  justify-content: center; /* 横方向中央 */
  align-items: center; /* 縦方向中央 */
}
@media screen and (min-width: 768px) {
  .mv {
    background: url(../img/pc_topimage.jpg) no-repeat center center/cover;
  }
}

.mv__inner {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
}

.mv_nav {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  color: #fff;
  letter-spacing: 2px;
  display: none;
}
@media screen and (min-width: 768px) {
  .mv_nav {
    display: block;
  }
}

.mv__link {
  padding-right: 30px;
}

.mv__button {
  font-weight: 700;
  color: #4a4a4a;
  background-color: #fff;
  padding: 10px 20px;
}

.mv__logo {
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: fadein 5s;
  animation-fill-mode: forwards;
  opacity: 1;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.mv__image {
  text-align: center;
}
.mv__image img {
  max-width: 60%;
}
@media screen and (min-width: 768px) {
  .mv__image img {
    max-width: 80%;
  }
}

.mv_lead {
  color: #fff;
  text-align: center;
  font-family: Klee;
  letter-spacing: 6px;
}

/* スクロールダウン全体の場所 */
.mv__scroll {
  display: none;
}
@media screen and (min-width: 768px) {
  .mv__scroll {
    display: block;
    position: absolute;
    bottom: 10px;
    left: 50%;
  }
}

/* Scrollテキストの描写 */
.mv__scroll span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  /* テキストの形状 */
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.05rem;
  /* 縦書き設定 */
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.mv__scroll::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  /* 丸の形状 */
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  /* 丸の動き1.6秒かけて透過し、永遠にループ */
  animation: circle-move 1.6s ease-in-out infinite, circle-move-hide 1.6s ease-out infinite;
}

/* 下の距離が変化して丸の全体が上から下に動く */
@keyframes circle-move {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
/* 上から下にかけて丸が透過→不透明→透過する */
@keyframes circle-move-hide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/* 線の描写 */
.mv__scroll:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 50px;
  background-color: #fff;
}

/*=====================================================================
#about
=====================================================================*/
.about__inner {
  padding-right: 15px;
  padding-left: 15px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__inner {
    margin: 0 auto;
    max-width: 940px;
    padding-right: 30px;
    padding-left: 30px;
  }
}

.about__description {
  margin-top: 20px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .about__description {
    margin-top: 60px;
    line-height: 220%;
  }
}

.about__name {
  margin-top: 20px;
  font-size: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__name {
    margin-top: 20px;
    text-align: right;
  }
}

.about__btn {
  border-radius: 400px;
}

/*=====================================================================
#menu
=====================================================================*/
@media screen and (min-width: 768px) {
  .menu__inner {
    margin: 0 auto;
    max-width: 1000px;
    padding-right: 30px;
    padding-left: 30px;
  }
}

.menu__container {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .menu__container {
    margin-top: 50px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
}

.menu__img {
  margin: 20px auto 0;
}
.menu__img img {
  width: 360px;
}
@media screen and (min-width: 768px) {
  .menu__img img {
    width: 400px;
  }
}

.menu__box {
  position: relative;
}

.menu__description {
  margin: 20px auto 0;
  padding-right: 15px;
  padding-left: 15px;
  max-width: 480px;
}
@media screen and (min-width: 768px) {
  .menu__description {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 500px;
  }
}

.menu__button {
  margin: 40px auto 0;
  padding: 10px 20px;
  width: fit-content;
  display: block;
  border: 1px solid #333;
  letter-spacing: -0.8px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .menu__button {
    padding: 10px 30px;
  }
}

/*=====================================================================
#news
=====================================================================*/
.news__inner {
  padding-right: 15px;
  padding-left: 15px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__inner {
    margin: 0 auto;
    max-width: 1100px;
    padding-right: 30px;
    padding-left: 30px;
  }
}

.news__info {
  margin-top: 20px;
  padding: 24px 0;
  border-top: 1px #333 dotted;
  border-bottom: 1px #333 dotted;
}
@media screen and (min-width: 768px) {
  .news__info {
    text-align: left;
  }
}

/*=====================================================================
#access
=====================================================================*/
.access {
  font-size: 12px;
}

.access__address,
address {
  max-width: 360px;
  margin: 20px auto;
}
@media screen and (min-width: 768px) {
  .access__address,
  address {
    max-width: 480px;
    font-size: 16px;
  }
}
.access__address table,
address table {
  width: 100%;
}
.access__address table tr td:nth-child(1),
address table tr td:nth-child(1) {
  white-space: nowrap;
}
.access__address table tr td:nth-child(2),
address table tr td:nth-child(2) {
  padding-left: 3%;
}
@media screen and (min-width: 768px) {
  .access__address table tr td:nth-child(2),
  address table tr td:nth-child(2) {
    padding-left: 10%;
  }
}

.access__map {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .access__map {
    padding: 0;
  }
}
.access__map iframe {
  width: 100%;
  height: 220px;
}
@media screen and (min-width: 768px) {
  .access__map iframe {
    padding: 0;
    height: 400px;
  }
}

/*=====================================================================
#fade-in-up
=====================================================================*/
.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=style.css.map */