/* 共通設定 */
/* * {
  outline: 1px solid magenta;
} */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-image: url("img/pattern.svg");
  /* background: #fefee3; */
  color: #5d4100;
}
/* 見出し */
h2 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  text-align: center;
  margin-bottom: 5px;
  margin-top: 40px;
  padding-top: 30px;
}
/* 小見出し */
.sub-title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  color: #d96767;
  text-align: center;
  align-items: center;
  padding: 5px;
  margin-bottom: 1em;
  margin-top: 5px;
}

.sub-title span {
  border-bottom: 0.8px solid #5d4100;
  align-items: center;
  text-align: center;
}

/* スクロールアニメーション */
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.box-02.displayed {
  animation-delay: 0.3s;
}
.displayed {
  animation: fadeUp 1s forwards;
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(-100px);
  }
}
.return-btn {
  position: relative;
  align-items: center;
  text-align: center;
}
.return-btn a {
  position: relative;
  align-items: center;
  text-align: center;
  font-size: 26px;
  text-decoration: none;
  border: none;
  list-style: none;
  color: #214785;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}
.return-btn a:hover {
  color: #d96767;
}
.return-btn img {
  margin-left: 10px;
  width: 24px;
  height: auto;
  top: 0;
  position: relative;
  object-fit: cover;
}
@media screen and (max-width: 480px) {
  .gnav-logo {
    width: 200px;
    height: auto;
    object-fit: cover;
  }
  .image-container .bg-hero img {
    width: 100%;
    height: 100px;
    object-fit: cover;
  }
  main {
    flex-direction: column-reverse;
    position: relative;
  }
  .image-container {
    flex-direction: column-reverse;
    writing-mode: horizontal-tb;
  }
  .sns-container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    margin-top: 300px;
    font-size: 10px;
  }
  .sns-container a img {
    width: 30px;
    height: 30px;
    margin: 0;
    padding: 0;
  }
  .sns-container p {
    font-size: 12px;
    align-items: center;
    text-align: center;
    font-weight: bold;
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
    writing-mode: horizontal-tb;
    flex-direction: column;
  }
  .sns-container a {
    display: block;
    margin: auto;
  }
}
