/* ====== Base ====== */
:root {
  --max-width-1200: 1200px;
  --max-width-1000: 1000px;
  --baseFontColor: #333;
  --subFontColor: #555;
  --subLinkColor: #c02;
  --mainColor: #e60027;
  --whiteColor: #fff;
  --greenColor: #549b35;
  --yellowColor: #fff100;
  --orangeColor: #ff7c4b;
  --blueColor: #494a8b;
  --headerBg: #e5e5e5;
  --boxBg: #fff2f4;
}
.page-allFree {
  margin-bottom: 100px;
  padding: 0 15px;
  color: var(--baseFontColor);
}

@media screen and (max-width: 768px) {
  .page-allFree {
    margin-bottom: 50px;
  }
}
.page-allFree h1, .page-allFree h2, .page-allFree h3, .page-allFree h4 {
  margin: 0;
  padding: 0;
}
.page-allFree picture, .page-allFree img {display: block;}
.page-allFree strong {
  font-weight: bold;
  color: var(--mainColor);
}
.page-allFree em {
  font-weight: bold;
  font-style: normal;
}
.page-allFree a[href] {
  transition: .3s ease;
}
.page-allFree a[href]:hover {
  text-decoration: none;
  opacity: .8;
}


/* ====== Header ====== */
.page-allFree .header {
  margin: 0 -15px;
  padding: 20px 15px;
  background-color: var(--headerBg);
}
.page-allFree .hdg-lv1 {
  margin: 0 auto;
  max-width: var(--max-width-1200);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .page-allFree .header {
    padding: 10px 15px;
  }
  .page-allFree .hdg-lv1 {
    font-size: 12px;
  }
}


/* ====== Section ====== */
.page-allFree .sec {
  margin: 60px auto 0;
  max-width: var(--max-width-1200);
}

.page-allFree .sec-nest,
.page-allFree .article-terms {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-width-1000);
}

.page-allFree .sec-nest {margin-top: 60px;}

@media screen and (max-width: 768px) {
  .page-allFree .sec {
    margin-top: 30px;
  }
  .page-allFree .sec-nest {margin-top: 40px;}
}


/* ====== Heading ====== */
.page-allFree .hdg-lv2 {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: .05em;
  text-align: center;
  color: var(--subFontColor);
}

.page-allFree .hdg-lv3 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: var(--subFontColor);
}

@media screen and (max-width: 768px) {
  .page-allFree .hdg-lv2 {
    font-size: 22px;
  }
  
  .page-allFree .hdg-lv3 {
    font-size: 16px;
  }
}


/* ====== MV / Bnr ====== */
.page-allFree .area-mv {margin-top: 30px;}
.page-allFree .area-bnr {
  margin: 60px auto 0;
  max-width: var(--max-width-1000);
}

@media screen and (max-width: 768px) {
  .page-allFree .area-mv {
    margin: 15px -15px 0;
  }
  .page-allFree .area-bnr {margin-top: 40px;}
}


/* ====== Box ====== */
.page-allFree .box-caution {
  margin: 20px 0 0;
  padding: 30px 40px;
  border: 4px solid var(--mainColor);
  border-radius: 5px;
  background-color: var(--boxBg);
}
.page-allFree .txt-caution {
  font-size: 16px;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .page-allFree .box-caution {
    padding: 20px 10px;
    border-width: 3px;
  }
  .page-allFree .txt-caution {
    font-size: 14px;
  }
}


/* ====== List ====== */
.page-allFree .list-disc-item {
  padding-left: 1.2em;
  position: relative;
}
.page-allFree .list-disc-item::before {
  position: absolute;
  content: "";
  left: 0;
  margin-top: 10px;
  width: 8px;
  height: 8px;
  display: inline-block;
  background-color: var(--greenColor);
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .page-allFree .list-disc-item::before {
    margin-top: 8px;
    width: 5px;
    height: 5px;
  }
}


/* ====== Note ====== */
.page-allFree .txt-note {
  display: table;
  width: 100%;
}
.page-allFree .txt-note .ast,
.page-allFree .txt-note .txt {
  display: table-cell;
  vertical-align: top;
}
.page-allFree .txt-note .ast {white-space: pre;}
.page-allFree .txt-note .txt {width: 100%;}


/* ====== Button ====== */
.page-allFree .linkBtn-main-anc {
  padding: 20px 10px 25px;
  display: block;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  color: var(--whiteColor);
  border-radius: 5px;
  background-color: var(--mainColor);
}
.page-allFree .linkBtn-main-anc .note {
  margin-top: 5px;
  display: block;
  font-size: 14px;
  font-weight: normal;
}

.page-allFree .sec > .linkBtn-main {
  margin: 60px auto 0;
  max-width: var(--max-width-1000);
}

