@media screen and (max-width: 767px) {
  .text-br-pc {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .text-br-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .text-br-sp {
    display: none;
  }
}

.btn-primary__btn-wrap {
  text-align: center;
}
.btn-primary__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  color: #6e9617;
  background-color: #fff4d2;
  border: 2px solid #6e9617;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-primary__btn::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  -webkit-mask: url("../images/top/arrow.svg") no-repeat center/contain;
  mask: url("../images/top/arrow.svg") no-repeat center/contain;
  background-color: #6e9617;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.btn-primary__btn:hover {
  background-color: #6e9617;
  color: #fffcf4;
}
.btn-primary__btn:hover::before {
  background-color: #fffcf4;
}

.btn-ex__btn-wrapper {
  text-align: center;
}
.btn-ex__btn {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #6e9617;
  color: #fffcf4;
  text-decoration: none;
  padding: 14px 40px;
  border-radius: 6px;
  max-width: 220px;
  position: relative;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.btn-ex__btn:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.btn-ex__btn-arrow {
  display: inline-block;
  width: 37px;
  height: 37px;
  background-color: #fffcf4;
  border-radius: 50%;
  margin-left: 30px;
  position: relative;
}
.btn-ex__btn-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 17px;
  height: 8px;
  background: url(../images/top/pickUp-arrow.svg) no-repeat center/contain;
}

h2,
h3,
p {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #3a2205;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}