/* CSS Document */

/* ==============================================================
Component
================================================================= */

/* 検索窓
------------------------------------------------------------*/
.page-help .c-help-search {
  width: 480px;
}
.page-help .c-help-search_searchBox {
  position: relative;
}
.page-help .c-help-search_textarea {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #dbdbdb;
  padding: 0 16px;
}
.page-help .c-help-search_btn {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.page-help .c-help-search .c-help-search_keywords {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2rem;
  margin-top: 8px;
}
.page-help .c-help-search .c-help-search_keywords a {
  color: #0f37ff;
  text-decoration: underline;
}
.page-help .c-help-search .c-help-search_keywords a:hover {
  text-decoration: none;
}

/* TOPのみスタイル調整 */
.page-help .c-help-search--top {
  width: 560px;
}
.page-help .c-help-search--top .c-help-search_textarea {
  height: 48px;
}


/* アコーディオン①：よくある質問
------------------------------------------------------------*/
.page-help .c-listAcc--faq {
  width: 100%;
  font-size: 16px;
  margin: 0 auto;
}
.page-help .c-listAcc--faq .c-listAcc__item {
  width: 100%;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #dbdbdb;
  padding: 32px 0;
}
.page-help .c-listAcc--faq .c-listAcc__item::before,
.page-help .c-listAcc--faq .c-listAcc__item::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #0f37ff;
  position: absolute;
  top: 46px;
  right: 8px;
  transition: transform 0.4s;
}
.page-help .c-listAcc--faq .c-listAcc__item::after {
  transform: rotate(90deg);
}
.page-help .c-listAcc--faq .c-listAcc__title {
  position: relative;
  font-weight: 700;
  padding: 0 40px;
}
.page-help .c-listAcc--faq .c-listAcc__title::before {
  content: "";
  background-image: url(../images/manual/icon_Q.svg);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
}
.page-help .c-listAcc--faq .c-listAcc__detail {
  display: none;
  font-weight: 400;
  line-height: 1.75;
  margin: 30px 0 0;
  padding-left: 40px;
  position: relative;
}
.page-help .c-listAcc--faq .c-listAcc__detail a {
  color: #0f37ff;
  text-decoration: underline;
}
.page-help .c-listAcc--faq .c-listAcc__detail a:hover {
  text-decoration: none;
}
.page-help .c-listAcc--faq .c-listAcc__detail > *:first-child {
  margin-top: 0;
}
.page-help .c-listAcc--faq .c-listAcc__detail > *:last-child {
  margin-bottom: 0;
}
.page-help .c-listAcc--faq .c-listAcc__detail::before {
  content: "";
  background-image: url(../images/manual/icon_A.svg);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
}
.page-help .c-listAcc--faq .c-listAcc__detail__list {
  margin: 16px 0;
}
.page-help .c-listAcc--faq .c-listAcc__detail__list li {
  line-height: 1.5;
  padding: 0 0 0 1em;
  position: relative;
}
.page-help .c-listAcc--faq .c-listAcc__detail__list li + li {
  margin: 10px 0 0;
}
.page-help .c-listAcc--faq .c-listAcc__detail__list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
/* --- active --- */
.page-help .c-listAcc--faq .c-listAcc__item.is-active::after {
  transform: rotate(0);
}


/* アコーディオン②：やりたいことから探す
------------------------------------------------------------*/
.page-help .c-listAcc--search {
  width: 100%;
  margin-bottom: 24px;
}
.page-help .c-listAcc--search .c-listAcc__item  {
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  margin-bottom: 24px;
}
.page-help .c-listAcc--search > *:last-child {
  margin-bottom: 0;
}
.page-help .c-listAcc--search .c-listAcc__item::before,
.page-help .c-listAcc--search .c-listAcc__item::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #0f37ff;
  position: absolute;
  top: 32px;
  right: 24px;
  transition: transform 0.4s;
}
.page-help .c-listAcc--search .c-listAcc__item::after {
  transform: rotate(90deg);
}
.page-help .c-listAcc--search .c-listAcc__title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  padding: 18px 68px 18px 32px;
  cursor: pointer;
  transition: .3s;
}
.page-help .c-listAcc--search .c-listAcc__title:hover{
  opacity: .7;
}
.page-help .c-listAcc--search .c-listAcc__detail {
  font-weight: 400;
  line-height: 1.75;
  margin: 14px 0 16px;
  padding: 0 48px;
  position: relative;
  display: block;
}
.page-help .c-listAcc--search .c-listAcc__detail h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 12px 0 20px;
}
.page-help .c-listAcc--search .c-listAcc__detail a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
  margin: 0 0 20px 16px;
}
.page-help .c-listAcc--search .c-listAcc__detail a::after {
  content: "";
  background-image: url(../images/common/icon_arrow_black.svg);
  background-size: contain;
  width: 5px;
  height: 8px;
  position: absolute;
  top: 8px;
  right: -16px;
}
.page-help .c-listAcc--search .c-listAcc__detail a:hover {
  text-decoration: none;
}
.page-help .c-listAcc--search .c-listAcc__detail > *:first-child {
  margin-top: 0;
}
.page-help .c-listAcc--search .c-listAcc__detail > *:last-child {
  margin-bottom: 0;
}

