@charset "UTF-8";
/********************************
* UIカスタム設定（ダッシュボードで編集可）
* ダッシュボードの値を参照する場合は
* 各変数をコメントアウトしてください
********************************/
:root {
  --brand-color: var(--primary9);
  --link-color: var(--primary9);
  --link-hover-color: var(--neutral4);
  --highlight-color: var(--primary9);
  --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: #007DAF;
  --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;
  --focus-ring-color: var(--primary9);
  --button-bg-color: var(--primary9);
  --button-bg-hover-color: var(--primary10);
  --button-label-color: #fff;
  --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);
  --first-view-bg-color: transparent;
  --navbar-bg-color: var(--primary8);
}

:root {
  /* KINDS UIカスタム設定 */
  --kinds-selector-cols: 3;
  --kinds-selector-cols-sp: 3;
  --kinds-selector-gap: 8px;
  --kinds-selector-button-bg-color: #fff;
  --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);
}
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,
html .search-page .footer .footer-main .footer-main_contact.page_btn {
  display: none;
}
html .search-page .footer .footer-main .footer-main_contact.search-page_btn {
  display: block;
}
html #concierge-container {
  display: none;
}
html .header {
  padding: 0;
}
html .header #search-container {
  padding: 60px 0 0;
}
@media screen and (max-width: 767px) {
  html .header #search-container {
    padding: 20px 0 0;
  }
}
html .header .subtitle {
  display: none;
}
html .header .subtitle h2 {
  font-weight: bold;
  font-size: 24px;
  color: var(--header-color);
}
html .navbar {
  /* Headerの調整により、padding: 0px 24px 16px;から変更 */
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: #fff;
}
html .navbar h1.brand {
  /* Headerの調整に合わせてmargin追加 */
  margin-left: 12px;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  html .navbar h1.brand {
    margin-left: 6px;
  }
}
html .navbar h1.brand img {
  width: 190px;
  height: var(--logo-image-height);
}
@media screen and (max-width: 767px) {
  html .navbar h1.brand img {
    width: 98px;
  }
}
@media screen and (max-width: 767px) {
  html .navbar {
    /* Headerの調整により、padding: 0 16px 16px;から変更 */
    padding: 0;
  }
}
html .navbar ul.header-menu {
  flex-basis: 100%;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  html .navbar ul.header-menu {
    padding: 45px 36px 0 0;
  }
}
html .navbar ul.header-menu:after {
  position: absolute;
  top: 62px;
  right: 0;
  z-index: 0;
  width: calc(100% - 100px);
  height: 123px;
  content: "";
  background: url(https://www.higobank.co.jp/common_v2/images/h1_bg.jpg);
  opacity: 0.25;
}
@media screen and (max-width: 767px) {
  html .navbar ul.header-menu:after {
    top: 16px;
    width: 80vw;
    height: 100%;
    width: calc(100% - 20px);
  }
}
html .navbar ul.header-menu > li {
  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;
  font-size: 14px;
  color: #007DAF;
  /*padding: 6px 12px;
  border-radius: var(--rounded-lg);
  color: var(--button-label-color);
  line-height: 1.5;
  background-color: var(--button-bg-color);
  &:hover {
    background-color: var(--button-bg-hover-color);
  }
  @include sp {
    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;
  position: relative;
  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:after {
  position: absolute;
  bottom: -30px;
  left: 0;
  content: "※個人情報のご入力はお控えください";
  font-size: 14px;
  padding: 0 16px;
}
@media screen and (max-width: 767px) {
  html .query-input {
    /* 40px→20pxに変更 */
    margin-top: 20px;
  }
}
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;
}
html .faq-list {
  margin-top: 50px;
  padding: 0;
  border: solid 1px var(--card-border-color);
  border-radius: var(--card-border-radius);
}
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: normal;
  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: normal;
}
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: var(--rounded-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #007DAF;
  color: var(--button-label-color);
  padding: 12px 24px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  html .footer .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}
