@charset "UTF-8";

/*　共通　*/
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1 {
  color: #242323;
  font-size: 20px;
  margin: 0 0 32px;
}

.backForward {
  position: absolute;
  padding: 16px 28px;
  font-size: 15px;
  width: 100%;
  border-top: 1px solid #eeeeee;
}

.backForward a {
  text-decoration: none;
}

a.prev {
  margin-right: 52px;
}

/*　--パンくず　*/
.breadcrumb {
  background-color: #eeeeee;
}

.breadcrumbWrap {
  display: flex;
  padding: 8px 24px;
  background-color: #eeeeee;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 990px;
}

.breadcrumbWrap li {
  position: relative;
  margin: 4px 0;
  padding: 0 0 0 16px;
  font-size: 13px;
}

.breadcrumbWrap li a {
  text-decoration: none;
}

.breadcrumbWrap li:first-child {
  padding: 0;
}

.breadcrumbWrap li::after {
  transform: rotate(45deg);
  top: calc(50% - 1px);
}

.breadcrumbWrap li::before {
  transform: rotate(-45deg);
  bottom: calc(50% - 1px);
}

.breadcrumbWrap li::after,
.breadcrumbWrap li::before {
  left: 9px;
}

.breadcrumbWrap li::before,
.breadcrumbWrap li::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  display: block;
  width: 1px;
  height: 6px;
  border-radius: 2px;
  background-color: #242323;
  transform-origin: 50% 50%;
}

.breadcrumbWrap li:first-child:before,
.breadcrumbWrap li:first-child:after {
  content: none;
}

.current {
  color: #3895ff;
}

/*　--ここまでパンくず　*/

.bold {
  font-weight: bold;
}

a {
  text-decoration: none;
  color: #3895ff;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
  font-size: 14px;
}

/* --改行させたいとき */
@media screen and (min-width: 414px) {
  .sp--br {
    display: none;
  }
}

@media screen and (min-width: 374px) {
  .sp--br--ip5 {
    display: none;
  }
}

/* --ここまで改行させたいとき */
/*　ここまで共通　*/

/*　アコーディオン　*/
.input--hide {
  display: none;
}

.categories__label {
  display: flex;
}

.common__category .categories__label,
.common__categories .categories__label,
.insurance__category .categories__label {
  display: flex;
  padding: 16px 4px 16px 0;
  border-top: 1px solid #eeeeee;
  font-size: 16px;
}

