@charset "UTF-8";
/****** faq detail ******/
.cont-faq-detail {
  padding-top: 160px;
  width: 100%;
  background: #fff2f8;
  box-sizing: border-box;
  padding-bottom: 100px;
}
.cont-faq-detail .faq-content-detail {
  max-width: 1040px;
  background: #ffffff;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0,0,0, 0.2);
  padding: 30px;
  border-radius: 20px;
  margin: 0 auto;
  color: #000000;
}
.cont-faq-detail .faq-content-detail h2.faq-detail-ttl {
  font-size: 3.8rem;
  line-height: 4.8rem;
  text-align: center;
  font-weight: bold;
  position: relative;
  margin-bottom: 40px;
}
.cont-faq-detail .faq-content-detail h2.faq-detail-ttl::after {
  content: "";
  display: block;
  width: 140px;
  height: 10px;
  background: #fd89c0;
  margin: 20px auto 0 auto;
  border-radius: 10px;
}
.cont-faq-detail .faq-content-detail .faq-detail-sub-ttl {
  font-size: 2.4rem;
  line-height: 3.4rem;
  padding-bottom: 20px;
  padding-top: 30px;
  text-align: left;
}
.cont-faq-detail .faq-content-detail ul {
  list-style: none;
  font-size: 1.6rem;
  line-height: 2.6rem;
  padding: 0;
  margin: 0;
}
.cont-faq-detail .faq-content-detail .accordion-item {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #e4e4e4;
  cursor: pointer;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.cont-faq-detail .faq-content-detail .faq-ttl-area {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cont-faq-detail .faq-content-detail .icon-que {
  flex-shrink: 0;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #fd89c0;
  color: #fd89c0;
  box-sizing: border-box;
  margin: 0;
}
.cont-faq-detail .faq-content-detail .faq-m-ttl {
  margin: 0;
  padding-top: 10px;
  font-weight: normal;
  flex: 1;
}
.cont-faq-detail .faq-content-detail .accordion-item .icon-item {
  position: absolute;
  top: 10px;
  right: 0;
  color: #fd89c0;
  font-size: 25px;
  font-weight: normal;
}
.cont-faq-detail .faq-content-detail .faq-answer {
  display: none;
  padding-top: 25px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cont-faq-detail .faq-content-detail .faq-answer .icon-ans {
  flex-shrink: 0;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  background: #fd89c0;
  box-sizing: border-box;
  margin: 0;
}
.cont-faq-detail .faq-content-detail .faq-answer .ans-txt {
  margin: 0;
  padding-top: 10px;
  flex: 1;
}
.cont-faq-detail .faq-content-detail .faq-detail-btn-area {
  text-align: center;
}
.cont-faq-detail .faq-content-detail .faq-detail-btn-area .faq-return-button {
  position: relative;
  display: inline-block;
  min-width: 250px;
  box-sizing: border-box;
  text-align: center;
  color: #404040;
  border: 1px solid #fd89c0;
  background: #ffffff;
  font-size: 1.4rem;
  line-height: 2.0rem;
  border-radius: 30px;
}
.cont-faq-detail .faq-content-detail .faq-detail-btn-area .faq-return-button > a {
  color: #404040;
  text-decoration: none;
  display: block;
  width: 100%;
  padding: 10px 25px;
  box-sizing: border-box;
}
.cont-faq-detail .faq-content-detail .faq-detail-btn-area .faq-return-button a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.faq-tab-list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.faq-tab-list li {
  position: relative;
  width: 162px;
  background: #ffffff;
  border: 1px solid #fd89c0;
  padding: 10px 5px;
  box-sizing: border-box;
  border-radius: 30px;
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 10px;
  cursor: pointer;
}
.faq-tab-list li.active-tab {
  background: #fd89c0;
  color: #ffffff;
}
.faq-tab-list li.active-tab::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-width: 10px 5px 0 5px;
  border-style: solid;
  border-color: #fd89c0 transparent transparent transparent;
}
.faq-detail-area {
  display: none;
}
.faq-detail-area.active-detail {
  display: block;
}

/******************************************************
smartphone
******************************************************/
@media screen and (max-width: 768px) {
  /****** faq detail ******/
.cont-faq-detail {
  padding-top: 120px;
  width: 100%;
  background: #fff2f8;
  box-sizing: border-box;
  padding-bottom: 100px;
}
.cont-faq-detail .faq-content-detail {
  max-width: 94%;
  background: #ffffff;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0,0,0, 0.2);
  padding: 20px;
  border-radius: 20px;
  margin: 0 auto;
  color: #000000;
}
.cont-faq-detail .faq-content-detail h2.faq-detail-ttl {
  font-size: 3.0rem;
  line-height: 4.0rem;
  text-align: center;
  font-weight: bold;
  position: relative;
  margin-bottom: 40px;
}
.cont-faq-detail .faq-content-detail h2.faq-detail-ttl::after {
  content: "";
  display: block;
  width: 140px;
  height: 10px;
  background: #fd89c0;
  margin: 20px auto 0 auto;
  border-radius: 10px;
}
.cont-faq-detail .faq-content-detail .faq-detail-sub-ttl {
  font-size: 2.0rem;
  line-height: 3.0rem;
  padding-bottom: 20px;
  padding-top: 30px;
  text-align: left;
}
.cont-faq-detail .faq-content-detail ul {
  list-style: none;
  font-size: 1.6rem;
  line-height: 2.6rem;
  padding: 0;
  margin: 0;
}
.cont-faq-detail .faq-content-detail .accordion-item {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #e4e4e4;
  cursor: pointer;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.cont-faq-detail .faq-content-detail .faq-ttl-area {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cont-faq-detail .faq-content-detail .icon-que {
  flex-shrink: 0;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #fd89c0;
  color: #fd89c0;
  box-sizing: border-box;
  margin: 0;
}
.cont-faq-detail .faq-content-detail .faq-m-ttl {
  margin: 0;
  padding-top: 10px;
  font-weight: normal;
  flex: 1;
}
.cont-faq-detail .faq-content-detail .accordion-item .icon-item {
  position: absolute;
  top: 10px;
  right: 0;
  color: #fd89c0;
  font-size: 25px;
  font-weight: normal;
}
.cont-faq-detail .faq-content-detail .faq-answer {
  display: none;
  padding-top: 25px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cont-faq-detail .faq-content-detail .faq-answer .icon-ans {
  flex-shrink: 0;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  background: #fd89c0;
  box-sizing: border-box;
  margin: 0;
}
.cont-faq-detail .faq-content-detail .faq-answer .ans-txt {
  margin: 0;
  padding-top: 10px;
  flex: 1;
}
.cont-faq-detail .faq-content-detail .faq-detail-btn-area {
  text-align: center;
}
.cont-faq-detail .faq-content-detail .faq-detail-btn-area .faq-return-button {
  position: relative;
  display: inline-block;
  min-width: 250px;
  box-sizing: border-box;
  text-align: center;
  color: #404040;
  border: 1px solid #fd89c0;
  background: #ffffff;
  font-size: 1.4rem;
  line-height: 2.0rem;
  border-radius: 30px;
}
.cont-faq-detail .faq-content-detail .faq-detail-btn-area .faq-return-button > a {
  color: #404040;
  text-decoration: none;
  display: block;
  width: 100%;
  padding: 10px 25px;
  box-sizing: border-box;
}
.cont-faq-detail .faq-content-detail .faq-detail-btn-area .faq-return-button a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.faq-tab-list {
  display: flex;
  overflow-x: auto;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  gap: 8px;
  padding-bottom: 10px;
  margin-bottom: 40px;
  scrollbar-width: none;
}
.faq-tab-list::-webkit-scrollbar {
  display: none;
}

.faq-tab-list li {
  flex: 0 0 auto;
  white-space: nowrap;
  background: #ffffff;
  border: 1px solid #fd89c0;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 1.2rem;
  text-align: center;
  cursor: pointer;
}
}