@charset "UTF-8";
/* style　settings */
/* query-input */
/* header */
/* a1.footer-main */
/* primary - テンプレのcontactボタンの色 */
/* primary - テンプレのsearchTopボタンの色 */
/* footer-nav */
/* footer-bottom */
:root {
  --query-input-border: 1px solid #8e8e8e;
  --header-link-color: #777;
}

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

body {
  font-family: "メイリオ", "Meiryo", "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "游ゴシック体", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", 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;
}

/* 20240712追加 */
.header .subtitle {
  padding: 50px 0 20px;
  display: block;
}

.rental_agreement_info {
  color: red;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .want_ask {
    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: 8px;
  }
}
.query-input:focus-within {
  outline: 1px solid #8CB0E1;
}
.inframe .query-input:focus-within {
  outline: none;
}
.query-input .speech-button {
  height: 45px;
}

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

/* search - conetnts */
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: 16px;
  line-height: 140%;
  display: block;
  margin: 24px 0 12px;
}

strong.level.level-4 {
  font-size: 20px;
  line-height: 140%;
  display: block;
  margin: 32px 0 14px;
}

/* helpfeel header ---------------------------------------------------------------*/
.navbar {
  min-height: 70px;
  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.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;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}
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;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}
footer .footer-main_contact:hover {
  background-color: #eeae43;
}
footer .footer-nav {
  background-color: #f1f1f1;
  padding: 8px 0;
}
@media screen and (max-width: 767px) {
  footer .footer-nav {
    background-color: #f1f1f1;
    padding: 0;
  }
}
footer .footer-nav_list {
  width: 760px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  list-style: none;
  padding: 8px 0;
  display: flex;
  gap: 4px 16px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  text-align: left;
}
@media screen and (max-width: 767px) {
  footer .footer-nav_list {
    gap: 0;
    max-width: 100%;
    padding: 0;
    text-align: center;
  }
}
footer .footer-nav_list_item {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  footer .footer-nav_list_item {
    width: calc(100% / 2);
  }
}
@media screen and (max-width: 767px) {
  footer .footer-nav_list_item:nth-child(2n+1):last-child {
    width: 100%;
  }
}
footer .footer-nav_list_item_link {
  display: block;
  color: #000000;
  padding: 0 4px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  footer .footer-nav_list_item_link {
    padding: 10px;
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
  }
}
footer .footer-nav_list_item_link:hover {
  background: #858585;
}
footer .footer-nav_list-text .footer-nav_list_item {
  position: relative;
}
@media screen and (max-width: 767px) {
  footer .footer-nav_list-text .footer-nav_list_item {
    position: initial;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-nav_list-text .footer-nav_list_item:nth-of-type(2n) {
    border-left: 1px solid #aaa;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-nav_list-text .footer-nav_list_item:nth-of-type(2n + 1):after {
    content: "";
    width: 100%;
    border-bottom: 1px solid #aaa;
    position: absolute;
    left: 0;
  }
}
footer .footer-nav_list-text .footer-nav_list_item:before {
  content: "";
  border-right: 1px solid #000000;
  height: 14px;
  position: absolute;
  right: -8px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  footer .footer-nav_list-text .footer-nav_list_item:before {
    content: none;
  }
}
footer .footer-nav_list-text .footer-nav_list_item:last-child:before {
  content: none;
}
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;
}

/*  contact */
footer .footer-main_contact {
  width: 240px;
  background-color: #ea9a16;
  border: 2px solid #ea9a16;
  color: #fff;
}

/*  footer */
footer .footer-bottom {
  padding: 10px 0;
  background-color: #f1f1f1;
}

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

/* copyright */
footer .footer-bottom_copyright {
  color: #000;
}

footer .footer-bottom_powered-by-helpfeel a {
  color: #000;
}

/* kijipage btn */
footer .footer-main_search-top {
  width: 240px;
  background-color: #fff;
  border: 2px solid #eb9a16;
  color: #eb9a16;
}

.navbar {
  border-bottom: 2px solid #eb9a16;
}

footer .footer-bottom_copyright:after {
  content: "";
  border-right: 1px solid #000;
  height: 18px;
  position: absolute;
  right: -8px;
  top: 0;
  bottom: 0;
  margin: auto;
}

footer .footer-main_contact {
  width: 240px;
  background-color: #eb9a16;
  /* border: #eb9a16; */
  /* border-radius: 5px; */
  color: #ffffff;
  /* box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3); */
  font-weight: bold;
}