@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Document */
/* ============================================ */
html {
  width: 100%;
  line-height: 1.5rem;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

/* Sections */
/* ============================================ */
main {
  display: block;
  width: 100%;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border: none; /* Reset border */
  border-radius: 0;
  box-shadow: none; /* Remove any default box shadow */
  outline: none; /* Remove default focus outline */
  text-align: inherit;
  text-transform: inherit;
}

/* Specific Form Elements */
/* ============================================ */
/* Buttons */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/* Remove padding from options */
option {
  padding: 0;
}

/* Fieldset and Legend */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
  border: none;
}

legend {
  padding: 0;
  display: table;
  max-width: 100%;
  white-space: normal;
  color: inherit;
}

/* Inputs and Textareas */
textarea {
  resize: none; /* Disable resizing by default */
  overflow: auto; /* Allow overflow */
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

[type=number] {
  -moz-appearance: textfield;
}

/* Label Clickability */
label[for] {
  cursor: pointer;
}

/* Interactive Elements */
/* ============================================ */
details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

html {
  font-size: 100%;
}

body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: #111111;
}

/* 画像のデフォルトスタイル */
img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: 0;
  vertical-align: bottom;
  object-fit: cover;
}

.l-header {
  width: 100%;
  z-index: 10;
  padding-left: 15px;
  height: 60px;
  margin-bottom: 18px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .l-header {
    height: 63px;
  }
}
@media (min-width: 1280px) {
  .l-header {
    height: 83px;
  }
}
.l-header__container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .l-header__container {
    max-width: 1170px;
    padding-left: 10px;
  }
}
@media (min-width: 1280px) {
  .l-header__container {
    max-width: 1170px;
    padding-left: 0;
  }
}
.l-header__logo {
  width: 120px;
  height: 45px;
}
.l-header__logo img {
  width: 120px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .l-header__logo {
    width: 120px;
    height: auto;
  }
}
@media (min-width: 1280px) {
  .l-header__logo {
    width: 134px;
    height: 50px;
  }
  .l-header__logo img {
    width: 134px;
    height: 50px;
  }
}
.l-header__nav {
  height: 50px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .l-header__nav {
    height: 60px;
  }
}
@media (min-width: 1280px) {
  .l-header__nav {
    height: 80px;
  }
}
.l-header__nav__list {
  display: flex;
  height: 100%; /* 親の高さを継承 */
}
.l-header__nav__list__item {
  display: flex;
  justify-content: center; /* 中央揃え */
  align-items: center; /* 縦方向の中央揃え */
  width: 50px;
  height: 100%; /* 親の高さを継承 */
  transition: border-color 0.3s; /* ホバー時のエフェクト */
}
@media (min-width: 768px) and (max-width: 1279px) {
  .l-header__nav__list__item {
    width: 60px;
    width: 60px;
  }
}
@media (min-width: 1280px) {
  .l-header__nav__list__item {
    width: 80px;
    width: 80px;
  }
}
.l-header__nav__list__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%; /* 親の高さを完全にカバー */
}
.l-header__sendmail {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding: 12px 15px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .l-header__sendmail {
    height: 60px;
  }
}
@media (min-width: 1280px) {
  .l-header__sendmail {
    height: 80px;
  }
}
.l-header__sendmail a {
  display: flex;
  justify-content: center;
  gap: 7px;
  align-items: center;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  border-radius: 5px;
  background: #00296f;
  line-height: 24px;
  height: 24px;
  padding: 0 9px 1px 12px;
}
.l-header__sendmail a img {
  height: 16px;
  width: auto;
}
@media (max-width: 379px) {
  .l-header__sendmail a {
    font-size: 0.4rem;
    padding: 0 6px;
  }
}

