@charset "utf-8";
:root {
  --blackColor: #000;
  --whiteColor: #fff;
  --fontColor: #454545;
  --grayColor: #AEAEAE;
  --redColor: #d3351a;
  --bgColor : #f0eeec;
  --linkColor: #0c6db1;
  --blueColor: #E6F1FF;
  --yellowColor: #fef7e0;
}


/*----------------------------------*/
/* 共通
/*----------------------------------*/
* {
  font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Noto Sans JP', sans-serif;
  font-style: normal;
  text-decoration: none;
}

body {
  background-color: var(--bgColor);
  color: var(--fontColor);
}
h1, h2, h3, h4, h5, p, li {
  color: var(--fontColor);
}
img {
  width: 100%;
  height: auto;
  display: block;
}
/* p {
  font-size: 12px;
  font-size: max(12px, 2.16vw);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 40px;
  }
} */
a {
  color: var(--linkColor);
  text-decoration: underline;
}
a.txt_link {
  display: inline;
}
.red {
  color: var(--redColor);
}
.bold {
  font-weight: 600;
}

.only_pc {
  display: none !important;
}
.only_sp {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .only_pc {
    display: block !important;
  }
  .only_sp {
    display: none !important;
  }
}

ul.note li,
ul.note.asterisk li,
ul.dot li {
  font-size: 2.5vw;
  font-size: max(10px, 2.5vw);
  color: var(--fontColor);
  font-weight: 400;
  margin-top: 0;
}

ul.note .note_item::before {
  content: '※';
  font-size: inherit;
  margin-right: 0;
}
ul.note.asterisk .note_item::before {
  content: '＊';
}
ul.note .note_item.red, ul.note .note_item.red::before {
  color: var(--redColor);
}

ul.dot li::before {
  content: '・';
  font-size: inherit;
  margin-right: 0;
}
ol.note_order li {
  font-size: 12px;
  font-size: max(12px, 2.16vw);
  color: var(--fontColor);
  font-weight: 400;
  margin-top: 0;
  text-indent: -2em;
  padding-left: 2em;
  counter-increment: num;
}
ol.note_order li::before {
  font-size: inherit;
  margin-right: 0.5em;
  content: "※" counter(num);
}
ol.order .order_item {
  font-size: 12px;
  font-size: max(12px, 2.16vw);
  color: var(--fontColor);
  font-weight: 400;
  margin-top: 0;
  text-indent: -2em;
  padding-left: 2em;
  counter-increment: num;
}
ol.order .order_item::before {
  font-size: inherit;
  margin-right: 0.5em;
  content: counter(num) "." ;
}
@media screen and (min-width: 768px) {
  ul.note li,
  ul.note.asterisk li,
  ul.dot li,
  ol.note_order li,
  ol.order .order_item {
    font-size: 18px;
  }
}

main {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  background-color: var(--whiteColor);
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.5);
  /* border: 1px solid var(--grayColor); */
  box-sizing: border-box;
  padding-top: 16vw;
}
@media screen and (min-width: 768px) {
  main {
    box-sizing: content-box;
    padding-top: 80px;
  }
}

/*----------------------------------*/
/* header
/*----------------------------------*/
.header {
  background-color: #ffffff;
}
.header .inner {
  max-width: 1280px;
  padding: 12px 10px;
  box-sizing: border-box;
  text-align: center;
}
.header img {
  width: 74.667vw;
  display: block;
  max-width: calc((486 / 750) * 100vw);
}
@media screen and (min-width: 768px) {
  .header img {
    width: 280px;
  }
}

/*----------------------------------*/
/* fv
/*----------------------------------*/
.fv {
  width: 100%;
}
.fv_txt {
  padding: 10px;
}
.fv_txt p{
  font-size: 12px;
  font-size: max(12px, 2.16vw);
}

@media screen and (min-width: 768px) {
  .fv_txt {
    padding: 20px 40px 20px;
  }
  .fv_txt p{
    font-size: 16px;
  }
}

