@charset "UTF-8";
/* font-face */
@font-face {
  font-family: AdjustedYuGothic;
  font-weight: 400;
  src: local("Yu Gothic Medium");
}
@font-face {
  font-family: AdjustedYuGothic;
  font-weight: 700;
  src: local("Yu Gothic Bold");
}
/* style　settings */
/* query-input */
/* header */
/* a1.footer-main */
/* primary - テンプレのcontactボタンの色 */
/* primary - テンプレのsearchTopボタンの色 */
/* footer-bottom */
:root {
  --query-input-border: 1px solid #8e8e8e;
  --header-link-color: #777;
}

/* mixin */
/* helpfeel base ---------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: AdjustedYuGothic, "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Meiryo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  body {
    background: var(--body-background);
  }
}
@media screen and (max-width: 767px) {
  body .faq-list,
body .keywords,
body .page-content,
body .related-pages {
    padding: 15px;
    border-radius: var(--card-border-radius);
    border: var(--card-border-width) solid var(--card-border-color);
  }
}

.header {
  padding: 0;
}
.header .concierge-container {
  display: none;
}

.query-input {
  margin-bottom: 16px;
  max-width: 584px;
  border-radius: 30px;
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .query-input {
    margin-bottom: 10px;
    margin-top: 25px;
  }
}
.query-input:focus-within {
  outline: 1px solid #015fcc;
}
.inframe .query-input:focus-within {
  outline: none;
}
.query-input .speech-button {
  height: 45px;
}

.faq-list ul > li > a {
  padding-right: 8px;
  font-size: 16px;
}

/* search - conetnts */
#app-container {
  min-height: auto;
}
html.inframe #app-container {
  margin-top: 67px;
}

.content {
  margin: 32px 0 16px;
}
html.inframe .content {
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  .keywords {
    margin: 16px 0;
  }
}
.keywords .keywords-title {
  margin-bottom: 7px;
  padding: 5px 0 2px;
}
.keywords .keywords-body .list {
  justify-content: left;
  margin: 6px 10px;
  gap: 8px 10px;
}
.keywords .keywords-body .list > a {
  border: 1px solid transparent;
}
.keywords .keywords-body .headword {
  line-height: 24px;
  text-align: center;
  margin-top: 13px;
}
@media screen and (max-width: 767px) {
  .keywords .keywords-body .headword {
    margin: 0;
    text-align: left;
  }
}

/* article - contents */
.page-content .line {
  font-size: 16px;
}
.page-content .line.title {
  font-size: 24px;
}
.page-content .line.title:after {
  content: "";
  display: block;
  width: calc(100% + 4px);
  margin: 15px -2px 0;
  height: 1px;
  background-color: var(--card-border-color);
  border-radius: 2px;
}
.page-content .line.image-only-line > a {
  display: inline-block;
}
.page-content .indent-mark .dot {
  top: 13px;
}

/* article - related */
@media screen and (max-width: 767px) {
  .related-pages {
    margin-top: 0;
  }
}
.related-pages .related-pages-body ul > li > a {
  font-size: 16px;
  align-items: center;
}
.related-pages .related-pages-body ul > li > a .icon {
  background-size: contain;
  height: 20px;
  margin-right: 8px;
}

.article-page-empty .content {
  margin-bottom: 0;
  order: 1;
}
.article-page-empty .content .page-content {
  padding-bottom: 0;
  border-bottom: 0;
  border-radius: var(--card-border-radius) var(--card-border-radius) 0 0;
}
.article-page-empty .feedback-section {
  order: 3;
}
.article-page-empty .related-pages-section {
  order: 2;
}
.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 .article-page-empty .related-pages-section .container .related-pages {
  padding-top: 0;
}
.article-page-empty .footer {
  order: 4;
}

/* Heading ---------------------------------------------------------------*/
strong.level.level-3 {
  font-size: 125%;
  line-height: 140%;
  display: block;
  margin: 1.25em 0 0;
  font-feature-settings: "palt";
}

strong.level.level-4 {
  font-size: 150%;
  line-height: 140%;
  display: block;
  margin: 1.5em 0 0;
  font-feature-settings: "palt";
}

/* helpfeel header ---------------------------------------------------------------*/
.navbar {
  min-height: 81px !important;
  padding: 10px 16px;
  margin: 0;
  border-bottom: 2px solid #777777;
  gap: 10px;
}
.navbar ul.header-menu {
  gap: 0 10px;
}
.navbar ul.header-menu > li {
  display: flex;
}
.navbar ul.header-menu > li:not(:first-child) {
  margin-left: 0;
}
.navbar ul.header-menu > li a {
  padding: 6px;
}
.navbar ul.header-menu > li a:hover {
  background-color: rgba(119, 119, 119, 0.15);
  border-radius: 5px;
}