/* --- active --- */
.page-help .c-listAcc--search .c-listAcc__item.is-active::after {
  transform: rotate(0);
}


/* 下層header下パンくず
------------------------------------------------------------*/
.page-help .c-help-cat > * {
  display: inline-block;
  font-size: 14px;
  position: relative;
}
.page-help .c-help-cat > * + * {
  margin-left: 40px;
}
.page-help .c-help-cat > * + *::before {
  content: "";
  background-image: url(../images/common/icon_arrow_black.svg);
  background-size: contain;
  width: 5px;
  height: 8px;
  position: absolute;
  top: 6px;
  left: -25px;
}
.page-help .c-help-cat a {
  color: #0f37ff;
  text-decoration: underline;
}
.page-help .c-help-cat a:hover {
  text-decoration: none;
}


/* 検索結果/カテゴリー別 記事一覧リスト
------------------------------------------------------------*/
.page-help .c-help-archive {
  border-top: 1px solid #dbdbdb;
  margin: 48px 0 100px;
}
.page-help .c-help-archive_item {
  border-bottom: 1px solid #dbdbdb;
  padding: 32px 16px;
}
.page-help .c-help-archive_item > a {
  color: #0f37ff;
  font-size: 20px;
  font-weight: 700;
  text-decoration: underline;
}
.page-help .c-help-archive_item > a:hover {
  text-decoration: none;
}
.page-help .c-help-archive_cat {
  font-size: 12px;
  font-weight: 400;
  margin-top: 12px;
}
.page-help .c-help-archive_cat * {
  position: relative;
  display: inline-block;
}
.page-help .c-help-archive_cat * + * {
  margin-left: 24px;
}
.page-help .c-help-archive_cat * + *::before {
  content: "";
  background-image: url(../images/common/icon_arrow_black.svg);
  background-size: contain;
  width: 5px;
  height: 8px;
  position: absolute;
  top: 5px;
  left: -14px;
}



/* ==============================================================
Layout / Style
================================================================= */

/* TOP - kv
------------------------------------------------------------*/
.page-help .help_top_kv {
  background: #eaf1fb;
  margin-top: 80px;
  padding: 24px 0;
}
.page-help .help_top_kv .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  /*max-width: 1120px;*/
  margin: 0 auto;
}
.page-help .help_top_kv .inner .title_wrap .title {
  font-size: 40px;
  line-height:1.2;
}
.page-help .help_top_kv .inner .title_wrap .subtxt {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  margin: 16px 0 0 0;
}

/* TOP - よくある質問
------------------------------------------------------------*/
.page-help .help_top_section-faq {
  width: 90%;
  max-width: 1120px;
  margin: 80px auto 100px;
}
.page-help .help_top_section-faq .faq-list_wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin: 40px auto 0;
  padding: 32px 72px;
  border: 2px solid #0f37ff;
  border-radius: 10px;
}
.page-help .help_top_section-faq .faq-list_wrap .c-listAcc--faq > *:last-child {
  border-bottom: none;
}


/* TOP - ヘルプトピックの閲覧
------------------------------------------------------------*/
.page-help .help_top_section-search {
  margin: 0 0 100px;
  padding: 100px 0;
  background-color: #f5f6fa;
}
.page-help .help_top_section-search .search-list_wrap {
  /* display: flex;
  justify-content: space-between;
  gap: 40px; */
  width: 90%;
  max-width: 1120px;
  margin: 40px auto 0;
}