@media screen and (max-width: 768px) {
  .page-allFree .linkBtn-main-anc {
    padding: 20px 10px;
    font-size: 20px;
  }
  .page-allFree .linkBtn-main-anc .note {
    font-size: 11px;
    letter-spacing: -.05em;
  }
  
  .page-allFree .sec > .linkBtn-main {
    margin: 30px auto 0;
  }
}


/* ====== How to Buy ====== */
.page-allFree .howToBuy {
  margin: 40px 0 0;
  display: flex;
}
.page-allFree .howToBuy.alStart {
  align-items: flex-start;
}
.page-allFree .howToBuy-item {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  border: 2px solid var(--greenColor);
  border-radius: 10px;
  overflow: hidden;
}
.page-allFree .howToBuy-item + .howToBuy-item {margin-left: 30px;}

.page-allFree .hdg-howToBuy {
  padding: 18px 30px;
  display: flex;
  align-items: center;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  color: var(--yellowColor);
  border-radius: 5px 5px 0 0;
  background-color: var(--greenColor);
}
.page-allFree .hdg-howToBuy .label {
  margin-right: 20px;
  padding: 10px 15px 6px;
  display: inline-block;
  font-size: 20px;
  color: var(--greenColor);
  border-radius: 5px;
  background-color: var(--yellowColor);
}
.page-allFree .contents-howToBuy {
  padding: 30px 30px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
  background-color: var(--whiteColor);
}

@media screen and (max-width: 768px) {
  .page-allFree .howToBuy {
    display: block;
  }
  .page-allFree .howToBuy-item {
    width: 100%;
    display: block;
    border-radius: 5px;
  }
  .page-allFree .howToBuy-item + .howToBuy-item {margin: 30px 0 0;}

  .page-allFree .hdg-howToBuy {
    padding: 15px 10px;
    justify-content: center;
    font-size: 20px;
    border-radius: 0;
  }
  .page-allFree .hdg-howToBuy .label {
    margin-right: 10px;
    padding: 8px 10px;
    font-size: 16px;
  }
  .page-allFree .contents-howToBuy {
    padding: 30px 10px;
    display: block;
    font-size: 13px;
  }
}


/* shopBuy */
.page-allFree .lyt-shopBuy {
  margin: 30px 0 0;
  display: flex;
  justify-content: space-between;
}
.page-allFree .lyt-shopBuy-img {
  margin-right: 15px;
  width: 150px;
}
.page-allFree .lyt-shopBuy-link {
  width: calc(100% - 165px);
}
.page-allFree .lyt-shopBuy-anc {
  display: block;
}
.page-allFree .lyt-shopBuy-anc + .lyt-shopBuy-anc {margin-top: 22px;}

.page-allFree .link-shopBuy {
  margin: 30px 0 0;
  text-align: center;
}
.page-allFree .link-shopBuy-anc {display: inline-block;}
.page-allFree .note-shopBuy {
  font-size: 14px;
}
.page-allFree .note-shopBuy + .note-shopBuy {
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .page-allFree .lyt-shopBuy {
    margin-top: 20px;
  }
  .page-allFree .lyt-shopBuy-img {
    margin-right: 10px;
    width: 120px;
  }
  .page-allFree .lyt-shopBuy-link {
    width: calc(100% - 130px);
  }
  .page-allFree .lyt-shopBuy-anc + .lyt-shopBuy-anc {margin-top: 16px;}

  .page-allFree .link-shopBuy {
    margin-top: 20px;
  }
  .page-allFree .note-shopBuy {
    font-size: 11px;
  }
}