/* btn */
.btn {
  background-color: #080eff;
  box-shadow: inset 0px -1.333vw 2px 0px #070cd9, 0px 1.333vw 0px 0px #d3ccc2;
  width: 83.2vw;
  max-width: 100%;
  text-decoration: none;
}
.btn.account::before {
  content: "";
  position: absolute;
  background-image: url(../images/btn_account.png);
  width: 9.38vw;
  height: 9.38vw;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  left: 3.13vw;
}
.btn.icon_arrow::after {
  content: "";
  background-image: url(../images/icon_arrow.png);
  width: 3.2vw;
  height: 3.2vw;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}
.btn_text {
  color: var(--whiteColor);
  padding-bottom: 1.333vw;
}
.btn.account .btn_text {
  padding-left: 3.13vw;
}
ul.note.btn_note {
  margin: 2.08vw auto 0;
  max-width: 66.67vw;
}
ul.note.bnr_note {
  text-align: center;
  margin: 2.08vw auto 0;
}

@media screen and (min-width: 768px) {
  .btn {
    box-shadow: inset 0px -10px 2px 0px #070cd9, 0px 4px 0px 0px #d3ccc2;
    width: 518px;
    height: 112px;
  }
  .btn.account::before {
    width: 70px;
    height: 70px;
    left: 24px;
  }
  .btn.icon_arrow::after {
    width: 24px;
    height: 16px;
    right: 20px;
  }
  .btn_text {
    padding-bottom: 4px;
    font-size: 35px;
    padding-left: 20px;
    padding-right: 24px;
  }

  ul.note.btn_note {
    margin: 6px auto 0;
    text-align: center;
  }
  ul.note.bnr_note {
    text-align: center;
    margin-top: 6px;
  }
}

/* VWO */
.btn.pink {
  background-color: #FF6666;
  box-shadow: inset 0px -1.333vw 2px 0px #D95757, 0px 1.333vw 0px 0px #d3ccc2;
  margin-top: 9.38vw;
}
@media screen and (min-width: 768px) {
  .btn.pink {
    box-shadow: inset 0px -10px 2px 0px #D95757, 0px 4px 0px 0px #d3ccc2;
    margin-top: 0;
  }
}

/*----------------------------------*/
/* entry_checkbox
/*----------------------------------*/
.e_area .btn {
  background-color: #dc0101;
  box-shadow: inset 0px -1.333vw 2px 0px #bb0101, 0px 1.333vw 0px 0px #d3ccc2;
  width: 83.2vw;
  max-width: 100%;
  text-decoration: none;
}
.e_area .btn.gray {
  background-color: #6C6C6C;
  box-shadow: inset 0px -1.333vw 2px 0px #5C5C5C, 0px 1.333vw 0px 0px #d3ccc2;
}
.e_area .e_enabled {
  display: block;
}
.e_area .e_enabled._uncheck {
  display: none;
}
.e_area .e_disabled {
  display: none;
}

.step .entry-wrap.e_area .e_disabled {
  display: none;
}
.e_area .e_disabled._uncheck {
  display: block;
  display: flex;
}

