@charset "UTF-8";
/********************************
* UIカスタム設定（ダッシュボードで編集可）
* ダッシュボードの値を参照する場合は
* 各変数をコメントアウトしてください
********************************/
:root {
  --brand-color: var(--primary9);
  --link-color: #337ab7;
  --link-hover-color: var(--neutral4);
  --highlight-color: #337ab7;
  --body-color: var(--neutral12);
  --body-background: none;
  --logo-image-height: auto;
  --header-color: var(--neutral12);
  --header-background: transparent;
  --subtitle-background: none;
  --query-input-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.28);
  --query-input-border: 1px solid var(--neutral6);
  --page-container-width: 760px;
}

/* UIカスタム設定 */
:root {
  --primary-color: var(--primary9);
  --link-border-radius: var(--rounded-sm);
  --card-border-radius: var(--rounded-lg);
  --card-border-color: var(--neutral5);
  --card-border-width: 1px;
  --card-bg-color: #fff;
  --body-background-size: auto;
  --helper-color: var(--neutral11);
  --header-link-color: #777;
  --header-background-size: auto;
  --form-border-color: var(--neutral6);
  --subtitle-background-size: auto;
}

/* カラーパターン */
:root {
  --neutral1: #fcfcfd;
  --neutral2: #f9f9fb;
  --neutral3: #f0f0f3;
  --neutral4: #e8e8ec;
  --neutral5: #e0e1e6;
  --neutral6: #d9d9e0;
  --neutral7: #cdced6;
  --neutral8: #b9bbc6;
  --neutral9: #8b8d98;
  --neutral10: #80838d;
  --neutral11: #60646c;
  --neutral12: #1c2024;
  --indigo1: #fdfdfe;
  --indigo2: #f7f9ff;
  --indigo3: #edf2fe;
  --indigo4: #e1e9ff;
  --indigo5: #d2deff;
  --indigo6: #c1d0ff;
  --indigo7: #abbdf9;
  --indigo8: #8da4ef;
  --indigo9: #3e63dd;
  --indigo10: #3358d4;
  --indigo11: #3a5bc7;
  --indigo12: #1f2d5c;
  --primary1: var(--indigo1);
  --primary2: var(--indigo2);
  --primary3: var(--indigo3);
  --primary4: var(--indigo4);
  --primary5: var(--indigo5);
  --primary6: var(--indigo6);
  --primary7: var(--indigo7);
  --primary8: var(--indigo8);
  --primary9: var(--indigo9);
  --primary10: var(--indigo10);
  --primary11: var(--indigo11);
  --primary12: var(--indigo12);
  --rounded-xs: 2px;
  --rounded-sm: 4px;
  --rounded-md: 6px;
  --rounded-lg: 8px;
  --rounded-xl: 12px;
  --rounded-2xl: 16px;
  --first-view-bg-color: transparent;
  --navbar-bg-color: transparent;
  --focus-ring-color: #3797ac;
  --button-bg-color: #e9f6f9;
  --button-label-color: #2b87b2;
  --button-disabled-bg-color: var(--neutral3);
  --button-disabled-label-color: var(--neutral9);
  --feedback-button-bg-color: var(--neutral3);
  --feedback-button-bg-hover-color: var(--neutral4);
  --feedback-button-label-color: var(--neutral12);
  --feedback-button-disabled-bg-color: var(--neutral3);
  --feedback-button-disabled-label-color: var(--neutral9);
}

:root {
  /* KINDS UIカスタム設定 */
  --kinds-selector-cols: 3;
  --kinds-selector-cols-sp: 2;
  --kinds-selector-gap: 8px;
  --kinds-selector-button-bg-color: var(--neutral3);
  --kinds-selector-button-hover-bg-color: var(--neutral4);
  --kinds-selector-button-color: var(--button-color);
}

