@charset "UTF-8";
@font-face {
  src: url("doc.php?id=001") format("woff");
  font-family: "M PLUS 1p";
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}
@font-face {
  src: url("doc.php?id=002") format("woff");
  font-family: "M PLUS 1p";
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
@font-face {
  src: url("doc.php?id=003") format("woff");
  font-family: "M PLUS 1p";
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}
/*********************************************************
base
*********************************************************/
* {
  box-sizing: border-box;
}

body {
  color: #181E1B;
  font-family: "M PLUS 1p", serif;
  font-weight: 300;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
}

li {
  list-style: none;
}

span {
  font-weight: inherit;
}

button {
  cursor: pointer;
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}

.breadcrumbs {
  display: flex;
  margin: 0 30px;
}

.breadcrumbs__item {
  font-size: 10px;
}
.breadcrumbs__item:not(:last-child) {
  margin-right: 20px;
}

.breadcrumbs__link {
  color: #5096ff;
  position: relative;
}
.breadcrumbs__link::after {
  border-style: solid;
  border-width: 1px 1px 0 0;
  content: "";
  display: inline-block;
  height: 4px;
  width: 4px;
  transform: rotate(45deg);
  content: "";
  position: absolute;
  top: 5px;
  right: -10px;
}
.breadcrumbs__link:hover {
  opacity: 0.8;
}

.container {
  box-sizing: border-box;
  margin: auto;
  max-width: 1024px;
}

.pageheader__img {
  margin-top: 30px;
}
.pageheader__img img {
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 300px;
}
@media (max-width: 1024px) {
  .pageheader__img img {
    height: 40vh;
  }
}
@media (max-width: 768px) {
  .pageheader__img img {
    border-radius: 0;
    height: 25vh;
  }
}

.pagecontent {
  margin: 30px;
}

.ttl {
  color: #5C946E;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
}

.tab__tabs {
  display: flex;
}
@media (min-width: 769px) {
  .tab__tabs {
    border-bottom: 1px solid #5C946E;
  }
}
@media (max-width: 768px) {
  .tab__tabs {
    justify-content: center;
  }
}

.tab__tab {
  border-top: 1px solid #5C946E;
  border-right: 1px solid #5C946E;
  color: #5C946E;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
}
@media (max-width: 768px) {
  .tab__tab {
    border-bottom: 1px solid #5C946E;
  }
}
@media (max-width: 600px) {
  .tab__tab {
    font-size: 16px;
    font-size: 2.9vw;
  }
}
@media (max-width: 380px) {
  .tab__tab {
    padding: 5px;
  }
}
.tab__tab:first-child {
  border-color: #5C946E;
  border-radius: 10px 0 0 0;
  border-style: solid;
  border-width: 1px 1px 0 1px;
}
@media (max-width: 768px) {
  .tab__tab:first-child {
    border-radius: 10px 0 0 10px;
    border-width: 1px;
  }
}
.tab__tab:last-child {
  border-color: #5C946E;
  border-radius: 0 10px 0 0;
  border-style: solid;
  border-width: 1px 1px 0 0;
}
@media (max-width: 768px) {
  .tab__tab:last-child {
    border-radius: 0 10px 10px 0;
    border-width: 1px 1px 1px 0;
  }
}
.tab__tab.active {
  background: #5C946E;
  color: #fff;
}

.tab__content {
  display: none;
  margin-top: 30px;
}
.tab__content.show {
  display: block;
}

/*********************************************************
header
*********************************************************/
.header {
  padding: 10px 25px 25px;
}
@media (max-width: 768px) {
  .header {
    padding: 10px 25px;
  }
  .home .header {
    padding: 0;
  }
}

.header__logo {
  text-align: center;
}
@media (max-width: 768px) {
  .header__logo {
    text-align: left;
  }
  .home .header__logo {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
  }
}
.header__logo img {
  width: 100px;
}

.menu-btn {
  background: #5C946E;
  border-radius: 0 0 0 10px;
  position: fixed;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  z-index: 99;
}

.menu-btn__inner {
  cursor: pointer;
  position: relative;
  width: 70px;
  height: 70px;
}

.menu-btn__bars {
  margin-top: -1px;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
  width: 40px;
  height: 30px;
}
.menu-btn__bars::after {
  color: #fff;
  content: "menu";
  font-size: 12px;
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
}

.close .menu-btn__bars::after {
  content: "close";
}

.menu-btn__bar {
  background: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s;
  width: 35px;
  height: 2px;
}
.menu-btn__bar::before, .menu-btn__bar::after {
  background: #FFF;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  transition: 0.5s;
  width: 100%;
}
.menu-btn__bar::before {
  margin-top: -14px;
}
.menu-btn__bar::after {
  margin-top: 12px;
}

.close .menu-btn__bar {
  background: transparent;
}
.close .menu-btn__bar::before, .close .menu-btn__bar::after {
  margin-top: 0;
}
.close .menu-btn__bar::before {
  transform: rotate(45deg);
}
.close .menu-btn__bar::after {
  transform: rotate(-45deg);
}

.header__gnav {
  background: #5C946E;
  float: none;
  padding: 20px 30px;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  z-index: 11;
}

.gnav__reserve a {
  background: #fff;
  border-radius: 40px;
  color: #5C946E;
  display: inline-block;
  padding: 10px 30px;
  text-align: center;
}

.gnav__item {
  margin-top: 15px;
}
.gnav__item a {
  color: #fff;
}

/*********************************************************
footer
*********************************************************/
.footer-card {
  background: #A1C3AC;
  padding: 30px;
}

.footer-card__list {
  box-sizing: border-box;
  margin: auto;
  max-width: 1024px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-card__item {
  margin: 10px;
  width: 30%;
}
@media (max-width: 660px) {
  .footer-card__item {
    width: calc(48% - 20px);
  }
}
@media (max-width: 380px) {
  .footer-card__item {
    margin: 0;
    width: 100%;
  }
  .footer-card__item:not(:first-child) {
    margin-top: 10px;
  }
}

.footer-card__link {
  background: #fff;
  box-shadow: 0 0 5px #919191;
  border-radius: 15px;
  color: #5C946E;
  display: block;
  font-weight: bold;
  padding: 15px;
  text-align: center;
}
.footer-card__link:hover {
  box-shadow: none;
}

.footer-bottom {
  background: #5C946E;
  padding: 30px;
}

.footer-bottom__inner {
  box-sizing: border-box;
  margin: auto;
  max-width: 1024px;
}

.footer-bottom__container {
  display: flex;
}
@media (max-width: 768px) {
  .footer-bottom__container {
    display: block;
  }
}

.footer-nav,
.footer-map {
  width: calc(50% - 20px);
}
@media (max-width: 768px) {
  .footer-nav,
  .footer-map {
    width: 100%;
  }
}

.footer-nav {
  margin-right: 40px;
}
@media (max-width: 768px) {
  .footer-nav {
    margin-right: 0;
  }
}

.footer-nav__sitemap dt {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.4);
  font-weight: bold;
  padding-bottom: 5px;
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
}

.footer-nav__item {
  margin-top: 15px;
}
.footer-nav__item:not(:last-child) {
  margin-right: 15px;
}

.footer-nav__link {
  color: #fff;
  font-size: 12px;
}

.footer-map {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .footer-map {
    margin-top: 30px;
  }
}

.footer-map__list {
  border-radius: 15px 15px 0 0;
  color: #fff;
  padding: 15px;
}

.footer-map__ttl {
  font-size: 14px;
  font-weight: bold;
}

.footer-map__address {
  font-size: 12px;
  margin-top: 5px;
}

.footer-map__tel {
  font-size: 20px;
}

.footer-map__reserve {
  margin-top: 5px;
}
.footer-map__reserve a {
  background: #fff;
  border-radius: 40px;
  color: #5C946E;
  display: inline-block;
  font-size: 14px;
  padding: 10px 30px;
  text-align: center;
}

.footer-map__gmap {
  padding-bottom: 35%;
  position: relative;
}
.footer-map__gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  margin-top: 20px;
  text-align: center;
}