/* 下層共通
------------------------------------------------------------*/
.page-help .help_under_kv {
  display: flex;
  justify-content: space-between;
  width: 90%;
  /*max-width: 1120px;*/
  margin: 104px auto 0;
}


/* 検索結果ページ / カテゴリーページ
------------------------------------------------------------*/
.page-help .help_archive_block {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}
.page-help .help_archive_block h1 {
  text-align: left;
  margin-top: 32px;
}
.page-help .help_archive_block p.txt_search-result {
  font-size: 16px;
  margin: 16px 0 64px;
}


/* 記事詳細テンプレート
------------------------------------------------------------*/
.page-help .c-help-detail {
  width: 90%;
  max-width: 950px;
  margin: 32px auto 100px;
  font-size: 16px;
  line-height: 1.75;
}

/* h1 */
.page-help .c-help-detail h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 56px;
  padding-bottom: 12px;
  border-bottom: 1px solid #141414;
}

/* h2 */
.page-help .c-help-detail h2 {
  color: #0f37ff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 56px;
  margin-bottom: 32px;
}

/* h3 */
.page-help .c-help-detail h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 56px;
  margin-bottom: 24px;
}

/* h4,h5,h6 */
.page-help .c-help-detail h4,
.page-help .c-help-detail h5,
.page-help .c-help-detail h6 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 48px;
  margin-bottom: 16px;
}

/* p */
.page-help .c-help-detail p {
  font-size: 16px;
  line-height: 1.75;
}
.page-help .c-help-detail p + p {
  margin-top: 24px;
}

/* strong */
.page-help .c-help-detail .green {
  color:#55974b;
}
.page-help .c-help-detail .pink {
  color: #ff1493;
}
.page-help .c-help-detail .underline {
  text-decoration: underline;
}
.page-help .c-help-detail .marker {
  font-weight: 700;
  background: linear-gradient(transparent 60%, #f9dc4b 60%);
}
.page-help .c-help-detail .icon {
  display: inline-block;
  margin-right: 8px;
  position: relative;
  top: 2px;
}

/* faq */
.page-help .c-help-detail .c-listAcc--faq {
  margin: 48px 0;
}

/* a */
.page-help .c-help-detail a {
  display: inline-block;
  color: #0f37ff;
  text-decoration: underline;
}
.page-help .c-help-detail a[target="_blank"] {
  position: relative;
  padding-right: 24px;
}
.page-help .c-help-detail a[target="_blank"]::after {
  content: "";
  background-image: url(../images/manual/icon_blank.svg);
  width: 14px;
  height: 14px;
  position: absolute;
  top: 8px;
  right: 5px;
}
.page-help .c-help-detail a:hover {
  text-decoration: none;
}

/* ul */
.page-help .c-help-detail ul.list {
  padding-left: 20px;
  margin: 40px 0;
}
.page-help .c-help-detail ul.list li {
  position: relative;
  padding-left: 18px;
}
.page-help .c-help-detail ul.list li + li {
  margin-top: 12px;
}
.page-help .c-help-detail ul.list li::before {
  content: "";
  background-color: #0f37ff;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 0;
}
.page-help .c-help-detail ul.list > li > * {
  margin: 16px 0 0 0;
  padding-left: 0;
}
.page-help .c-help-detail ul.list > li > ul.list li::before {
  background-color: #fff;
  border: 1px solid #0f37ff;
}

/* ol */
.page-help .c-help-detail ol.list {
  padding-left: 20px;
  margin: 40px 0;
  counter-reset: olNum;
}
.page-help .c-help-detail ol.list > li {
  position: relative;
  padding-left: 18px;
}
.page-help .c-help-detail ol.list > li + li {
  margin-top: 12px;
}
.page-help .c-help-detail ol.list > li::before {
  counter-increment: olNum;
  content: counter(olNum) ".";
  font-weight: 700;
  text-align: right;
  color: #0f37ff;
  position: absolute;
  right: calc(100% - 14px);
}
.page-help .c-help-detail ol.list > li > * {
  margin: 16px 0 0 0;
  padding-left: 0;
}

/* dl */
.page-help .c-help-detail dl {
  margin: 40px 0;
}
.page-help .c-help-detail dl > * {
  display: flex;
}
.page-help .c-help-detail dl > * + * {
  margin-top: 24px;
}
.page-help .c-help-detail dl dt {
  font-weight: 700;
  margin-right: 24px;
  width: 136px;
}
.page-help .c-help-detail dl dd {
  width: calc(100% - 136px);
}

/* image */
.page-help .c-help-detail .image {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 56px auto 56px 0;
}

.page-help .c-help-detail .image li {
  width: 400px;
  margin-bottom: 56px;
}
.page-help .c-help-detail .image a {
  display: block;
  width: 100%;
  height: 280px;
  background: #f5f6fa;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain !important;
  position: relative;
}
.page-help .c-help-detail .image a::after {
  content: "";
  display: block;
  background: url(../images/manual/icon_modal.svg) no-repeat left top;
  background-size: 100% auto;
  width: 22px;
  height: 22px;
  position: absolute;
  right: 10px;
  top: 10px;
}
.page-help .c-help-detail .image p.caption {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 4px;
}
.page-help .c-help-detail .image img {
  display: block;
  width: auto;
  max-width: 100%;
}

.page-help .c-help-detail .image04 {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin: 40px 0 80px;
}
.page-help .c-help-detail .image04 li {
  margin-bottom: 0;
}
.page-help .c-help-detail .image04 li h3 {
  width: 100%;
  max-width: 500px;
  margin-top: 0;
}
.page-help .c-help-detail .image04 li p {
  width: 100%;
  max-width: 500px;
}
.page-help .c-help-detail .image04 li > a {
  display: block;
  width: 400px;
  height: 280px;
  background:#f5f6fa;
  background-position:center center;
  background-repeat:no-repeat;
  background-size:contain !important;
  position:relative;
}
.page-help .c-help-detail .image04 li > a::after {
  content:"";
  display:block;
  background:url(../images/manual/icon_modal.svg) no-repeat left top;
  background-size:100% auto;
  width:22px;
  height:22px;
  position:absolute;
  right:10px;
  top:10px;
}

.modal {
  width: 90%;
  max-width: 1000px;
}
.modal .movie {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 91vh;
  text-align:center;
}
.modal .movie img {
  max-width: 100%;
}

/* tab-change */
.page-help .help_tab-btn__wrap {
  position: relative;
}
.page-help .help_tab-arrow {
  position: absolute;
  right: -10px;
  top: 50%;
  display: none;
  width: 20px;
  height: 20px;
  padding: 5px 7px 6px;
  background-color: #fff;
  border-radius: 50em;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16));
  transform: translateY(-50%);
  cursor: pointer;
}

