@charset "UTF-8";
/*****************************
 FAQ page
*****************************/
.faq-page {
  background: #fff;
}

.faq-hero {
  padding: 70px 0 42px;
  background:
    radial-gradient(circle at top right, rgba(26, 91, 140, .12), transparent 34%),
    linear-gradient(135deg, #f7fbff 0%, #eef5fb 100%);
}

.faq-hero__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  padding: 6px 18px;
  border-radius: 999px;
  background: #18395c;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

.faq-hero__title {
  color: #18395c;
  font-size: 3.8rem;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 14px;
}

.faq-hero__lead {
  color: #40566c;
  font-size: 1.7rem;
  line-height: 1.9;
  margin-bottom: 30px;
}

/*****************************
 FAQ検索（差し替え）
*****************************/
.faq-search-area {
  margin-top: 34px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 34px rgba(24,57,92,.08);
}

.faq-search-area__label {
  margin: 0 0 10px;
  color: #111;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: left;
}

.faq-search-form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-search-form__input {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  border: 1px solid #d5dde5;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-size: 1.6rem;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.faq-search-form__input::placeholder {
  color: #7c8794;
}

.faq-search-form__input:focus {
  border-color: #18395c;
  box-shadow: 0 0 0 4px rgba(24,57,92,.08);
}

.faq-search-form__btn {
  flex: 0 0 180px;
  height: 56px;
  border: none;
  border-radius: 10px;
  background: #111;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: opacity .25s ease, transform .25s ease;
}

.faq-search-form__btn:hover {
  opacity: .85;
}

.faq-search-form__btn:active {
  transform: translateY(1px);
}

.faq-search-form__btn svg {
  flex: 0 0 auto;
}

.faq-category {
  padding: 46px 0 36px;
}

.faq-category__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.faq-category__card {
  position: relative;
  display: block;
  min-height: 170px;
  padding: 24px 22px;
  border: 1px solid #dfe8f0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(24, 57, 92, .06);
  color: #18395c;
  text-decoration: none;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.faq-category__card::before {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -46px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(24, 57, 92, .06);
}

.faq-category__card:hover,
.faq-category__card.is-current {
  transform: translateY(-4px);
  border-color: #18395c;
  box-shadow: 0 18px 36px rgba(24, 57, 92, .12);
}

.faq-category__card.is-current {
  background: linear-gradient(135deg, #18395c 0%, #26577f 100%);
  color: #fff;
}

.faq-category__en {
  display: inline-block;
  margin-bottom: 12px;
  color: #6f91aa;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.faq-category__card.is-current .faq-category__en {
  color: rgba(255,255,255,.7);
}

.faq-category__card strong {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.faq-category__card small {
  display: block;
  position: relative;
  z-index: 1;
  color: #607285;
  font-size: 1.4rem;
  line-height: 1.75;
}

.faq-category__card.is-current small {
  color: rgba(255,255,255,.84);
}

.faq-main {
  padding: 28px 0 80px;
}

.faq-group {
  margin-bottom: 42px;
}

.faq-group__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding: 18px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8fbff 0%, #edf5fc 100%);
  border: 1px solid #dfe8f0;
}

.faq-group__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #18395c;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
}

.faq-group__head h2 {
  color: #18395c;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 800;
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-item {
  border: 1px solid #dfe8f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(24, 57, 92, .05);
  overflow: hidden;
}

.faq-item__question {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 22px 24px;
  border: none;
  background: #fff;
  color: #18395c;
  text-align: left;
  cursor: pointer;
}

.faq-item__q {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eaf2f8;
  color: #18395c;
  font-size: 1.7rem;
  font-weight: 800;
}

.faq-item__title {
  flex: 1;
  font-size: 1.7rem;
  line-height: 1.7;
  font-weight: 700;
}

.faq-item__plus {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.faq-item__plus::before,
.faq-item__plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #18395c;
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

.faq-item__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__plus::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-item__answer {
  display: none;
  border-top: 1px solid #edf2f6;
  background: #f9fbfd;
}

.faq-item__answer-inner {
  display: flex;
  gap: 14px;
  padding: 24px;
}

.faq-item__a {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #18395c;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 800;
}

.faq-item__content {
  color: #34495e;
  font-size: 1.6rem;
  line-height: 1.9;
}

.faq-item__content p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {
  .faq-category__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-hero__title {
    font-size: 3.2rem;
  }
}

@media only screen and (max-width: 767px) {

  .faq-hero {
    padding: 48px 0 34px;
  }

  .faq-hero__title {
    font-size: 2.6rem;
  }

  .faq-hero__lead {
    font-size: 1.5rem;
    text-align: left;
  }

  .faq-search-area {
    margin-top: 24px;
    padding: 18px;
    border-radius: 16px;
  }

  .faq-search-form {
    display: block;
  }

  .faq-search-form__input {
    height: 52px;
    margin-bottom: 10px;
    font-size: 1.5rem;
  }

  .faq-search-form__btn {
    width: 100%;
    height: 52px;
    flex: none;
  }

  .faq-category {
    padding: 34px 0 24px;
  }

  .faq-category__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-category__card {
    min-height: auto;
    padding: 20px;
  }

  .faq-main {
    padding: 20px 0 56px;
  }

  .faq-group__head {
    padding: 16px;
  }

  .faq-group__head h2 {
    font-size: 2rem;
  }

  .faq-item__question {
    padding: 18px 16px;
    gap: 10px;
  }

  .faq-item__title {
    font-size: 1.55rem;
  }

  .faq-item__answer-inner {
    padding: 18px 16px;
    gap: 10px;
  }

  .faq-item__content {
    font-size: 1.5rem;
  }

}


/*****************************
 FAQ single
*****************************/
.page-faq-single .pagesec1 {
  padding: 70px 0 80px;
}

.faq-single-head {
  margin-bottom: 26px;
  padding: 30px 34px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f8fbff 0%, #edf5fc 100%);
  border: 1px solid #dfe8f0;
  box-shadow: 0 12px 28px rgba(24,57,92,.06);
}

.faq-single-head__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  padding: 6px 16px;
  border-radius: 999px;
  background: #18395c;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .06em;
}

.faq-single-head__title {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  color: #18395c;
  font-size: 3rem;
  line-height: 1.6;
  font-weight: 800;
  letter-spacing: .03em;
}

.faq-single-head__title span {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: 4px;
  border-radius: 50%;
  background: #18395c;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

.faq-single-content {
  margin-bottom: 42px;
  padding: 34px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #dfe8f0;
  box-shadow: 0 10px 24px rgba(24,57,92,.05);
}

.faq-single-content__answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.faq-single-content__a {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: 2px;
  border-radius: 50%;
  background: #18395c;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

.faq-single-content__body {
  flex: 1;
  color: #34495e;
  font-size: 1.7rem;
  line-height: 2;
}

.faq-single-content__body p:last-child {
  margin-bottom: 0;
}

.faq-single-content__body a {
  color: #18395c;
  text-decoration: underline;
}

.faq-single-content__body ul,
.faq-single-content__body ol {
  margin: 18px 0;
  padding-left: 1.5em;
}

.faq-single-pager {
  margin-top: 36px;
}

.faq-single-pager .all a {
  min-width: 220px;
}

@media only screen and (max-width: 767px) {
  .page-faq-single .pagesec1 {
    padding: 48px 0 56px;
  }

  .faq-single-head {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .faq-single-head__title {
    gap: 10px;
    font-size: 2.2rem;
  }

  .faq-single-head__title span {
    width: 34px;
    height: 34px;
    margin-top: 2px;
    font-size: 1.7rem;
  }

  .faq-single-content {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .faq-single-content__answer {
    gap: 10px;
  }

  .faq-single-content__a {
    width: 34px;
    height: 34px;
    font-size: 1.7rem;
  }

  .faq-single-content__body {
    font-size: 1.5rem;
    line-height: 1.9;
  }
}


.faq-no-result {
  display: none;
  padding: 34px;
  border-radius: 18px;
  background: #f7fbff;
  border: 1px solid #dfe8f0;
  color: #18395c;
  font-size: 1.7rem;
  text-align: center;
  font-weight: 700;
}

.faq-no-result.is-show {
  display: block;
}


/* 追尾回避 */
.faq-category__grid{
    width: 100%;
}
@media screen and (max-width: 1360px) {
.faq-category__grid{
    width: calc(100% - 60px);
}
}
@media screen and (max-width: 1024px) {
.faq-category__grid{
    width: 100%;
}
}
/* 追尾回避 */
/* 追尾回避 */
.faq-group{
    width: 100%;
}
@media screen and (max-width: 1360px) {
.faq-group{
    width: calc(100% - 60px);
}
}
@media screen and (max-width: 1024px) {
.faq-group{
    width: 100%;
}
}
/* 追尾回避 */


/* =============================
  FAQ 検索結果ヘッダー
============================= */
.faq-result-head {
  margin-bottom: 40px;
  padding: 20px 26px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f7fbff 0%, #eef5fb 100%);
  border: 1px solid #dfe8f0;
  box-shadow: 0 8px 20px rgba(24, 57, 92, 0.06);
}

/* 検索ワード */
.faq-result-info {
  font-size: 1.6rem;
  font-weight: 700;
  color: #18395c;
  margin-bottom: 6px;
}

/* 件数 */
.faq-result-count {
  font-size: 2rem;
  color: #5c6f82;
  margin-bottom: 16px;
}

/* リセットボタンラップ */
.faq-reset-wrap {
  text-align: left;
}

/* リセットボタン */
.faq-reset-btn {
  display: inline-block;
  padding: 10px 18px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #18395c;
  background: #ffffff;
  border: 1px solid #18395c;
  border-radius: 999px;
  text-decoration: none;
  transition: all .25s ease;
}

/* hover */
.faq-reset-btn:hover {
  background: #18395c;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(24, 57, 92, 0.15);
}

/* SP調整 */
@media (max-width: 768px) {
  .faq-result-head {
    padding: 16px 18px;
  }

  .faq-result-info {
    font-size: 1.4rem;
  }

  .faq-result-count {
    font-size: 1.3rem;
  }

  .faq-reset-wrap {
    text-align: left;
    margin-top: 10px;
  }
}