.step .entry-wrap.e_area .e_disabled._uncheck {
  display: block;
  display: flex;
}
.e_area input {
  display: none;
}
input+.check_label {
  display: flex;
  font-size: 2.5vw;
  font-size: max(10px, 2.5vw);
  font-weight: 400;
  position: relative;
  padding-left: 30px;
  margin: 0 auto;
}
input+.check_label:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  background-size: cover;
}
.e_area._uncheck input+.check_label:before {
  content: "";
  background-image: url(../images/icon_unchecked.png);
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  left: 4px;
  display: block;
  width: 14px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.e_area input+.check_label:before {
  content: "";
  background-image: url(../images/icon_checked.png);
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  left: 4px;
  display: block;
  width: 14px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.e_area .checkbox {
  display: block;
  width: fit-content;
  max-width: 79.17vw;
  margin: 2.08vw auto 0;
  text-align: left;
}
.e_area a.txt_link {
  display: inline;
  color: #454545;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  section.e_area {
    margin-bottom: 40px;
  }
  .e_area .btn {
    box-shadow: inset 0px -10px 2px 0px #bb0101, 0px 4px 0px 0px #d3ccc2;
    width: 518px;
    height: 112px;
  }
  .e_area .btn.gray {
    box-shadow: inset 0px -10px 2px 0px #5C5C5C, 0px 4px 0px 0px #d3ccc2;
  }
  .e_area .checkbox {
    margin: 10px auto 0;
    max-width: 440px;
  }
  input+.check_label {
    font-size: 12px;
    padding-left: 40px;
  }
  .e_area._uncheck input+.check_label:before {
    width: 20px;
    height: 20px;
  }
  .e_area input+.check_label:before {
    width: 20px;
    height: 20px;
  }
  .app {
    background: #eeeeee;
    padding: 20px;
    width: 100%;
    border-radius: 0 0 40px 40px;
  }
  .app_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }
  .app_01 {
    background-color: var(--whiteColor);
    width: fit-content;
    margin: auto;
    padding: 20px;
    border-radius: 18px;
    margin-right: 20px;
    width: 44%;
  }
  .app_01_img {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .app_01_img > img {
    width: 110px;
    height: 110px;
  }
  .app_02 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    width: calc(100% - (44% + 20px));
  }
  .app_02_txt {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .app_02_txt > img  {
    display: block;
    width: 48px;
    height: 48px;
    margin-right: 8px;
  }
  .app_02_txt > p {
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 600;
  }
  .app_02_img {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
  }
  .app_02_img > a + a {
    margin-left: 10px;
  }
  .app_02_img > a > img {
    display: block;
    height: 50px;
    width: auto;
  }
  .app_bg {
    padding: 10px 0;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .app_bg > img {
    width: 26px;
    height: 40px;
    margin: auto;
    display: block;
  }
  .app_bg > p {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
  }
}

/*----------------------------------*/
/* section box
/*----------------------------------*/

.sec_box  {
  position: relative;

}

.sec_inner {
  padding: 0 4.17vw 9.38vw;
}

.sec_box .sec_title {
  color: var(--whiteColor);
  background-color: var(--redColor);
  line-height: 1.0;
  font-size: 6.25vw;
  font-weight: 600;
  text-align: center;
  position: relative;
  width: 100%;
  padding: 2.67vw;
  text-align: center;
  margin-bottom: 4vw;
  line-height: 1.2;
}

.sec_box .sec_title::after {
  content: '';
  background-image: url(../images/balloon_yellow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.96vw;
  height: 2.5vw;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -2.08vw;
}


@media screen and (min-width: 768px) {
  .sec_inner {
    padding: 0 40px 68px;
  }
  .sec_box .sec_title {
    font-size: 45px;
    padding: 15.4px;
    margin-bottom: 63px;
  }
  .sec_box .sec_title::after {
    width: 28px;
    height: 18px;
    bottom: -16px;
  }
}

/*----------------------------------*/
/* sec_conditions
/*----------------------------------*/
.sec_conditions .sec_inner  {
  padding: 5.21vw 4.17vw 4.17vw;
}
.sec_conditions .sec_inner > p {
  background-color: var(--whiteColor);
  font-size: 2.5vw;
  text-align: center;
  font-weight: 400;
  line-height: 1.2;
}

.conditions_list {
  border-radius: 20px;
  margin: 5.52vw auto 4.17vw;
  width: 83.33vw;
}
.conditions_list .list_item {
  display: flex;
  align-items: center;
}
.conditions_list .list_item + .list_item {
  margin-top: 3.65vw;
}
.conditions_list .list_item:not(:last-child) {
  border-bottom: dotted;
  border-color: #d3ccc2;
  padding-bottom: 3.65vw;
}
.conditions_list .list_item > img {
  width: 11.46vw;
  height: auto;
  margin-right: 3.75vw;
}
.conditions_list .list_item .list_item_txt {
  font-size: 3.65vw;
  width: calc(100% - (11.46vw + 3.75vw));
  font-weight: 700;
  line-height: 1.2;
}

.conditions_point {
  margin-top: 4.17vw;
}
.conditions_point .list_item {
  display: flex;
  align-items: center;
}
.conditions_point .list_item + .list_item {
  margin: 1.56vw auto 4.17vw;
}
.conditions_point .list_item > img {
  width: 25.83vw;
  height: auto;
  margin-right: 3.54vw;
}
.conditions_point .list_item .list_item_txt {
  padding-top: 1.04vw;
}
.conditions_point .list_item .list_item_txt > p {
  font-size: 3.96vw;
  font-weight: 600;
}

.sec_conditions .btn_area {
  margin-top: 4.17vw;
}

@media screen and (min-width: 768px) {
  .sec_conditions .sec_inner  {
    padding: 38px 40px 30px;
  }
  .sec_conditions .sec_inner > p {
    font-size: 20px;
  }
  .conditions_list {
    margin: 38px auto 30px;
    width: 560px;
  }
  .conditions_list .list_item + .list_item {
    margin-top: 20px;
  }
  .conditions_list .list_item:not(:last-child) {
    padding-bottom: 20px;
  }
  .conditions_list .list_item > img {
    width: 82px;
    margin-right: 26px;
  }
  .conditions_list .list_item .list_item_txt {
    font-size: 26px;
    width: calc(100% - (82px + 26px));
  }
  .conditions_point {
    margin: 30px auto;
    width: 620px;
  }
  .conditions_point .list_item + .list_item {
    margin: 15px auto;
  }
  .conditions_point .list_item > img {
    width: 200px;
    margin-right: 28px;
  }
  .conditions_point .list_item .list_item_txt {
    padding-top: 10px;
  }
  .conditions_point .list_item .list_item_txt > p {
    font-size: 28px;
  }

  .sec_conditions .btn_area {
    margin-top: 30px;
  }
}

/*----------------------------------*/
/* sec_overview
/*----------------------------------*/
.sec_overview {
  background-color: var(--yellowColor);
}
.sec_box.sec_overview .sec_title {
  background-color: #bc9200;
}

/* overview_list */
.overview_list {
  background-color: var(--whiteColor);
  border-radius: 20px;
  padding: 3.54vw;
  margin-bottom: 3.33vw;
}
.overview_list .list_item {
  display: flex;
  align-items: flex-start;
}
.overview_list .list_item + .list_item {
  margin-top: 5.63vw;
}
.overview_list .list_item_num {
  color: var(--whiteColor);
  background-image: url(../images/overview_num_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 9.79vw;
  height: 9.79vw;
  font-size: 4.79vw;
  font-weight: 800;
  line-height: 1.2;
  margin-right: 5.83vw;
}
.overview_list .list_item_txt {
  font-size: 4.79vw;
  width: calc(100% - (9.79vw + 5.83vw));
  font-weight: 800;
  line-height: 1.2;
  padding-top: 1.04vw;
}
.overview_list .list_item_txt p {
  font-size: 4.79vw;
  font-weight: 800;
  line-height: 1.2;
}
.overview_list .list_item_txt p.small,
.overview_list .list_item_txt ul.note li.small {
  font-size: 2.92vw;
  font-weight: 600;
}
.overview_list .list_item:last-child {
  margin-bottom: 0;
}
.part {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.about_part ul.note {
  position: absolute;
  bottom: -14px;
  transform: translateX(-50%);
  left: 50%;
  min-width: 220px;
}

@media screen and (min-width: 768px) {
  .overview_list {
    border-radius: 40px;
    padding: 25px;
    margin-bottom: 24px;
  }
  .overview_list .list_item + .list_item {
    margin-top: 38px;
  }
  .overview_list .list_item_num {
    width: 70px;
    height: 70px;
    font-size: 35px;
    margin-right: 40px;
  }
  .overview_list .list_item_txt {
    font-size: 35px;
    width: calc(100% - (70px + 40px));
    padding-top: 10px;
  }
  .overview_list .list_item_txt p {
    font-size: 35px;
  }
  .overview_list .list_item_txt p.small,
  .overview_list .list_item_txt ul.note li.small {
    font-size: 21px;
    margin-top: 10px;
  }
}

/*----------------------------------*/
/* sec_step
/*----------------------------------*/
.sec_step {
  background-color: var(--blueColor);
}
.sec_box.sec_step .sec_title {
  background-color: #3265d0;
}
.sec_box.sec_step .sec_title::after {
  background-image: url(../images/balloon_blue.svg);
}
.step_list {
  margin-top: 13.54vw;
}

.step_list .list_item {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 13.54vw;
  background-color: var(--whiteColor);
  border-radius: 20px;
}
.step_list .list_item .list_item_inner {
  padding: 9.38vw 6.25vw 4.17vw;
}
.step_list .list_item:last-child {
  margin-bottom: 0;
}
.step_list .list_item:not(:last-child)::after {
  content: '';
  position: absolute;
  background-image: url(../images/step_list_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.08vw;
  height: 5.52vw;
  bottom: -7.5vw;
  transform: translateX(50%);
  right: 50%;
}
.step_list .list_item .list_item_label {
  width: 35vw;
  height: auto;
  margin: auto;
  position: absolute;
  top: -5.21vw;
  transform: translateX(50%);
  right: 50%;
}
.step_list .list_item .list_item_inner > p.list_item_title {
  font-size: 4.79vw;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5.21vw;
  text-align: center;
}
.step_list .list_item .list_item_inner > p {
  font-size: 4.38vw;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.step_list .balloon {
  width: 49.17vw;
  margin: 3.75vw auto 1.56vw;
}

.step_list .list_item span.line {
  border-bottom: dotted;
  border-color: #f8cb36;
  margin: 4.27vw auto;
  width: 76.04vw;
  display: block;
}
.step_list .list_item .btn_area .txt_link a {
  display: block;
  width: fit-content;
  height: auto;
  margin: 3.75vw auto 0;
  font-weight: 600;
}

/* ★class名 */
.parts_img.step02_01 {
  width: 69.79vw;
  margin: auto;
  margin: 0 auto 2.71vw;
}
.step_list .list_item .box {
  border: solid 2px var(--grayColor);
  border-radius: 20px;
  padding: 4.17vw;
  margin: 3.96vw auto 2.92vw;
}
.step_list .list_item .box .common_list_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.08vw;
}
.step_list .list_item .box .common_list_item > img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5vw;
  height: 5vw;
  margin-right: 1.04vw;
  margin-left: 0;
}
.step_list .list_item .box .common_list_item > p {
  font-size: 4.17vw;
  width: calc(100% - (5vw + 1.04vw));
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}
.step_list .list_item .slash_wrap .slash {
  position: relative;
  display: inline-block;
  font-size: 4.38vw;
  font-weight: 600;
  line-height: 1.2;
}
.step_list .list_item .slash_wrap {
  margin-bottom: 2.67vw;
}
.slash_wrap .slash::before {
  transform: rotate(325deg);
}
.slash_wrap .slash::after {
  transform: rotate(35deg);
}
.step_list .list_item .unit01 {
  position: absolute;
  display: block;
  left: -2.92vw;
  top: 10.42vw;
  width: 10.63vw;
  height: auto;
}
.step_list .list_item .unit02 {
  position: absolute;
  display: block;
  right: -1.56vw;
  top: 6.25vw;
  width: 9.17vw;
  height: auto;
}
.step_list .list_item .unit03 {
  position: absolute;
  display: block;
  right: -0.44vw;
  bottom: 3.13vw;
  width: 12.4vw;
  height: auto;
}

@media screen and (min-width: 768px) {
  .step_list {
    margin-top: 98px;
  }
  .step_list .list_item {
    margin-bottom: 96px;
    border-radius: 40px;
  }
  .step_list .list_item .list_item_inner {
    padding: 65px 52px 52px;
  }
  .step_list .list_item:not(:last-child)::after {
    width: 15px;
    height: 40px;
    bottom: -52px;
  }
  .step_list .list_item .list_item_label {
    width: 255px;
    top: -38px;
  }
  .step_list .list_item .list_item_inner > p.list_item_title {
    font-size: 35px;
    margin-bottom: 30px;
  }
  .step_list .list_item .list_item_inner > p {
    font-size: 33px;
  }
  .step_list .list_item span.line {
    margin: 36px auto;
    width: 540px;
  }
  .parts_img.step02_01 {
    width: 508px;
    margin-bottom: 18px;
  }
  .step_list .list_item .box {
    border-radius: 20px;
    padding: 30px;
    margin-top: 28px;
  }
  .step_list .list_item .box .common_list_item {
    margin-bottom: 10px;
  }
  .step_list .list_item .box .common_list_item > img {
    width: 36px;
    height: 36px;
    margin-right: 7px;
  }
  .step_list .list_item .box .common_list_item > p {
    font-size: 30px;
    width: calc(100% - (36px + 7px));
  }
  .step_list .balloon {
    width: 358px;
    margin: 35px auto 10px;
  }
  .step_list .list_item .slash_wrap {
    margin-bottom: 18px;
  }
  .step_list .list_item .slash_wrap .slash {
    font-size: 30px;
  }
  .slash_wrap .slash::before,
  .slash_wrap .slash::after {
    width: 2.5px;
    height: 36px;
    top: auto;
    bottom: 0px;
  }


  .step_list .list_item .unit01 {
    width: 77px;
    left: -20px;
    top: 54px;
  }
  .step_list .list_item .unit02 {
    right: -18px;
    top: 25px;
    width: 66px;
  }
  .step_list .list_item .unit03 {
    right: 40px;
    bottom: 15px;
    width: 96px;
  }
}

/*----------------------------------*/
/* sec_promo
/*----------------------------------*/
.sec_promo {
  background-color: #ffefeb;
}
.sec_box.sec_promo .sec_title {
  background-color: #cd3a15;
}
.sec_box.sec_promo .sec_title::after {
  background-image: url(../images/balloon_red.svg);
}
.promo_main {
  margin-bottom: 4.38vw;
}
.promo_box {
  position: relative;
  background-color: var(--whiteColor);
  border-radius: 20px;
  padding: 6.25vw 4.17vw; 
}
.promo_box.blue {
  border: 2px solid #0078ea;
}
.promo_box.red {
  border: 2px solid #f04441;
}
.promo_box + .promo_box {
  margin-top: 7.5vw;
}
.promo_box > span.label {
  position: absolute;
  background-color: #f04441;
  color: var(--whiteColor);
  font-size: 5vw;
  font-weight: 600;
  right: 50%;
  transform: translateX(50%);
  top: -3.54vw;
  width: fit-content;
  padding: 1.56vw 5.21vw;
  border-radius: 120px;
}
.promo_box > span.label::after {
  content: '';
  position: absolute;
  background-image: url(/assets/images/tail.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.5vw;
  height: 1.25vw;
  right: 50%;
  transform: translateX(50%);
  bottom: -1.33vw;
}
.promo_box > p {
  font-size: 4.17vw;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 5.21vw;
}
.promo_box > img {
  margin-bottom: 5.21vw;
}
.promo_box.red > img {
  margin-top: -8.85vw;
}

@media screen and (min-width: 768px) {
  .promo_main {
    margin-bottom: 30px;
  }
  .promo_box {
    border-radius: 40px;
    padding: 40px 30px;
  }
  .promo_box + .promo_box {
    margin-top: 55px;
  }
  .promo_box > span.label {
    font-size: 35px;
    top: -32px;
    padding: 10px 35px;
  }
  .promo_box > span.label::after {
    width: 18px;
    height: 10px;
    bottom: -8px;
  }
  .promo_box > p {
    font-size: 30px;
    margin-bottom: 38px;
  }
  .promo_box > img {
    margin-bottom: 38px;
  }
  .promo_box.red > img {
    margin-top: -60px;
  }
}

/*----------------------------------*/
/* sec_monex
/*----------------------------------*/
.sec_monex {
  background-color: var(--whiteColor);
}
.sec_monex .sec_inner {
  padding: 8.33vw 4.17vw;
}
.about_monex {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.about_monex > img {
  width: 62.29vw;
  margin-bottom: 2.6vw;
}
.about_monex .title{
  font-size: 3.75vw;
  text-align: center;
  margin-bottom: 3.65vw;
}
.about_monex ul.note li {
  font-size: 2.5vw;
  font-size: max(10px, 2.5vw);
}

@media screen and (min-width: 768px) {
  .sec_monex .sec_inner {
    padding: 50px 60px;
  }
  .about_monex > img {
    width: 100%;
    margin-bottom: 18px;
  }
  .about_monex .title {
    font-size: 26px;
    margin-bottom: 26px;
  }
  .about_monex ul.note li {
    font-size: 18px;
  }
}

/*----------------------------------*/
/* sec_caution
/*----------------------------------*/
.sec_caution {
  background-color: #d8d8d8;
  padding-bottom: 0;
}
.sec_caution .sec_inner {
  padding: 8.33vw 6.4vw 0;
}

@media screen and (min-width: 768px) {
  .sec_caution .sec_inner {
    padding: 60px 40px 0;
  }
}

/* accordion */
.accordion_head {
  cursor: pointer;
  padding: 3.65vw 34px 3.65vw 3.65vw;
  position: relative;
  background-color: var(--whiteColor);
  display: flex;
  align-items: center;
  border: 1px solid #454545;
  justify-content: center;
}
.accordion_head > span {
  color: var(--whiteColor);
  background-color: var(--blueColor);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
  margin-right: 16px;
  line-height: 1.0;
}
.accordion_head > p {
  font-size: 3.73333vw;
  font-weight: 600;
  color: var(--fontColor);
  line-height: 1.2;
}
.accordion_head::after,
.accordion_head::before {
  content: '';
  display: block;
  position: absolute;
  width: 2px;
  height: 12px;
  right: 20px;
  background-color: var(--fontColor);
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.5s;
}
.accordion_head::before {
  transform: rotate(90deg);
}
.accordion_head.active::before {
  transform: rotate(270deg);
}
.accordion_head.active::after {
  transform: rotate(90deg);
}
.accordion_content {
  display: none;
  background-color: var(--whiteColor);
  padding: 3.65vw;
  font-size: 3.73333vw;
  border: 1px solid #454545;
  border-top: none;
}
.accordion_content dt {
  font-size: 3.73333vw;
  font-weight: 600;
  margin-top: 1.56vw;
}
.accordion_content p,
.accordion_content dd {
  font-size: 3.73333vw;
  font-weight: 400;
}
.accordion_content p.bold,
.accordion_content dd.bold {
  font-weight: 600;
}
.accordion_content ul.note li,
.accordion_content ul.dot li,
.accordion_content ol.note_order li {
  font-size: 3.73333vw;
}
.accordion + .accordion {
  margin-top: 4.17vw;
}
@media screen and (min-width: 768px) {
  .accordion_head {
    padding: 20px 30px;
  }
  .accordion_head > span {
    width: 56px;
    height: 56px;
    font-size: 30px;
    margin-right: 30px;
  }
  .accordion_head > p {
    font-size: 20px;
    padding-right: 20px;
  }
  .accordion_head::after,
  .accordion_head::before {
    height: 20px;
    width: 4px;
    right: 30px;
  }
  .accordion_content {
    padding: 20px 30px;
  }
  .accordion_content,
  .accordion_content p,
  .accordion_content dd,
  .accordion_content dt {
    font-size: 18px;
  }
  .accordion_content ul.note li,
  .accordion_content ul.dot li,
  .accordion_content ol.note_order li {
    font-size: 16px;
  }
  .accordion + .accordion {
    margin-top: 30px;
  }
}

/* footer */
.footer .notes {
  background-color: #d8d8d8;
}
.footer .notes ul.dot li {
  color: var(--fontColor);
  font-weight: 400;
}
.footer .copy {
  padding: 0 0 56vw;
  background-color: #d8d8d8;
}
@media screen and (min-width: 768px) {
  .footer .copy {
    padding: 40px 0 200px;
  }
}

.floating_bottom {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  text-align: center;
  background-color: rgba(34, 34, 34, 0.8);
  z-index: 99;
}
.floating_bottom .btn {
  box-shadow: inset 0px -1.333vw 2px 0px #070cd9, 0px 1.333vw 0px 0px #3f3d3a;
}
.floating_bottom .e_area .btn {
  box-shadow: inset 0px -1.333vw 2px 0px #bb0101, 0px 1.333vw 0px 0px #3f3d3a;
}
.floating_bottom .e_area .btn.gray {
  box-shadow: inset 0px -1.333vw 2px 0px #5C5C5C, 0px 1.333vw 0px 0px #3f3d3a;
}
.floating_bottom > a {
  width: 300px;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.floating_bottom a {
  color: var(--whiteColor);
}
.floating_display {
  display: flex;
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  padding: 2vw 4.17vw;
  justify-content: space-between;
}
.floating_bottom .floating_display .btn_area {
  width: 49%;
}
.floating_bottom .floating_display .btn_area a {
  width: 100%;
}
.floating_bottom .floating_display .btn_area.e_area .checkbox,
.floating_bottom .floating_display .btn_area ul.note.btn_note {
  color: var(--whiteColor);
  margin: 2.08vw auto 0;
}
.floating_bottom ul.note li {
  color: var(--whiteColor);
  text-align: left;
  font-size: 8px;
  font-size: max(8px, 2.5vw);
}
.floating_bottom .e_area a.txt_link {
  color: var(--whiteColor);
}
.floating_bottom input+.check_label {
  font-size: 8px;
  font-size: max(8px, 2.5vw);
}
@media screen and (min-width: 768px) {
  .floating_bottom .floating_display {
    padding: 15px 0;
  }
  .floating_bottom ul.note li {
    text-align: center;
    font-size: 14px;
  }
  .floating_bottom input+.check_label {
    font-size: 14px;
  }
  .floating_bottom .btn {
    box-shadow: inset 0px -6px 2px 0px #070cd9, 0px 4px 0px 0px #3f3d3a;
    height: 70px;
  }
  .floating_bottom .e_area .btn {
    box-shadow: inset 0px -6px 2px 0px #bb0101, 0px 4px 0px 0px #3f3d3a;
  }
  .floating_bottom .e_area .btn.gray {
    box-shadow: inset 0px -6px 2px 0px #5C5C5C, 0px 4px 0px 0px #3f3d3a;
  }
  .floating_bottom .btn .btn_text {
    font-size: 20px;
  }
  .floating_bottom .btn.account::before {
    width: 40px;
    height: 40px;
    left: 24px;
  }
  .floating_bottom .floating_display .btn_area.e_area .checkbox,
  .floating_bottom .floating_display .btn_area ul.note.btn_note {
    margin: 10px auto 0;
  }
}

.btnToTop {
  bottom: 42vw !important;
}
@media screen and (min-width: 768px) {
  .btnToTop {
    bottom: 200px !important;
  }
}