.page-help .help_tab-btn {
  position: relative;
  display: inline-flex;
  max-width: 950px;
  gap: 10px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.page-help .help_tab-btn::-webkit-scrollbar {
  display: none;
}

.page-help .help_tab-btn li {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.875;
  white-space: nowrap;
  padding: 10px 20px;
  width: fit-content;
  color: #0f37ff;
  background-color: #fff;
  border: 1px solid #0f37ff;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
}

.page-help .help_tab-btn li:hover,
.page-help .help_tab-btn li.is-active {
  color: #fff;
  background-color: #0f37ff;
}

.page-help .help_tab-contents__wrap {
  border-top: 1px solid #0f37ff;
  border-bottom: 1px solid #0f37ff;
  margin: -1px 0 70px;
  padding: 40px 0 50px;
}

.page-help .help_tab-contents {
  display: none;
}

.page-help .help_tab-contents.is-active {
  display: block;
}

/* caution */
.page-help .c-help-detail .caution01,
.page-help .c-help-detail .caution02 {
  border: solid 1px #ff6600;
  margin: 40px 0;
  padding: 32px;
}
.page-help .c-help-detail .caution02 {
  border-color:#0f37ff;
}
.page-help .c-help-detail .caution01 p.ttl,
.page-help .c-help-detail .caution02 p.ttl {
  font-size: 18px;
  font-weight: 700;
  color: #ff6600;
  position: relative;
  margin-bottom: 12px;
  padding-left: 48px;
}
.page-help .c-help-detail .caution02 p.ttl {
  color:#0f37ff;
}
.page-help .c-help-detail .caution01 p.ttl::before,
.page-help .c-help-detail .caution02 p.ttl::before {
  content: "";
  display: block;
  background: url(../images/manual/icon_caution01.svg) no-repeat left top;
  background-size: 100% auto;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 0;
  left: 0;
}
.page-help .c-help-detail .caution02 p.ttl::before {
  background: url(../images/manual/icon_caution02.svg) no-repeat left top;
  background-size: 100% auto;
}
.page-help .c-help-detail .caution03 {
  font-size: 14px;
  padding-left: 16px;
  position: relative;
}
.page-help .c-help-detail .caution03 +.caution03 {
  margin-top: 10px;
}
.page-help .c-help-detail .caution03::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

/* other */
.page-help .c-help-detail hr {
  display: block;
  color: #0f37ff;
  background: #dbdbdb;
  border: none;
  height: 1px;
  margin: 56px 0;
}

.page-help .c-help-detail .bg-box {
  background-color: #f5f6fa;
  margin: 24px 0;
  padding: 32px;
}
.page-help .c-help-detail .bg-box > *:last-of-type {
  margin-bottom: 0;
}

/* 関連記事・戻るボタン */
.page-help .c-help-morelinks_container {
  width: 90%;
  max-width: 950px;
  margin: 0 auto 100px;
}
.page-help .c-help-morelinks {
  padding: 32px;
  margin-bottom: 64px;
  border-top: 1px solid #141414;
  border-bottom: 1px solid #141414;
}
.page-help .c-help-morelinks_title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.page-help .c-help-morelinks_list {
  padding-left: 20px;
}
.page-help .c-help-morelinks_list li {
  position: relative;
  font-size: 16px;
  padding-left: 20px;
}
.page-help .c-help-morelinks_list li + li {
  margin-top: 12px;
}
.page-help .c-help-morelinks_list li::before {
  content: "";
  background-color: #0f37ff;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 0;
}
.page-help .c-help-morelinks_list li a {
  color: #0f37ff;
  text-decoration: underline;
}
.page-help .c-help-morelinks_list li a:hover {
  text-decoration: none;
}
.page-help .c-help-morelinks_backBtn {
  width: 260px;
  margin: 0 auto;
}
.page-help .c-help-morelinks_backBtn .c-linkBtn::after {
  left: 16px;
  transform: translateY(-50%) rotate(180deg);
}



/* ==============================================================
mobile
================================================================= */

@media screen and (max-width: 768px) {
  /* ==============================================================
  Component
  ================================================================= */
  /* 検索窓
  ------------------------------------------------------------*/
  .page-help .c-help-search,
  .page-help .c-help-search--top {
    width: 100%;
  }
  .page-help .c-help-search_textarea {
    height: 48px;
  }

  /* アコーディオン①：よくある質問
  ------------------------------------------------------------*/
  .page-help .c-listAcc--faq {
    font-size: 14px;
  }
  .page-help .c-listAcc--faq .c-listAcc__item {
    padding: 16px 0 16px 8px;
  }
  .page-help .c-listAcc--faq .c-listAcc__item::before,
  .page-help .c-listAcc--faq .c-listAcc__item::after {
    top: 28px;
  }
  .page-help .c-listAcc--faq .c-listAcc__detail {
    margin-top: 20px;
  }

  /* アコーディオン②：やりたいことから探す
  ------------------------------------------------------------*/
  .page-help .c-listAcc--search{
    margin-bottom: 16px;
  }
  .page-help .c-listAcc--search + .c-listAcc--search {
    margin-top: 16px;
  }
  .page-help .c-listAcc--search .c-listAcc__item {
    margin-bottom: 16px;
  }
  .page-help .c-listAcc--search .c-listAcc__title {
    font-size: 18px;
    padding-left: 14px 60px 14px 24px;
  }
  .page-help .c-listAcc--search .c-listAcc__item::before,
  .page-help .c-listAcc--search .c-listAcc__item::after {
    top: 32px;
  }
  .page-help .c-listAcc--search .c-listAcc__detail {
    margin-top: 24px;
    padding-left: 24px;
  }

  /* 下層header下パンくず
  ------------------------------------------------------------*/
  .page-help .c-help-cat > * {
    font-size: 12px;
  }
  .page-help .c-help-cat > * + * {
    margin-left: 24px;
  }
  .page-help .c-help-cat > * + *::before {
    left: -14px;
  }


  /* 検索結果/カテゴリー別 記事一覧リスト
  ------------------------------------------------------------*/
  .page-help .c-help-archive {
    margin: 32px 0 80px;
  }
  .page-help .c-help-archive_item {
    padding: 24px 0;
  }
  .page-help .c-help-archive_item > a {
    font-size: 16px;
  }
  .page-help .c-help-archive_cat {
    margin-top: 8px;
  }


  /* ==============================================================
  Layout / Style
  ================================================================= */

  /* TOP - kv
  ------------------------------------------------------------*/
  .page-help .help_top_kv {
    margin-top: 19.6vw;
    padding-bottom: 32px;
  }
  .page-help .help_top_kv .inner {
    display: block;
  }
  .page-help .help_top_kv .inner .title_wrap {
    margin-bottom: 24px;
  }

  /* TOP - ヘルプトピックの閲覧
  ------------------------------------------------------------*/
  .page-help .help_top_section-search {
    margin: 0 0 80px;
  }
  .page-help .help_top_section-search .search-list_wrap {
    display: block;
    margin-top: 32px;
  }


  /* 下層共通
  ------------------------------------------------------------*/
  .page-help .help_under_kv {
    display: block;
    margin-top: 19.6vw;
  }
  .page-help .help_under_kv > * + * {
    margin-top: 32px;
  }


  /* 検索結果ページ / カテゴリーページ
  ------------------------------------------------------------*/
  .page-help .help_archive_block h1 {
    margin-top: 80px;
  }
  .page-help .help_archive_block p.txt_search-result {
    font-size: 14px;
    margin-bottom: 32px;
  }



  /* ==============================================================
  記事テンプレート
  ================================================================= */
  .page-help .c-help-detail {
    margin: 56px auto 80px;
    font-size: 14px;
  }

  /* h1 */
  .page-help .c-help-detail h1 {
    font-size: 20px;
    padding-bottom: 8px;
    margin-bottom: 40px;
  }

  /* h2 */
  .page-help .c-help-detail h2 {
    font-size: 18px;
    margin: 40px 0 24px;
  }

  /* h3 */
  .page-help .c-help-detail h3 {
    font-size: 18px;
    margin: 40px 0 16px;
  }

  /* h4,h5,h6 */
  .page-help .c-help-detail h4,
  .page-help .c-help-detail h5,
  .page-help .c-help-detail h6 {
    font-size: 16px;
    margin: 40px 0 16px;
  }

  /* p */
  .page-help .c-help-detail p {
    font-size: 14px;
  }
  .page-help .c-help-detail p + p {
    margin-top: 16px;
  }

  /* strong */
  .page-help .c-help-detail .icon {
    width: 72px;
  }

  /* faq */
  .page-help .c-help-detail .c-listAcc--faq {
    margin: 32px 0;
  }

  /* a */
  .page-help .c-help-detail a[target="_blank"]::after {
    top: 6px;
  }

  /* ul */
  .page-help .c-help-detail ul.list {
    padding-left: 12px;
    margin: 32px 0;
  }
  .page-help .c-help-detail ul.list li {
    padding-left: 16px;
  }
  .page-help .c-help-detail ul.list > li > * {
    margin: 12px 0 0 0;
  }

  /* ol */
  .page-help .c-help-detail ol.list {
    padding-left: 12px;
    margin: 32px 0;
  }
  .page-help .c-help-detail ol.list li {
    padding-left: 16px;
  }
  .page-help .c-help-detail ol.list > li > * {
    margin: 12px 0 0 0;
  }

  /* dl */
  .page-help .c-help-detail dl {
    margin: 32px 0;
  }
  .page-help .c-help-detail dl > * {
    display: block;
  }
  .page-help .c-help-detail dl dt {
    margin-bottom: 8px;
    width: 100%;
  }
  .page-help .c-help-detail dl dd {
    width: 100%;
  }

  /* image */
  .page-help .c-help-detail .image a {
    height: 240px;
  }

  .page-help .c-help-detail .image04 {
    display: block;
  }
  .page-help .c-help-detail .image04 li + li {
    margin-top: 24px;
  }
  .page-help .c-help-detail .image04 li > a {
    width: 100%;
  }

  /* tab-change */
  .page-help .help_tab-btn__wrap {
    width: 100vw;
    margin-left: -6.7vw;
  }

  .page-help .help_tab-arrow {
    display: none;
  }

  .page-help .help_tab-btn {
    max-width: 100%;
  }

  .page-help .help_tab-btn li {
    font-size: 3.73vw;
  }

  .page-help .help_tab-btn li:first-of-type {
    margin-left: 6.7vw;
  }

  .page-help .help_tab-btn li:last-of-type {
    margin-right: 6.7vw;
  }

  .page-help .help_tab-content__wrap {
    width: 100vw;
    margin: -1px -6.7vw 50px;
    padding: 30px 6.7vw 59px;
  }

  /* caution */
  .page-help .c-help-detail .caution01,
  .page-help .c-help-detail .caution02 {
    padding: 24px;
  }
  .page-help .c-help-detail .caution01 p.ttl,
  .page-help .c-help-detail .caution02 p.ttl {
    font-size: 16px;
    padding-left: 32px;
  }
  .page-help .c-help-detail .caution01 p.ttl::before,
  .page-help .c-help-detail .caution02 p.ttl::before {
    width: 24px;
    height: 24px;
    top: 2px;
  }
  .page-help .c-help-detail .caution03 {
    font-size: 12px;
    padding-left: 14px;
    position: relative;
  }
  .page-help .c-help-detail .caution03 +.caution03 {
    margin-top: 6px;
  }

  /* other */
  .page-help .c-help-detail hr {
    margin: 40px 0;
  }
  .page-help .c-help-detail .bg-box {
    padding: 24px;
  }

  /* 関連記事 */
  .page-help .c-help-morelinks {
    padding: 24px;
  }
  .page-help .c-help-morelinks_title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .page-help .c-help-morelinks_list {
    padding-left: 12px;
  }
  .page-help .c-help-morelinks_list li {
    font-size: 14px;
    padding-left: 16px;
  }
  .page-help .c-help-morelinks_list li::before {
    top: 7px;
  }

  /* 目次 */
  .page-help #ez-toc-container {
    display: none;
  }
}



