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

/* Document */
/* ============================================ */
html {
  width: 100%;
  line-height: 1.15;
  -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: 62.5%;
}

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

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

.l-header {
  width: 100%;
  z-index: 10;
  border-bottom: 3px solid #00296f;
  padding-left: 15px;
  height: 53px;
  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: 100px;
  height: auto;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .l-header__logo {
    width: 120px;
    height: 40px;
  }
}
@media (min-width: 1280px) {
  .l-header__logo {
    width: 132px;
    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-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 {
  max-width: 1170px;
  margin: 0 auto;
}
.l-footer__logo {
  width: 132px;
  height: 50px;
  margin-bottom: 30px;
}
.l-footer__wrap {
  display: grid; /* グリッドレイアウトに変更 */
  gap: 20px; /* 各カテゴリ間の余白 */
  grid-template-columns: repeat(2, 1fr); /* デフォルト: 2列 (SP) */
}
@media (min-width: 768px) and (max-width: 1279px) {
  .l-footer__wrap {
    grid-template-columns: repeat(3, 1fr); /* タブレット: 3列 */
  }
}
@media (min-width: 1280px) {
  .l-footer__wrap {
    grid-template-columns: repeat(6, 1fr); /* PC: 6列 */
  }
}
.l-footer__category__title {
  font-size: 1.4rem;
  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: 1.2rem;
}
.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 #7c7474;
  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: #7c7474;
  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: #7c7474;
  }
}
.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;
}

.c-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.6rem;
  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; /* 上部と下部の要素を均等に配置 */
  height: 100%; /* 高さを固定してボタンを下部に配置 */
  border-radius: 10px;
  border: 1px solid #cccccc;
  padding: 20px 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;
  color: #00296f;
  display: flex; /* 横並びにする */
  align-items: center; /* 縦方向中央揃え */
  gap: 10px; /* 画像とテキストの間隔 */
  margin-bottom: 30px; /* デフォルトの余白をリセット */
  line-height: 1.4; /* 行間の調整 */
}
@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.6rem;
  line-height: 1.4;
  margin-bottom: 18px;
  display: inline-block; /* インライン要素の幅を調整 */
  text-indent: -0.5em; /* 1行目を少し左に寄せる */
  padding-left: 0.5em; /* 2行目以降を揃える */
}
.cards__category__item__link {
  color: #0566a9;
  text-decoration: underline;
}
.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;
}