.page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.page-top__link {
  background: #5C946E;
  border: 1px solid #fff;
  text-decoration: none;
  color: #fff;
  text-align: center;
  display: block;
  opacity: 0.6;
  padding: 3px 0;
  position: relative;
  border-radius: 50%;
  height: 60px;
  width: 60px;
}
.page-top__link::before {
  content: "page top";
  font-size: 10px;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.page-top__link::after {
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: "";
  display: inline-block;
  height: 8px;
  width: 8px;
  transform: rotate(-45deg);
  content: "";
  margin-left: -4.5px;
  position: absolute;
  top: 15px;
  left: 50%;
}

.page-top__link:hover {
  text-decoration: none;
  opacity: 1;
}

/*********************************************************
index.html
*********************************************************/
@media (min-width: 769px) {
  .mv .swiper-container {
    overflow: visible;
  }
  .mv .swiper-wrapper {
    flex-wrap: wrap;
  }
  .mv .swiper-slide {
    width: 30%;
  }
  .mv .swiper-pagination {
    display: none;
  }
  .mv {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
  }
  .mv .mv__list {
    justify-content: space-between;
  }
  .mv .mv__item {
    position: relative;
    width: 33%;
  }
}
.mv .swiper-pagination {
  left: 50%;
  transform: translate3d(0, 0, 0) translateX(-50%);
}

.mv .swiper-pagination-bullet {
  margin: 5px;
  width: 15px;
  height: 15px;
}

.mv .swiper-pagination-bullet-active {
  background: #5C946E;
}

.mv__content {
  color: #fff;
  padding: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
}

.mv__ttl {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
}

.mv__en {
  display: block;
  font-size: 14px;
}

.mv__txt {
  font-size: 12px;
  margin-top: 15px;
}

.mv__btn {
  margin-top: 15px;
}
.mv__btn a {
  background: #fff;
  border-radius: 40px;
  color: #5C946E;
  display: inline-block;
  font-size: 14px;
  padding: 5px 20px;
  transition: 0.3s;
}
.mv__btn a:hover {
  background: #5C946E;
  color: #fff;
}

.mv__img {
  vertical-align: bottom;
}

.time {
  background: #e4ede7;
  border-radius: 0 0 15px 15px;
  border-top: 5px solid #5C946E;
  padding: 30px;
}
@media (max-width: 768px) {
  .time {
    margin-top: 50px;
  }
}

.time__wrapper {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .time__wrapper {
    display: block;
  }
}

.time__table {
  margin-right: 20px;
}
@media (max-width: 768px) {
  .time__table {
    margin-right: 0;
  }
}
.time__table table {
  width: 100%;
}
.time__table th,
.time__table td {
  background: #fff;
  border: 1px solid #5C946E;
  color: #5C946E;
  font-size: 14px;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.time__table thead th {
  background: #d5e1d9;
  font-weight: bold;
}
.time__table tbody th {
  font-size: 12px;
}

@media (max-width: 768px) {
  .time__reserve {
    margin-top: 15px;
  }
}

.time__note {
  font-size: 12px;
}
.time__note li {
  margin-left: 1em;
  text-indent: -1em;
}
.time__note li:not(:first-child) {
  margin-top: 0.25em;
}

.time__cancel {
  color: #f00;
}

.reserve-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
}
.reserve-banner a {
  border-radius: 40px;
  color: #fff;
  display: block;
  padding: 10px 30px;
  text-align: center;
}
.reserve-banner a:hover {
  opacity: 0.8;
}

.reserve-banner__line,
.reserve-banner__tel {
  width: 48%;
}
@media (max-width: 450px) {
  .reserve-banner__line,
  .reserve-banner__tel {
    width: 100%;
  }
}
.reserve-banner__line a,
.reserve-banner__tel a {
  background: #A1C3AC;
}

@media (max-width: 450px) {
  .reserve-banner__tel {
    margin-top: 10px;
  }
}

.reserve-banner__web {
  margin-top: 10px;
  width: 100%;
}
.reserve-banner__web a {
  background: #5C946E;
}

.sns {
  padding: 30px;
}

.sns__box {
  display: flex;
  justify-content: space-between;
  margin: 15px auto 0;
  max-width: 800px;
}

.sns__instagram,
.sns__line {
  width: 48%;
}
.sns__instagram a,
.sns__line a {
  display: block;
  margin-top: 10px;
}
.sns__instagram a:hover,
.sns__line a:hover {
  opacity: 0.8;
}

.sns__ttl {
  color: #A1C3AC;
  font-weight: bold;
  text-align: center;
}

.cashless {
  padding: 0 30px 30px;
}

/*********************************************************
acu.html
*********************************************************/
.acuhari-a__container {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .acuhari-a__container {
    flex-direction: column-reverse;
  }
}

.acuhari-a__txt {
  font-size: 20px;
  width: 70%;
}
@media (max-width: 768px) {
  .acuhari-a__txt {
    margin-top: 10px;
    width: 100%;
  }
}
.acuhari-a__txt p:not(:first-child) {
  margin-top: 0.5em;
}

.acuhari-a__images {
  width: 28%;
}
@media (max-width: 768px) {
  .acuhari-a__images {
    display: flex;
    width: 100%;
  }
}

.acuhari-a__btn {
  background: #418cc1;
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  margin-top: 20px;
  padding: 10px 20px;
  text-align: center;
}
.acuhari-a__btn:hover {
  background: #5096ff;
}

.acuhari-a__smell {
  margin-top: 20px;
}
.acuhari-a__smell dt {
  font-size: 20px;
  font-weight: bold;
}
.acuhari-a__smell dd {
  margin-top: 15px;
}

.acuhari-a__price {
  margin-top: 20px;
}

.acuhari-about__list {
  border-radius: 10px;
  margin-top: 30px;
  overflow: hidden;
}

.acuhari-about__dt {
  background: #5C946E;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 20px;
}

.acuhari-box {
  background: #e4ede7;
}

.acuhari-box__list:not(:last-child) {
  border-bottom: 2px solid #fff;
}

.acuhari-box__dt {
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  padding: 20px;
  position: relative;
}
.acuhari-box__dt::before, .acuhari-box__dt::after {
  content: "";
  background: #5C946E;
  position: absolute;
  top: 50%;
}
.acuhari-box__dt::before {
  margin-top: -1px;
  right: 10px;
  width: 20px;
  height: 2px;
}
.acuhari-box__dt::after {
  margin-top: -10px;
  right: 19px;
  transition: 0.2s;
  width: 2px;
  height: 20px;
}
.acuhari-box__dt.clicked::after {
  transform: rotate(-90deg);
}

.acuhari-box__dd {
  display: none;
  padding: 0 20px 20px;
}

.acuhari-content__list:not(:last-child) {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}
.acuhari-content__list:not(:first-child) {
  margin-top: 20px;
}

.acuhari-content__dt {
  color: rgba(0, 0, 0, 0.7);
  font-size: 18px;
  font-weight: bold;
}

.acuhari-content__dd {
  margin-top: 10px;
}

.acuhari-content__txt:not(:first-child) {
  margin-top: 0.5em;
}

.acuhari-content__ol li {
  margin-left: 1em;
  text-indent: -1em;
}

/*********************************************************
info.html
*********************************************************/
.info-price__table {
  width: 100%;
}
.info-price__table th,
.info-price__table td {
  border: 1px solid #A1C3AC;
  padding: 10px;
}
.info-price__table th {
  background: #e4ede7;
  color: #5C946E;
  font-weight: bold;
  text-align: left;
}
.info-price__table td:nth-child(2) {
  white-space: nowrap;
}

.info-price__note {
  margin-top: 15px;
}
.info-price__note li {
  margin-left: 1em;
  text-indent: -1em;
}
.info-price__note li:not(:first-child) {
  margin-top: 0.25em;
}
.info-price__note li::before {
  content: "※";
}

.info-about__txt {
  margin-top: 20px;
}

.info-about__list,
.info-flow__list,
.info-gallery__list {
  margin-top: 20px;
}
.info-about__list dt,
.info-flow__list dt,
.info-gallery__list dt {
  color: #5C946E;
  font-size: 20px;
  font-weight: bold;
}
.info-about__list dt:not(:first-child),
.info-flow__list dt:not(:first-child),
.info-gallery__list dt:not(:first-child) {
  margin-top: 20px;
}
.info-about__list dd,
.info-flow__list dd,
.info-gallery__list dd {
  margin-top: 10px;
}
.info-about__list dd p:not(:first-child),
.info-flow__list dd p:not(:first-child),
.info-gallery__list dd p:not(:first-child) {
  margin-top: 0.5em;
}

.info-flow__list {
  counter-reset: num;
}
.info-flow__list dt {
  counter-increment: num;
}
.info-flow__list dt::before {
  content: counter(num) ".";
}

.info-gallery__container {
  display: flex;
}
@media (max-width: 768px) {
  .info-gallery__container {
    display: block;
    margin-top: 30px;
  }
}

@media (min-width: 769px) {
  .info-gallery__img {
    margin-right: 20px;
  }
}
@media (min-width: 769px) {
  .info-gallery__img img {
    width: 400px;
  }
}

@media (min-width: 769px) {
  .info-gallery__txt {
    width: calc(100% - 400px);
  }
}

.info-gallery__note {
  font-size: 14px;
  margin-left: 1em;
  text-indent: -1em;
}

/*********************************************************
staff.html
*********************************************************/
.staff__container {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .staff__container {
    display: block;
    position: relative;
  }
}

.staff__img {
  margin-right: 15px;
  position: relative;
}
@media (max-width: 768px) {
  .staff__img {
    margin-right: 0;
    text-align: center;
  }
}
.staff__img::after {
  background: linear-gradient(to bottom, transparent, #fff);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
}
@media (max-width: 768px) {
  .staff__img::after {
    height: 90px;
  }
}
.staff__img img {
  vertical-align: bottom;
}

.staff__name {
  color: #5C946E;
  display: inline-block;
}

.staff__name-jp {
  font-size: 46px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .staff__name-jp {
    font-size: 36px;
  }
}
@media (max-width: 400px) {
  .staff__name-jp {
    font-size: 30px;
  }
}

.staff__name-kana {
  font-size: 60%;
}

.staff__name-en {
  background: #eee;
  display: block;
  padding: 5px;
  text-align: center;
}
@media (max-width: 768px) {
  .staff__name-en {
    display: inline-block;
    width: 100%;
    max-width: 300px;
  }
}

.staff__comment {
  background: #e4ede7;
  border-radius: 15px;
  font-size: 14px;
  margin-top: 15px;
  padding: 15px;
}
.staff__comment p:not(:first-child) {
  margin-top: 1em;
}

/*********************************************************
access.html
*********************************************************/
.access__map {
  display: flex;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .access__map {
    display: block;
  }
}

.access__img,
.access__iframe {
  width: 50%;
}
@media (max-width: 768px) {
  .access__img,
  .access__iframe {
    width: 100%;
  }
}

.access__img img {
  vertical-align: bottom;
}

.access__iframe {
  position: relative;
}
@media (max-width: 768px) {
  .access__iframe {
    padding-bottom: 40%;
  }
}
.access__iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access__address {
  margin-top: 20px;
}
.access__address dt {
  color: #5C946E;
  font-size: 20px;
  font-weight: bold;
}
.access__address dd {
  margin-top: 10px;
}

.access__station {
  margin-top: 20px;
}
.access__station dt {
  font-weight: bold;
  margin-left: 35px;
  text-indent: -35px;
}
.access__station dt svg {
  display: inline-block;
  fill: #5C946E;
  vertical-align: middle;
  width: 30px;
  height: 30px;
}
.access__station dd {
  margin-top: 5px;
}

.access-root {
  margin-top: 30px;
}

.access-root__list {
  counter-reset: num;
  margin-top: 20px;
}

.access-root__item {
  counter-increment: num;
  display: flex;
}
.access-root__item:not(:first-child) {
  margin-top: 20px;
}
@media (min-width: 769px) {
  .access-root__item {
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .access-root__item {
    flex-direction: column;
  }
}

.access-root__txt {
  font-size: 18px;
  font-weight: bold;
  margin-right: 20px;
}
.access-root__txt p {
  margin-top: 10px;
}

.access-root__num {
  background: #5C946E;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 50px;
  height: 50px;
}
.access-root__num::before {
  content: counter(num);
}

@media (max-width: 768px) {
  .access-root__img {
    margin-top: 10px;
  }
}
@media (min-width: 769px) {
  .access-root__img img {
    width: 300px;
    max-width: 300px;
    min-width: 300px;
  }
}

/*********************************************************
faq.html
*********************************************************/
.faq__top {
  color: #5C946E;
  font-size: 20px;
  margin-top: 20px;
}

.faq-list__q,
.faq-list__a {
  padding-left: 1.5em;
  position: relative;
}
.faq-list__q::before,
.faq-list__a::before {
  position: absolute;
  top: 0;
  left: 0;
}

.faq-list__q {
  color: #5C946E;
  font-weight: bold;
  margin-top: 20px;
}
.faq-list__q::before {
  content: "Q.";
}

.faq-list__a {
  margin: 10px 0 0;
}
.faq-list__a:not(:last-child) {
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}
.faq-list__a::before {
  content: "A.";
}
.faq-list__a p:not(:first-child) {
  margin-top: 1em;
}

.faq-list__btn a {
  background: #5C946E;
  border-radius: 40px;
  color: #fff;
  display: inline-block;
  margin-top: 10px;
  padding: 10px 30px;
  text-align: center;
}
.faq-list__btn a:hover {
  background: #A1C3AC;
}