/* mixin */
html {
  /*****************************************
  * SEARCH PAGE
  *****************************************/
  /*****************************************
  * ARTICLE PAGE
  *****************************************/
  /*****************************************
  * CONTACT PAGE
  *****************************************/
  /*****************************************
  * POPUP SETTING
  *****************************************/
}
html body {
  display: flex;
  flex-direction: column;
  background: var(--body-background);
  background-size: var(--body-background-size);
  font-family: YakuHanJP, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
}
html .search-page {
  position: relative;
}
html .search-page::after {
  content: "";
  display: block;
  height: 400px;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--first-view-bg-color);
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  html .search-page::after {
    height: 240px;
  }
}
html .search-page .footer .footer-main .footer-main_search-top {
  display: none;
}
html #concierge-container {
  display: none;
}
html .header {
  padding: 0;
}
html .header .subtitle {
  padding: 80px 0 32px;
}
html .header .subtitle h2 {
  font-weight: bold;
  font-size: 18px;
  color: var(--header-color);
}
html .navbar {
  padding: 16px 24px;
  margin: 0;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
  border-top: 5px solid #64c0d3;
  height: 69px;
  background: var(--navbar-bg-color);
}
html .navbar h1.brand img {
  width: 200px;
  height: var(--logo-image-height);
}
@media screen and (max-width: 767px) {
  html .navbar h1.brand img {
    width: 140px;
  }
}
@media screen and (max-width: 767px) {
  html .navbar {
    padding: 16px;
  }
}
html .navbar ul.header-menu > li > a {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  padding: 6px 12px;
  border-radius: var(--rounded-lg);
  color: var(--button-label-color);
  line-height: 1.5;
  background-color: none;
}
html .navbar ul.header-menu > li > a:hover {
  background-color: var(--button-bg-hover-color);
}
@media screen and (max-width: 767px) {
  html .navbar ul.header-menu > li > a {
    padding: 6px 8px;
    font-size: 14px;
  }
}
html .query-input {
  align-items: center;
  height: 56px;
  width: 100%;
  max-width: 728px;
  margin: 0 auto;
  border-radius: var(--rounded-lg);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.04), 0px 1px 4px 0px rgba(0, 0, 0, 0.04);
  outline: 2px solid transparent;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, outline;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
