@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@300&family=Barlow:wght@300;500;700&display=swap");

/* ------------------------------------------------------------

------------------------------------------------------------ */
body {
  color: #4d4d4d;
}
.row {
  max-width: 960px;
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  .row {
    padding: 0 15px;
  }
}

article {
  background-color: #f3f8fd;
  padding-top: 35px;
}
article section {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  article {
    padding-top: 20px;
  }
}
.intextlink {
  text-decoration: underline;
}

.notes {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 10px;
  letter-spacing: 0.15em;
}
.notes.dot {
  text-indent: -0.5em;
  padding-left: 0.5em;
}
.notes > li:before {
  content: "※";
}
.notes.dot > li {
  padding-left: 1em;
}
.notes.dot > li:before {
  content: "・";
}

.dot_list > li {
  text-indent: -1em;
  padding-left: 1em;
}
.dot_list > li:before {
  content: "●";
}

.square_list > li {
  text-indent: -1em;
  padding-left: 1em;
}
.square_list > li:before {
  content: "■";
}

.number_list {
  counter-reset: number;
}
.number_list > li {
  text-indent: -1.3em;
  padding-left: 1.3em;
}
.number_list > li:before {
  counter-increment: number;
  content: "(" counter(number) ")";
}

.headline {
  text-align: center;
}
.headline .lead {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 0.5em;
}
.headline_title {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.headline_title .large {
  font-style: normal;
  font-size: 38px;
}
.headline .notes {
  padding-top: 0.5em;
}
@media only screen and (max-width: 767px) {
  .headline .lead {
    font-size: 12px;
  }
  .headline_title {
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}

/* ------------------------------------------------------------

------------------------------------------------------------ */
.site-header .masthead {
  background-color: #fff;
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
}
.footer {
  padding: 60px 60px 100px;
}
.footer__company,
.footer__nav {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 20px 10px 100px;
  }
}

/* ------------------------------------------------------------

------------------------------------------------------------ */
.js-switch_card,
.js-switch_card2,
.change_card {
  display: none;
}
.hide {
  opacity: 0;
  width: 0 !important;
  height: 0 !important;
}

.card_type_block.active,
.js-switch_card.is-active,
.js-switch_card2.is-active,
.section-add_card .content.show,
.change_card.is-active {
  display: block;
  animation: fade 0.5s ease;
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* .selected_result {
  display: none;
}
.selected_result.is-active {
  display: block;
} */
@media only screen and (max-width: 767px) {
  .selected_result {
    border: 1px solid #f2f2f2;
  }
}

/* ------------------------------------------------------------
card_type_list
------------------------------------------------------------ */
.card_type_list {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid #004097;
  padding: 0 20px;
}
.card_type_list .tab {
  width: 49.5%;
  text-align: center;
  background-color: #004097;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 15px 10px;
  letter-spacing: 0.15em;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  opacity: 0.3;
}
.card_type_list .tab.active {
  opacity: 1;
  pointer-events: none;
}
.card_type_list .tab:hover {
  cursor: pointer;
}
.card_type_block_in .card_list {
  padding: 15px 0 20px;
}
.card_type_block_in .card_list .js-card-trigger {
  cursor: pointer;
}
.card_type_block_in .card_list .js-card-trigger .card {
  text-align: center;
  padding: 10px;
}
.card_type_block_in .card_list .js-card-trigger .card img {
  width: 110px;
  /* padding-top: 20px; */
}
.card_type_block_in .card_list .js-card-trigger.is-active .card {
  /* width: 120px;
  filter: drop-shadow(0px 4px 6px rgba(76, 91, 102, 0.6));
  padding-top: 14px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 2px rgb(0 64 151 / 60%); */
  box-shadow: 0px 0px 10px 2px rgb(0 64 151 / 60%);
  border-radius: 10px;
}
.card_type_block_in .card_list .js-card-trigger .card figcaption {
  font-size: 10px;
  line-height: 1.3;
  font-weight: 400;
  padding-top: 15px;
}
.card_type_block_in .card_list .js-card-trigger .notes {
  padding-top: 0.5em;
  letter-spacing: 0.05em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .card_type_block_in .card_list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .card_type_block_in .card_list .js-card-trigger {
    width: 20%;
  }
}
@media only screen and (max-width: 767px) {
  .card_type_list {
    padding: 0 10px;
  }
  .card_type_list .tab {
    width: 49%;
    font-size: 15px;
    padding: 10px;
  }
  .card_type_block_in .card_list {
    padding: 20px 0;
  }
  .card_type_block_in .card_list .js-card-trigger {
    padding: 0;
  }
  .card_type_block_in .card_list .js-card-trigger .card {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .card_type_block_in .card_list .js-card-trigger .card img {
    width: 60px;
    padding: 0;
    margin-right: 15px;
  }
  .card_type_block_in .card_list .js-card-trigger.is-active .card img {
    width: 80px;
  }
  .card_type_block_in .card_list .js-card-trigger .card figcaption {
    padding-top: 0;
    font-size: 12px;
    font-weight: 500;
  }
}

/* ------------------------------------------------------------
selected_area
------------------------------------------------------------ */
.selected_area .selected_title {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  background-color: #f2f2f2;
  padding: 25px;
  position: relative;
}
.selected_area .selected_title .card_thum {
  position: absolute;
  width: 66px;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
}
.selected_area .selected_title .small {
  font-size: 12px;
}
.selected_area .notes {
  width: 725px;
  max-width: 100%;
  margin: 0 auto;
}
.selected_area .notes span {
  display: none;
}
.selected_area .notes span.is-active {
  display: inline;
}
@media only screen and (max-width: 767px) {
  .selected_area .selected_title {
    padding: 15px 10px 15px 70px;
    font-size: 13px;
  }
  .selected_area .selected_title .small {
    font-size: 10px;
  }
  .selected_area .selected_title.on-rose-switch {
    padding: 15px 10px;
  }
  .selected_area .selected_title .card_thum {
    left: 10px;
    width: 50px;
  }
  .selected_area .notes {
    margin: 0 auto;
    padding-left: calc(10px + 1em);
    padding-right: 10px;
    padding-bottom: 25px;
  }
}

/* ------------------------------------------------------------
incentive_box
------------------------------------------------------------ */
.incentive_box {
  padding: 0 10px 25px;
}
.incentive_box .item {
  padding: 45px 15px 15px;
}
@media only screen and (min-width: 768px) {
  .incentive_box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .incentive_box .item {
    display: flex;
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .incentive_box .item {
    padding: 40px 0 0;
  }
}

.incentive_box .item .target {
  background-color: #f2f2f2;
  padding: 10px;
  text-align: center;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.incentive_box .item .target img {
  height: 60px;
  min-height: 60px;
}
.incentive_box .item .target figcaption {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  padding: 5px 0 0;
}
@media only screen and (min-width: 768px) {
  .incentive_box .item .target img,
  .incentive_box .item .target figcaption {
    position: relative;
    bottom: 10px;
    left: 0;
  }
  @media all and (-ms-high-contrast: none) {
    .incentive_box .item .target img,
    .incentive_box .item .target figcaption {
      bottom: 20px;
    }
  }
}
@media only screen and (min-width: 768px) {
  .incentive_box .item .target {
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .incentive_box .item .target {
    width: 100%;
    height: 40px;
    display: flex;
  }
  .incentive_box .item .target figcaption {
    font-size: 17px;
    padding: 5px 0;
  }
  .incentive_box .item .target img {
    width: 35px;
    position: relative;
    left: -15px;
    top: -10px;
  }
}

.incentive_box .item .incentive {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.incentive_box .item .incentive .incentive_txt {
  line-height: 1;
}
.incentive_box .item .incentive .incentive_txt .small {
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
  line-height: 1.3;
}
.incentive_box .item .incentive .incentive_txt .large {
  font-family: "Barlow", sans-serif;
  font-size: 54px;
  color: #000;
  font-weight: 700;
  letter-spacing: 0;
  padding-right: 5px;
  display: inline-block;
}
.incentive_box .item .incentive .incentive_items {
  width: 100%;
  line-height: 1;
  background-color: #faf4f6;
  color: #000;
  padding-bottom: 15px;
  padding-right: 10px;
  padding-left: 20px;
  margin-top: 20px;
  position: relative;
}
.incentive_box .item .incentive .incentive_items:before {
  content: "";
  position: absolute;
  top: -30px;
  left: calc(50% - 20px);
  margin: 10px auto 0;
  width: 40px;
  height: 20px;
  border-style: solid;
  border-width: 0 20px 20px 20px;
  border-color: transparent transparent #faf4f6 transparent;
  box-sizing: border-box;
}
.incentive_box .item .incentive .on-pearl-switch .incentive_items,
.incentive_box .item .incentive .on-pearl2-switch2 .incentive_items {
  background-color: rgba(39, 183, 179, 0.1);
}
.incentive_box .item .incentive .on-pearl-switch .incentive_items:before,
.incentive_box .item .incentive .on-pearl2-switch2 .incentive_items:before {
  border-color: transparent transparent rgba(39, 183, 179, 0.1) transparent;
}
.incentive_box .item .incentive .incentive_items {
  padding-top: 10px;
  line-height: 1.3;
}
.incentive_box .item .incentive p.incentive_items {
  text-align: center;
  padding-top: 15px;
}
.incentive_box .item .incentive .incentive_items > li {
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}
.incentive_box .item .incentive .incentive_items > li:not(:first-child) {
  padding-top: 10px;
}
.incentive_box .item .incentive .incentive_items .incentive_items_s {
  font-size: 13px;
}
.incentive_box .item .incentive .incentive_items .incentive_items_m {
  font-size: 16px;
}
.incentive_box .item .incentive .incentive_items .incentive_items_ss {
  font-size: 11px;
}
.incentive_box .item .incentive .incentive_items .point {
  width: 150px;
  max-width: 100%;
  /* padding: 0 0 5px; */
  /* vertical-align: middle; */
  display: inline-block;
}
.incentive_box .item .incentive .incentive_items .incentive_items_l {
  font-size: 20px;
  letter-spacing: 0;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  margin: 0 2px;
}
.incentive_box .item .incentive .incentive_txt .medium {
  font-size: 13px;
  font-weight: 400;
  display: inline-block;
}
.incentive_box .item .incentive .incentive_txt .notes {
  display: block;
  width: 100%;
  margin-top: 5px;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .incentive_box .item .incentive {
    width: calc(100% - 90px);
  }
  .incentive_box .item .incentive .incentive_txt {
    padding-left: 15px;
  }
  .incentive_box .item .incentive .incentive_items {
    width: calc(100% + 105px);
    left: -105px;
  }
}
@media only screen and (max-width: 767px) {
  .incentive_box .item .incentive {
    padding: 15px 0 0;
  }
  .incentive_box .item .incentive .incentive_txt {
    text-align: center;
  }
  .incentive_box .item .incentive .incentive_txt .small {
    font-size: 14px;
    letter-spacing: 0.07em;
  }
  .incentive_box .item .incentive .incentive_txt .large {
    font-size: 52px;
  }
  .incentive_box .item .incentive .incentive_txt .medium {
    font-size: 15px;
  }
  .incentive_box .item .incentive .incentive_items .incentive_items_ss {
    font-size: 10px;
  }
}

/* ------------------------------------------------------------
section-hero
------------------------------------------------------------ */
.section-hero {
  background-color: #004097;
  color: #fff;
}
.section-hero .content .fv_img {
  padding: 25px 0 0;
  text-align: center;
}
.section-hero .content .fv_cp_block {
  font-weight: 700;
  padding: 20px 0 25px;
}
.section-hero .content .fv_cp_block .lead {
  font-size: 18px;
  font-weight: 500;
  background-color: #99b3d5;
  text-align: center;
  padding: 5px;
  line-height: 1.5;
  border-radius: 20px;
  letter-spacing: 0.25em;
  margin-bottom: 10px;
}
.section-hero .content .fv_cp_block .fv_cp {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-hero .content .fv_cp_block .fv_cp .max {
  width: 1em;
  line-height: 1.2;
  text-align: center;
  font-size: 20px;
  margin-right: 5px;
}
.section-hero .content .fv_cp_block .fv_cp .num {
  font-family: "Barlow", sans-serif;
  letter-spacing: 0;
  font-size: 60px;
  line-height: 1;
  padding-bottom: 5px;
  margin-right: 5px;
}
.section-hero .content .fv_cp_block .fv_cp .normal {
  font-size: 16px;
  line-height: 1.3;
}
.section-hero .content .fv_cp_block .fv_cp .normal em {
  font-size: 20px;
  font-style: normal;
}
@media only screen and (min-width: 768px) {
  .section-hero .content .fv_img img {
    width: 720px;
    max-width: 100%;
  }
  .section-hero .content .fv_cp_block .lead {
    margin: 0 auto 10px;
    width: 56%;
  }
}
@media only screen and (max-width: 767px) {
  .section-hero .content .fv_img {
    padding: 15px 0 0;
  }
  .section-hero .content .fv_cp_block {
    padding: 20px 0;
  }
  .section-hero .content .fv_cp_block .lead {
    font-size: 14px;
    max-width: 300px;
    margin: 0 auto 10px;
    padding: 3px;
  }
  .section-hero .content .fv_cp_block .fv_cp .max {
    font-size: 13px;
    margin-right: 5px;
  }
  .section-hero .content .fv_cp_block .fv_cp .num {
    font-size: 38px;
    margin-right: 5px;
  }
  .section-hero .content .fv_cp_block .fv_cp .normal {
    font-size: 12px;
    line-height: 1.2;
  }
  .section-hero .content .fv_cp_block .fv_cp .normal em {
    font-size: 15px;
    display: block;
  }
}

/* ------------------------------------------------------------
entry
------------------------------------------------------------ */
.section-entry {
  background-color: #004097;
  padding: 20px;
  text-align: center;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  animation: fade 0.5s ease;
  z-index: 1;
}
.entry_btn_wrap {
  text-align: center;
  padding: 45px 0;
}
@media only screen and (max-width: 767px) {
  .entry_btn_wrap {
    padding: 20px 0;
  }
}
.content .entry_btn:not(.incentive_txt) {
  background-color: #1eaa50;
  color: #fff;
  position: relative;
  padding: 15px 40px;
}
.content .entry_btn {
  display: inline-block;
  line-height: 1.5;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.25em;
  border-radius: 8px;
  text-align: center;
}
.section-entry .content .entry_btn {
  padding: 5px 100px;
}
.content .entry_btn:before,
.content .entry_btn:after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #fff;
  right: 40px;
  transform: translateY(-50%);
}
.section-entry .content .entry_btn:before,
.section-entry .content .entry_btn:after {
  right: 30px;
}
.content .entry_btn:before {
  width: 30px;
  top: calc(50% + 18px);
}
.content .entry_btn:after {
  width: 10px;
  top: calc(50% + 14px);
  transform: translateY(-50%) rotate(45deg);
}
.section-entry .content .entry_btn:before {
  top: calc(50% + 5px);
  width: 30px;
}
.section-entry .content .entry_btn:after {
  top: calc(50% + 1px);
}
.content .entry_btn .small {
  display: block;
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 5px;
}
.section-entry .content .entry_btn .small {
  font-size: 14px;
}
.section-entry .content .entry_btn .small:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: url(../images_v2/ico-gift.svg) no-repeat center center;
  background-size: 100% 100%;
}
@media only screen and (max-width: 767px) {
  .section-entry {
    padding: 20px 0;
  }
  .content .entry_btn:not(.incentive_txt) {
    padding: 5px 35px;
    width: 280px;
    max-width: 100%;
  }
  .content .entry_btn:before,
  .content .entry_btn:after {
    right: 10px;
  }
  .content .entry_btn .small {
    font-size: 12px;
  }
  .section-entry .content .entry_btn {
    padding: 5px;
  }
  .section-entry .content .entry_btn:before,
  .section-entry .content .entry_btn:after {
    right: 15px;
  }
  .section-entry .content .entry_btn:before {
    top: calc(50% + 15px);
  }
  .section-entry .content .entry_btn:after {
    top: calc(50% + 11px);
  }
  .section-entry .content .entry_btn .small:before {
    left: 10px;
    top: calc(50% + 10px);
    width: 25px;
  }
}

/* ------------------------------------------------------------
section-lead
------------------------------------------------------------ */
.section-lead {
  padding: 35px 0;
}
.section-lead .headline .headline_title {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.section-lead .headline .headline_title:before {
  content: "";
  display: inline-block;
  width: 83px;
  height: 83px;
  background: url(../images_v2/ico-gift_02.svg) no-repeat center center;
  background-size: 100% 100%;
  margin-right: 30px;
}
@media only screen and (max-width: 767px) {
  .section-lead {
    padding: 20px 0;
  }
  .section-lead .headline .headline_title {
    font-size: 16px;
  }
  .section-lead .headline .headline_title:before {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }
}

.section-lead .content .announce_block {
  text-align: center;
}
.section-lead .content .announce_block .announce_title {
  padding-bottom: 30px;
}
.section-lead .content .announce_block .announce_title .announce_title_inner {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
  border-bottom: 3px solid;
}
.section-lead .content .announce_block .announce_txt {
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
}
.section-lead .content .announce_block .announce_txt .underline {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  -webkit-text-decoration-skip: none;
}
.section-lead .content .announce_block .announce_txt .center {
  text-align: center;
  display: block;
  padding-top: 1em;
}
@media only screen and (max-width: 767px) {
  .section-lead .content .announce_block .announce_title {
    padding-bottom: 15px;
  }
  .section-lead .content .announce_block .announce_title .announce_title_inner {
    font-size: 17px;
  }
  .section-lead .content .announce_block .announce_txt {
    font-size: 13px;
  }
}

/* ------------------------------------------------------------
section-select
------------------------------------------------------------ */
.section-select {
  background-color: #fff;
  padding: 50px 0;
}
.section-select .headline {
  padding-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .section-select {
    padding: 0;
  }
  .section-select .headline {
    padding-top: 20px;
  }
}
.card_type_block .card_type_title {
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 15px 10px;
  letter-spacing: 0.15em;
  position: relative;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.card_type_block.personal .card_type_title {
  background-color: #004097;
}
.card_type_block.business .card_type_title {
  background-color: #4d4d4d;
}
.card_type_all_wrap {
}
@media only screen and (min-width: 768px) {
  .card_type_select {
    text-align: center;
  }
  .card_type_all_wrap {
    display: inline-flex;
  }
  .card_type_all_wrap .card_type_block.business {
    margin-right: 5px;
  }
  .card_type_all_wrap .card_type_block .card_type_block_in .card_list .js-card-trigger {
    width: calc(915px / 6);
  }
  /* .card_type_block.personal .card_type_title:after {
    content: "";
    width: calc(100% + 25px);
    height: 2px;
    position: absolute;
    right: -20px;
    bottom: 0;
    background-color: #004097;
  }
  .card_type_block.business .card_type_title:after {
    content: "";
    width: calc(100% + 20px);
    height: 2px;
    position: absolute;
    left: -20px;
    bottom: 0;
    background-color: #004097;
  } */
  /* .section-add_card .card_type_all_wrap .card_type_block .card_type_block_in .card_list .js-card-trigger {
    width: calc(895px / 6);
  } */
}
@media only screen and (max-width: 767px) {
}

/* ------------------------------------------------------------
section-add_card
------------------------------------------------------------ */
.section-add_card {
  background-color: #fff;
  padding: 0 0 50px;
}
.section-add_card .headline {
  padding-top: 45px;
  padding-bottom: 45px;
  position: relative;
  /* cursor: pointer; */
}
.section-add_card .headline:before,
.section-add_card .headline:after {
  /* content: ""; */
  width: 40px;
  height: 2px;
  position: absolute;
  right: 30px;
  top: calc(50% - 1px);
  transform: translateY(-50%);
  background-color: #999999;
}
.section-add_card .headline:after {
  transform: translateY(-50%) rotate(90deg);
  animation: fade 0.5s ease;
}
.section-add_card .headline.show:after {
  display: none;
}
.section-add_card .headline .lead span {
  display: none;
}
.section-add_card .headline .lead span.is-active {
  display: inline;
}
.section-add_card .content {
  /* display: none; */
  transition: all 0.5s ease;
}
@media only screen and (max-width: 767px) {
  .section-add_card {
    padding: 0;
  }
  .section-add_card .headline {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .section-add_card .headline:before,
  .section-add_card .headline:after {
    right: 15px;
    top: calc(50% + 25px);
    width: 30px;
  }
}

/* ------------------------------------------------------------
section-step
------------------------------------------------------------ */
.section-step {
  background-color: #fff;
  padding: 30px 0 45px;
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .section-step {
    padding: 40px 0;
    margin-top: 0;
  }
}

.section-step .headline {
  padding-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .section-step .headline {
    padding-bottom: 25px;
  }
}

@media only screen and (min-width: 768px) {
  .section-step .content .step_flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .section-step .content .step_flow li {
    /* display: flex;
    justify-content: flex-start;
    align-items: center; */
    width: 48%;
  }
  .section-step .content .step_flow li.wide {
    width: 100%;
  }
}

.section-step .content .step_flow li .step_num {
  background-color: #f2f2f2;
  color: #000;
  text-align: center;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-step .content .step_flow li .step_num .step {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0;
}
.section-step .content .step_flow li .step_num .num {
  font-size: 32px;
  font-style: normal;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  padding: 10px;
}
@media only screen and (min-width: 768px) {
  .section-step .content .step_flow li .step_num {
    /* width: 90px;
    height: 90px;
    flex-direction: column; */
  }
}
@media only screen and (max-width: 767px) {
  .section-step .content .step_flow li .step_num {
  }
  .section-step .content .step_flow li .step_num .step {
    font-size: 24px;
    padding-top: 3px;
    padding-right: 5px;
  }
}

.section-step .content .step_flow li .txt {
  padding: 15px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.section-step .content .step_flow li .txt img {
  max-height: 60px;
  margin-bottom: 5px;
}
.section-step .content .step_flow li .step_img {
  text-align: center;
  border: 1px solid #ddd;
  padding: 10px;
}
.section-step .content .step_flow li .step_img img {
  /* height: 100%; */
  width: 400px;
  max-width: 100%;
}
@media only screen and (min-width: 768px) {
  .section-step .content .step_flow li .txt .btn-img {
    /* width: calc(100% - 180px); */
  }
  .section-step .content .step_flow li .step_img {
    /* width: 90px;
    height: 90px; */
  }
}
@media only screen and (max-width: 767px) {
  .section-step .content .step_flow li .txt .btn-img {
    /* width: calc(100% - 180px); */
  }
  .section-step .content .step_flow li:not(:last-child) {
    padding-bottom: 40px;
  }
}

.section-step .content > .notes {
  padding-top: 10px;
  font-size: 12px;
}

/* ------------------------------------------------------------
section-notes
------------------------------------------------------------ */
.section-notes {
  padding-top: 100px;
  padding-bottom: 70px;
}
.section-notes .content .notes_title,
.section-notes .content .notes {
  font-size: 14px;
  line-height: 1.75;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .section-notes {
    padding-top: 50px;
    padding-bottom: 40px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .section-notes .content .notes_title {
    font-size: 12px;
  }
  .section-notes .content .notes {
    font-size: 10px;
  }
}

.site-footer {
  margin-bottom: 110px;
}
@media only screen and (min-width: 641px) {
  .site-footer .row {
    max-width: 1020px;
  }
}

/** SECTION FAQ
==============================================*/
.section-faq {
  background-color: #fff;
}
.section-faq .headline .headline_lead {
  font-weight: 300;
  margin-bottom: 40px;
}
.section-faq .headline .headline_title {
  font-weight: 300;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 641px) {
  .section-faq {
    margin-top: 50px;
  }
  .section-faq .headline {
    padding-top: 45px;
    padding-bottom: 40px;
  }
  .section-faq .headline .headline_lead {
    font-size: 20px;
  }
  .section-faq .headline .headline_title {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .section-faq {
    margin-top: 25px;
  }
  .section-faq .headline {
    padding-top: 35px;
    padding-bottom: 30px;
  }
  .section-faq .headline .headline_lead {
    font-size: 15px;
    line-height: 1.5;
  }
  .section-faq .headline .headline_title {
    font-size: 20px;
  }
}
@media screen and (min-width: 641px) {
  .section-faq .content {
    padding-bottom: 75px;
  }
}
@media screen and (max-width: 640px) {
  .section-faq .content {
    /* padding-right: 25px;
    padding-left: 25px; */
    padding-bottom: 55px;
  }
}

.faq-index {
  display: flex;
  justify-content: center;
}
.faq-index > li {
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq-index > li:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7.5px 0 7.5px;
  border-color: #004097 transparent transparent transparent;
  margin-left: 2px;
}
.faq-index > li a {
  color: #004097;
  font-weight: 400;
}
@media screen and (min-width: 641px) {
  .faq-index {
    align-items: center;
    margin-bottom: 55px;
  }
  .faq-index > li:not(:last-child) {
    margin-right: 20px;
  }
  .faq-index > li a {
    padding: 5px;
  }
}
@media screen and (max-width: 640px) {
  .faq-index {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .faq-index > li {
    width: calc(50% - 10px);
  }
  .faq-index > li:nth-child(odd) {
    margin-right: 10px;
  }
  .faq-index > li a {
    font-size: 14px;
  }
}

.faq-block {
  /* padding-right: 35px;
  padding-left: 35px; */
}
@media screen and (min-width: 641px) {
  .faq-block:not(:first-child) {
    margin-top: 65px;
  }
}
@media screen and (max-width: 640px) {
  .faq-block:not(:first-child) {
    margin-top: 35px;
  }
}

.faq-block__headline {
  text-align: center;
  color: #004097;
  background-color: #f2f2f2;
  font-weight: 400;
}
@media screen and (min-width: 641px) {
  .faq-block__headline {
    font-size: 20px;
    padding: 15px 10px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 640px) {
  .faq-block__headline {
    font-size: 14px;
    padding: 10px 5px;
    margin-bottom: 15px;
  }
}

.section-faq .content .accordion_dl {
  counter-reset: number;
}
.section-faq .content .accordion_dl > dt {
  display: flex;
  position: relative;
  border-bottom: 1px solid #004097;
  cursor: pointer;
  border-left: 10px solid #004097;
}
.section-faq .content .accordion_dl > dt .txt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.section-faq .content .accordion_dl > dt .txt:before,
.section-faq .content .accordion_dl > dt .txt:after {
  content: "";
  width: 16px;
  height: 2px;
  background-color: #004097;
  position: absolute;
}
.section-faq .content .accordion_dl > dt .txt:before {
  right: 5px;
  top: calc(50% - 1px);
}
.section-faq .content .accordion_dl > dt .txt:after {
  right: 5px;
  top: calc(50% - 1px);
  transform: rotate(90deg);
}
.section-faq .content .accordion_dl > dt.active .txt:after {
  opacity: 0;
}
@media screen and (min-width: 641px) {
  .section-faq .content .accordion_dl {
    padding-right: 35px;
    padding-left: 35px;
  }
  .section-faq .content .accordion_dl > dt:not(:first-child) {
    margin-top: 5px;
  }
  .section-faq .content .accordion_dl > dt .txt {
    padding: 10px 40px 10px 20px;
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 640px) {
  .section-faq .content .accordion_dl > dt {
    justify-content: flex-start;
    align-items: center;
  }
  .section-faq .content .accordion_dl > dt .txt {
    padding: 10px 25px 10px 15px;
    width: calc(100% - 30px);
  }
}

.section-faq .content .accordion_dl > dd > *:not(:first-child) {
  padding-top: 1em;
}
.section-faq .content .accordion_dl > dd:last-of-type {
  padding-bottom: 0;
}
@media screen and (min-width: 641px) {
  .section-faq .content .notes {
    font-size: 12px;
  }
  .section-faq .content .accordion_dl > dd {
    padding: 30px 30px 50px;
  }
}
@media screen and (max-width: 640px) {
  .section-faq .content .accordion_dl > dd {
    padding: 20px 15px 30px;
  }
}

.section-faq .content .accordion_dl > dd .step_list {
  counter-reset: number;
}
.section-faq .content .accordion_dl > dd .step_list > li {
  padding-bottom: 20px;
}
.section-faq .content .accordion_dl > dd .step_list > li:not(:first-child) {
  padding-top: 20px;
}
.section-faq .content .accordion_dl > dd .step_list > li:not(:last-child) {
  border-bottom: 1px solid #4d4d4d;
}
.section-faq .content .accordion_dl > dd .step_list .box > .txt {
  position: relative;
}
.section-faq .content .accordion_dl > dd .step_list .box > .txt:before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  border: 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.section-faq .content .accordion_dl > dd .step_list .box > .img {
  margin-top: 10px;
  display: block;
  padding: 15px;
  border-radius: 5px;
}
@media screen and (min-width: 641px) {
  .section-faq .content .accordion_dl > dd .step_list .box > .txt {
    padding-left: 40px;
  }
  .section-faq .content .accordion_dl > dd .step_list .box > .txt:before {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 640px) {
  .section-faq .content .accordion_dl > dd .step_list .box > .txt {
    padding-left: 30px;
  }
  .section-faq .content .accordion_dl > dd .step_list .box > .txt:before {
    width: 22px;
    height: 22px;
  }
  .section-faq .content .accordion_dl > dd .step_list .box > .img {
    border: 1px solid #cdcdcd;
  }
}

/** SECTION README
==============================================*/
.section-readme {
  background-color: #fff;
  padding: 45px 0 45px;
}
@media screen and (min-width: 641px) {
  .section-readme {
    margin-top: 50px;
  }
  .section-readme .headline {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 640px) {
  .section-readme {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .section-readme .headline {
    padding-bottom: 25px;
  }
}

.readme-block {
  height: 300px;
  overflow-y: scroll;
  border: 1px solid #c2c2c2;
}
.readme-block__ttl {
  font-weight: 500;
  text-align: center;
  color: #004097;
}
.readme-dl > dt {
  font-weight: 400;
}
@media screen and (min-width: 641px) {
  .readme-block {
    padding: 30px;
  }
  .readme-block__ttl {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .readme-dl > dt:not(:first-child) {
    margin-top: 30px;
  }
  .readme-dl > dt {
    font-size: 16px;
  }
  .readme-dl > dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  .readme-block {
    padding: 30px 15px;
  }
  .readme-block__ttl {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .readme-dl > dt:not(:first-child) {
    margin-top: 20px;
  }
  .readme-dl > dt {
    font-size: 14px;
  }
  .readme-dl > dd {
    font-size: 12px;
  }
}