.l-footer {
  width: 100%;
  background-color: #036eb7;
  margin-top: 180px;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .l-footer {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 1280px) {
  .l-footer {
    padding-left: 0;
    padding-right: 0;
  }
}
.l-footer__container {
  text-align: center;
  justify-content: space-between;
  align-items: center;
  max-width: 1170px;
  margin: 0 auto;
}
@media (min-width: 1280px) {
  .l-footer__container {
    display: flex;
    text-align: left;
  }
}
.l-footer__logo {
  display: block;
  width: 150px;
  height: 57px;
  margin: 0 auto;
}
@media (min-width: 1280px) {
  .l-footer__logo {
    display: inline-block;
    width: 150px;
    height: 57px;
    margin: 0;
  }
}
.l-footer__wrap {
  display: none;
  /*
  	display: grid; 
      gap: 20px; 
      grid-template-columns: repeat(2, 1fr); 

      @include respond-to('tablet') {
        grid-template-columns: repeat(3, 1fr); 
      }

      @include respond-to('pc') {
        grid-template-columns: repeat(6, 1fr); 
      }
  */
}
.l-footer__copyright {
  display: block;
  color: #ffffff;
  font-size: 0.8rem;
  margin: 20px 0 0 0;
}
@media (min-width: 1280px) {
  .l-footer__copyright {
    display: inline-block;
    margin: 0 0 0 30px;
  }
}
.l-footer__category__title {
  font-size: 0.8rem;
  color: #ffffff;
  margin-bottom: 10px;
}
.l-footer__category__list {
  display: flex; /* 縦並びのレイアウト */
  flex-direction: column;
  gap: 5px;
}
.l-footer__category__list__item {
  line-height: 1.5;
  font-size: 0.7rem;
}
.l-footer__category__list__item i {
  color: #ffffff;
}
.l-footer__category__list__item a {
  color: #ffffff;
  text-decoration: none; /* デフォルトの下線を削除 */
  transition: color 0.3s;
}
.l-main {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 180px;
  padding: 0 15px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .l-main {
    padding: 0 15px;
  }
}
@media (min-width: 1280px) {
  .l-main {
    padding: 0;
  }
}

.c-search {
  margin: 90px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-search {
    margin: 90px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 1280px) {
  .c-search {
    margin: 90px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.c-search__title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: #00296f;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-search__title {
    font-size: 2.8rem;
  }
}
@media (min-width: 1280px) {
  .c-search__title {
    font-size: 3.6rem;
  }
}
.c-search__form {
  display: flex;
  width: 100%;
  border: 2px solid #111111;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-search__form {
    max-width: 600px;
  }
}
@media (min-width: 1280px) {
  .c-search__form {
    width: 793px;
  }
}
.c-search__form__input {
  padding: 10px 4px;
  font-size: 1.6rem;
  color: #111111;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-search__form__input {
    padding: 10px 4px;
    height: 60px;
  }
}
@media (min-width: 1280px) {
  .c-search__form__input {
    height: 60px;
    padding: 0 10px;
  }
}
.c-search__form__input::placeholder {
  color: #cccccc;
}
.c-search__form__button {
  width: 60px;
  padding: 0.5rem 1rem;
  background-color: #00296f;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-search__form__button {
    padding: 0.8rem 1.2rem;
  }
}
@media (min-width: 1280px) {
  .c-search__form__button {
    width: 80px;
    padding: 1rem 1.5rem;
  }
}
.c-search__form__button > i {
  font-size: 2rem;
}

.c-keyword__container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1280px) {
  .c-keyword__container {
    padding-left: 0;
    padding-right: 0;
  }
}

.c-keyword__title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #00296f;
  margin-top: 90px;
  margin-bottom: 40px;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-keyword__title {
    margin-top: 90px;
  }
}
@media (min-width: 1280px) {
  .c-keyword__title {
    margin-top: 0;
    font-weight: normal;
    color: #111111;
  }
}
.c-keyword__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* モバイル: 2列 */
  gap: 10px;
  text-align: center;
  justify-content: center;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .c-keyword__buttons {
    grid-template-columns: repeat(3, 1fr); /* タブレット: 3列 */
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .c-keyword__buttons {
    grid-template-columns: repeat(5, 1fr); /* PC: 5列 */
    gap: 38px;
    max-width: 1200px;
    width: 100%;
  }
}
.c-keyword__buttons__item a {
  font-size: 1.6rem;
  font-weight: bold;
  display: block;
  background-color: #0566a9;
  color: #ffffff;
  border-radius: 10px;
  padding: 10px 20px;
  text-align: center; /* より明確に中央寄せ */
}
.c-keyword__buttons__item a:hover {
  background-color: #003d80;
}

.c-button__wrapper {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 90px;
}

.c-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  background-color: #0566a9;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.c-button:hover {
  background-color: #00296f;
}