html .query-input:focus-within {
  outline: 2px solid var(--focus-ring-color);
  outline-offset: 2px;
}
html .query-input input,
html .query-input textarea {
  padding: 12px 16px;
  font-size: 18px;
  line-height: 1.5;
}
html .query-input .speech-button {
  position: relative;
  width: 32px;
  height: 32px;
  margin-right: 16px;
  border-radius: 6px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
html .query-input .speech-button:focus-visible {
  outline: 2px solid var(--focus-ring-color);
  outline-offset: -2px;
}
html .query-input .speech-button:hover {
  background-color: var(--link-hover-color);
}
html .query-input .speech-button::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: url(https://custom-assets.helpfeel.com/helpfeel-sample/icons/icon-mic.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}
html .query-input .speech-button img {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  html .query-input {
    margin-top: 40px;
  }
}
html .faq-list {
  margin-top: 24px;
  padding: 0;
  border: solid 1px var(--card-border-color);
  border-radius: var(--card-border-radius);
}
@media screen and (max-width: 767px) {
  html .faq-list {
    margin-top: 16px;
  }
}
html .faq-list .faq-list-search-summary {
  padding-left: 8px;
}
html .faq-list .faq-list-scroll-container {
  height: initial;
  max-height: calc(62px + (39px * 8));
  overflow-y: auto;
  overflow-x: visible;
  padding: 24px;
}
@media screen and (max-width: 767px) {
  html .faq-list .faq-list-scroll-container {
    max-height: calc(62px + (36px * 8));
    padding: 24px 8px;
  }
}
html .faq-list .faq-list-empty-container {
  padding-left: 8px;
}
html .faq-list .faq-list-title {
  position: initial;
  padding: 0 0 0 8px;
  margin: 20px auto 12px;
  font-weight: bold;
  background: transparent;
}
html .faq-list ul > li:not(:last-child) {
  margin: 0 auto 4px;
}
html .faq-list ul > li > a {
  padding: 4px 8px;
  line-height: 1.5;
  border-radius: 6px;
  overflow-wrap: anywhere;
}
html .faq-list ul > li > a:hover {
  background-color: var(--neutral3);
}
html .faq-list ul > li > a .icon {
  width: 24px;
  margin-right: 8px;
}
html .faq-list .faq-list-bottom {
  display: none;
}
html .keywords {
  padding: 24px 32px;
  margin-top: 24px;
  border: solid 1px var(--card-border-color);
  border-radius: var(--card-border-radius);
}
@media screen and (max-width: 767px) {
  html .keywords {
    padding: 24px 16px;
    margin-top: 16px;
  }
}
html .keywords .keywords-title {
  font-weight: bold;
}
html .keywords .keywords-body .section:not(:last-child) {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  html .keywords .keywords-body .section:not(:last-child) {
    margin-bottom: 16px;
  }
}
html .keywords .keywords-body .list {
  justify-content: initial;
  align-items: center;
  gap: 8px;
  margin: 0;
}
html .keywords .keywords-body .list > a {
  padding: 2px 12px;
  line-height: 1.5;
  border-radius: var(--rounded-lg);
  background-color: var(--neutral3);
}
html .keywords .keywords-body .list > a:hover {
  background-color: var(--link-hover-color);
}
html .powered-by-helpfeel {
  display: none;
}
html .footer {
  padding-bottom: 0;
  margin-top: auto;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  html .footer {
    padding-top: 48px;
  }
}
html .footer .footer-main {
  display: flex;
  gap: 16px;
  justify-content: center;
}
html .footer .btn {
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--button-bg-color);
  color: var(--button-label-color);
  padding: 12px 24px;
  font-size: 16px;
  width: 170px;
}
html .footer .btn:hover {
  opacity: 0.8;
}
html .footer .footer__inner {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  html .footer .footer__inner {
    margin-top: 48px;
  }
}
html .footer .footer__list {
  display: flex;
  align-content: center;
  justify-content: center;
  padding: 24px 0;
  margin: 0 auto;
  list-style: none;
  background-color: #64c0d3;
}
html .footer .footer__list-item {
  padding: 0 16px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  html .footer .footer__list-item {
    padding: 0 8px;
  }
}
html .footer .footer__list-item:not(:first-child) {
  border-left: solid 1px #fff;
}
html .footer .footer__list-link {
  padding: 4px 8px;
  color: #fff;
}
html .footer .footer-bottom {
  padding: 16px 0;
  background-color: #343434;
  color: #fff;
}
html .footer .footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 16px;
  row-gap: 8px;
  column-gap: 0;
}
@media screen and (max-width: 767px) {
  html .footer .footer-bottom__inner {
    padding: 0 8px;
  }
}
html .footer .footer-bottom__copyright, html .footer .footer-bottom__powered-by-helpfeel {
  display: flex;
  align-items: center;
  height: 32px;
  font-size: 14px;
}
html .footer .footer-bottom__powered-by-helpfeel {
  padding-left: 36px;
}
@media screen and (max-width: 767px) {
  html .footer .footer-bottom__powered-by-helpfeel {
    padding-left: 12px;
    padding-right: 12px;
  }
}
html .footer .footer-bottom__powered-by-helpfeel a {
  display: flex;
  align-items: center;
  color: #fff;
}
html .footer .footer-bottom__powered-by-helpfeel a img {
  display: inline-block;
  margin-left: 8px;
}
html .article-page {
  /* Heading ---------------------------------------------------------------*/
}
html .article-page .content {
  width: 100%;
  margin: 48px auto 24px;
}
@media screen and (max-width: 767px) {
  html .article-page .page-content {
    padding: 0;
    border: none;
  }
}
html .article-page .page-content .line {
  font-size: 17px;
  line-height: 1.9;
}
html .article-page .page-content .line.title {
  padding-bottom: 0.666em;
  margin-bottom: 1em;
  font-size: 24px;
  line-height: 1.333;
  border-bottom: solid 1px var(--neutral6);
}
html .article-page .feedback-section .buttons button {
  border: none;
  background: var(--feedback-button-bg-color);
  color: var(--feedback-button-label-color);
  border-radius: var(--rounded-md);
}
html .article-page .feedback-section .buttons button:hover {
  background-color: var(--feedback-button-bg-hover-color);
}
html .article-page .feedback-section #feedback-bad-button-label {
  margin-top: 0;
}
html .article-page .feedback .buttons .good-button #feedback-good-button-label,
html .article-page .feedback .buttons .good-button #feedback-bad-button-label,
html .article-page .feedback .buttons .bad-button #feedback-good-button-label,
html .article-page .feedback .buttons .bad-button #feedback-bad-button-label {
  margin-top: 0;
}
html .article-page .detailed-feedback-link {
  background-color: transparent;
}
html .article-page .detailed-feedback-link:hover {
  background-color: transparent;
}
html .article-page .detailed-feedback-link-button {
  border: none;
  background-color: var(--feedback-button-bg-color);
  color: var(--feedback-button-label-color);
  border-radius: var(--rounded-md);
}
html .article-page .detailed-feedback-link-button:hover {
  background-color: var(--feedback-button-bg-hover-color);
  border-radius: var(--rounded-md);
}
html .article-page .related-pages-section {
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 767px) {
  html .article-page .related-pages-section {
    border-top: solid 1px var(--card-border-color);
  }
}
@media screen and (max-width: 767px) {
  html .article-page .related-pages-section .container {
    max-width: calc(100% - 16px);
  }
}
html .article-page .related-pages-section .related-pages {
  margin-top: 0;
  margin-bottom: 0;
  padding: 24px;
}
@media screen and (max-width: 767px) {
  html .article-page .related-pages-section .related-pages {
    padding: 16px 0;
    border-radius: none;
  }
}
html .article-page .related-pages-section .related-pages .related-pages-title {
  font-weight: normal;
  padding-left: 8px;
}
html .article-page .related-pages-section .related-pages .related-pages-body ul > li:not(:last-child) {
  margin-bottom: 4px;
}
html .article-page .related-pages-section .related-pages .related-pages-body ul > li > a {
  padding: 4px 8px;
}
html .article-page .related-pages-section .related-pages .related-pages-body ul > li > a .icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  margin-top: 2px;
  background-image: url(https://custom-assets.helpfeel.com/helpfeel-sample/icons/icon-file-text.svg) !important;
  background-size: contain;
  background-position: center;
}
html .article-page strong.level.level-3 {
  font-size: 125%;
  line-height: 140%;
  display: block;
  margin: 1.25em 0 0;
  font-feature-settings: "palt";
}
html .article-page strong.level.level-4 {
  font-size: 150%;
  line-height: 140%;
  display: block;
  margin: 1.5em 0 0;
  font-feature-settings: "palt";
}
html .article-page-empty .content {
  margin-bottom: 0;
  order: 1;
}
html .article-page-empty .content .page-content {
  padding-bottom: 0;
  border-bottom: 0;
  border-radius: var(--card-border-radius) var(--card-border-radius) 0 0;
}
html .article-page-empty .content .page-content .line.title {
  margin-bottom: 0;
}
html .article-page-empty .feedback-section {
  order: 3;
}
html .article-page-empty .related-pages-section {
  order: 2;
}
html .article-page-empty .related-pages-section .container .related-pages {
  border-top: 0;
  border-radius: 0 0 var(--card-border-radius) var(--card-border-radius);
}
.inframe html .article-page-empty .related-pages-section .container .related-pages {
  padding-top: 0;
}
html .article-page-empty #detailed-feedback-section {
  order: 4;
}
html .article-page-empty .footer {
  order: 5;
}
html .custom-contact-container .description {
  color: var(--helper-color);
}
html .contact-page {
  font-size: 14px;
}
html .contact-page .navbar ul.header-menu a {
  display: none;
}
html .contact-page .description-html .description {
  padding: 10px 0;
  background-color: transparent;
}
html .contact-page .description-html:has(+ #g-recaptcha) {
  margin-top: 40px;
}
html .contact-page .form-group.required > label:after, html .contact-page .form-group.required.radio-button-container > div:not(.radio-button-group) > label:after {
  content: "必須";
  color: #fff;
  font-size: 10px;
  background-color: #e5484d;
  padding: 3px;
  border-radius: 4px;
  margin-left: 5px;
  vertical-align: 2px;
}
html .contact-page .form-group > label, html .contact-page .form-group.radio-button-container > div:not(.radio-button-group) label {
  display: block;
  color: var(--header-color);
  font-size: 16px;
  line-height: 16px;
  margin: 0 0 12px;
  font-weight: bold;
}
html .contact-page .form-group.rel-question, html .contact-page .form-group.nohit {
  margin-top: 0;
}
html .contact-page div#g-recaptcha {
  margin: 60px 0 80px;
}
html .contact-page div#g-recaptcha > div {
  margin: 0 auto;
}
html .contact-page .contact-container {
  padding-bottom: 0;
}
html .contact-page .contact-container .hints {
  padding-left: 0;
}
html .contact-page .contact-container .form-group + .description-html {
  margin: 0;
}
html .contact-page .contact-container .button-submit {
  color: white;
  background: var(--primary9);
  border-radius: var(--rounded-md);
  padding: 12px 14px;
}
html .contact-page .contact-container .button-submit:hover {
  background-color: var(--primary10);
}
html .contact-page .contact-container .button-submit:disabled {
  background: var(--button-disabled-bg-color);
  color: var(--button-disabled-label-color);
}
html .contact-page .footer {
  padding-top: 24px;
}
html .contact-page .footer .footer-main_contact {
  display: none;
}
html .contact-page .footer .footer-main_search-top {
  max-width: 240px;
  width: 100%;
  box-sizing: border-box;
}
html.inframe #app-container {
  margin-top: 57px;
}
html.inframe .search-page::after {
  display: none;
}
html.inframe .header {
  height: auto;
  padding: 0;
  border-bottom: solid 1px var(--custom-border-color, var(--form-border-color));
}
html.inframe .container {
  width: 100%;
  max-width: 100%;
}
html.inframe .keywords {
  margin-top: 0;
  border: none;
  border-top: solid 1px var(--custom-border-color, var(--form-border-color));
  border-radius: 0;
}
html.inframe .faq-list {
  border: none;
}
html.inframe .faq-list .faq-list-scroll-container {
  /* Firefox - 通常時はスクロールバー非表示 */
  scrollbar-width: none;
  /* WebKit - 通常時はスクロールバー非表示 */
  /* Firefox - ホバー時のみスクロールバー表示 */
  /* WebKit - ホバー時のみスクロールバー表示 */
}
html.inframe .faq-list .faq-list-scroll-container::-webkit-scrollbar {
  width: 0;
  background: transparent;
}
html.inframe .faq-list .faq-list-scroll-container:hover {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
}
html.inframe .faq-list .faq-list-scroll-container:hover::-webkit-scrollbar {
  width: 6px;
  background: transparent;
}
html.inframe .faq-list .faq-list-scroll-container:hover::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
html.inframe .faq-list,
html.inframe .keywords,
html.inframe .article-page .page-content {
  border-radius: 0;
  background-color: #fff;
}
html.inframe .query-input {
  background-color: #fff;
}
html.inframe .query-input:focus-within {
  outline: none;
}
html.inframe .query-input input,
html.inframe .query-input textarea {
  background-size: 18px;
  padding-left: 48px;
  background-position: 16px center;
}
html.inframe .faq-list {
  margin-top: 0;
}
html.inframe .article-page .content {
  margin-top: 16px;
}
html.inframe .article-page .page-content {
  padding-inline: 24px;
}
html.inframe .article-page .related-pages-section .container {
  max-width: calc(100% - 24px);
}
html.inframe .inframe-header {
  font-weight: normal;
}
html.inframe .inframe-header a svg {
  width: 16px;
}
html.inframe .inframe-header a svg path {
  fill: var(--helper-color);
}

