@charset "UTF-8";
/**
 一般
 */
:root {
  --logo-image-height: 40px;
  --body-background: none;
  --primary-color: #28325A;
  --brand-color: var(--primary-color);
  --link-color: #009DEE;
  --highlight-color: #009DEE;
  --header-link-color: var(--primary-color);
  --query-input-box-shadow: 0;
  --footer-copyright-background: var(--header-link-color);
  /**
   本プロジェクトの独自拡張
   */
  --search-container-background: #edf7ff;
  --keywords-backgrond: #F2F2F9;
  --kinds-border-color: var(--primary-color);
  --kinds-selected-background: var(--primary-color);
  --kinds-selected-color: #fff;
}

/**
 Helpfeel Kindsスイッチャー
 */
.kinds-switcher {
  background: var(--search-container-background);
  padding: 10px;
}

.kinds-switcher .subtitle h2 {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  color: var(--primary-color);
}

.kinds-switcher .kinds-items {
  width: 696px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.kinds-switcher .kinds-items > a {
  position: relative;
  display: block;
  border: 1px solid var(--kinds-border-color);
  flex-grow: 1;
  width: 100%;
  margin-right: 16px;
  text-align: center;
  padding: 8px;
  border-radius: 5px;
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-color);
}

.kinds-switcher .kinds-items > a:last-child {
  margin-right: 0;
}

.kinds-switcher .kinds-items > a:hover {
  background: rgba(255, 255, 255, 0.6);
}

.kinds-switcher .kinds-items > a.selected {
  background: var(--kinds-selected-background);
  border-color: var(--kinds-selected-background);
  color: var(--kinds-selected-color);
}

.kinds-switcher .kinds-items > a.selected:hover {
  opacity: 0.8;
}

/* フキダシ */
.kinds-switcher .kinds-items > a.selected:before {
  --kinds-slected-item-triangle-size: 8px;
  content: "";
  position: absolute;
  display: block;
  z-index: 1;
  border-style: solid;
  border-color: var(--kinds-selected-background) transparent;
  border-width: var(--kinds-slected-item-triangle-size) var(--kinds-slected-item-triangle-size) 0 var(--kinds-slected-item-triangle-size);
  bottom: calc(-1 * var(--kinds-slected-item-triangle-size));
  left: 50%;
  margin-left: calc(-1 * var(--kinds-slected-item-triangle-size));
}

/**
 Helpfeel Kindsスイッチャーのモバイル対応
 */
:root {
  --kinds-switcher-item-margin: 8px;
}

@media (max-width: 767px) {
  .kinds-switcher .kinds-items {
    width: 100%;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--kinds-switcher-item-margin));
  }

  .kinds-switcher .kinds-items > a {
    width: calc(50% - 24px);
    margin: var(--kinds-switcher-item-margin) var(--kinds-switcher-item-margin) auto 0;
  }

  .kinds-switcher .kinds-items > a:nth-child(even) {
    margin: var(--kinds-switcher-item-margin) 0 auto 0;
  }

  /* フキダシを消す */
  .kinds-switcher .kinds-items > a.selected:before {
    display: none;
  }
}
/**
 コンシェルジュボタン
 */
.concierge button.start {
  color: var(--primary-color);
  background: #BCE2FF;
  border-radius: 10px;
  padding: 2px 14px;
  font-size: 14px;
}

.concierge button.start:active {
  background: #84bce6;
}

/**
 サブタイトル
 */
.header .subtitle {
  max-width: 100%;
  width: 696px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 26px;
}

.header .subtitle h2 {
  text-align: left;
  width: 100%;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  color: var(--primary-color);
}

@media (max-width: 767px) {
  .header .subtitle {
    display: block;
    padding: 20px 0 10px;
  }

  .header .search-container {
    padding-bottom: 30px;
  }
}
/**
 ヘッダー
 */
nav.navbar {
  max-width: 920px;
  margin: 0 auto 16px;
}

@media (max-width: 920px) {
  nav.navbar {
    margin: 0 8px 16px;
  }
}
/**
 検索ボックス
 */
.search-container {
  background: var(--search-container-background);
  padding: 10px;
}

.search-container .query-input {
  width: 696px;
  margin-top: 0;
  margin-bottom: 27px;
}

@media (max-width: 767px) {
  .search-container > .container {
    max-width: 100%;
  }

  .search-container .query-input {
    margin-bottom: 0;
    width: 100%;
  }

  .app .container {
    margin: 0;
    max-width: 100%;
  }

  .app .container > div {
    padding: 15px 20px;
  }
}
/**
 よくある質問
 */
.faq-list {
  border: 0;
}

.faq-list ul > li > a:hover {
  background: transparent;
  color: #1396EC;
}

.faq-list ul > li > a .icon img {
  width: 24px;
}

@media (max-width: 767px) {
  html:not(.inframe) .faq-list {
    margin-top: 0;
  }

  html:not(.inframe) .faq-list .faq-list-scroll-container.no-query {
    max-height: none;
    height: auto;
  }
}
/**
 言葉のヒント
 */
.keywords {
  background: var(--keywords-backgrond);
  border: 0;
  border-radius: 0;
}

.keywords .keywords-body .list {
  justify-content: start;
}

.keywords .keywords-body .list > a {
  background: #fff;
  margin-right: 8px;
  margin-bottom: 8px;
  color: #666666;
}