/* 目次 */
.page-help #ez-toc-container {
  position: fixed;
  top: 104px;
  left: -240px;
  width: 288px;
  z-index: 10;
  cursor: pointer;
  transition: all 0.5s;
}
.page-help #ez-toc-container.active {
  left: 0;
}
.page-help #ez-toc-container .ez-toc-title-container {
  width: 48px;
  height: 160px;
  border-radius: 0px 8px 8px 0;
  background-color: #cee2ff;
  position: absolute;
  top: 0;
  right: 0;
}
.page-help #ez-toc-container .ez-toc-title-container .ez-toc-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 50px 14px 50px 10px;
}
.page-help #ez-toc-container .ez-toc-title-container .ez-toc-title-toggle {
  display: block !important;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.page-help #ez-toc-container a.ez-toc-toggle:after {
  content: "";
  display: block;
  background: url(../images/manual/icon_close.svg) no-repeat left top;
  background-size: contain;
  width: 7px;
  height: 12px;
  position: absolute;
  left: 17px;
  top: 24px;
  transition: all 0.3s;
}
.page-help #ez-toc-container.active a.ez-toc-toggle:after {
  transform: rotate(180deg);
}

.page-help #ez-toc-container .ez-toc-title-container {
  right: 0;
  transition: right 0.3s;
}

.page-help #ez-toc-container.active .ez-toc-title-container {
  right: -239px;
}

.page-help #ez-toc-container nav {
  background: #cee2ff;
  width: 480px;
  height: auto;
  max-height: 73vh;
  padding: 40px 24px;
  border-bottom-right-radius: 8px;
  position: relative;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.page-help #ez-toc-container nav::-webkit-scrollbar {
  display: none;
}
/*.page-help #ez-toc-container::after {*/
/*  content: "";*/
/*  background: linear-gradient(transparent 0%, #cee2ff 100%);*/
/*  width: 240px;*/
/*  height: 64px;*/
/*  border-bottom-right-radius: 8px;*/
/*  position: absolute;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*}*/
.page-help #ez-toc-container nav > ul > li > a:first-of-type {
  padding: 0;
}
.page-help #ez-toc-container ul li a {
  color: #141414 !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.57;
}
.page-help #ez-toc-container ul li a:after,
.page-help #ez-toc-container ul li ul li a:after {
  content: none;
}
