@charset "utf-8";
/* CSS Document */
.privacypolicy .contents .title {
  font-weight: 900;
  text-align: center;
  margin-bottom: clamp(20px, 5vw, 50px);
  font-size: clamp(18px, 2vw, 24px);
}
.contact-form_a .send .send-bt {
  width: 200px;
  position: relative;
  padding: 10px 30px;
  border-radius: 200px;
  background: #4F97C8;
  transition: transform 0.25s ease, opacity 0.25s ease;
  cursor: pointer;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}
/* 文字 */
.contact-form_a .send .send-bt p {
  color: #fff;
  margin: 0;
}
/* hover：ふわっと浮く */
.contact-form_a .send .send-bt:hover {
  transform: translateY(3px);
  opacity: 0.6;
}
.cate2 {
  position: relative;
}
.cate2::before {
  content: "";
  position: absolute;
  top: 0; /* ← 一番上 */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  background: #B2B2B2;
}
.faq_e .box {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
}
.faq_e .box:not(:last-of-type) {
  margin-bottom: 18px;
}
/* Q行 */
.faq_e .box .qbox {
  cursor: pointer;
  position: relative;
  padding: 40px 90px 40px 40px;
  background: #fff;
  gap: 14px;
}
/* Qアイコン */
.faq_e .q_icon, .faq_e .a_icon {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
}
.abox .a_icon {
  display: inline-block;
  margin-right: 14px;
}
/* 質問文 */
.faq_e .box .qbox h3 {
  margin: 0;
  line-height: 1.6;
}
/* 右の黒丸ボタン */
.faq_e .box .qbox .icon {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background:#01418E;
}
/* 中の記号（マイナス/プラス） */
.faq_e .box .qbox .icon::before, .faq_e .box .qbox .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  transition: .25s ease;
}
/* 横棒（常に表示＝マイナスの土台） */
.faq_e .box .qbox .icon::before {
  width: 12px;
  height: 2px;
}
/* 縦棒（閉じている時だけ表示＝プラス） */
.faq_e .box .qbox .icon::after {
  width: 2px;
  height: 12px;
  opacity: 1;
}
/* 開いている時（active）＝マイナスにする */
.faq_e .box .qbox.active .icon::after {
  opacity: 0;
}
/* A行 */
.faq_e .box .abox {
  padding: 0px 40px 40px;
  background: #fff;
}
.faq_e .box .abox::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #E5E5E5;
  margin-bottom: 30px;
}
/* 開閉制御：body.on が付いてる時は閉じる */
body.on .faq_e .box .abox {
  display: none;
}
/* SP微調整 */
@media screen and (max-width: 576px) {
  .faq_e .box .qbox {
    padding: 18px 56px 18px 18px;
  }
  .faq_e .box .qbox .icon {
    right: 16px;
    width: 28px;
    height: 28px;
  }
  .faq_e .q_icon, .faq_e .a_icon {
    font-size: 26px;
  }
  .faq_e .box .abox {
    padding: 0px 18px 18px;
  }
  .faq_e .box .abox::before {
    margin-bottom: 14px;
  }
}
.more_k a {
  display: inline-block;
  border: 2px solid #01418E;
  border-radius: 999px;
  padding: 10px 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  background: #fff;
}
.more_k a > div {
  gap: 10px;
}
.more_k a > div img {
  width: 30px;
  height: auto;
}
/* ★ 文字色を青に */
.more_k a > div p {
  color: #01418E;
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {}