@charset "utf-8";
:root {
  --blackColor: #000;
  --whiteColor: #fff;
  --fontColor: #454545;
  --redColor: #d3351a;
  --grayColor: #a8a8a8;
  --grayColor02: #eeeeee;
  --lightgrayColor: #d8d8d8;
  --yellowColor: #fff7bf;
  --pinkColor: #ffe0db;
  --brownColor: #270c0b;
  --blueColor : #0c6db1;
  --bgColor : #f0eeec;
}


/*----------------------------------*/
/* 共通
/*----------------------------------*/
body {
  background-color: var(--bgColor);
  color: var(--fontColor);
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
}
h1, h2, h3, h4, h5, p, li {
  color: var(--fontColor);
}
img {
  width: 100%;
  height: auto;
  display: block;
}
p {
  font-size: 40px;
}
a {
  color: var(--blueColor);
  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 .note_item {
  font-size: 12px;
  font-size: max(12px, 2.5vw);
  color: var(--fontColor);
  font-weight: 400;
  margin-top: 0;
  text-indent: -1em;
  padding-left: 1em;
}
ul.note .note_item::before {
  margin-right: 0;
}
ul.note .note_item.red {
  color: var(--redColor);
}
ul.note .note_item.red::before {
  color: var(--redColor);
}
ul.dot .dot_item {
  font-size: 12px;
  font-size: max(12px, 2.5vw);
  color: var(--fontColor);
  font-weight: 400;
  margin-top: 0;
  text-indent: -1em;
  padding-left: 1em;
}
ul.dot .dot_item::before {
  content: '・';
  font-size: inherit;
  margin-right: 0;
}
ol.note_order .note_order_item {
  font-size: 12px;
  font-size: max(12px, 2.5vw);
  color: var(--fontColor);
  font-weight: 400;
  margin-top: 0;
  text-indent: -2em;
  padding-left: 2em;
  counter-increment: num;
}
ol.note_order .note_order_item::before {
  font-size: inherit;
  margin-right: 0.5em;
  content: "※" counter(num);
}
@media screen and (min-width: 768px) {
  ul.note .note_item,
  ul.dot .dot_item,
  ol.note_order .note_order_item  {
    font-size: 18px;
  }
}

main {
  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);
}

/*----------------------------------*/
/* 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 .note {
  padding: 10px 4.17vw;
}
@media screen and (min-width: 768px) {
  .fv .note {
    padding: 20px 40px;
  }
}

/* btn_area */
.btn_area {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.btn_area a {
  display: block;
  width: 77.08vw;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .btn_area a {
    max-width: 570px;
  }
}


/*----------------------------------*/
/* entry_checkbox
/*----------------------------------*/
section.e_area {
  margin-bottom: 10px;
}
.e_area .e_enabled {
  display: block;
}
.e_area .e_enabled._uncheck {
  display: none;
}
.e_area .e_disabled {
  display: none;
}
.e_area .e_disabled._uncheck {
  display: block;
}
.e_area input {
  display: none;
}
input+.check_label {
  display: flex;
  font-size: max(12px, 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: 77.08vw;
  margin: 10px auto 0;
  max-height: 570px;
  text-align: left;
}
.e_area a.txt_link {
  display: inline;
}
.e_disabled > img {
  display: block;
  width: 77.08vw;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}
.e_txt {
  padding: 10px;
}
.e_txt.bg_gray {
  background-color: #f0eeec;
}

@media screen and (min-width: 768px) {
  section.e_area {
    margin-bottom: 40px;
  }
  .e_area .checkbox {
    margin: 10px auto 0;
  }
  .e_disabled > img {
    max-width: 570px;
  }
  input+.check_label {
    max-width: 570px;
    font-size: 18px;
  }
  .e_area._uncheck input+.check_label:before {
    width: 20px;
    height: 20px;
  }
  .e_area input+.check_label:before {
    width: 20px;
    height: 20px;
  }
}


.sec_box .sec_title {
  color: var(--whiteColor);
  background-color: var(--brownColor);
  line-height: 1.0;
  font-size: 6.25vw;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
  padding: 10px;
}
.sec_inner {
  padding: 30px 3vw;
}

@media screen and (min-width: 768px) {
  .sec_box .sec_title {
    font-size: 42px;
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }
.sec_inner {
    padding: 60px 40px;
  }
}


/*----------------------------------*/
/* sec01
/*----------------------------------*/
.sec01 {
  background-color: var(--pinkColor);
}

/* about_list */
.about_list {
  background-color: var(--whiteColor);
  border-radius: 20px;
  padding: 4.17vw;
  margin-bottom: 20px;
}
.about_list_item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.about_list_item_num {
  color: var(--whiteColor);
  background-color: var(--redColor);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 4.79vw;
  font-weight: 800;
  line-height: 1.2;
  margin-right: 20px;
}
.about_list_item_txt {
  font-size: 4.79vw;
  width: calc(100% - (40px + 20px));
  font-weight: 800;
  line-height: 1.2;
}
.about_list_item_txt p {
  font-size: 4.79vw;
  font-weight: 800;
  line-height: 1.2;
}
.about_list_item_txt p.small,
.about_list_item_txt .note_item.small {
  font-size: 2.92vw;
  font-weight: 600;
}
.about_list_item:last-child {
  margin-bottom: 0;
}
.about_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) {
  .about_list {
    border-radius: 40px;
    padding: 30px;
    margin-bottom: 30px;
  }
  .about_list_item {
    margin-bottom: 20px;
  }
  .about_list_item_num {
    width: 60px;
    height: 60px;
    font-size: 30px;
    margin-right: 30px;
  }
  .about_list_item_txt {
    font-size: 30px;
    width: calc(100% - (80px + 20px));
  }
  .about_list_item_txt p {
    font-size: 30px;
  }
  .about_list_item_txt p.small,
  .about_list_item_txt .note_item.small {
    font-size: 18px;
  }
  .about_part ul.note {
    bottom: -10px;
  }
}

/*----------------------------------*/
/* sec02
/*----------------------------------*/
.sec02 {
  background-color: var(--yellowColor);
}

.step_list {
  margin-top: 30px;
}
.step_list_item {
  background-color: var(--whiteColor);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 50px;
}
.step_list_item .bbb_item_inner {
  padding: 6.25vw;
    display: flex;
  justify-content: center;
}

.step_list_item.step_list_item02 {
  padding-bottom: 0;
}
.step_list_item:last-child {
    margin-bottom: 0;
  }
.step_list_item_label {
  width: 26.04vw;
  height: auto;
  margin: auto;
  position: absolute;
  top: -35px;
}
.step_list_item_box {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
}
.step_list_item_box .step_list_item_box_ttl {
  font-size: 4.79vw;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 12px;
}
.step_list_item_box p {
  font-size: 4.17vw;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}
.step_list_item_box p.common {
  font-size: max(12px, 2.5vw);
  text-align: left;
  font-weight: 400;
  padding: 5px 4.17vw 10px;
}
.step_list_item_box > p + p {
  margin-top: 12px;
}

.step_list_item_box .line {
  width: 100%;
  margin: 20px 0;
}
.step_list_item_box_cont02 .box {
  border: solid 2px var(--grayColor);
  border-radius: 24px;
  padding: 4.17vw;
  margin-top: 10px;
}

.step_list_item_box_cont02 .box .common_list_item {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}
.step_list_item_box_cont02 .box .common_list_item > img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  margin-left: 0;
}
.step_list_item_box_cont02 .box .common_list_item > p {
  font-size: 4.17vw;
  width: calc(100% - (30px + 10px));
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
}
.step_list_item_box_cont02 .box  > .common_list_item + .common_list_item {
  margin-top: 10px;
}
.step_list_item_box_cont02 img {
  width: 69.9vw;
  margin: 0 auto;
}
.step_list_item_box_cont02 > img {
  margin-bottom: 20px;
}
.step_list_item .note {
  padding: 5px 4.17vw 10px;
  margin: 0 auto;
  width: fit-content;
}
.step_list_item p.txt_link {
  text-align: center;
}

