@charset "UTF-8";
/* ============
faq-button
============ */
section#faq-button {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  section#faq-button {
    margin-bottom: 2.5rem;
  }
}
section#faq-button .button__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  width: 90%;
  margin: 0 auto;
}
section#faq-button .button__wrap .button01-01 {
  width: calc(25% - 1rem);
}
@media screen and (max-width: 1100px) {
  section#faq-button .button__wrap .button01-01 {
    width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 767px) {
  section#faq-button .button__wrap .button01-01 {
    width: calc(100% - 1rem);
  }
}
section#faq-button .button__wrap .button01-01 a {
  width: 100%;
}

/* ============
faq-contents
============ */
section.faq-contents {
  margin: 8rem 0;
}
@media screen and (max-width: 767px) {
  section.faq-contents {
    margin: 5rem 0;
  }
}
section.faq-contents .title__area {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  section.faq-contents .title__area {
    margin-bottom: 2.5rem;
  }
}
section.faq-contents .title__area {
  border-top: 0.0625rem solid #252525;
}
section.faq-contents .title__area .contents-title.title07-01::before {
  display: none;
}
@media screen and (max-width: 767px) {
  section.faq-contents .title__area .contents-title.title07-01 .contents-title__main {
    font-size: 1.375rem;
  }
}
section.faq-contents .contents-faq.faq02-01 .faq-item {
  margin-bottom: 0.9375rem;
}
section.faq-contents .contents-faq.faq02-01 .faq-item:last-child {
  margin-bottom: 0;
}
section.faq-contents .contents-faq.faq02-01 .faq-item .faq-item__question {
  position: relative;
  padding: 1.25rem 3.125rem 1.25rem 1.25rem;
  background-color: #0c6fae;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  section.faq-contents .contents-faq.faq02-01 .faq-item .faq-item__question {
    padding: 1.25rem 2.5rem 1.25rem 0.625rem;
  }
}
section.faq-contents .contents-faq.faq02-01 .faq-item .faq-item__question span.arrow {
  position: absolute;
  right: 1.5625rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left: 0.75rem solid #ffffff;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  section.faq-contents .contents-faq.faq02-01 .faq-item .faq-item__question span.arrow {
    border-top: 0.3125rem solid transparent;
    border-bottom: 0.3125rem solid transparent;
    border-left: 0.5rem solid #ffffff;
  }
}
section.faq-contents .contents-faq.faq02-01 .faq-item .faq-item__question.active span.arrow {
  transform: translateY(-50%) rotate(90deg);
}
section.faq-contents .contents-faq.faq02-01 .faq-item .faq-item__answer {
  height: 0;
  overflow: hidden;
  padding: 0 1.25rem; /* 左右のパディングは固定 */
  line-height: 1.8;
  font-size: 1rem;
  position: relative;
}
section.faq-contents .contents-faq.faq02-01 .faq-item .faq-item__answer p {
  margin-top: 1.25rem;
}
