/* kinds_button_param */
:root {
  --card-border-radius: calc(0.7rem - 1px);
}

/* mixin */
body {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #EFEFEF;
}

.search-page ul.header-menu > li.seach-link {
  display: none;
}

.search-page .footer .btn-area, .contact-page .footer .btn-area {
  display: none;
}

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

.header {
  margin: 0;
  padding: 0;
}
.header .subtitle h2 {
  border-bottom: 7px solid #FFE500;
}
.header .navbar {
  align-items: center;
  justify-content: center;
  height: 80px;
  margin: 0 auto;
  padding: 0 30px;
  background: #FFE500;
}
.header .navbar ul.header-menu > li > a {
  color: #fff;
}
@media (max-width: 767px) {
  .header .navbar {
    height: 80px;
    padding: 0 15px;
  }
  .header ul.header-menu > li > a {
    font-size: 13px;
  }
}

.footer {
  margin: auto 0 0;
  padding: 0;
}
.footer .foot_bottom {
  margin-bottom: 0;
  padding: 40px 0;
}
.footer .foot_bottom p {
  display: inline-block;
  margin: 0 7px;
  color: #666;
  font-size: 12px;
  font-family: Helvetica, Arial, Geneva, Verdana, "Hiragino Kaku Gothic Pro", sans-serif;
}
.footer .foot_bottom .foot_copyright {
  font-size: 12px;
}
.footer .btn-area {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  flex-flow: column;
}
.footer .btn-area a {
  width: 300px;
}
.footer .btn-area .search a {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  background: #D6D6D6;
  font-size: 15px;
  color: #333333;
  border-radius: calc(0.25rem - 1px);
}
.footer .btn-area .search a::before {
  position: absolute;
  top: 50%;
  left: 1em;
  content: "";
  margin-top: -5px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--body-color);
  border-right: 1px solid var(--body-color);
  transform: rotate(225deg);
}
.footer .btn-area .search a:hover {
  background-color: #dfdfdf;
  color: #333333;
}
@media (max-width: 767px) {
  .footer .btn-area {
    display: block;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 0;
  }
  .footer .btn-area a {
    width: 80%;
  }
  .footer .btn-area .search {
    margin-bottom: 20px;
  }
}

.powered-by-helpfeel a:link {
  font-size: 12px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 0);
}

@media (max-width: 767px) {
  .footer {
    margin-bottom: 15px;
  }
  .footer .foot_bottom {
    padding: 20px 0;
  }

  .powered-by-helpfeel {
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.inframe .search-page .powered-by-helpfeel {
  padding-top: 50px;
}
.inframe .article-page .powered-by-helpfeel {
  padding-top: 20px;
}

.form-group .button-submit {
  border-radius: calc(0.25rem - 1px);
}

.contact-container {
  padding-bottom: 0px;
}

.concierge {
  display: none;
}

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

@media (max-width: 767px) {
  .search-page .faq-list,
.search-page .keywords,
.article-page .content .page-content,
.article-page div.related-pages {
    padding: 10px;
    border: var(--card-border-width) solid var(--card-border-color);
  }
}
.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 #detailed-feedback-section {
  order: 4;
}
.article-page-empty .footer {
  order: 5;
}

@media (max-width: 767px) {
  .article-page-empty .content {
    margin-bottom: -10px;
  }

  .related-pages {
    margin-top: 0.5em;
  }
}
/* helpfeel kinds ---------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .kinds-selector {
    margin-top: 10px;
  }
}
.kinds-selector .selector {
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .kinds-selector .selector {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
  }
}
html.inframe .kinds-selector .selector {
  margin-bottom: 0;
}
.kinds-selector .selector .kind-items {
  width: calc((100% - (10px * (6 - 1))) / 6);
  margin: 0;
  /* &:first-child {
    @include sp {
      grid-column: 1 / 3;
    }
  } */
}
@media screen and (max-width: 767px) {
  .kinds-selector .selector .kind-items {
    width: 100%;
  }
}
.kinds-selector .selector .kind-items > input[type=radio] {
  display: none;
}
.kinds-selector .selector .kind-items > label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  border: 1px solid #111;
  background-color: #fff;
  border-radius: 5px;
  font-size: 14px;
  color: #111;
}
.kinds-selector .selector .kind-items > label:hover {
  border: 1px solid #111;
  background-color: #fffbcc;
}
.kinds-selector .selector .kind-items > input:checked + label {
  font-weight: 700;
  color: #111;
  border: 1px solid #111;
  background-color: #FFE500;
}

html:not(.inframe) #search-container {
  display: flex;
  flex-direction: column;
}
html:not(.inframe) #search-container .container {
  order: 2;
}
html:not(.inframe) #search-container .container .subtitle {
  display: none;
}
html:not(.inframe) #search-container .kinds-selector {
  order: 1;
}

.faq-list .faq-list-scroll-container {
  height: 52vh;
  max-height: calc(32px * 13 + 4px * 2);
}
@media screen and (max-width: 767px) {
  .faq-list .faq-list-scroll-container {
    height: 40vh;
    max-height: 280px;
    overflow-x: hidden;
  }
}

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

.page-content .line {
  font-size: 16px;
}
.page-content .line.title {
  font-size: 24px;
}

.related-pages .related-pages-body ul > li > a {
  font-size: 16px;
}

.map-frame-wrapper {
  position: relative;
  width: 96vw;
  min-width: 100%;
  left: 50%;
  padding-top: calc(100vh - 200px);
  margin-bottom: 24px;
  background-color: #ddd;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) and (max-height: 650px) {
  .map-frame-wrapper {
    padding-top: 450px;
  }
}
@media screen and (max-width: 767px) {
  .map-frame-wrapper {
    width: 100%;
    height: calc(100vh - 184px);
    height: calc(100dvh - 184px);
    left: initial;
    padding-top: 112.25%;
    transform: initial;
  }
}
.map-frame-wrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
}

.page-content .line .deco-\% {
  display: none;
}

@media screen and (max-width: 767px) {
  .kinds-selector .selector .kind-items > label {
    font-size: 13px;
  }
}