@media (max-width: 767px) {
  .keywords {
    margin-top: 24px;
  }

  .keywords .keywords-body .list > a {
    font-size: 15px;
    line-height: 36px;
  }
}
.page-content {
  border: 0;
}

.page-content .line {
  font-family: Hiragino Kaku Gothic Pro;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 160%;
}

@media (max-width: 767px) {
  .page-content .line {
    font-size: 16px;
  }
}
.page-content .title {
  font-family: Hiragino Kaku Gothic Pro;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 130%;
}

@media (max-width: 767px) {
  .page-content .title {
    font-size: 19px;
    line-height: 28px;
  }
}
/*
 Feedback button
 */
section.feedback-section {
  margin: 0 auto 30px auto;
  padding-top: 40px;
  border-top: 1px dashed #999999;
  max-width: 696px;
  width: 100%;
}

section.feedback-section .feedback .message {
  color: #28325A;
  font-size: 14px;
}

/*
fixed footer
*/
body {
  display: flex;
  flex-flow: column;
}

body > *:nth-last-child(2) {
  flex: 1;
}

/**
 フッター
 */
footer.footer {
  padding-bottom: 0;
}

.footer-links {
  background: #fff;
  margin: 16px auto;
  padding: 0 10px;
  font-size: 12px;
}

.footer-links a {
  color: var(--header-link-color);
  display: inline-block;
  margin-right: 20px;
}

.footer-links a:last-child {
  margin-right: 0;
}

.footer-links a.go-back-help-top,
.footer-links a.inquiry {
  position: relative;
  display: block;
  margin: auto auto 45px auto;
  max-width: 100%;
  width: 440px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  color: var(--primary-color);
}

.footer-links a.go-back-help-top {
  background: var(--primary-color);
  color: #fff;
}

.footer-links a.inquiry:hover {
  background: #e9eaee;
}

.footer-links a.go-back-help-top:hover {
  opacity: 0.8;
}

.footer-links a.inquiry::after,
.footer-links a.go-back-help-top::after {
  display: block;
  position: absolute;
  top: 0;
  font-size: 7px;
}

.footer-links a.inquiry::after {
  content: "▶";
  right: 20px;
}

.footer-links a.go-back-help-top::after {
  content: "◀";
  left: 20px;
}

.search-page .footer-links a.go-back-help-top {
  display: none;
}

.copyright {
  text-align: center;
  padding: 0.5em 0;
  background: var(--footer-copyright-background);
  color: #fff;
  font-size: 0.72em;
}

/**
 Helpfeel Element対応
 */
html.inframe #app-container {
  margin-top: 60px;
}

html.inframe header.header,
html.inframe .search-container {
  background: #fff;
}

html.inframe header.header {
  padding: 0;
}

html.inframe header.header {
  padding: 5px 0px;
}

html.inframe .kinds-switcher {
  display: none;
}

html.inframe .query-input {
  margin-right: 40px;
  width: calc(100% - 40px);
}

button.helpfeel-modal-close-button {
  top: 8px;
  right: -2px;
}

html.inframe .faq-list {
  margin-top: 0;
}

html.inframe .faq-list .faq-list-title:first-of-type {
  background: #fff;
}

html.inframe .search-container {
  padding: 0;
}

html.inframe .query-input > input {
  background: none;
  padding-left: 20px;
}

html.inframe .keywords {
  margin-top: 10px;
  padding-top: 20px;
}

/**
 スマホアプリは衣類のみなので、Kindsスイッチャーを非表示にする
 https://nota.slack.com/archives/CSHFA2YPQ/p1582711047013000
 */
html.inapp header.header {
  padding-top: 0;
}

html.inapp .kinds-switcher {
  display: none;
}

/**
 アプリ版でもフッターを出す
 */
html.inapp body {
  min-height: 100vh;
}

html.inapp .footer {
  display: block !important;
}

/**
 チャネルトークアイコンをElement上で表示させない
 */
html.inframe #ch-plugin {
  display: none;
}

.article-page .kinds-switcher,
.article-page .search-container {
  display: none;
}

.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;
  padding-top: 0;
  border-top: none;
}
.article-page-empty .related-pages-section {
  order: 2;
  margin-top: 20px;
}
.article-page-empty .related-pages-section .container .related-pages {
  border-radius: 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;
}

.kinds-switcher .kinds-items {
  gap: 8px 4px;
  margin-top: 0px;
}
@media screen and (max-width: 767px) {
  .kinds-switcher .kinds-items {
    gap: 8px;
  }
}
.kinds-switcher .kinds-items > a {
  margin-right: 0;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .kinds-switcher .kinds-items > a {
    margin-top: 0;
    font-size: 15px;
  }
}
.kinds-switcher .kinds-items > a:nth-child(even) {
  margin-top: 0;
}

.header .subtitle {
  width: 722px;
}
@media screen and (max-width: 767px) {
  .header .subtitle {
    width: 100%;
  }
}

.kinds-switcher .kinds-items {
  width: 722px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .kinds-switcher .kinds-items {
    width: 100%;
  }
}
.kinds-switcher .kinds-items > a {
  padding: 8px 2px;
}

.search-container .query-input {
  width: 722px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .search-container .query-input {
    width: 100%;
  }
}

.faq-list {
  padding: calc(24px - 5px) 16px 24px;
}