/*****************************************
* KINDS SETTING - BUTTONS
*****************************************/
html .kinds-selector .selector {
  display: grid;
  grid-template-columns: repeat(var(--kinds-selector-cols), 1fr);
  gap: var(--kinds-selector-gap);
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  html .kinds-selector .selector {
    grid-template-columns: repeat(var(--kinds-selector-cols-sp), 1fr);
    margin-top: 16px;
  }
}
html .kinds-selector .selector .kind-items {
  margin: 0;
}
html .kinds-selector .selector .kind-items label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--rounded-lg);
  color: var(--kinds-selector-button-color);
  border: 1px solid var(--kinds-selector-button-bg-color);
  border-radius: var(--kinds-selector-gap);
  background-color: var(--kinds-selector-button-bg-color);
}
html .kinds-selector .selector .kind-items label:hover {
  border: 1px solid var(--kinds-selector-button-hover-bg-color);
  background-color: var(--kinds-selector-button-hover-bg-color);
}
html .kinds-selector .selector .kind-items > input[type=radio] {
  display: none;
}
html .kinds-selector .selector .kind-items > input:checked + label {
  color: #fff;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
}
html.inframe .kinds-selector .selector {
  width: calc(100% - (12px * 2));
  margin: 8px auto;
}
html.inframe .kinds-selector .selector .kind-items {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  html .footer .footer-bottom__copyright {
    border-right: none;
  }
}
html .query-input textarea {
  font-size: 16px !important;
}