/* helpfeel footer ---------------------------------------------------------------*/
.btn {
  display: block;
  padding: 10px 14px;
  border-radius: 5px;
}
.btn:hover {
  opacity: 0.6;
}

/* footer */
.powered-by-helpfeel {
  display: none;
}

footer {
  /* footer - コピーライト */
}
footer.footer {
  margin-top: auto;
  padding-top: 48px;
  padding-bottom: 0;
}
.article-page footer.footer {
  padding-top: 30px;
}
footer .footer-main {
  width: 760px;
  max-width: calc(100% - 32px);
  margin: 0 auto 60px;
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  footer .footer-main {
    flex-wrap: wrap;
  }
}
footer .footer-main_search-top {
  width: 240px;
  background-color: #fff;
  border: 2px solid #414141;
  color: #414141;
}
footer .footer-main_search-top:hover {
  background-color: #fff;
}
body.search-page footer .footer-main_search-top {
  display: none;
}
footer .footer-main_contact {
  width: 240px;
  background-color: #414141;
  border: 2px solid #414141;
  color: #fff;
}
footer .footer-main_contact:hover {
  background-color: #414141;
}
footer .footer-bottom {
  padding: 10px 0;
  background-color: #606060;
}
footer .footer-bottom_wrap {
  width: 760px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 16px;
}
footer .footer-bottom_copyright {
  font-size: 10px;
  color: #fff;
  position: relative;
  padding: 0 4px;
  text-align: left;
}
footer .footer-bottom_copyright:after {
  content: "";
  border-right: 1px solid #fff;
  height: 18px;
  position: absolute;
  right: -8px;
  top: 0;
  bottom: 0;
  margin: auto;
}
footer .footer-bottom_powered-by-helpfeel a {
  font-size: 10px;
  color: #fff;
  display: block;
  padding: 0 4px;
}
footer .footer-bottom_powered-by-helpfeel a:hover {
  opacity: 0.6;
}

/* Custom Style ---------------------------------------------------------------*/
body {
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.footer {
  margin-top: auto;
}

#app-container {
  min-height: 50vh;
}

