/*color*/
/*fonts*/
/*mixin*/
body {
  background: #FCF3EF;
  font-family: "Noto Serif JP";
  color: #391D13;
  overflow-x: hidden;
}

/*header*/
.header {
  background-color: #F6EBE2;
  display: flex;
  align-items: center;
  height: 56px;
  justify-content: space-between;
}
.header__inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  margin-left: 15px;
}
.header__nav {
  display: none;
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  padding: 90px 24px 24px;
  background: #F6EBE2;
  transition: right 0.3s ease;
  z-index: 200;
}
.header__nav.is-open {
  display: block;
  right: 0;
}
.header__nav-list {
  display: flex;
  list-style-type: none;
  width: 100%;
  flex-direction: column;
  gap: 24px;
}
.header__nav-item {
  font-size: 12px;
  font-weight: bold;
  align-items: center;
}
.header__nav-item a {
  transition: opacity 0.3s;
}
.header__nav-item a:hover {
  opacity: 0.7;
}
.header__nav-btn {
  position: relative;
  z-index: 300;
  margin-right: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 10px;
}
.header__nav-btn span:not(:last-child) {
  display: block;
  width: 24px;
  height: 2px;
  background: #391D13;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__nav-btn.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.header__nav-btn.is-open span:nth-child(2) {
  opacity: 0;
}
.header__nav-btn.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.header__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}
.header__overlay.is-open {
  display: block;
}
@media (min-width: 768px) {
  .header {
    height: 90px;
  }
  .header__nav {
    display: block;
    position: static;
    width: auto;
    height: auto;
    padding: 30px;
    background: transparent;
  }
  .header__nav-btn {
    display: none;
  }
  .header__nav-list {
    flex-direction: row;
    gap: 15px;
  }
}

/*hero*/
.hero {
  height: 600px;
  position: relative;
}
.hero__text {
  font-size: 36px;
  font-family: "Noto Serif JP";
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 90%;
}
.hero__img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__text-pc {
  display: none;
}
.hero__text-sp {
  display: block;
}
@media (min-width: 768px) {
  .hero {
    height: 590px;
  }
  .hero__img {
    height: 590px;
  }
  .hero__text-pc {
    display: block;
  }
  .hero__text-sp {
    display: none;
  }
}

.about {
  background-color: #FCF3EF;
  padding: 50px 15px;
}
.about__inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.about__sp-only {
  display: block;
}
.about__title {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  align-items: center;
  padding-bottom: 60px;
}
.about__title::before {
  content: "";
  width: 30px;
  border: 1px solid #C5B7AA;
  margin-right: 10px;
}
.about__title::after {
  content: "";
  width: 30px;
  border: 1px solid #C5B7AA;
  margin-left: 10px;
}
@media (min-width: 768px) {
  .about__title::before {
    content: "";
    width: 60px;
    border: 1px solid #C5B7AA;
    margin-right: 10px;
  }
  .about__title::after {
    content: "";
    width: 60px;
    border: 1px solid #C5B7AA;
    margin-left: 10px;
  }
}
.about__text {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .about {
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
  }
  .about__sp-only {
    display: none;
  }
}

.service {
  background-color: #F8EFEA;
  overflow-x: hidden;
  padding: 50px 15px;
}
.service__inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.service__title {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 32px;
  font-weight: bold;
  align-items: center;
  padding-bottom: 60px;
}
.service__title::before {
  content: "";
  width: 30px;
  border: 1px solid #C5B7AA;
  margin-right: 10px;
}
.service__title::after {
  content: "";
  width: 30px;
  border: 1px solid #C5B7AA;
  margin-left: 10px;
}
@media (min-width: 768px) {
  .service__title::before {
    content: "";
    width: 60px;
    border: 1px solid #C5B7AA;
    margin-right: 10px;
  }
  .service__title::after {
    content: "";
    width: 60px;
    border: 1px solid #C5B7AA;
    margin-left: 10px;
  }
}
.service__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.service__card {
  width: 100%;
  background-color: #F7EDE3;
  border-radius: 16px;
  border: 1px solid #f7ede3;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2509803922);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.service__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.service__card-img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__card-title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 20px 30px 0px 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid #C5B7AA;
  line-height: 1.2;
}
.service__card-text {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 47px;
  margin: 15px 30px 47px 30px;
  line-height: 1.5;
  text-align: left;
}
@media (min-width: 768px) {
  .service {
    padding: 60px;
  }
  .service__list {
    align-items: center;
  }
  .service__card {
    width: 304px;
    height: 357px;
  }
}