/* netBuy */
.page-allFree .ttl-netBuy {
  padding: 10px 0;
  text-align: center;
  border: 2px solid var(--mainColor);
  border-radius: 5px;
}
.page-allFree .ttl-netBuy-main {
  padding-left: 90px;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
  color: var(--mainColor);
  position: relative;
}
.page-allFree .ttl-netBuy-main::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 10px;
  z-index: 1;
  width: 80px;
  height: 72px;
  background: url(../../../../img/usr/freepage/landing111o/title.png) no-repeat center / contain;
  transform: translateY(-50%);
}
.page-allFree .ttl-netBuy-main .subttl {
  display: block;
  font-size: 19px;
}
.page-allFree .ttl-netBuy-note {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
.page-allFree .linkSimple-netBuy {
  margin: 20px 0 0;
  font-size: 16px;
  text-align: center;
}
.page-allFree .linkSimple-netBuy-anc {
  display: inline-block;
  font-weight: bold;
  text-decoration: underline;
  color: var(--subLinkColor);
}
.page-allFree .howToBuy .txt-note {
  margin-top: 20px;
  line-height: 1.5;
  letter-spacing: .05em;
  color: var(--blueColor);
}
.page-allFree .howToBuy .txt-note .ast {font-weight: bold;}
.page-allFree .howToBuy .linkBtn-main {margin-top: 20px;}

@media screen and (max-width: 768px) {
  .page-allFree .ttl-netBuy-main {
    font-size: 20px;
  }
  .page-allFree .ttl-netBuy-main .subttl {
    font-size: 15px;
  }
  .page-allFree .ttl-netBuy-note {
    margin-top: 20px;
    font-size: 12px;
  }
  .page-allFree .linkSimple-netBuy {
    margin: 10px 0 0;
    font-size: 15px;
  }
  .page-allFree .howToBuy .txt-note {
    font-size: 15px;
  }
}

/* ====== Contact ====== */
.page-allFree .dl-contact {
  margin-top: 40px;
}
.page-allFree .dl-contact-item + .dl-contact-item {
  margin-top: 30px;
}
.page-allFree .dl-contact-ttl {
  font-size: 20px;
  font-weight: bold;
}
.page-allFree .dl-contact-desc {
  margin: 10px 0 0 1em;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .page-allFree .dl-contact {
    margin-top: 20px;
  }
  .page-allFree .dl-contact-item + .dl-contact-item {
    margin-top: 20px;
  }
  .page-allFree .dl-contact-ttl {
    font-size: 15px;
  }
  .page-allFree .dl-contact-desc {
    margin: 5px 0 0;
    font-size: 13px;
  }
}


/* ====== Terms ====== */
.page-allFree .article-terms {
  margin-top: 80px;
  padding: 50px 40px;
  border: 3px solid var(--orangeColor);
}
.page-allFree .hdg-article {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}
.page-allFree .terms-date {
  margin-top: 30px;
  font-size: 14px;
  text-align: right;
}
.page-allFree .terms-content {margin-top: 50px;}
.page-allFree .sec-terms + .sec-terms {margin-top: 40px;}
.page-allFree .hdg-terms {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: .08em;
}
.page-allFree .txt-terms {
  margin: 15px 0 0 1em;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: .05em;
}

.page-allFree .dl-list-item + .dl-list-item {margin-top: 30px;}
.page-allFree .dl-list-ttl {
  font-size: 18px;
  font-weight: bold;
}
.page-allFree .dl-list-desc {
  margin-top: 10px;
}

.page-allFree .list-mark {
  display: table;
  width: 100%;
}
.page-allFree .list-mark-item {
  display: table-row;
}
.page-allFree .list-mark-mrk,
.page-allFree .list-mark-txt {
  display: table-cell;
  vertical-align: top;
}
.page-allFree .list-mark-mrk {
  padding-right: 3px;
  white-space: pre;
}
.page-allFree .list-mark-txt {
  padding-bottom: 30px;
  width: 100%;
  font-size: 100%;
}
.page-allFree .list-mark-item:last-child .list-mark-txt {
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  .page-allFree .article-terms {
    margin-top: 50px;
    padding: 40px 10px;
    border-width: 2px;
  }
  .page-allFree .hdg-article {
    font-size: 20px;
  }
  .page-allFree .terms-date {
    margin-top: 20px;
  }
  .page-allFree .terms-content {margin-top: 40px;}
  .page-allFree .sec-terms + .sec-terms {margin-top: 30px;}
  .page-allFree .hdg-terms {
    font-size: 16px;
  }
  .page-allFree .txt-terms {
    margin: 10px 0 0 1em;
    font-size: 14px;
  }

  .page-allFree .dl-list-item + .dl-list-item {margin-top: 20px;}
  .page-allFree .dl-list-ttl {
    font-size: 15px;
  }
  .page-allFree .dl-list-desc {
    margin-top: 5px;
  }

  .page-allFree .list-mark-txt {
    padding-bottom: 10px;
  }
  .page-allFree .list-mark-item:last-child .list-mark-txt {
    padding-bottom: 0;
  }
}
/* Pass */
.block-access-restriction {
  position: relative;
}
.block-access-restriction::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: .3s linear;
}
.block-access-restriction.is-checked::after {
  z-index: -100;
  background-color: transparent;
}

/* Link */
.howToBuy-pdfLink > a {
  padding: 10px 20px 7px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  font-size: 20px;
  font-weight: bold;
  color: var(--whiteColor);
  border-radius: 5px;
  background: var(--mainColor);
  position: relative;
}
.howToBuy-pdfLink > a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--whiteColor);
  border-right: 3px solid var(--whiteColor);
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width: 768px) {
  .howToBuy-pdfLink > a {
    min-height: 50px;
    font-size: 15px;
  }
  .howToBuy-pdfLink > a::after {
    right: 20px;
    width: 10px;
    height: 10px;
    border-width: 2px;
  }
}