@charset "UTF-8";

html {
  box-sizing: border-box;
  font-size: 62.5%;
  /* フォントサイズ 10px */
}

body {
  font-family:
    "Crimson Text", "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho,
    "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-style: normal;
  font-weight: 400;
}

* {
  padding: 0;
  margin: 0;
}

*,
:after,
:before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

a:link,
a:visited,
a:hover {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.wrapper {
  margin: 0 auto;
  max-width: 1920px;
  width: 100%;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
  font-family: "Hiragino Mincho ProN", "游明朝", serif;
  color: #222;
  background: #f7f7f5;
  padding-bottom: 3rem;
}

/* ナビゲーション */
.nav-list {
  display: flex;
  justify-content: center;
  margin: 5rem auto 3rem;
  width: 95%;
  max-width: 1000px;
}

.nav-item {
  background-color: #4caf50;
  border-radius: 3px;
  margin: 0 0.8rem 1rem;
  width: calc(100% / 4);
  text-align: center;
}

/* 追加 */
.nav-link {
  color: #fff;
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.nav-link:link {
  color: #fff;
}

.nav-link:hover {
  background: #18872e;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

.nav-link:visited {
  color: #fff;
}

/* 確認用 */

.mv {}

.mv-img {
  max-width: 100%;
}

.container {
  background: url(../img/bg-01.png) no-repeat top center / contain;
  margin: 5rem auto;
  max-width: 800px;
  padding: 13rem 3rem 2rem;
  width: 100%;
}

.section {
  margin: 3rem auto;
  text-align: center;
  width: 90%;
  max-width: 600px;
}

.container-ttl {
  font-size: 4rem;
  letter-spacing: 0.1em;
  margin-top: 12rem;
}

.container-txt {
  font-size: 1.8rem;
  line-height: 2;
}

/* フェード演出 */
.fade {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1.5s ease,
    transform 1.5s ease;
}

.fade.is-show {
  opacity: 1;
  transform: translateY(0);
}

.item-img {
  max-width: 500px;
  height: auto;

  padding: .5rem;
  box-shadow: 0 0 0 5px #e9411e, 0 0 0 10px #e5bf81;
}

.sp-only {
  display: block;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 50%;
    /* font-size: 1.25vw; */
  }

  .wrapper {
    background-color: #fff;
  }

  .container {
    margin: 3rem auto;
    padding: 4rem 3rem 2rem;
  }

  .section {
    width: 100%;
  }

  .container-ttl {
    font-size: 2.8rem;
  }

  .container-txt {
    font-size: 2rem;
  }

  .contact-wrapper {
    flex-wrap: wrap;
  }

  .item-img {
    max-width: 90%;
    margin-top: 2rem;
  }

  .map_box {
    width: 100%;
  }

  .sp-only {
    display: none;
  }

  .container {
    background: url(../img/bg-01-sp.png) no-repeat top center / cover;
  }
}

@media screen and (max-width: 480px) {
  .nav-list {
    width: 98%;
  }

  .nav-item {
    margin: 0 0.3rem 1rem;
  }

  .nav-link {
    align-items: center;
    justify-content: center;
    display: flex;
    height: 100%;
    line-height: 1;
    padding: 1rem 1.6rem;
    width: 100%;
  }

  .menu-link-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu-link-btn {
    margin: 2rem auto;
    width: 100%;
  }

  .menu-link-txt {
    font-size: 1.6rem;
  }
}