/*faq*/
.faq {
  background-color: #F8EFEA;
  padding: 50px 15px;
}
.faq__inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.faq__title {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  align-items: center;
  padding-bottom: 58px;
}
.faq__title::before {
  content: "";
  width: 30px;
  border: 1px solid #C5B7AA;
  margin-right: 10px;
}
.faq__title::after {
  content: "";
  width: 30px;
  border: 1px solid #C5B7AA;
  margin-left: 10px;
}
@media (min-width: 768px) {
  .faq__title::before {
    content: "";
    width: 60px;
    border: 1px solid #C5B7AA;
    margin-right: 10px;
  }
  .faq__title::after {
    content: "";
    width: 60px;
    border: 1px solid #C5B7AA;
    margin-left: 10px;
  }
}
.faq__question {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  margin-top: 34px;
  line-height: 1.2;
}
.faq__question-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq__question-btn::before {
  content: "Q";
  font-size: 32px;
  font-weight: 700;
  margin-right: 8px;
}
.faq__question-btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 12px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq__question-btn[aria-expanded=true]::after {
  transform: rotate(-135deg);
}
.faq__answer {
  font-size: 18px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #C5B7AA;
  padding: 0;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq__answer::before {
  content: "A";
  font-size: 32px;
  font-weight: 700;
  padding-right: 15px;
}
.faq__answer.is-open {
  max-height: 300px;
  padding: 0 15px 24px 0px;
}
@media (min-width: 768px) {
  .faq {
    padding: 60px;
  }
}

/*access*/
.access {
  padding: 50px 15px;
  background-color: #F8EFEA;
}
.access__inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.access__title {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  align-items: center;
  padding-bottom: 60px;
}
.access__title::before {
  content: "";
  width: 30px;
  border: 1px solid #C5B7AA;
  margin-right: 10px;
}
.access__title::after {
  content: "";
  width: 30px;
  border: 1px solid #C5B7AA;
  margin-left: 10px;
}
@media (min-width: 768px) {
  .access__title::before {
    content: "";
    width: 60px;
    border: 1px solid #C5B7AA;
    margin-right: 10px;
  }
  .access__title::after {
    content: "";
    width: 60px;
    border: 1px solid #C5B7AA;
    margin-left: 10px;
  }
}
.access__body {
  display: block;
}
@media (min-width: 768px) {
  .access__body {
    display: flex;
    justify-content: center;
    gap: 36px;
  }
}
.access__list {
  display: grid;
  font-size: 16px;
  font-weight: 700;
  grid-template-columns: 74px 1fr;
}
@media (min-width: 768px) {
  .access__list {
    grid-template-columns: 100px 1fr;
  }
}
.access__list-title {
  padding-right: 10px;
}
.access__list-title, .access__list-text {
  border-bottom: 1px solid #C5B7AA;
  padding: 20px 0px 10px;
}
.access__map {
  width: 100%;
}
.access__map iframe {
  width: 100%;
  height: 315px;
  filter: sepia(20%);
  border-radius: 16px;
  border: 1px solid #f7ede3;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2509803922);
}
@media (min-width: 768px) {
  .access__map {
    width: 467.5px;
  }
}
@media (min-width: 768px) {
  .access {
    padding: 60px;
  }
}

/*footer*/
.footer {
  padding: 20px 15px;
  background-color: #634837;
  color: #FFFFFF;
}
.footer__nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer__nav-list {
    gap: 30px;
  }
}
.footer__nav-item {
  font-size: 12px;
}
.footer__nav-item a {
  transition: opacity 0.3s;
}
.footer__nav-item a:hover {
  opacity: 0.7;
}
.footer__copy {
  border-top: 1px solid #C5B7AA;
  font-size: 12px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .footer__copy {
    padding-bottom: 30px;
  }
}/*# sourceMappingURL=style.css.map */