html .footer .btn:hover {
  opacity: 0.7;
}
html .footer .btn.search-page_btn {
  display: none;
}
html .footer .footer__inner {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  html .footer .footer__inner {
    /* パンくずリスト追加時に48px→0pxに変更 */
    margin-top: 0px;
  }
}
html .footer .footer__list {
  display: flex;
  align-content: center;
  justify-content: center;
  padding: 24px 0;
  margin: 0 auto;
  list-style: none;
  background-color: #F8F8F8;
}
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 var(--neutral6);
}
html .footer .footer__list-link {
  padding: 4px 8px;
}
html .footer .footer-bottom {
  padding: 16px 0;
  background-color: #3C4950;
  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;
}
@media screen and (max-width: 767px) {
  html .footer .footer-bottom__copyright {
    padding-left: 12px;
    padding-right: 12px;
    border-right: none;
  }
}
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: 16px;
    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: solid 1px #007DAF;
  background: #fff;
  color: var(--feedback-button-label-color);
  border-radius: var(--rounded-md);
}
html .article-page .feedback-section .buttons button:hover {
  opacity: 0.7;
}
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 .header #search-container {
  padding: 0;
}
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:after {
  width: 100%;
  background: #edf7fc;
  bottom: -22px;
}
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 .app {
  padding-top: 30px;
}
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 {
  border: none;
}
html.inframe .article-page .related-pages-section .container {
  max-width: calc(100% - 24px);
}
html.inframe .footer {
  display: block;
  padding-bottom: 30px;
}
html.inframe .footer .footer-breadcrums,
html.inframe .footer .footer__inner {
  display: none;
}
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: 50px;
}
@media screen and (max-width: 767px) {
  html .kinds-selector .selector {
    grid-template-columns: repeat(var(--kinds-selector-cols-sp), 1fr);
  }
}
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 #007DAF;
  border-radius: var(--kinds-selector-gap);
  background-color: var(--kinds-selector-button-bg-color);
}
@media screen and (max-width: 767px) {
  html .kinds-selector .selector .kind-items label {
    font-size: 12px;
  }
}
html .kinds-selector .selector .kind-items label:hover {
  border: 1px solid #007DAF;
  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;
}

/* Headerの調整（パンくず＋ページタイトル）----------ここから---------- */
html .navbar ul.header-menu > li.header-breadcrumb-search,
html .navbar ul.header-menu > li.header-breadcrumb-article {
  align-items: center;
  flex-basis: 100%;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  padding: 16px;
  font-size: 14px;
  font-weight: bold;
  background: #F5F5F5;
  margin-top: 16px;
  line-height: 1;
}
html .navbar ul.header-menu > li.header-breadcrumb-search > a,
html .navbar ul.header-menu > li.header-breadcrumb-article > a {
  font-weight: normal;
  color: #007DAF;
  text-decoration: underline;
  line-height: 1;
  padding: 0;
}
html .navbar ul.header-menu > li.header-breadcrumb-search img,
html .navbar ul.header-menu > li.header-breadcrumb-article img {
  width: 4px;
  height: 8px;
  margin: 0 4px;
  background-size: 4px 8px;
}
@media screen and (max-width: 767px) {
  html .navbar ul.header-menu > li.header-breadcrumb-search,
html .navbar ul.header-menu > li.header-breadcrumb-article {
    display: none;
  }
}

html .navbar ul.header-menu > li.header-title {
  display: block;
  position: relative;
  z-index: 2;
  width: calc(100% - 80px);
  background-color: #007DAF;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  padding: 24px;
  border-radius: 0 0 24px 0;
  margin: 30px 0 0;
}
@media screen and (max-width: 767px) {
  html .navbar ul.header-menu > li.header-title {
    width: 100%;
    font-size: 20px;
    margin: 0;
    padding: 16px;
  }
  html .navbar ul.header-menu > li.header-title:before {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    content: "";
    background-color: #007DAF;
    border-radius: 4px 4px 4px 0;
    opacity: 0.8;
    transform: translate(100%, -100%);
  }
}

.navbar ul.header-menu > li:not(:first-child) {
  margin-left: 0px;
}

body.search-page .navbar ul.header-menu > li.header-breadcrumb-article {
  display: none;
}

body.article-page .navbar ul.header-menu > li.header-breadcrumb-search {
  display: none;
}

/* Headerの調整（パンくず＋ページタイトル）----------ここまで---------- */
/* Footerの調整（パンくず）----------ここから---------- */
@media screen and (max-width: 767px) {
  .footer-breadcrums {
    background: #F5F5F5;
    margin-top: 48px;
    padding: 16px;
  }
  .footer-breadcrums-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer-breadcrums-list > li {
    font-weight: bold;
  }
  .footer-breadcrums-list > li > a {
    font-weight: normal;
    color: #007DAF;
    text-decoration: underline;
  }
  .footer-breadcrums-list > li > a:after {
    display: inline-block;
    width: 4px;
    height: 8px;
    margin: 0 4px;
    content: "";
    background-image: url(https://www.higobank.co.jp/common_v2/images/arrow_right_half_gray.svg);
    background-size: 4px 8px;
  }

  body.search-page .footer-faq-article {
    display: none;
  }

  body.article-page .footer-faq-search {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .footer-breadcrums {
    display: none;
  }
}
/* Footerの調整（パンくず）----------ここまで---------- */