h1 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: -15px;
  color: #333;
}
h2 {
  font-size: 0.8rem;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}
.text {
  font-size: 0.9rem;
  color: #333;
}
.right {
  text-align: right;
}
.row {
  display: flex;
  justify-content: space-around;
}
button {
  width: 100%;
  height: 70px;
}
.kigou{
  width:fit-content;
  margin: 0 0 30px auto;
}
@media (width < 767px) {
  .row {
    display: block;
  }
  .row :first-child {
    margin-bottom: 10px;
  }
  button {
    display: block;
    margin: 0 auto;
  }
}

/*以下コピペ*/
.js-accordion--close {
  display: none;
}
.accordion-box {
  height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}
.js-accordion {
  position: relative;
  padding: 0 35px 0 10px;
}
.js-accordion::before {
  content: "";
  width: 2px;
  height: 16px;
  background: #333;
  position: absolute;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.6s ease;
}
.js-accordion::after {
  content: "";
  width: 16px;
  height: 2px;
  background: #333;
  position: absolute;
  right: 11px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.6s ease;
}
.js-accordion.is-accordion--open::before {
  transform: rotate(90deg);
}
.js-accordion.is-accordion--open::after {
  transform: rotate(-180deg);
}
.js-accordion.is-accordion--open + .accordion-box {
  height: auto;
  opacity: 1;
}
