/* common */
body {
  background: #F5F5F5;
  font-family: "Noto Serif JP", serif;
  color: #666;
  line-height: 1.4;
  letter-spacing: 1.1px;
}

.of-hidden {
  overflow: hidden;
}

.md-hidden {
  display: none;
}
@media screen and (min-width: 768px) {
  .md-hidden {
    display: inline-block;
  }
}

.lg-hidden {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .lg-hidden {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .low-rev {
    flex-direction: row-reverse !important;
  }
}

.fadeIn_up {
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}

.fadeIn_up.is-show {
  opacity: 1;
  transform: translateY(0px);
}

.wrap {
  margin: 0 auto;
  width: 92%;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .wrap {
    max-width: 1103px;
  }
}

.button {
  margin: 0 auto;
  padding-block: 17px;
  border-radius: 8px;
  background: #8A9A5B;
  border: 1px solid #8A9A5B;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 250px;
  transition: 0.4s;
}
@media screen and (min-width: 768px) {
  .button {
    width: 270px;
  }
}
.button__text {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
.button:hover {
  opacity: 1;
  background: #6B7745;
  border: 1px solid #6B7745;
}

.overlay {
  position: relative;
}
.overlay::before {
  position: absolute;
  content: "";
  inset: 0;
  background: rgba(255, 249, 243, 0.3);
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .lg-overlay {
    position: relative;
  }
  .lg-overlay::before {
    position: absolute;
    content: "";
    inset: 0;
    background: rgba(255, 249, 243, 0.3);
  }
}

img {
  width: 100%;
}

a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.6;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes fadeInText {
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes openingFadeOut {
  to {
    opacity: 0;
  }
}
.opening {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100dvh;
  background-color: #F5F5F5;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .opening {
    justify-content: start;
  }
}
.opening.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}
.opening.is-hidden::before {
  opacity: 0;
}
.opening.is-removed {
  display: none;
}
.opening::before {
  position: absolute;
  content: "";
  inset: 0;
  z-index: -2;
  background: rgba(138, 154, 91, 0.7);
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0s;
}
.opening__title {
  margin-top: 127px;
  color: #FFF;
  text-align: center;
  font-family: "Limelight", sans-serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 3.6px;
  opacity: 0;
  animation: fadeInText 2.5s ease forwards;
  animation-delay: 2s;
  transform: translateY(20px);
}
@media screen and (min-width: 768px) {
  .opening__title {
    margin-top: 58px;
    margin-left: 48px;
    text-align: left;
    font-size: 72px;
    letter-spacing: 7.2px;
  }
}
.opening__overlay {
  position: absolute;
  display: block;
  width: 712px;
  top: calc(50% - 152px);
  left: calc(50% - 249px);
  z-index: -1;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 0.8s;
}
@media screen and (min-width: 768px) {
  .opening__overlay {
    width: 2089px;
    top: 50%;
    left: 50%;
    transform: translate(-46%, -50%);
  }
}

/* fv */
.fv {
  position: relative;
  margin-top: 57px;
  height: 199px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fv {
    margin-top: 120px;
    height: 289px;
  }
}
.fv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 249, 243, 0.2);
  z-index: 0;
}
.fv--owner {
  background: url(../img/fv-owner-sp.webp) no-repeat center center/cover;
  height: 672px;
}
@media screen and (min-width: 768px) {
  .fv--owner {
    height: 289px;
    background: url(../img/fv-owner-pc.webp) no-repeat center center/cover;
  }
}
.fv--owner::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .fv--owner::after {
    display: block;
  }
}
.fv--owner .fv__inner {
  padding-top: 26px;
  flex-direction: column;
  gap: 17px;
}
.fv--owner .fv__title {
  color: #666;
}
@media screen and (min-width: 768px) {
  .fv--owner .fv__title {
    color: #FFF;
  }
}
.fv--owner .fv__parts {
  display: block;
  width: 89%;
  max-width: 333px;
}
@media screen and (min-width: 768px) {
  .fv--owner .fv__parts {
    display: none;
  }
}
.fv--news {
  background: url(../img/fv-news-sp.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .fv--news {
    background: url(../img/fv-news-pc.webp) no-repeat center center/cover;
  }
}
.fv--menu {
  background: url(../img/fv-menu-sp.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .fv--menu {
    background: url(../img/fv-menu-pc.webp) no-repeat center center/cover;
  }
}
.fv__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.fv__title {
  font-family: "Limelight", sans-serif;
  color: #FFF;
  font-size: 32px;
  text-align: center;
}
.fv__parts {
  display: none;
}

/* --- header.php --- */
.header {
  position: fixed;
  top: 0%;
  width: 100%;
  background: #8A9A5B;
  z-index: 99;
}
.header__wrap {
  padding: 12px 16px;
}
@media screen and (min-width: 768px) {
  .header__wrap {
    margin: 0 auto;
    padding: 32px 0px;
    width: 79%;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__name {
  font-family: "Limelight", sans-serif;
  color: #fff;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .header__name {
    font-size: 40px;
  }
}
.header__drawer-icon {
  position: relative;
  width: 32px;
  height: 28px;
}
@media screen and (min-width: 768px) {
  .header__drawer-icon {
    display: none;
  }
}
.header__drawer-icon span {
  position: absolute;
  display: block;
  width: 32px;
  height: 3px;
  background: #FFF;
  left: 0;
  transition: 0.5s;
}
.header__drawer-icon span:nth-of-type(1) {
  top: 0;
}
.header__drawer-icon span:nth-of-type(2) {
  top: 46%;
}
.header__drawer-icon span:nth-of-type(3) {
  bottom: 0;
}
.header__drawer-icon.is-checked span:nth-of-type(1) {
  top: 13px;
  transform: rotate(45deg);
}
.header__drawer-icon.is-checked span:nth-of-type(2) {
  opacity: 0;
}
.header__drawer-icon.is-checked span:nth-of-type(3) {
  bottom: 12px;
  transform: rotate(-45deg);
}
.header__content {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__content {
    display: flex;
    align-items: center;
    gap: 48px;
  }
}
.header__lists {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 44px;
}
.header__list {
  width: fit-content;
  font-family: "Limelight", sans-serif;
  font-size: 18px;
  color: #fff;
}
.header__block {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.header__links {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.header__link {
  display: block;
  width: 24px;
}

.g-nav {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: #F5F5F5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  pointer-events: none;
  transition: 0.7s;
}
.g-nav.is-checked {
  transform: translateX(0);
  pointer-events: all;
}
.g-nav__container {
  padding-bottom: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  height: 100%;
  gap: 23.5%;
}
.g-nav__lists {
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 52px;
}
.g-nav__list {
  width: fit-content;
  font-family: "Limelight", sans-serif;
  font-size: 24px;
}
.g-nav__block {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.g-nav__links {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.g-nav__link {
  display: block;
  width: 24px;
}
.g-nav__copy {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}

/* --- index.php --- */
.hero {
  position: relative;
  margin-top: 57px;
  height: calc(100dvh - 57px);
}
@media screen and (min-width: 768px) {
  .hero {
    margin-top: 120px;
    height: calc(100dvh - 120px);
  }
}
.hero__message {
  position: absolute;
  font-family: "Nothing You Could Do", cursive;
  color: #FFF;
  font-size: 24px;
  font-weight: 400;
  top: 57px;
  left: calc(50% - 174px);
}
@media screen and (min-width: 768px) {
  .hero__message {
    font-size: 48px;
    top: auto;
    bottom: 96px;
    left: 143px;
  }
}
.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.top .wrap:nth-of-type(1) .top__text {
  width: fit-content;
}
@media screen and (min-width: 1080px) {
  .top .wrap:nth-of-type(1) {
    max-width: 1366px;
    width: 100%;
  }
  .top .wrap:nth-of-type(1) .top__title,
  .top .wrap:nth-of-type(1) .top__head,
  .top .wrap:nth-of-type(1) .top__name {
    text-align: left;
  }
  .top .wrap:nth-of-type(1) .button {
    margin-left: 0;
  }
}
.top__item {
  padding-block: 120px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .top__item {
    align-items: center;
  }
}
@media screen and (min-width: 1080px) {
  .top__item--row {
    flex-direction: row;
    align-items: center;
    gap: 84px;
  }
  .top__item--row .top__contect {
    max-width: 368px;
  }
  .top__item--row .button {
    margin-top: 7px;
  }
  .top__item--row .top__body {
    gap: 31px;
  }
}
@media screen and (min-width: 1080px) {
  .top__item--row-rev {
    flex-direction: row-reverse;
    align-items: center;
    gap: 61px;
  }
  .top__item--row-rev:nth-of-type(1) .top__body {
    gap: 45px;
  }
}
@media screen and (min-width: 768px) {
  .top__item--faq {
    background: #F2F2F2;
  }
}
.top__image {
  display: block;
  width: 100%;
  aspect-ratio: 342/212;
}
@media screen and (min-width: 768px) {
  .top__image {
    max-width: 464px;
    aspect-ratio: 764/440;
    width: 56%;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1080px) {
  .top__image {
    max-width: 764px;
  }
}
.top__image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top__contect {
  display: flex;
  flex-direction: column;
  gap: 44px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .top__contect {
    max-width: 400px;
    width: 100%;
  }
}
.top__title {
  text-align: center;
  font-family: "Limelight", sans-serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 3.2px;
}
@media screen and (min-width: 768px) {
  .top__title {
    font-size: 40px;
    letter-spacing: 4px;
  }
}
.top__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media screen and (min-width: 1080px) {
  .top__body {
    align-items: start;
    gap: 31px;
  }
}
.top__head {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .top__head {
    font-size: 24px;
    letter-spacing: 2.4px;
  }
}
.top__name {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.6px;
  text-align: center;
}
.top__text {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
}
@media screen and (min-width: 768px) {
  .top__text {
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 1.4px;
  }
}
.top__button {
  margin-top: 26px;
}
.top__menu {
  margin-block: 50px 45px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.top__menu-list {
  padding-block: 8px;
  display: flex;
  gap: 14px;
  border-bottom: 0.5px solid #D8D8D8;
}
.top__menu-text {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
}
.top__styles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .top__styles {
    gap: 16px;
  }
}
.top__style-image {
  width: calc((100% - 16px) / 3);
}
@media screen and (min-width: 768px) {
  .top__style-image {
    width: calc((100% - 48px) / 4);
  }
  .top__style-image:nth-of-type(8) {
    display: none;
  }
}
.top__cards {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 346px;
}
@media screen and (min-width: 1080px) {
  .top__cards {
    flex-direction: row;
    max-width: 100%;
  }
}
.top__card {
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px 0px;
  background: #FFF;
}
@media screen and (min-width: 1080px) {
  .top__card {
    width: calc((100% - 64px) / 3);
    justify-content: center;
  }
  .top__card .top__text {
    font-size: 12px;
    letter-spacing: 1.2px;
  }
}
.top__card-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 226px;
}
.top__card-head {
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 0.5px solid #D8D8D8;
  font-size: 14px;
  font-weight: 400;
}
.top__lists {
  padding-inline: 16px;
}
@media screen and (min-width: 768px) {
  .top__lists {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
.top__list {
  padding: 15px 16px;
  border-bottom: 0.5px solid #D8D8D8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .top__list {
    max-width: 696px;
    width: 100%;
  }
  .top__list--faq {
    max-width: 450px;
  }
  .top__list--faq .top__text {
    font-size: 12px;
  }
  .top__list .news__date {
    font-size: 14px;
    letter-spacing: 1.4px;
  }
  .top__list .news__title {
    font-size: 18px;
    letter-spacing: 1.8px;
  }
}
.top__link {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.top__faq-head {
  font-size: 14px;
  font-weight: 700;
}
/* --- menu.php --- */
.menu {
  padding-block: 85px;
}
@media screen and (min-width: 768px) {
  .menu {
    padding-block: 120px 80px;
  }
}
@media screen and (min-width: 1080px) {
  .menu__wrap {
    max-width: 1366px;
    width: 100%;
  }
}
.menu__items {
  display: flex;
  flex-direction: column;
  gap: 88px;
}
@media screen and (min-width: 1080px) {
  .menu__items {
    gap: 240px;
  }
}
.menu__item {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .menu__item {
    align-items: center;
  }
}
@media screen and (min-width: 1080px) {
  .menu__item {
    flex-direction: row;
  }
}
.menu__item:nth-of-type(1) .menu__title {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .menu__item:nth-of-type(1) .menu__title {
    font-size: 24px;
  }
}
.menu__image {
  overflow: hidden;
  display: block;
  width: 100%;
  aspect-ratio: 341/212;
}
@media screen and (min-width: 768px) {
  .menu__image {
    max-width: 464px;
    aspect-ratio: 764/440;
    width: 56%;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1080px) {
  .menu__image {
    max-width: 764px;
  }
}
.menu__image img,
.menu__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.menu__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .menu__content {
    max-width: 427px;
    width: 100%;
  }
}
.menu__title {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .menu__title {
    font-size: 24px;
    letter-spacing: 2.4px;
    text-align: left;
  }
}
.menu__text {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .menu__text {
    font-size: 16px;
  }
}
.menu__text--notes {
  display: flex;
  gap: 10px;
}
.menu__body {
  padding-inline: 16px;
  display: flex;
  flex-direction: column;
  gap: 94px;
}
@media screen and (min-width: 768px) {
  .menu__body {
    max-width: 427px;
    width: 100%;
    gap: 38px;
  }
}
.menu__lists {
  margin-top: 23px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.menu__list {
  padding-block: 8px;
  display: flex;
  gap: 10px;
  border-bottom: 0.5px solid #D8D8D8;
}
@media screen and (min-width: 768px) {
  .menu__list {
    gap: 25px;
  }
}
.menu__list--notes {
  flex-direction: column;
  gap: 0px;
}
.menu__list--notes span {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .menu__list--notes span {
    font-size: 16px;
  }
}
.menu__button {
  margin-top: 56px;
}
@media screen and (min-width: 768px) {
  .menu__button {
    margin-top: 86px;
  }
}

/* --- owner.php --- */
.owner {
  padding-block: 126px;
}
@media screen and (min-width: 768px) {
  .owner {
    padding-block: 116px 190px;
  }
}
.owner__wrap {
  width: 92%;
}
.owner__inner {
  display: flex;
  flex-direction: column;
  gap: 55px;
}
@media screen and (min-width: 768px) {
  .owner__inner {
    gap: 63px;
  }
  .owner__inner .owner__content:nth-of-type(1) {
    gap: 14px;
  }
}
.owner__head {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .owner__head {
    align-items: center;
  }
}
@media screen and (min-width: 1080px) {
  .owner__head {
    flex-direction: row;
  }
}
.owner__head .owner__content {
  gap: 41px;
}
@media screen and (min-width: 768px) {
  .owner__head .owner__content {
    gap: 30px;
  }
}
@media screen and (min-width: 1080px) {
  .owner__head .owner__content {
    align-items: start;
  }
}
@media screen and (min-width: 768px) {
  .owner__head .owner__title {
    font-size: 18px;
  }
}
.owner__image {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .owner__image {
    max-width: 544px;
  }
}
.owner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.owner__name {
  text-align: center;
  font-size: 24px;
  font-weight: 400;
}
.owner__title {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .owner__title {
    font-size: 20px;
  }
}
.owner__text {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
}
.owner__message {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.4px;
}
@media screen and (min-width: 768px) {
  .owner__message {
    max-width: 936px;
    width: 100%;
  }
}
.owner__lists {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .owner__lists {
    padding: 0 16px 16px;
    max-width: 440px;
    gap: 13px;
  }
}
.owner__list {
  padding-block: 6px;
  padding-left: 16px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
  border-bottom: 0.5px solid #D8D8D8;
}
@media screen and (min-width: 768px) {
  .owner__list {
    padding-block: 8px;
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}
.owner__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46px;
}
.owner__movie {
  max-width: 544px;
}
/* --- news.php --- */
.news__cards {
  padding: 120px 13px 135px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .news__cards {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.news__card {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 0.5px solid #D8D8D8;
}
@media screen and (min-width: 768px) {
  .news__card {
    width: calc((100% - 32px) / 3);
  }
}
.news__date {
  font-size: 12px;
  font-weight: 400;
}
.news__title {
  font-size: 16px;
  font-weight: 400;
}
.news__thumb {
  overflow: hidden;
  display: block;
  width: 100%;
  aspect-ratio: 279/172;
  background: #D8D8D8;
}
.news__thumb img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.news__pagination {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
  width: 100%;
}
.news__pagination .page-numbers {
  font-size: 16px;
  font-weight: 700;
  width: 40px;
  height: 40px;
  background: #D8D8D8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.news__pagination a:hover {
  opacity: 1;
  background: #666;
  color: #D8D8D8;
}
/* --- single.php --- */
.entry {
  padding-block: 80px;
}
@media screen and (min-width: 768px) {
  .entry {
    padding-block: 120px;
  }
}
@media screen and (min-width: 768px) {
  .entry__wrap {
    width: 66%;
  }
}
.entry__head {
  padding-block: 16px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 82.5%;
}
@media screen and (min-width: 768px) {
  .entry__head {
    width: 100%;
  }
}
.entry__meta {
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .entry__meta {
    font-size: 16px;
  }
}
.entry__title {
  font-size: 16px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .entry__title {
    font-size: 20px;
  }
}
.entry__thumb {
  display: block;
  width: 100%;
}
.entry__content {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media screen and (min-width: 768px) {
  .entry__content {
    margin: 64px auto 0;
    width: 96%;
    gap: 25px;
  }
}
.entry__content p {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .entry__content p {
    font-size: 18px;
    letter-spacing: 1.8px;
  }
}
.entry__button {
  margin-top: 69px;
}
@media screen and (min-width: 768px) {
  .entry__button {
    margin-top: 89px;
  }
}

/* --- footer.php --- */
.footer {
  padding-block: 120px 8px;
  background: url(../img/footer-bg.webp) no-repeat center center/cover;
  color: #2F2F2F;
}
@media screen and (min-width: 768px) {
  .footer .wrap {
    max-width: 500px;
  }
}
@media screen and (min-width: 1080px) {
  .footer .wrap {
    max-width: 1080px;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1080px) {
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .footer__head {
    padding: 16px;
    width: 441px;
    align-items: start;
    gap: 8px;
  }
}
.footer__name {
  font-family: "Limelight", sans-serif;
  font-size: 32px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__name {
    font-size: 40px;
    text-align: left;
  }
}
.footer__address {
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__address {
    text-align: left;
    font-size: 14px;
  }
}
.footer__info {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 92%;
}
@media screen and (min-width: 768px) {
  .footer__info {
    padding-block: 16px;
  }
}
.footer__item {
  padding-block: 8px;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid #2F2F2F;
}
@media screen and (min-width: 768px) {
  .footer__item {
    font-size: 14px;
  }
}
.footer__map {
  margin-top: 64px;
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .footer__map {
    margin-top: 0;
    max-width: 591px;
    width: 54.5%;
  }
}
.footer__map iframe {
  width: 100%;
  aspect-ratio: 343/194;
}
.footer__nav {
  margin-top: 48px;
  display: flex;
  gap: 32px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    margin-top: 70px;
  }
}
.footer__nav-link {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .footer__nav-link {
    font-size: 18px;
  }
}
.footer__links {
  margin-top: 40px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1080px) {
  .footer__links {
    margin-top: 147px;
  }
}
.footer__link {
  display: block;
  width: 24px;
}
.footer__copy {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
/* --- 404.php --- */
.error {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
  text-align: center;
  min-height: 100dvh;
}
@media screen and (min-width: 768px) {
  .error {
    padding-top: 120px;
    gap: 72px;
  }
}
.error__title {
  font-family: "Limelight", sans-serif;
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  .error__title {
    font-size: 56px;
  }
}
.error__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .error__content {
    gap: 24px;
  }
}
.error__head {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .error__head {
    font-size: 24px;
  }
}
.error__text {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .error__text {
    font-size: 18px;
  }
}