.header .navbar {
  min-height: 60px;
}
@media screen and (max-width: 767px) {
  .header .navbar h1.brand img {
    height: 34px;
  }
}
.header .search-container {
  background: #fff;
  padding-bottom: 1px;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .header .search-container {
    padding-bottom: 0px;
    margin-bottom: 0px;
    overflow: hidden;
  }
}
.header .search-container .subtitle {
  padding-top: 66px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .header .search-container .subtitle {
    display: none;
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
.header .search-container .subtitle h2 {
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .header .search-container .subtitle h2 {
    font-size: 24px;
  }
}

.navbar {
  border-bottom: 2px solid #de081e;
}
@media screen and (max-width: 767px) {
  .navbar {
    min-height: 60px;
    justify-content: center;
  }
}
.navbar ul.header-menu li a {
  font-size: 13px;
  background: #00A041;
  border: 1px solid #00A041;
  padding: 6px 15px;
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  width: 140px;
  text-align: center;
  transition: 0.2s;
}
.navbar ul.header-menu li a:hover {
  background: #00A041;
  opacity: 1;
  transform: scale(1.02);
}
.navbar ul.header-menu li a.login_btn {
  width: 175px;
  background: #FF6D00;
  border-color: #FF6D00;
}
.navbar ul.header-menu li a.login_btn:hover {
  background: #FF6D00;
}
@media screen and (max-width: 767px) {
  .navbar ul.header-menu li a {
    font-size: 13px;
    border: 1px solid #00A041;
    padding: 3px 5px;
    border-radius: 5px;
    width: 120px;
    text-align: center;
  }
}
.navbar ul.header-menu li a span.small {
  font-size: 80%;
}

footer .footer-main_search-top {
  width: 240px;
  background-color: #de081e;
  border: 2px solid #de081e;
  color: #fff;
  font-size: 1.6rem;
  transition: 0.2s;
  border-radius: 50px;
}
footer .footer-main_search-top:hover {
  background-color: #de081e;
  color: #fff;
  opacity: 1;
  transform: scale(1.02);
}

footer .footer-main_contact {
  width: 240px;
  background-color: #fff;
  border: 2px solid #F7CCCC;
  color: #222;
  font-weight: 700;
  font-size: 1.6rem;
  transition: 0.2s;
  border-radius: 50px;
}
footer .footer-main_contact:hover {
  background: #fff;
  border-color: #de081e;
  color: #222;
  opacity: 1;
  transform: scale(1.02);
}

.search-page footer .footer-main_contact {
  display: none;
}

footer .footer-bottom {
  background: #424242;
  padding: 10px 0 15px;
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .footer-bottom_wrap {
    display: block;
  }
}
footer .footer-bottom .footer-bottom_copyright {
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .footer-bottom_copyright {
    font-size: 10px;
  }
}
footer .footer-bottom .footer-bottom_copyright:after {
  content: "";
  border-right: 1px solid #fff;
  height: 18px;
  position: absolute;
  right: -8px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .footer-bottom_copyright:after {
    display: none;
  }
}
footer .footer-bottom .footer-bottom_powered-by-helpfeel a {
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .footer-bottom_powered-by-helpfeel a {
    font-size: 10px;
    margin-top: 3px;
  }
}

.concierge {
  display: none;
}

.header .subtitle h2 {
  pointer-events: none;
}

.search-summary-time {
  display: none;
}

.faq-list .faq-list-title {
  position: static;
}

.query-input {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.28);
  background: #fff;
  border: 1px solid #dcdcdc;
}

.query-input:focus-within {
  outline: 2px solid #ccc;
}

.faq-list ul > li:last-child {
  margin-bottom: 10px;
}

.keywords .keywords-body .list > a {
  text-align: center;
  margin: 2px 0px 2px 0;
  border: 2px solid #FBE6E6;
  padding: 0 16px;
  border-radius: 30px;
  min-width: 70px;
}
.keywords .keywords-body .list > a:hover {
  background: #FBE6E6;
}

.keywords .keywords-body .list > a.highlight {
  background: #FBE6E6;
  color: #222;
}

@media screen and (max-width: 767px) {
  .faq-list .faq-list-scroll-container {
    min-height: calc(48px * 3 + 4px * 2);
    max-height: 340px;
    height: 50vh;
  }
}

/* contact base -----------------------------------------------------------------*/
/* contact */
.contact-page {
  font-size: 14px;
}
.contact-page .description-html .description {
  padding: 10px 0;
  background-color: transparent;
}
.contact-page .form-group.required > label:after {
  content: "必須";
  color: #fff;
  font-size: 10px;
  background-color: #f44336;
  padding: 3px;
  border-radius: 4px;
  margin-left: 5px;
  vertical-align: 2px;
}
.contact-page .form-group.rel-question, .contact-page .form-group.nohit {
  margin-top: 0;
}
.contact-page div#g-recaptcha {
  margin: 60px 0 80px;
}
.contact-page div#g-recaptcha > div {
  margin: 0 auto;
}
.contact-page .contact-container {
  padding-bottom: 0;
}
.contact-page .contact-container .hints {
  padding-left: 0;
}
.contact-page .contact-container .form-group + .description-html {
  margin: 0;
}
.contact-page .contact-container .button-submit {
  color: #fff;
  background: var(--brand-color);
  border-radius: 5px;
  padding: 12px 14px;
  font-size: 14px;
}
.contact-page .contact-container .button-submit:hover {
  opacity: 0.6;
}
.contact-page .contact-container .button-submit:disabled {
  background: #555;
  opacity: 1;
}
.contact-page .contact-container .radio-button-container > div:first-child .radio-button-label {
  display: block;
  color: var(--header-color);
  font-size: 16px;
  line-height: 16px;
  margin: 0 0 12px;
  font-weight: bold;
}
.contact-page .contact-container .radio-button-container.required > div:first-child .radio-button-label:after {
  content: "必須";
  color: #fff;
  font-size: 10px;
  background-color: #f44336;
  padding: 3px;
  border-radius: 4px;
  margin-left: 5px;
  vertical-align: 2px;
}
.contact-page footer.footer {
  padding-top: 24px;
}
.contact-page footer .footer-main_contact {
  display: none;
}

.contact-container .alert.alert-success {
  white-space: pre-line;
}

.contact-page .contact-container .button-submit {
  color: #fff;
  background: var(--brand-color);
  border-radius: 50px;
  padding: 12px 14px;
  font-size: 1.6rem;
  transition: 0.2s;
}

.contact-page .contact-container .button-submit:hover {
  opacity: 1;
  transform: scale(1.02);
}

.inframe .header .search-container {
  background: none;
  padding: 0;
  margin: 0;
  overflow: auto;
}