.agent-mode-root .thread-feedback .feedback-button-container:disabled {
  cursor: default;
}

article div.page-content .table-builder table p:empty {
  margin-bottom: calc(1em + ((1em * 1.6) / 2)) !important;
}

.agent-mode-auto-helpfeel-agentic-search::before {
  position: relative;
  top: -1em;
  content: "※AIによる自動生成回答のため、内容に誤りが含まれる場合があります。";
  font-size: 14px;
}

/*****************************************
* 追加カスタム設定（カテゴリ・フッター移植等）
*****************************************/
#app-container {
  min-height: auto;
}

html .footer {
  margin-top: 40px !important;
  /* ★ auto（一番下まで押し下げる）を解除 */
  padding-top: 20px !important;
  /* ★ 標準の80pxの空間を狭くする */
}

html footer.footer, html .footer {
  margin-top: 300px;
  padding-bottom: 0;
}

.nav {
  max-width: 920px;
  margin: 0 auto;
  margin-top: -40px;
  /* ★ここの数値を調整して間隔を変えられます */
  margin-bottom: 40px;
  /* 💡ここを追加：下のボタンとの間に40pxの余白を作ります */
}
.nav_tit {
  margin-bottom: 10px;
}
.nav_tit h2 {
  font-weight: bold;
  font-size: 24px;
  color: #00aec4;
}
.nav .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.nav a {
  display: block;
  width: 300px;
  padding: 10px 20px;
  border-radius: 5px;
  background: #E9F6F9;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #2b87b2;
}
.nav a:hover {
  background: rgba(100, 192, 211, 0.75);
  color: #fff;
}