.common__category .categories__label:after,
.common__categories .categories__label:after,
.insurance__category .categories__label:after {
  content: url(https://s.yimg.jp/images/insurance/paypay/faq/img/arrowdown.svg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  height: 30px;
  transition: 0.5s;
}

.common__categories .categories__label:after {
  content: url(https://s.yimg.jp/images/insurance/paypay/faq/img/arrowright.svg);
}

.common__category .categories__label:before {
  width: 32px;
}

.common__category .categories__label:nth-of-type(1):before {
  content: url(https://s.yimg.jp/images/insurance/paypay/faq/img/account.svg);
}

.common__category .categories__label:nth-of-type(2):before {
  content: url(https://s.yimg.jp/images/insurance/paypay/faq/img/money.svg);
}

.common__category .categories__label:nth-of-type(3):before {
  content: url(https://s.yimg.jp/images/insurance/paypay/faq/img/contractchange.svg);
}

.common__category .categories__label:nth-of-type(4):before {
  content: url(https://s.yimg.jp/images/insurance/paypay/faq/img/phone.svg);
}

.common__category .categories__label:nth-of-type(5):before {
  content: url(https://s.yimg.jp/images/insurance/paypay/faq/img/myoffer.svg);
}

.insurance__category .categories__label:before {
  content: none;
}

.categories {
  height: 0;
  opacity: 0;
  transition: 0.2s;
  visibility: hidden;
}

.categories__label:last-of-type {
  border-bottom: 1px solid #eeeeee;
}

h1.categories__label:last-of-type {
  border-bottom: none;
}

.common__categories .categories__label:last-of-type {
  border-bottom: none;
}

.categories li {
  height: 36px;
  margin: 0;
}

.categories li a {
  display: block;
}

.input--hide:checked + .categories__label + .categories {
  height: auto;
  opacity: 1;
  padding: 8px 0;
  transition: 0.3s;
  visibility: visible;
}

.input--hide:checked + .categories__label:after {
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transition: 0.5s;
}

.input--hide:checked + .categories__label:last-of-type {
  border-bottom: none;
}

.input--hide:checked + .categories__label + .categories:last-of-type {
  border-bottom: 1px solid #eeeeee;
}

.common__categories .input--hide:checked + .categories__label:after {
  -moz-transform: none;
  -webkit-transform: none;
  -o-transform: none;
  -ms-transform: none;
}

.categories__label span:before,
.categories__label span:after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  display: block;
  width: 2px;
  height: 8px;
  border-radius: 2px;
  background-color: #bababa;
  transform-origin: 50% 50%;
  transition: 0.5s;
}

.categories__label span:after {
  transform: rotate(45deg);
  top: calc(50% - 4px);
  right: 8px;
}

.categories__label span:before {
  transform: rotate(-45deg);
  bottom: calc(50% - 4px);
  right: 13px;
}

.categories__label span {
  position: relative;
  width: 100%;
  display: block;
  padding: 0 12px 0 0;
}

/*　--サブカテゴリの記事一覧時の矢印 */
.common__categories .categories__label:after {
  -moz-transform: none;
  -webkit-transform: none;
  -o-transform: none;
  -ms-transform: none;
}

/*　--ここまでサブカテゴリの記事一覧時の矢印 */
/*　ここまでアコーディオン　*/

/*　FAQ　*/
.faq {
  padding: 24px 24px 0;
  font-family: Hiragino Sans;
  font-size: 16px;
  margin: 0 auto;
  max-width: 990px;
}

.insurance-conditions-list p,
.insurance-conditions-list li {
  color: #242323;
}

.faq p {
  font-size: 14px;
}

.faq .categories li {
  height: 36px;
}

.contact {
  font-size: 14px;
  color: #242323;
  height: calc(100vh - 55px);
}

.notes li {
  margin: 4px 0;
  color: #606060;
  font-size: 13px;
}

/* --お問い合わせ */

.unsolved--contact {
  text-align: center;
  margin: 32px 0 64px;
  padding-bottom: 20px;
  border-bottom: 2px solid #eeeeee;
}

.unsolved--contact p {
  font-size: 12px;
  color: #606060;
}

.button_white,
.button_blue {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  border: solid 1px #3895ff;
  box-sizing: border-box;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 12px auto;
  text-decoration: none;
  max-width: 678px;
}

.button_blue {
  background: #3895ff;
  margin: 16px auto;
  color: #fff;
}

/* --ここまでお問い合わせ */

.common__category {
  margin-bottom: 64px;
}

.common__categories {
  margin-bottom: 64px;
}

.insurance__category {
  font-size: 14px;
  margin-bottom: 64px;
}

.insurance__category h1,
.keyward__search h1 {
  color: #242323;
  font-size: 16px;
  margin: 20px 0 32px;
}

.keyward__search {
  margin-bottom: 42px;
}

.keyward__items {
  color: #909090;
  display: flex;
  flex-wrap: wrap;
}

.keyward__search p {
  font-weight: bold;
  font-size: 14px;
  line-height: 32px;
  width: 113px;
  height: 32px;
  border: 1px solid #bababa;
  border-radius: 17px;
  margin: 6px 12px 6px 0;
  text-align: center;
}

/*ここまでFAQ　*/

/*　point　*/

.point {
  color: #242323;
  padding: 0 24px;
  font-family: Hiragino Sans;
  margin: 84px auto 0;
  max-width: 990px;
}

.point p,
.point li {
  font-size: 14px;
  color: #606060;
  margin: 8px 0;
}

.point h1 {
  line-height: 1;
  margin: 16px 0;
  font-size: 20px;
}

.point.insurance-conditions-list {
  margin-top: 72px;
}

.point > section > h1 {
  font-size: 16px;
  margin: 32px 0;
}

.point > section > section > h1 {
  font-size: 14px;
  margin: 16px 0 12px;
}

.point .subheading__horizontal--line {
  border-top: 1px solid #eeeeee;
  padding-top: 16px;
}

.point > section > section > h1.subheading__horizontal--line {
  border-top: 1px solid #eeeeee;
  padding-top: 32px;
}

.point li {
  list-style-type: disc;
  list-style-position: inside;
}

.point .list--width li {
  margin: 8px 0;
}

.point .main__visual {
  margin: 16px 0;
}

.point .main__visual img {
  width: 100%;
}

.point .attention {
  font-size: 13px;
}

.point .list-area {
  padding: 4px 12px;
  background-color: #F7F7F7;
  border-radius: 8px;
}

/*　ここまでpoint　*/

/* point-list */

.point-list__table {
  background-color: #e6e6e6;
  margin: 16px 0 32px;
  display: flex;
  flex-wrap: wrap;
  min-width: 270px;
  max-width: 99%;
}

.point-list__table dt,
.point-list__table dd {
  margin: 1px 0 0 0;
  width: calc(60% - 1px);
  font-size: 11px;
  display: flex;
  min-height: 40px;
  align-items: center;
  background-color: #fff;
}

.point-list__table dt:last-of-type,
.point-list__table dd:last-of-type {
  margin-bottom: 1px;
}

.point-list__table .list--heading {
  background-color: #e6e6e6;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  width: calc(40% - 1px);
}

.point-list__table dd.list--heading {
  border-left: solid 1px #fff;
  width: 60%;
}

.point-list__table dt {
  margin-left: 0;
  margin-right: 1px;
  padding: 12px 0;
  width: 40%;
  font-weight: bold;
}

.point-list__table dd {
  justify-content: center;
  padding: 12px 40px;
}

.point-list__table a:before {
  content: "";
  padding-right: 28px;
  width: 28px;
  height: 24px;
  background: no-repeat
    url("../images/PDF.svg");
}

.point-list__table a {
  display: flex;
  min-width: 96px;
  align-items: center;
}

.point-list__table a span {
  font-size: 10px;
  display: contents;
}

.contentsWrapper {
  color: #242323;
  padding: 0 24px;
  margin: 48px auto 0;
  max-width: 990px;
  flex-grow: 1;
}

@media screen and (min-width: 768px) {
  .contentsWrapper {
    width: 990px;
  }
}

.heading {
  font-size: 20px;
  margin: 0;
}

.overview {
  font-size: 14px;
  color: #606060;
  margin-top: 16px;
}

.pdfTable {
  width: 100%;
  margin-top: 16px;
}

.pdfTable__cell {
  padding: 12px;
}

.pdfTable__row {
  border-bottom: 1px solid #e6e6e6;
}

.pdfTable__theadProduct,
.pdfTable__theadPdf {
  font-size: 12px;
  font-weight: bold;
  background-color: #e6e6e6;
}

.pdfTable__theadProduct {
  width: 40%;
}

.pdfTable__theadPdf {
  width: 60%;
  border-left: 1px solid #fff;
}

.pdfTable__productCell {
  width: 40%;
  font-size: 11px;
  font-weight: bold;
}

.pdfTable__pdfCell {
  border-left: 1px solid #e6e6e6;
}

.pdfTable__anchor {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pdfTable__anchor::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  padding-right: 24px;
  margin-right: 4px;
  background: no-repeat
    url("../images/PDF.svg");

}

.pdfTable__pdfTextContainer {
  display: flex;
  flex-direction: column;
}

.pdfTable__pdfTextDate {
  font-size: 10px;
  color: #242323;
}

/* --一つのカラムに複数行入る場合 */
.point-list__table .plurality--rows {
  background-color: #e6e6e6;
  margin: 0;
  padding: 0;
}

.plurality--rows ul {
  padding: 1px 0 0 0;
  width: 100%;
}

.plurality--rows li {
  font-size: 11px;
  text-align: center;
  display: flex;
  min-height: 40px;
  min-width: 33px;
  margin: 0 0 1px 0;
  padding: 12px 40px;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  list-style: none;
}

.plurality--rows li:last-child {
  margin: 0;
}

/* --ここまで一つのカラムに複数行入る場合 */
/* ここまでpoint-list */

/* 承認番号 */
.approval__box {
  background: #f7f7f7;
  padding: 24px 16px;
  text-align: center;
}

.approval__number {
  color: #606060;
  font-size: 12px;
  line-height: 1.5;
}

.approval__agency,
.approval__product {
  margin-top: 8px;
  color: #909090;
  font-size: 11px;
  line-height: 1.45;
}

/* ここまで承認番号 */

/* 企業概要、勧誘方針、利用規約、プライバシー・ポリシー　*/
.corporateInfo {
  min-width: 320px;
  max-width: 770px;
  margin: 0 auto;
  font-size: 16px;
  padding: 32px 24px;
}

.corporateInfo p {
  color: #606060;
}

.corporateInfo h1 {
  margin-bottom: 32px;
  text-align: left;
  font-size: 20px;
}

.corporateInfo h1:after {
  content: none;
}

.corporateInfo__text {
  font-size: 12px;
  font-weight: normal;
}

.right {
  text-align: right;
  margin: 4px;
}

.note {
  display: block;
  background-color: #e6e6e6;
  padding: 8px;
  margin: 8px 0;
}

.note h1,
.simple .note p {
  margin: 0;
  font-size: 14px;
}

.corporateInfo dt,
.corporateInfo dd {
  padding: 8px;
  box-sizing: border-box;
  border-right: 1px solid #8ae7e7;
  border-bottom: 1px solid #8ae7e7;
}

.corporateInfo dt {
  background-color: #dff7f7;
  font-weight: bold;
}

.corporateInfo dd {
  color: #606060;
}

.corporateInformation,
.corporatePhilosophy,
.solicitationPolicy,
.privacyPolicy,
.terms {
  background-color: #fff;
  border-top: 1px solid #8ae7e7;
  border-left: 1px solid #8ae7e7;
  width: 100%;
}

.corporateInformation {
  display: flex;
  flex-wrap: wrap;
}

.corporateInformation dt {
  width: 30%;
  text-align: center;
}

.corporateInformation dd {
  width: 70%;
}

.corporatePhilosophy dt {
  text-align: center;
}

.solicitationPolicy dd {
  border-top: none;
  border-bottom: none;
}

.solicitationPolicy dd:last-of-type {
  border-bottom: 1px solid #8ae7e7;
}

.solicitationPolicy__inner {
  display: block;
  margin: 8px;
  padding-top: 8px;
  border-top: 1px solid #606060;
}

/* --プライバシー・ポリシー　*/
.simple {
  counter-reset: li;
  margin: 16px 0;
}

.simple p {
  margin: 8px 0;
}

.corporateInfo .simple dt {
  background-color: #fff;
  color: #232323;
  border-right: none;
  border-bottom: 1px solid #eeeeee;
  display: inline;
}

.simple > dt:before {
  font-weight: bold;
  counter-increment: li;
  content: counter(li);
  padding-bottom: 4px;
  border-bottom: 1px solid #eeeeee;
  color: #232323;
}

.corporateInfo .simple dt {
  padding: 0 0 4px 0;
}

.corporateInfo .simple dd {
  padding: 0;
}

.corporateInfo .simple dd {
  border: none;
}

.parenthesis p {
  font-weight: normal;
  list-style-type: none;
  counter-increment: cnt;
  margin: 8px;
  border: none;
}

.parenthesis p:before {
  content: ' ("counter(cnt) ") ';
}

.commissionedLinks {
  list-style-type: disc;
  padding-left: 8px;
  margin: 8px;
  font-weight: normal;
}

.commissionedLinks p {
  margin: 0;
}

/* ----privacyPolicy__table */

.privacyPolicy__table {
  margin: 8px 0;
  font-weight: normal;
  font-size: 12px;
  word-break: break-all;
  color: #606060;
  border: solid 1px #fff;
}

.privacyPolicy__table th {
  background-color: #e6e6e6;
  padding: 4px;
  text-align: left;
  font-size: 16px;
}

.privacyPolicy__table td {
  padding: 4px;
  background-color: #e6e6e6;
  border: solid 1px #fff;
  font-size: 11px;
  vertical-align: top;
}

.privacyPolicy__table td:first-child {
  width: 30%;
}

/* ----ここまでprivacyPolicy__table */
/* --ここまで プライバシー・ポリシー　*/

/* --利用規約　*/

.terms__table {
  margin: 16px 0;
  border: 1px solid #8ae7e7;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 8px;
}

.terms__table dl {
  padding: 8px 0px 8px 28px;
  border-bottom: 1px solid #dff7f7;
}

.terms__table dl:last-of-type {
  border: none;
}

@media screen and (max-width: 767px) {
  .terms__table {
    justify-content: center;
  }

  .terms__table dl {
    flex-direction: column;
  }

  .terms__table:after {
    content: "";
    display: block;
    width: 238.6px;
    height: 0;
  }
}

@media screen and (min-width: 768px) {
  .terms__table dl:nth-last-of-type(-n + 3) {
    border: none;
  }
}

.terms__table .list--heading {
  display: block;
  background-color: #dff7f7;
  padding: 8px;
  margin: 0;
  font-size: 14px;
  color: #606060;
  font-weight: bold;
  width: 100%;
}

.terms__table dt,
.terms__table dd {
  border: none;
  font-weight: normal;
  padding: 4px 4px 4px 28px;
}

.terms__table dt {
  padding-top: 12px;
}

.terms__table dd span {
  color: #bcbcbc;
}

.terms__table--inner {
  width: 238.6px;
}

/* --ここまで利用規約　*/
/* ここまで企業概要、勧誘方針、利用規約、プライバシー・ポリシー　*/
