.section01 {
  margin: 0 0 95px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 249, 233)), color-stop(65%, rgba(255, 249, 233, 0.35)), to(rgba(255, 249, 233, 0)));
  background: linear-gradient(to bottom, rgb(255, 249, 233) 0%, rgba(255, 249, 233, 0.35) 65%, rgba(255, 249, 233, 0) 100%);
  padding-top: 100px;
}
@media (max-width: 600px) {
  .section01 {
    padding-top: 80px;
    margin: 0 0 40px 0;
  }
}
.section01 .image {
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
}
.section01 .image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 600px) {
  .section01 .image {
    max-width: 94%;
  }
}
.section01 .text {
  left: 10%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (max-width: 600px) {
  .section01 .text {
    top: auto;
    bottom: 30px;
    left: 5%;
    line-height: 1;
  }
}
.section01 .text * {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.section01 .text span {
  font-size: 14px;
  display: block;
  line-height: 1.7857142857;
  letter-spacing: 1px;
}

.section02 {
  margin-bottom: 80px;
}
.section02 .list {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.section02 .list .item {
  padding: 30px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #ddd1c7;
}
.section02 .list .item .question {
  gap: 20px;
  margin-bottom: 10px;
  cursor: pointer;
}
.section02 .list .item .question p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 20px;
  font-weight: bold;
  color: #5b3d1b;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.section02 .list .item .question::before {
  content: "Q";
  display: block;
  width: 36px;
  height: 36px;
  background-color: #f4efe9;
  border-radius: 50%;
  color: #967255;
  border: 1px solid #c3a991;
  line-height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section02 .list .item .question .arrow {
  display: inline-block;
  width: 8px;
  height: 4px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section02 .list .item .question .arrow::before, .section02 .list .item .question .arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 5.6px;
  border-radius: 9999px;
  background-color: #4c3929;
  -webkit-transform-origin: 50% calc(100% - 0.5px);
          transform-origin: 50% calc(100% - 0.5px);
}
.section02 .list .item .question .arrow::before {
  -webkit-transform: rotate(49.4deg);
          transform: rotate(49.4deg);
}
.section02 .list .item .question .arrow::after {
  -webkit-transform: rotate(-49.4deg);
          transform: rotate(-49.4deg);
}
.section02 .list .item .question.is-open .arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.section02 .list .item .answer {
  gap: 20px;
}
.section02 .list .item .answer p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #5b3d1b;
  line-height: 1.8;
}
.section02 .list .item .answer::before {
  content: "A";
  display: block;
  width: 36px;
  height: 36px;
  background-color: #896242;
  border-radius: 50%;
  color: #fff;
  line-height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}