.step_list_item.step_list_item03 {
  position: relative;
}

.step_list_item.step_list_item03 .unit01 {
  position: absolute;
  display: block;
  left: -6px;
  top: 32px;
  width: 14%;
}
.step_list_item.step_list_item03 .unit02 {
  position: absolute;
  display: block;
  right: 0;
  top: 12px;
  width: 12%;
}
.step_list_item.step_list_item03 .unit03 {
  position: absolute;
  display: block;
  right: 20px;
  bottom: -8px;
  width: 15%;
}


@media screen and (min-width: 768px) {
  .step_list {
    margin-top: 60px;
  }
  .step_list_item {
    border-radius: 40px;
    margin-bottom: 100px;
  }
  .step_list_item .bbb_item_inner {
    padding: 40px 20px;
  }
  .step_list_item_label {
    width: 200px;
    top: -75px;
  }
  .step_list_item_box {
    font-size: 30px;
  }
  .step_list_item_box .step_list_item_box_ttl {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .step_list_item_box p {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .step_list_item_box p.common {
    font-size: 16px;
  }
  .step_list_item_box .line {
    margin: 40px 0;
  }
  .step_list_item_box_cont02 .box {
    padding: 20px;
  }
  .step_list_item_box_cont02 img {
    max-width: 520px;
  }
  .step_list_item_box_cont02 .box .common_list_item > img {
    width: 40px;
    height: 40px;
  }
  .step_list_item_box_cont02 .box .common_list_item > p {
    width: calc(100% - (40px + 20px));
    font-size: 30px;
  }

  .step_list_item.step_list_item03 .unit01 {
    left: -19px;
    top: 31px;
    width: 12%;
  }
  .step_list_item.step_list_item03 .unit02 {
    right: -6px;
    top: 6px;
    width: 10%;
  }
  .step_list_item.step_list_item03 .unit03 {
    right: 66px;
    bottom: -20px;
    width: 12%;
  }
}

/*----------------------------------*/
/* sec03
/*----------------------------------*/
.sec03 {
  background-color: var(--whiteColor);
}

/*----------------------------------*/
/* sec04
/*----------------------------------*/
.sec04 {
  background-color: var(--lightgrayColor);
}

.caution_acc {
  margin-bottom: 20px;
}
/* accordion */
.accordion_head {
  cursor: pointer;
  padding: 10px 32px 10px 12px;
  position: relative;
  background-color: var(--whiteColor);
  display: flex;
  align-items: center;
  border-top: solid 2px var(--grayColor);
  border-bottom: solid 2px var(--grayColor);
  justify-content: center;
}

.accordion_head > span {
  font-size: 16px;
  font-weight: 600;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-right: 12px;
}
.accordion_head > p {
  font-size: max(12px, 3.13vw);
  font-weight: 600;
  color: var(--fontColor);
}
.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;
  padding: 0 10px 0 10px;
  background-color: var(--whiteColor);
}
.accordion_inner {
  padding: 10px 10px 20px 10px;
  font-size: max(12px, 2.81vw);
}
.accordion_inner_txt {
  width: 100%;
  overflow: hidden;
  font-size: max(12px, 2.81vw);
  font-weight: 400;
}
.accordion_inner > img{
  display: block;
  max-width: 170px;
}
.accordion_inner .bold {
  margin-top: 5px;
}

.caution_acc_list>.accordion+.accordion {
  margin-top: 10px;
}
.caution_inner dt {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.caution_inner dd {
  font-size: 14px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .caution_acc {
    margin-bottom: 40px;
  }
  .accordion_head {
    padding: 20px;
  }
  .accordion_head > span {
    padding-right: 15px;
  }
  .accordion_head > p {
    font-size: 18px;
  }
  .accordion_head::after,
  .accordion_head::before {
    right: 24px;
  }
  .caution_acc_list>.accordion+.accordion {
    margin-top: 20px;
  }
  .accordion_inner_txt {
    font-size: 14px;
  }
  .accordion_inner dt {
    font-size: 14px;
  }
  .accordion_inner dd {
    font-size: 14px;
  }
  .accordion_inner ul.note .note_item,
  .accordion_inner ul.dot .dot_item,
  .accordion_inner ol.note_order .note_order_item {
    font-size: 14px;
  }
}

/* caution */
.caution_scroll {
  background-color: var(--whiteColor);
  border-radius: 10px;
  padding: 20px;
  height: 400px;
  overflow-y: scroll;
  line-height: 1.48;
  margin-bottom: 40px;
}
.caution_scroll .scroll_inner {
  padding: 0;
}
.caution_scroll .h2 {
  font-size: 16px;
  margin: 16px 0 8px;
  font-weight: 600;
  text-align: center;
}
.caution_scroll .h3 {
  font-size: 14px;
  margin: 16px 0 8px;
  font-weight: 600;
}
.caution_scroll .h4 {
  font-size: 12px;
  margin: 12px 0 8px;
  font-weight: 600;
}
.caution_scroll .h5 {
  font-size: 12px;
  margin: 12px 0 0;
  margin: 16px 0 0;
}
.caution_scroll p, .caution_scroll dd {
  font-size: 12px;
  font-weight: 400;
}
.caution_scroll .dot {
  position: relative;
  padding-left: 1em;
}
.caution_scroll .dot::before {
  content: '';
  background-color: var(--fontColor);
  font-size: inherit;
  width: 0.4em;
  height: 0.7em;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.caution_scroll ul li {
  font-size: 12px;
  margin-top: 2px;
  text-indent: -1em;
  padding-left: 1em;
}
.caution_scroll ul li::before {
  content: '・';
  font-size: inherit;
}
.caution_scroll a {
  font-size: inherit;
}
@media screen and (min-width: 768px) {
  .caution_scroll .h2 {
    font-size: 18px;
    margin: 24px 0 16px;
  }
  .caution_scroll .h3 {
    font-size: 16px;
    margin: 24px 0 16px;
  }
  .caution_scroll .h4 {
    font-size: 14px;
    margin: 16px 0 12px;
  }
  .caution_scroll .h5 {
    font-size: 14px;
  }
  .caution_scroll p, .caution_scroll dd {
    font-size: 14px;
  }
  .caution_scroll ul li {
    font-size: 14px;
    margin-top: 4px;
  }
}


/* app */
.app {
  display: none;
}
@media screen and (min-width: 768px) {
  .app {
    background: var(--grayColor02);
    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;
  }
}


/*----------------------------------*/
/* floating
/*----------------------------------*/
/* floating_bottom */
.floating_bottom {
  display: none;
}
.floating_bottom {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  text-align: center;
  background-color: rgba(34, 34, 34, 0.8);
  z-index: 99;
  display: none;
}
.floating_bottom > a {
  width: 300px;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.floating_bottom a img {
  width: 100%;
  height: auto;
  display: block;
}
.floating_bottom ul.note .note_item {
  color: var(--whiteColor);
  text-align: left;
}
.floating_bottom a {
  color: var(--whiteColor);
}
.floating_display {
  display: flex;
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  padding: 2vw 0;
}
.floating_bottom .floating_display .btn_area {
  max-width: 49%;
}
.floating_bottom .floating_display .btn_area a {
  width: 100%;
}
.floating_bottom .floating_display .btn_area .e_disabled > img {
  width: 100%;
}
.floating_bottom .floating_display .btn_area.e_area .checkbox {
  color: var(--whiteColor);
  margin-top: 0;
}
input+.check_label {
  font-size: max(12px, 2.5vw);
}

@media screen and (min-width: 768px) {
  .floating_display {
    padding: 20px 0;
  }
  input+.check_label {
    font-size: 16px;
  }
  ul.note .note_item {
    font-size: 16px;
  }
  .floating_bottom ul.note .note_item {
  text-align: center;
  }
}