.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 #7c7474;
  transition: background-color 0.3s;
}
.p-search-results__item:hover {
  background-color: #cccccc;
}
.p-search-results__item:last-child {
  border-bottom: 1px solid #7c7474;
}
.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 #7c7474;
  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 #7c7474;
  transition: background-color 0.3s;
}
.p-faq-category__item:hover {
  background-color: #e8e8e8;
}
.p-faq-category__item:last-child {
  border-bottom: 1px solid #7c7474;
}
.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 #7c7474;
  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-faq {
  margin: 90px auto 40px;
  max-width: 1200px;
  width: 100%;
}
.p-faq__categories__link {
  font-size: 1.6rem;
  display: inline-block;
  color: #ffffff;
  background-color: #0566a9;
  border-radius: 10px;
  padding: 10px 20px;
}
.p-faq__title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #00296f;
  margin: 30px 0;
}
.p-faq__date {
  font-size: 1.4rem;
}
.p-faq__content {
  margin-top: 30px;
}
.p-faq__answer {
  font-size: 1.6rem;
  line-height: 1.8;
}
.p-faq__answer p {
  margin-bottom: 30px;
}
.p-faq__answer ul {
  margin-bottom: 30px;
}
.p-faq__answer a {
  color: #0566a9;
  font-weight: bold;
  text-decoration: underline;
}
.p-faq__survey {
  margin: 30px auto 0;
  padding: 60px 0;
  border-top: 1px solid #7c7474;
  border-bottom: 1px solid #7c7474;
}
.p-faq__survey__question {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}
.p-faq__survey__text {
  font-size: 1.6rem;
  line-height: 1.4;
  color: #7c7474;
  margin-bottom: 30px;
}
.p-faq__survey__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.p-faq__survey__btn {
  padding: 10px 20px;
  font-size: 1.4rem;
  border: 1px solid #0566a9;
  border-radius: 10px;
  background-color: transparent;
  color: #0566a9;
  cursor: pointer;
}
.p-faq__survey__btn:hover {
  background-color: #0566a9;
  color: #ffffff;
}
.p-faq__survey__response, .p-faq__survey__form {
  margin: 30px auto 0;
  text-align: center;
  max-width: 600px;
  width: 100%;
  display: none;
}
.p-faq__survey__response__text, .p-faq__survey__form__text {
  font-size: 1.6rem;
  line-height: 1.4;
  color: #7c7474;
  margin-bottom: 30px;
}
.p-faq__survey__response__text a, .p-faq__survey__form__text a {
  color: #0566a9;
  font-weight: bold;
  text-decoration: underline;
}
.p-faq__survey__response__feedback, .p-faq__survey__form__feedback {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.p-faq__survey__response__feedback label, .p-faq__survey__form__feedback label {
  display: block;
  font-size: 1.6rem;
  color: #7c7474;
  text-align: left;
  margin-bottom: 10px;
}
.p-faq__survey__response__feedback input[type=checkbox], .p-faq__survey__form__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-faq__survey__response__feedback input[type=checkbox]:checked, .p-faq__survey__form__feedback input[type=checkbox]:checked {
  background-color: #0566a9; /* チェックされた時の背景色 */
  border-color: #0566a9; /* チェックされた時の枠線色 */
  position: relative;
}
.p-faq__survey__response__feedback input[type=checkbox]:checked::after, .p-faq__survey__form__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-faq__survey__response__feedback textarea, .p-faq__survey__form__feedback textarea {
  width: 100%;
  min-height: 300px;
  border: 1px solid #7c7474;
  border-radius: 10px;
  font-size: 1.6rem;
  text-align: left;
  padding: 10px;
}
.p-faq__survey__submit {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.6rem;
  border-radius: 10px;
  background-color: #0566a9;
  color: #ffffff;
  cursor: pointer;
}
.p-faq__survey__submit:hover {
  background-color: #00296f;
}
.p-faq__survey__err {
  display: none;
  color: #e92660;
  font-size: 1.4rem;
  margin-top: 10px;
  margin-bottom: 10px;
}
.p-faq__survey__success {
  display: none;
  color: #00296f;
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
}
.p-faq__contact__info {
  margin-top: 90px;
  border: 1px solid #7c7474;
  border-radius: 10px;
  padding: 30px 15px;
}
.p-faq__contact__info__title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: #00296f;
}
.p-faq__contact__info__connection {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 60px;
  margin-bottom: 10px;
}
.p-faq__contact__info__text {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.p-faq__contact__info__link {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  color: #0566a9;
  text-decoration: underline;
}
.p-faq__contact__info__img {
  padding: 0 60px;
  margin: 30px 0;
}
.p-faq__related {
  margin-top: 90px;
}
.p-faq__related__title {
  font-size: 3.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #00296f;
}
.p-faq__related__item {
  padding: 10px;
  border-top: 1px solid #7c7474;
  transition: background-color 0.3s;
}
.p-faq__related__item:hover {
  background-color: #e8e8e8;
}
.p-faq__related__item:last-child {
  border-bottom: 1px solid #7c7474;
}
.p-faq__related__link {
  display: flex;
  align-items: center;
  color: #0566a9;
  font-size: 1.6rem;
  text-decoration: underline;
  line-height: 1.4;
  padding: 10px 0;
}
.p-faq__related__icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.p-faq__related__no-results {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

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