.cards {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1280px) {
  .cards {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
}
.cards__title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #00296f;
  text-align: center;
  margin: 90px 0 40px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .cards__title {
    font-size: 2.8rem;
  }
}
@media (min-width: 1280px) {
  .cards__title {
    font-size: 3.6rem;
  }
}
.cards__group {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .cards__group {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .cards__group {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.cards__item {
  display: flex;
  flex-direction: column; /* 垂直方向に配置 */
  justify-content: space-between; /* 上部と下部の要素を均等に配置 */
  align-self: flex-start;
  border-radius: 10px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .cards__item {
    padding: 30px 30px;
  }
}
@media (min-width: 1280px) {
  .cards__item {
    padding: 30px 30px;
  }
}
.cards__category__title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.7rem;
  color: #00296f;
  display: flex; /* 横並びにする */
  align-items: center; /* 縦方向中央揃え */
  gap: 10px; /* 画像とテキストの間隔 */
  margin-bottom: 1.4rem; /* デフォルトの余白をリセット */
}
@media (min-width: 768px) and (max-width: 1279px) {
  .cards__category__title {
    font-size: 1.8rem;
    gap: 10px; /* 画像とテキストの間隔 */
  }
}
@media (min-width: 1280px) {
  .cards__category__title {
    font-size: 2rem;
    gap: 20px; /* 画像とテキストの間隔 */
  }
}
.cards__category__image {
  flex-shrink: 0; /* 画像のサイズを固定 */
  width: 25px; /* 画像の幅 */
  height: 25px; /* 画像の高さ */
  object-fit: contain; /* 画像の比率を維持 */
}
@media (min-width: 768px) and (max-width: 1279px) {
  .cards__category__image {
    width: 35px; /* 画像の幅 */
    height: 35px; /* 画像の高さ */
  }
}
@media (min-width: 1280px) {
  .cards__category__image {
    width: 40px; /* 画像の幅 */
    height: 40px; /* 画像の高さ */
  }
}
.cards__category__text {
  flex: 1; /* テキストが残りのスペースを埋める */
  word-break: break-word; /* 長いテキストで折り返し */
}
.cards__category__list {
  text-align: left;
  margin: 0;
  margin-bottom: 30px;
}
.cards__category__item {
  font-size: 1.2rem;
  line-height: 1.8rem;
  margin-bottom: 1rem;
  display: inline-block; /* インライン要素の幅を調整 */
  padding-left: 1rem; /* 2行目以降を揃える */
  background: url(../img/arrow2.svg) top 8px left 0 no-repeat;
  background-size: 6px auto;
  width: 100%;
}
.cards__category__item__link {
  color: #0566a9;
  text-decoration: none;
}
.cards__category__btn {
  margin-top: auto; /* ボタンを下部に配置 */
  text-align: right;
}
.cards__category__link {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: bold;
  background-color: #0566a9;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
}
.cards__category__link:hover {
  background-color: #003d80;
}
.cards__no-results {
  margin: 30px 0;
  font-size: 1.6rem;
}

.arrow_down {
  position: fixed;
  left: 46%;
  bottom: 30px;
  animation: bounce 1.5s infinite; /* アニメーション名、時間、繰り返し */
  transition: opacity 0.5s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0); /* 開始と終了位置 */
  }
  30% {
    transform: translateY(30px); /* 最下点 (深く落ちる) */
  }
}
.category-index {
  border-radius: 10px;
  border: 1px solid #cccccc;
  padding: 15px;
  width: 100%;
  margin: 0 auto 30px;
  padding: 15px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .category-index {
    display: none;
  }
}
@media (min-width: 1280px) {
  .category-index {
    display: none;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
}
.category-index__item {
  font-size: 1.2rem;
  line-height: 1.8rem;
  margin-bottom: 1rem;
  display: inline-block;
  padding-left: 1.8rem;
  background: url(../img/arrow_down2.svg) top 8px left 0 no-repeat;
  background-size: 18px auto;
  width: 100%;
}
.category-index__item:last-child {
  margin-bottom: 0;
}

.p-search-results {
  margin: 90px auto 60px;
  max-width: 1200px;
  width: 100%;
}
.p-search-results__title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #00296f;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .p-search-results__title {
    font-size: 2.8rem;
  }
}
@media (min-width: 1280px) {
  .p-search-results__title {
    font-size: 3.6rem;
  }
}
.p-search-results__item {
  padding: 10px;
  border-top: 1px solid #111111;
  transition: background-color 0.3s;
}
.p-search-results__item:hover {
  background-color: #cccccc;
}
.p-search-results__item:last-child {
  border-bottom: 1px solid #111111;
}
.p-search-results__icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.p-search-results__link {
  display: flex;
  align-items: center;
  color: #0566a9;
  font-size: 1.6rem;
  line-height: 1;
  padding: 10px 0;
}
.p-search-results__pagination {
  margin-top: 60px;
}
.p-search-results__pagination .navigation .nav-links {
  display: flex; /* 子要素を横並びにする */
  justify-content: center; /* ページネーション全体を中央揃え */
  align-items: center; /* 縦方向の中央揃え */
  gap: 30px; /* 各要素間の間隔 */
}
.p-search-results__pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px; /* 丸のサイズ */
  height: 50px; /* 丸のサイズ */
  border: 2px solid #0566a9; /* 枠線の色 */
  border-radius: 50%; /* 丸型にする */
  font-size: 1.6rem; /* テキストサイズ */
  text-align: center;
  color: #0566a9; /* テキストカラー */
  line-height: 50px; /* テキストの中央揃え */
  transition: all 0.3s ease;
}
.p-search-results__pagination .page-numbers:hover {
  background-color: #0566a9; /* ホバー時の背景色 */
  color: #ffffff; /* ホバー時のテキストカラー */
}
.p-search-results__pagination .page-numbers.current {
  background-color: #0566a9; /* 現在のページの背景色 */
  color: #ffffff; /* 現在のページのテキストカラー */
}
.p-search-results__pagination .prev,
.p-search-results__pagination .next {
  display: flex; /* 矢印を中央揃え */
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid #0566a9; /* 枠線の色 */
  border-radius: 50%; /* 丸型にする */
  font-size: 1.6rem; /* 矢印のサイズ */
  color: #0566a9; /* 矢印の色 */
  text-align: center;
  line-height: 50px; /* テキストの中央揃え */
  transition: all 0.3s ease;
}
.p-search-results__pagination .prev:hover,
.p-search-results__pagination .next:hover {
  background-color: #0566a9; /* ホバー時の背景色 */
  color: #ffffff; /* ホバー時の矢印色 */
}
.p-search-results__no-results {
  border-top: 1px solid #111111;
  max-width: 893px;
  width: 100%;
  margin: 40px auto;
  padding: 30px 0 0;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .p-search-results__no-results {
    padding: 60px 0 0;
  }
}
@media (min-width: 1280px) {
  .p-search-results__no-results {
    padding: 60px 0 0;
  }
}
.p-search-results__tips {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 20px 0;
}
.p-search-results__tips li {
  text-align: left;
  font-size: 1.6rem;
  margin-bottom: 10px;
  padding-left: 1em; /* 行頭のマーカー分のスペースを確保 */
  text-indent: -1em; /* 2行目以降をマーカー位置に揃える */
}
.p-search-results__message {
  text-align: left;
  font-size: 2.6rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 40px;
}
.p-search-results__cta {
  margin-top: 80px;
  color: #00296f;
}
.p-search-results__cta__text {
  text-align: left;
  font-size: 3rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 40px;
}
.p-search-results__cta__arrow {
  text-align: center;
  font-size: 3rem;
}