/* ★この閉じカッコなどが消えていた可能性が高いです */
body:has(#feedback-container[data-page-id="697a4b920cebcd2f0c4e4618"]) .related-pages-section,
body:has(#feedback-container[data-page-id="697a4b920cebcd2f0c4e4618"]) .feedback-section,
body:has(#feedback-container[data-page-id="697a4b920cebcd2f0c4e4618"]) .nav {
  display: none;
}

.page-footer {
  border-top: 1px solid #ddd;
  background: #64c0d3;
  color: #2b87b2;
  margin-top: 80px;
}

.page-footer-container {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
}

.page-footer-navigation {
  width: 75%;
  text-align: left;
}

.page-footer-links-holder {
  width: 25%;
  position: relative;
  float: left;
  margin: 0;
}

.page-footer h3 {
  margin-bottom: 0;
  padding-bottom: 12px;
  font-size: 15px;
  color: #e9f6f9;
}

.page-footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-transition: max-height 0.3s;
  transition: max-height 0.3s;
  line-height: 30px;
}

.page-footer a {
  font-size: 13px;
  color: #e9f6f9;
  text-decoration: none;
  -webkit-transition: color 0.5s, background 0.5s;
  transition: color 0.5s, background 0.5s;
}

.page-footer-logo {
  width: 25%;
  vertical-align: middle;
  line-height: 150px;
}

.page-footer-logo img.logo {
  padding: 30px 20px 10px 20px;
  max-width: 100%;
  vertical-align: middle;
}

.bottom-bar {
  position: relative;
  text-align: center;
  font-size: 0.8em;
  text-transform: uppercase;
  background: #343434;
  color: #ffffff;
  padding: 10px 0;
}

html .footer .btn {
  width: 300px;
  /* 幅を300pxに合わせる */
  padding: 10px 20px;
  /* 上下の余白を合わせる */
  border-radius: 5px;
  /* 角の丸みを5pxの四角に合わせる */
  font-weight: bold;
  /* 太字にする */
  background: #E9F6F9;
  /* 背景色を合わせる */
  color: #2b87b2;
  /* 文字色を合わせる */
}
html .footer .btn:hover {
  background: rgba(100, 192, 211, 0.75);
  /* ホバー時の背景色を合わせる */
  color: #fff;
  /* ホバー時の文字色を白にする */
  opacity: 1;
  /* 元々あった半透明になる設定を打ち消す */
}

.contact-note {
  text-align: center;
  /* 文字を中央寄せにする */
  font-size: 14px;
  /* 少し小さめの文字サイズ */
  color: #666;
  /* 文字の色を少し控えめなグレーにする */
  margin-top: 12px;
  /* 上にあるお問合せボタンとの間隔 */
  margin-bottom: 0;
}

:root {
  /* テーマカラーをキャプチャのブルーグリーン系に変更 */
  --primary-color: #00aec4;
  --brand-color: #00aec4;
  --link-color: #2b87b2;
  --button-bg-color: #E9F6F9;
  --button-label-color: #2b87b2;
  --focus-ring-color: #64c0d3;
}

html {
  /* 1. 検索窓の後ろの背景（ヒーローエリア）をグレーにする */
  /* 2. 検索窓周りの調整 */
  /* 3. 記事リスト（FAQ）をフラット＆クリーンなデザインにする */
  /* 4. キーワードエリアの調整 */
}
html .search-page::after {
  height: 320px;
  /* 背景の高さを調整 */
  background-color: #64c0d3;
  /* キャプチャのようなグレーの背景 */
  /* 背景に画像を使いたい場合は、上の行を消して以下のコメントを外します */
  /* background-image: url("画像のURL"); */
  /* background-size: cover; */
  /* background-position: center; */
}
html .header .subtitle {
  padding: 60px 0 20px;
}
html .header .subtitle h2 {
  color: #fff;
  /* グレーの背景に映えるように白文字に変更 */
  text-align: center;
  /* タイトルを中央寄せ */
  font-size: 24px;
  font-weight: bold;
}
html .query-input {
  margin-top: 10px;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  /* 検索窓を少し浮かせて目立たせる */
  max-width: 800px;
}
html .faq-list {
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #64c0d3;
  /* 上部にアクセントカラーの線を追加 */
  background-color: #fff;
  padding: 16px;
  margin-top: 40px;
}
html .faq-list ul > li > a {
  border-bottom: 1px solid #f0f0f3;
  /* 項目ごとに薄い下線を引く */
  border-radius: 0;
  padding: 12px 8px;
  color: #333;
}
html .faq-list ul > li > a:hover {
  background-color: #E9F6F9;
  /* ホバー時の色を薄い水色に */
  color: #2b87b2;
}
html .keywords {
  border: 1px solid #e0e1e6;
  box-shadow: none;
  background-color: #fafafa;
}

html .navbar {
  background-color: #ffffff !important;
  /* ヘッダーの背景を白に塗りつぶす */
}

html .search-page::after {
  top: 69px;
  /* ヘッダーの高さ分だけ下にずらす */
}

html .faq-list {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15) !important;
  /* 影を濃く設定 */
}

.search-page .navbar ul.header-menu {
  display: none;
}

.search-page:has(.agent-mode-active) .navbar ul.header-menu {
  display: flex;
}