@charset "UTF-8";
/*----------
	大人の休日倶楽部　よくあるご質問用CSS
----------*/
/* その他のよくあるご質問 タブ切り替えボタン */
.ot9faq_tab .ot9faq_tabBtnList {
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}
@media only screen and (min-width: 751px) {
  .ot9faq_tab .ot9faq_tabBtnList {
    gap: 20px;
  }
}
.ot9faq_tab .ot9faq_tabBtnListItem {
  width: calc((100% - 14px) / 2);
  flex: 0 1 auto;
}
@media only screen and (min-width: 751px) {
  .ot9faq_tab .ot9faq_tabBtnListItem {
    width: calc((100% - 40px) / 3);
  }
}
.ot9faq_tab .ot9faq_tabBtnListItem > button {
  display: grid;
  place-items: center;
  height: 100%;
  padding: 12px 8px 28px 8px;
  border: 2px solid #dddddd;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  text-align: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
@media only screen and (min-width: 751px) {
  .ot9faq_tab .ot9faq_tabBtnListItem > button {
    padding: 20px 14px 34px;
    font-size: 1.8rem;
    border-radius: 15px;
  }
  .ot9faq_tab .ot9faq_tabBtnListItem > button:hover {
    border-color: #008803;
    color: #007903;
  }
}
.ot9faq_tab .ot9faq_tabBtnListItem > button::after {
  bottom: 8px;
  width: 12px;
  height: 12px;
}
@media only screen and (min-width: 751px) {
  .ot9faq_tab .ot9faq_tabBtnListItem > button::after {
    width: 16px;
    height: 16px;
  }
}
.ot9faq_tab .ot9faq_tabBtnListItem > button.is-active {
  border-color: #005c02;
  background-color: #e9f1e8;
  color: #005c02;
}
.ot9faq_tab .ot9faq_tabBtnListItem > button.is-active::after {
  bottom: 8px;
  width: 12px;
  height: 12px;
  border-radius: 0;
  background: transparent url(/assets/img/icon/chev-down.svg) no-repeat center/contain;
}
@media only screen and (min-width: 751px) {
  .ot9faq_tab .ot9faq_tabBtnListItem > button.is-active::after {
    width: 16px;
    height: 16px;
  }
}