.p-faq-category {
  margin: 90px auto 40px;
  max-width: 1200px;
  width: 100%;
}
.p-faq-category__title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #00296f;
}
.p-faq-category__title__line1 {
  display: block;
  margin-bottom: 10px;
}
.p-faq-category__title__line2 {
  display: block;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .p-faq-category__title {
    font-size: 2.8rem;
  }
}
@media (min-width: 1280px) {
  .p-faq-category__title {
    font-size: 3.6rem;
  }
}
.p-faq-category__item {
  padding: 10px;
  border-top: 1px solid #111111;
  transition: background-color 0.3s;
}
.p-faq-category__item:hover {
  background-color: #e8e8e8;
}
.p-faq-category__item:last-child {
  border-bottom: 1px solid #111111;
}
.p-faq-category__icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.p-faq-category__link {
  display: flex;
  align-items: center;
  color: #0566a9;
  font-size: 1.6rem;
  text-decoration: underline;
  line-height: 1.4;
  padding: 10px 0;
}
.p-faq-category__pagination {
  margin-top: 60px;
}
.p-faq-category__pagination .navigation .nav-links {
  display: flex; /* 子要素を横並びにする */
  justify-content: center; /* ページネーション全体を中央揃え */
  align-items: center; /* 縦方向の中央揃え */
  gap: 30px; /* 各要素間の間隔 */
}
.p-faq-category__pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px; /* 丸のサイズ */
  height: 50px; /* 丸のサイズ */
  border: 2px solid #0566a9; /* 枠線の色 */
  border-radius: 50%; /* 丸型にする */
  font-size: 1.6rem; /* テキストサイズ */
  text-align: center;
  color: #0566a9; /* テキストカラー */
  line-height: 50px; /* テキストの中央揃え */
  transition: all 0.3s ease;
}
.p-faq-category__pagination .page-numbers:hover {
  background-color: #0566a9; /* ホバー時の背景色 */
  color: #ffffff; /* ホバー時のテキストカラー */
}
.p-faq-category__pagination .page-numbers.current {
  background-color: #0566a9; /* 現在のページの背景色 */
  color: #ffffff; /* 現在のページのテキストカラー */
}
.p-faq-category__pagination .prev,
.p-faq-category__pagination .next {
  display: flex; /* 矢印を中央揃え */
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid #0566a9; /* 枠線の色 */
  border-radius: 50%; /* 丸型にする */
  font-size: 1.6rem; /* 矢印のサイズ */
  color: #0566a9; /* 矢印の色 */
  text-align: center;
  line-height: 50px; /* テキストの中央揃え */
  transition: all 0.3s ease;
}
.p-faq-category__pagination .prev:hover,
.p-faq-category__pagination .next:hover {
  background-color: #0566a9; /* ホバー時の背景色 */
  color: #ffffff; /* ホバー時の矢印色 */
}
.p-faq-category__no-results {
  border-top: 1px solid #111111;
  max-width: 893px;
  width: 100%;
  margin: 40px auto;
  padding: 60px 0 0;
}
.p-faq-category__no-results p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.p-special {
  margin: 40px auto 40px;
  max-width: 1200px;
  width: 100%;
}
.p-special__categories__link {
  font-size: 1.2rem;
  display: inline-block;
  color: #ffffff;
  background-color: #0566a9;
  border-radius: 10px;
  padding: 7px 15px;
}
.p-special__title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.7rem;
  color: #00296f;
  margin: 30px 0;
}
.p-special__date {
  font-size: 1rem;
}
.p-special__speech {
  margin: 30px 0 0 0;
}
.p-special__content {
  margin-top: 30px;
}
.p-special__answer {
  font-size: 1.2rem;
  line-height: 1.8;
}
.p-special__answer p {
  margin-bottom: 30px;
}
.p-special__answer ul {
  margin-bottom: 30px;
}
.p-special__answer a {
  color: #0566a9;
  font-weight: bold;
  text-decoration: underline;
}
.p-special__nav {
  border-top: 1px dashed #666;
  padding-top: 60px;
}
.p-special__forms {
  margin: 60px auto 0;
  padding: 60px 0;
  border-top: 1px solid #111111;
  border-bottom: 1px solid #111111;
}
.p-special__forms__question {
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 20px;
}
.p-special__forms__text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #111111;
  margin-bottom: 30px;
}
.p-special__forms__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.p-special__forms__btn {
  padding: 10px 20px;
  font-size: 1.2rem;
  border: 1px solid #0566a9;
  border-radius: 10px;
  background-color: transparent;
  color: #0566a9;
  cursor: pointer;
}
@media (min-width: 1280px) {
  .p-special__forms__btn:hover {
    background-color: #0566a9;
    color: #ffffff;
  }
}
.p-special__forms__response {
  display: none;
}
.p-special__forms__response, .p-special__forms__support {
  margin: 30px auto 0;
  text-align: center;
  max-width: 800px;
  width: 100%;
}
.p-special__forms__response__text, .p-special__forms__support__text {
  font-size: 1rem;
  line-height: 1.5;
  color: #111111;
  margin-bottom: 30px;
}
.p-special__forms__response__text a, .p-special__forms__support__text a {
  color: #0566a9;
  font-weight: bold;
  text-decoration: underline;
}
.p-special__forms__response__feedback, .p-special__forms__support__feedback {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.p-special__forms__response__feedback label, .p-special__forms__support__feedback label {
  display: block;
  font-size: 1.6rem;
  color: #111111;
  text-align: left;
  margin-bottom: 10px;
}
.p-special__forms__response__feedback input[type=checkbox], .p-special__forms__support__feedback input[type=checkbox] {
  appearance: none; /* デフォルトのチェックボックスを消す */
  width: 20px;
  height: 20px;
  border: 2px solid #0566a9; /* 枠線の色 */
  border-radius: 4px; /* 角を丸める */
  outline: none;
  cursor: pointer;
  display: inline-block;
  background-color: transparent;
  transition: all 0.3s ease;
}
.p-special__forms__response__feedback input[type=checkbox]:checked, .p-special__forms__support__feedback input[type=checkbox]:checked {
  background-color: #0566a9; /* チェックされた時の背景色 */
  border-color: #0566a9; /* チェックされた時の枠線色 */
  position: relative;
}
.p-special__forms__response__feedback input[type=checkbox]:checked::after, .p-special__forms__support__feedback input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #ffffff; /* チェックマークの色 */
  transform: translate(-50%, -50%);
  border-radius: 2px; /* チェックマークの角を少し丸める */
}
.p-special__forms__response__feedback textarea, .p-special__forms__support__feedback textarea {
  width: 100%;
  min-height: 300px;
  border: 1px solid #111111;
  border-radius: 10px;
  font-size: 1.6rem;
  text-align: left;
  padding: 10px;
}
.p-special__forms__submit {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.6rem;
  border-radius: 10px;
  background-color: #0566a9;
  color: #ffffff;
  cursor: pointer;
}
.p-special__forms__submit:hover {
  background-color: #00296f;
}
.p-special__forms__err {
  display: none;
  color: #e92660;
  font-size: 1.4rem;
  margin-top: 10px;
  margin-bottom: 10px;
}
.p-special__forms__success {
  display: none;
  color: #00296f;
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
}
.p-special__contact__info {
  margin-top: 20px;
  border-radius: 10px;
  padding: 0;
}
.p-special__contact__info__section {
  border: 1px solid #999;
  border-radius: 5px;
  padding: 30px 15px;
  margin-bottom: 60px;
}
.p-special__contact__info__section p {
  margin: 30px 0;
}
.p-special__contact__info__title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #00296f;
}
.p-special__contact__info__connection {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 60px;
  margin-bottom: 10px;
}
.p-special__contact__info__text {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.p-special__contact__info__link {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  color: #0566a9;
  text-decoration: underline;
}
.p-special__contact__info__img {
  padding: 0 60px;
  margin: 30px 0;
}
.p-special__related {
  margin-top: 90px;
}
.p-special__related__title {
  font-size: 3.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #00296f;
}
.p-special__related__item {
  padding: 10px;
  border-top: 1px solid #111111;
  transition: background-color 0.3s;
}
.p-special__related__item:hover {
  background-color: #e8e8e8;
}
.p-special__related__item:last-child {
  border-bottom: 1px solid #111111;
}
.p-special__related__link {
  display: flex;
  align-items: center;
  color: #0566a9;
  font-size: 1.6rem;
  text-decoration: underline;
  line-height: 1.4;
  padding: 10px 0;
}
.p-special__related__icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.p-special__related__no-results {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.accordion-item {
  margin-bottom: 10px;
  border-radius: 4px;
}

.accordion-header {
  background-color: #f1f1f1;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: background-color 0.3s ease;
  border-radius: 5px;
}

.accordion-content {
  padding: 0 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
}

.accordion-item.active .accordion-content {
  padding: 15px 0;
  max-height: 100%;
  opacity: 1;
}

.special-top .p-special__forms {
  margin: 0 auto 0;
}
.special-top .accordion-header {
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
}

.chat-button {
  display: none;
  position: fixed;
  right: 15px;
  bottom: 70px;
  content: "チャットを開始";
  color: #ffffff;
  border-radius: 10px;
  background: #00296f;
  padding: 7px 15px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.5s;
}

a#speechButton {
  color: #036eb7;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  line-height: 36px;
  border: 2px solid #036eb7;
  border-radius: 7px;
  background: url(../img/speech_button.svg) center right no-repeat;
  background-size: contain;
  width: 240px;
  height: 36px;
  padding: 0 30px 0 10px;
}

a#speechButton.speaking {
  background: url(../img/speech_button_pause.svg) center right no-repeat;
  background-size: contain;
}

a#speechButton.test {
  background: none;
}

.u-highlight {
  background: linear-gradient(transparent 50%, #ffff66 0%);
  font-weight: bold;
  line-height: 1; /* テキストの高さを基準に調整 */
  display: inline-block;
  padding: 0 2px;
  position: relative;
}

/*# sourceMappingURL=special.min.css.map */
