@charset "utf-8";

/* ==================================================
Accordion
================================================== */

/* --------------------------------------------------
通常
-------------------------------------------------- */
/* ----- アコーディオン（デフォルト） ----- */
.acd {
  --acdIconColor: #0AA365;
  --acdIconSize: 18px;
  --acdIconRotate: rotate(-90deg);
  border: 1px solid #0AA365;
  border-radius: 16px;
  margin-top: 40px;
  overflow: initial;
}
.acd:first-child { margin-top: 0; }
.acd + .acd { margin-top: 32px; }
/* - ボタン - */
.acd_btn {
  width: 100%;
  display: flex;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.25;
  background-color: #fff;
  padding: 16px 20px;
  transition:
    color .4s ease,
    background-color .4s ease,
    opacity .4s ease;
}
.acd_btn_inner {
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
  padding-right: var(--acdIconSize);
}
div.acd_btn > .acd_btn_inner { padding-right: 0; }
.acd_btn_sub {
  font-size: 20px;
}
.acd_btn_icon {
  width: var(--acdIconSize);
  height: var(--acdIconSize);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.acd_btn_icon::before,
.acd_btn_icon::after {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: var(--acdIconColor);
  margin: auto;
  transition:
    background-color .4s ease,
    transform .4s ease;
}
.acd_btn_icon::before { transform: var(--acdIconRotate); }
/* - コンテンツ - */
.acd_box {
  display: none;
  position: relative;
  background: #fff;
  border-top: 1px solid #0AA365;
  padding: 12px;
}
.acd_box_inner {
  width: 100%;
}
.acd_box_inner > .faqIcon-a {
  position: absolute;
}
.acd_box_inner2 {
  margin-top: 24px;
}
.acd_box_main {
  width: 100%;
}
.faqIcon + .acd_box_main:has(> .nmlText:only-child) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.faqIcon-a + .acd_box_main {
  min-height: 34px;
  padding-left: 42px;
}
.acd_box.wideBox .faqIcon-a + .acd_box_main,
.acd_box.pc_wideBox .faqIcon-a + .acd_box_main {
  padding-left: 0;
  padding-top: 38px;
}
/* --- 開閉 --- */
.acd[open] { --acdIconRotate: rotate(0); }
/* - パターン2 - */
.acd-type2 {
  --acdIconColor: #fff;
  border: none;
  border-radius: 0;
}
.acd-type2 .acd_btn {
  width: 100%;
  min-height: 68px;
  color: #fff;
  font-size: 18px;
  text-align: center;
  background-color: #ccc;
  border-radius: 12px;
  margin: auto;
}
.acd-type2 .acd_btn_inner {
  justify-content: center;
  padding: 0 24px;
}
.acd-type2 .acd_box {
  background: none;
  border-top: none;
  padding: 48px 0 0;
}

