@charset "utf-8";
:root {
  --blackColor: #000;
  --whiteColor: #fff;
  --fontColor: #454545;
  --grayColor: #AEAEAE;
  --redColor: #d3351a;
  --bgColor : #f0eeec;
  --bgRcolor :#FFEAEA;
  --bgBcolor :#E6F1FF;
  --bgGcolor :#EEE;
  --linkColor: #0c6db1;
  --blueColor: #1273E9;
  --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;
}
.bg_red {
  background-color: var(--bgRcolor);
}
.bg_blue {
  background-color: var(--bgBcolor);
}
.bg_white {
  background-color: var(--whiteColor);
}
.bg_yellow {
  background-color: var(--yellowColor);
}
.bg_gray {
  background-color: var(--grayColor);
}
.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,
ul.note.asterisk .note_item,
ul.dot .dot_item {
  font-size: 12px;
  font-size: max(12px, 2.16vw);
  color: var(--fontColor);
  font-weight: 400;
  margin-top: 0;
  text-indent: -1em;
  padding-left: 1em;
}
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 .dot_item::before {
  content: '・';
  font-size: inherit;
  margin-right: 0;
}
ol.note_order .note_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.note_order .note_order_item::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 .note_item,
  ul.note.asterisk .note_item,
  ul.dot .dot_item,
  ol.note_order .note_order_item,
  ol.order .order_item {
    font-size: 16px;
  }
}

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;
}
@media screen and (min-width: 768px) {
  main {
    box-sizing: content-box;
  }
}

/*----------------------------------*/
/* 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;
  }
}

/*----------------------------------*/
/* section box
/*----------------------------------*/

.sec_box  {
  position: relative;
  padding: 40px 0;
}
.sec_box .sec_title.sec_label {
  height: auto;
  margin: auto;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.sec_inner {
  padding: 0 5vw;
}
@media screen and (min-width: 768px) {
  .sec_box  {
    position: relative;
    padding: 75px 0;
  }
  .sec_inner {
    padding: 0 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;
}
.btn_area .note {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .btn_area a {
    width: 570px;
  }
  .step_list_item .btn_area .note {
    margin: 10px 0 40px;
  }
}


/*----------------------------------*/
/* 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: 12px;
  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: 16px;
  }
  .e_area._uncheck input+.check_label:before {
    width: 20px;
    height: 20px;
  }
  .e_area input+.check_label:before {
    width: 20px;
    height: 20px;
  }
}


/*----------------------------------*/
/* parts_img
/*----------------------------------*/
.parts_img {
  margin: 0 auto;
  max-width: 654px;
  width: 88.38vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.parts_img.sec_label {
  margin-top: 30px;
  margin-bottom: 10px;
  width: 77.03vw;
}
.parts_img img.arrow {
  max-width: 170px;
  width: 22.97vw;
  margin-top: 20px;
  margin-bottom: 20px;
}
.parts_img.flow ul.note {
  text-align: center;
  margin-top: -10px;
}


/*----------------------------------*/
/* sec_step
/*----------------------------------*/
/* step_list */
.sec_step {
  background-color: #8A8A8A;
  padding-top: 50px;
  padding-bottom: 50px;
}
.step_list_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 5.41vw;
}
.step_list_item:last-child {
  margin-bottom: 0;
}
.step_list_item .step_item_inner {
  background-color: var(--whiteColor);
  padding: 18px 6.08vw;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
.step_item_inner .step_list_item_label {
  font-weight : 700;
  font-size: 4.86vw;
  margin-bottom: 4.05vw;
}

.step_item_inner .step_list_item_box_ttl {
  font-size: 3.78vw;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  text-align: center;
  background: #F1F1F1;
  border-radius: 10px;
  width: 77.03vw;
  padding: 2.7vw 5.41vw;
}
.step_item_inner p {
  font-size: 3.78vw;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.step_list_item .img {
  width: 77.08vw;
  margin-top: 20px;
}
.step_list_item_box > ul.note {
  text-align: left;
}
.step_list_item.step03 img {
  width: 66.76vw;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .sec_step {
    padding-top: 120px;
    padding-bottom: 100px;
  }
  .step_list_item.step03 img {
    max-width:494px;
  }
}

.box {
  background-color: var(--whiteColor);
  box-shadow: 5px 5px 8px 0 rgba(0, 0, 0, 0.20);
  padding: 5.41vw;
  margin-bottom: 15px;
}

.box .common_list_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.box .common_list_item:last-child {
  margin-bottom: 0;
}
.box .common_list_item .small{
  font-size: 2.7vw;
  font-size: max(10px, 2.7vw);
  font-weight: 500;
  line-height: 1.2;
}
.box .common_list_item > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5.41vw;
  height: 5.41vw;
  margin-right: 10px;
  margin-left: 0;
  font-weight: 700;
  font-size: 3.24vw;
  border-radius: 6px;
  background: #C60023;
  color: var(--whiteColor);
}
.box .common_list_item > p {
  font-size: 3.78vw;
  width: calc(100% - (5.41vw + 10px));
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}
.box  > .common_list_item + .common_list_item {
  margin-top: 10px;
}
.step_list_item .btn_area .note {
  margin: 5px 0 20px;
}

.slash_wrap {
  text-align: center;
  margin-bottom: 5px;
}
.slash_wrap .slash {
  position: relative;
  display: inline-block;
}
.slash_wrap .slash::before,
.slash_wrap .slash::after {
  content: '';
  background-color: var(--fontColor);
  width: 0.4vw;
  height: 2.1em;
  border-radius: 9999px;
  position: absolute;
  bottom: 0;
}
.slash_wrap .slash::after {
  transform: rotate(40deg);
  right: -1.8em;
  margin-left: 1.2em;
}
.slash_wrap .slash::before {
  transform: rotate(320deg);
  left: -1.8em;
  margin-right: 1.2em;
}

@media screen and (min-width: 768px) {
  .step_list_item {
    margin-bottom: 40px;
  }
  .parts_img.sec_label {
    margin-top: 60px;
    width: 570px;
  }
  .step_list_item .step_item_inner {
    padding: 30px;
    width: 660px;
  }
  .step_item_inner .step_list_item_box_ttl {
    width: 570px;
    padding: 20px 30px;
    font-size: 30px;
    margin-bottom: 30px;
  }
  .step_list_item .img {
    width: 570px;
    margin-top: 40px;
    margin-bottom: 60px;
  }
  .step_item_inner p {
    font-size: 28px;
  }
  .step_item_inner .line {
    margin-bottom: 30px;
  }
  .box {
    padding: 50px 40px;
    width: 660px;
  }
  .box .common_list_item > img {
    width: 40px;
    height: 40px;
  }
  .box .common_list_item > p {
    font-size: 28px;
    width: calc(100% - (40px + 20px));
  }
  .box .common_list_item > span {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    font-size: 24px;
  }
  .box .common_list_item .small {
    font-size: 20px;
  }
  .slash_wrap {
    margin-bottom: 25px;
  }
  .slash_wrap .slash::before,
  .slash_wrap .slash::after {
    width: 0.2vw;
    height: 1.8em;
  }
  .step_item_inner .step_list_item_label {
  font-size: 36px;
  margin-bottom: 30px;
}
  .step_list_item .btn_area > img {
  width: 497px;
  margin: 0 auto 20px;
}
}

/* pcのみ */
@media screen and (min-width: 768px) {
  .qr_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto 30px;
    max-width: 540px;
  }
  .qr01 {
    background-color: #EEE;
    border-radius: 20px;
    width: 336px;
    padding: 20px;
  }
  .qr01 > img {
    width: 144px;
    margin: 0 auto;
    height: auto;
  }
  .qr01.wide > img {
    width: 250px;
  }
  .qr02 {
    width: 180px;
    height: 180px;
  }
}


/* modal */
.modal_btn_area {
  margin: 20px auto 0;
  width: 100%;
}
.modal_btn {
  max-width: 100%;
  width: 81.08vw;
  margin: 0 auto;
  background-color: var(--whiteColor);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px 10px 10px;
  border: solid 1px #454545;
}
.modal_btn::before {
  content: "";
  background-image: url(../images/icon_modal.png);
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  right: 8px;
  width: 16px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.modal_btn_text {
  font-size: 2.7vw;
  font-size: max(12px, 2.7vw);
  font-weight: 700;
  line-height: 1.4;
}
.modal {
  width: 100%;
  height: 100%;
  display: none;
}

.modal_item {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 92%;
  max-width: 92vw;
  padding: 40px 3.4vw;
  max-height: 80vh;
  border-radius: 10px;
  height: min-content;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: clip;
  background-color: var(--whiteColor);
}
.modal_close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 20px;
  height: 20px;
  background-image: url(/assets/images/icon-cross.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.modal_item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.modal_content {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
  font-size: max(12px, 3.78vw);
  line-height: 1.2;
  height: 400px;
  overflow-y: scroll;
  padding: 0 3vw;
}
.modal_content p {
  font-size: max(12px, 3.78vw);
  line-height: 1.2;
}
.modal_content dt {
  margin-top: 10px;
}
.modal_content dd {
  margin-bottom: 10px;
}
.modal_content img {
  margin-top: 5px;
  display: block;
  max-width: 400px;
}
.modal table {
  border-collapse: collapse;
  border-left: solid 1px var(--grayColor);
  border-top: solid 1px var(--grayColor);
  font-weight: 400;
  margin-top: 10px;
}
.modal table th {
  background-color: #e8e8e8;
  background-color: var(--bgGcolor);
  text-align: center;
  border-right: solid 1px var(--grayColor);
  border-bottom: solid 1px var(--grayColor);
  font-size: max(12px, 3.2vw);
  width: 30%;
  padding: 4px;
  font-weight: 400;
  vertical-align: top;
}
.modal table td {
  font-size: max(12px, 3.2vw);
  border-right: solid 1px var(--grayColor);
  border-bottom: solid 1px var(--grayColor);
  padding: 4px;
}

.modal_content,
.modal_content p,
.modal_content ul.note .note_item,
.modal_content ul.dot .dot_item,
.modal_content ol.note_order .note_order_item,
.modal_content ol.order .order_item {
  font-weight: 400;
  font-size: 12px;
  font-size: max(12px, 3.2vw);
}

@media screen and (min-width: 768px) {
  .modal_btn_area {
    margin-top: 40px;
  }
  .modal_btn {
    width: 600px;
  }
  .modal_btn_text {
    font-size: 20px;
  }
  .modal_btn::before {
    width: 26px;
    height: 26px;
    right: 25px;
  }
  .modal_content,
  .modal_content p,
  .modal_content ul.note .note_item,
  .modal_content ul.dot .dot_item,
  .modal_content ol.note_order .note_order_item,
  .modal_content ol.order .order_item,
  .modal_content table th,
  .modal_content table td {
    font-size: 14px;
  }
}


/*----------------------------------*/
/* tsumitate_monex
/*----------------------------------*/
.tsumitate_monex {
  position: relative;
  z-index: 2;
  padding: 20px 0;
  margin: 30px 0;
}
.tsumitate_monex::before,
.tsumitate_monex::after {
  position: absolute;
  top: 0px;
  left: calc(-50vw + 50%);
  right: calc(-50vw + 50%);
  bottom: 0px;
  z-index: -1;
  content: "";
  width: 100%;
  margin: 0 auto;
}
.tsumitate_monex::before {
  transform:skewY(4.23deg);
  background-color: #fff;
}
.tsumitate_monex::after {
  transform: skewY(-7.802deg);
  background: rgba(255, 255, 255, 0.50);
}

.tsumitate {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tsumitate_bnr > img {
  width: 62.84vw;
  margin-bottom: 10px;
}
.tsumitate_about p {
  font-size: 3.51vw;
  font-weight: 700;
  line-height: 1.2;
}
.tsumitate_about > img {
  margin-bottom: 10px;
}
.tsumitate_about .common_list {
  width: 100%;
  margin: 10px auto;
}
.tsumitate_about .common_list_item {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.30);
}
.tsumitate_about .common_list .common_list_item + .common_list_item {
  margin-top: 10px;
}
.tsumitate_about .tsumitate_about_ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .tsumitate_about .common_list {
    width: 590px;
  }
  .tsumitate_about .common_list .common_list_item + .common_list_item {
    margin-top: 10px;
  }
  .tsumitate_bnr > img {
  width: 465px;
  margin-bottom: 20px;
}
.tsumitate_about p {
  font-size: 26px;
}
.tsumitate_about .parts_img {
  width: 660px;
}
}

.tsumitate_monex .inner {
  width: 81.08vw;
  max-width: 654px;
  margin: auto;
}
.tsumitate_monex img {
  display: block;
  width: 100%;
  max-width: 654px;
  margin: 0 auto 20px;
}
.tsumitate_monex h2 {
  font-size: 3.78vw;
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
}
.sec_tsumitate .bg_white .inner {
  width: 81.08vw;
  max-width: 626px;
  margin: auto;
}
.sec_tsumitate .bg_white {
  position: relative;
  z-index: 2;
  padding: 25px 0;
  margin: 20px 0;
  background: none;
}
.sec_tsumitate .bg_white::before,
.sec_tsumitate .bg_white::after {
  position: absolute;
  top: 0px;
  left: calc(-50vw + 50%);
  right: calc(-50vw + 50%);
  bottom: 0px;
  z-index: -1;
  background-color: #fff;
  content: "";
  width: 100%;
  margin: 0 auto;
}
.sec_tsumitate .bg_white::before {
  transform: skewY(6.745deg);
  background-color: #fff;
}
.sec_tsumitate .bg_white::after {
  transform: skewY(-8.97deg);
  background: rgba(255, 255, 255, 0.50);
}
@media screen and (min-width: 768px) {
  .sec_tsumitate .bg_white {
    padding: 40px 0;
    margin: 30px 0;
  }
}
.compare_img {
  margin: 4.266666vw auto 0;
}

.modal_open + .modal_open {
  margin-top: 5.333vw;
}
@media screen and (min-width: 768px) {
  .tsumitate_monex {
    padding: 50px 0;
    margin:  50px 0;
  }
  .compare_img {
    width:520px;
    margin: 20px auto 0;
  }
  .tsumitate_monex h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .modal_open+.modal_open {
    margin-top: 20px;
  }
}


/*----------------------------------*/
/* sec_bnr
/*----------------------------------*/
.sec_bnr {
  background: linear-gradient(8deg, #8A8A8A 0%, #C7C7C7 30%, #8A8A8A 49.79%, #C7C7C7 75%, #8A8A8A 100%);
  padding-top: 50px;
}
.bnr_list {
  width: 100%;
  max-width: 660px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.bnr_list_item {
  margin-bottom: 4.05vw;
}
.bnr_list_item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .sec_bnr {
    padding-top: 100px;
  }
  .bnr_list_item {
    margin-bottom: 30px;
  }
  .bnr_list_item:last-child {
    margin-bottom: 0;
  }
}
/*----------------------------------*/
/* accordion
/*----------------------------------*/
.accordion_head {
  cursor: pointer;
  padding: 10px 34px 10px 12px;
  position: relative;
  background-color: var(--whiteColor);
  display: flex;
  align-items: 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: max(4.05vw, 12px);
  font-weight: 700;
  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;
  background-color: var(--whiteColor);
  padding: 0 12px 10px;
  font-size: max(12px, 3.78vw);
}
.accordion_content dt {
  font-size: max(12px, 3.78vw);
  font-weight: 600;
  margin-top: 5px;
}
.accordion_content p,
.accordion_content dd {
  font-size: max(12px, 3.78vw);
  font-weight: 400;
}
.accordion_content p.bold,
.accordion_content dd.bold {
  font-weight: 600;
}
.accordion_content ul.note .note_item,
.accordion_content ul.dot .dot_item,
.accordion_content ol.note_order .note_order_item {
  font-size: max(12px, 3.78vw);
  font-weight: 400;
}
.accordion + .accordion {
  margin-top: 18px;
}
@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: 16px;
    padding-right: 20px;
  }
  .accordion_head::after,
  .accordion_head::before {
    height: 20px;
    width: 4px;
    right: 30px;
  }
  .accordion_content {
    padding: 0 50px 20px 30px;
  }
  .accordion_content,
  .accordion_content p,
  .accordion_content dd,
  .accordion_content dt {
    font-size: 14px;
  }
  .accordion_content ul.note .note_item,
  .accordion_content ul.dot .dot_item,
  .accordion_content ol.note_order .note_order_item  {
    font-size: 14px;
  }
}


/*----------------------------------*/
/* sec_caution
/*----------------------------------*/
.sec_caution {
  background-color: var(--bgGcolor);
  padding-bottom: 0;
}

/*----------------------------------*/
/* caution_scroll
/*----------------------------------*/
.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: 4.32vw;
  margin: 16px 0 8px;
  font-weight: 600;
  text-align: center;
}
.caution_scroll .h3 {
  font-size: max(12px, 4.05vw, );
  margin: 16px 0 8px;
  font-weight: 600;
}
.caution_scroll .h4 {
  font-size: max(12px, 3.78vw);
  margin: 12px 0 8px;
  font-weight: 600;
}
.caution_scroll .h5 {
  font-size: max(12px, 3.78vw);
  margin: 12px 0 0;
}
.caution_scroll p,
.caution_scroll dd {
  font-size: max(12px, 3.78vw);
  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: max(12px, 3.78vw);
  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;
  }
  .caution_scroll .h3 {
    font-size: 16px;
  }
  .caution_scroll .h4 {
    font-size: 14px;
    margin: 12px 0 8px;
    font-weight: 600;
  }
  .caution_scroll .h5 {
    font-size: 14px;
    margin: 12px 0 0;
  }
  .caution_scroll p,
  .caution_scroll dd {
    font-size: 14px;
    font-weight: 400;
  }
  .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: 14px;
  }
}



/*----------------------------------*/
/* 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 {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  text-align: center;
  background-color: rgba(34, 34, 34, 0.8);
  z-index: 99;
}
.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 0;
}
.floating_bottom .floating_display .btn_area {
  width: 49%;
}
.floating_bottom .floating_display .btn_area a,
.floating_bottom .floating_display .btn_area img,
.floating_bottom .floating_display .btn_area .e_disabled > img {
  width: 100%;
  height: auto;
}
.floating_bottom .floating_display .btn_area.e_area .checkbox {
  color: var(--whiteColor);
  margin-top: 0;
}
.floating_bottom ul.note .note_item {
  color: var(--whiteColor);
  text-align: left;
  font-size: 8px;
  font-size: max(8px, 2.5vw);
}
.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 .note_item {
    text-align: center;
    font-size: 14px;
  }
  .floating_bottom input+.check_label {
    font-size: 14px;
  }
}



/* footer */
.footer .notes {
  background-color: var(--bgGcolor);
}
.footer .notes ul.dot li {
  color: var(--fontColor);
  font-weight: 400;
}
.footer .copy {
  padding: 8.52878vw 0 42vw;
}
@media screen and (min-width: 768px) {
  .footer .copy {
    padding: 40px 0 200px;
  }
}

.sec_box.description {
  padding-top: 15px;
}
.description .common_list {
  width: 100%;
  margin: 0 auto 15px;
}
.description .common_list .common_list_item + .common_list_item {
  margin-top: 2px;
}
.description .description_ttl {
  margin-bottom: 15px;
}
.description .note {
  padding: 15px 0;
}

@media screen and (min-width: 768px) {
  .sec_box.description {
    padding-top: 40px;
  }
  .description .description_ttl {
    margin-bottom: 40px;
  }
  .description .common_list {
    width: 660px;
    margin-bottom: 40px;
  }
  .description .common_list .common_list_item + .common_list_item {
    margin-top: 5px;
  }
  .description .note {
    padding: 40px 0;
  }
}

/* sec_summary */
.sec_summary {
  background: linear-gradient(8deg, rgba(184, 184, 184, 0.40) 0%, rgba(237, 237, 237, 0.40) 30%, rgba(184, 184, 184, 0.40) 49.79%, rgba(237, 237, 237, 0.40) 75%, rgba(184, 184, 184, 0.40) 100%);
  padding-bottom: 16.22vw;
}
.sec_box.sec_summary .sec_title.sec_label {
  width: 60.54vw;
  top: -20px;
}
.sec_box.sec_summary .parts_img {
  width: 85.81vw;
}
@media screen and (min-width: 768px) {
  .sec_summary {
    padding-bottom: 130px;
  }
  .sec_box.sec_summary .sec_title.sec_label {
    width: 448px;
    top: -36px;
  }
  .sec_box.sec_summary .parts_img {
    max-width: 635px;
  }
}

.sec_tsumitate {
  background: linear-gradient(8deg, rgba(184, 184, 184, 0.40) 0%, rgba(237, 237, 237, 0.40) 30%, rgba(184, 184, 184, 0.40) 49.79%, rgba(237, 237, 237, 0.40) 75%, rgba(184, 184, 184, 0.40) 100%);
  padding-top: 11.49vw;
}
.sec_box.sec_tsumitate .sec_title.sec_label {
  width: 90.14vw;
  top: -25px;
}
.sec_box.sec_step .sec_title.sec_label {
  width: 69.32vw;
  top: -30px;
}
.sec_box.sec_bnr .sec_title.sec_label {
  width: 70vw;
  top: -25px;
}
@media screen and (min-width: 768px) {
  .sec_tsumitate {
    padding-top: 90px;
    padding-bottom: 100px;
  }
  .sec_box.sec_step .sec_title.sec_label {
    width: 513px;
    top: -60px;
  }
  .sec_box.sec_tsumitate .sec_title.sec_label {
    width: 667px;
    top: -45px;
}
.sec_box.sec_bnr .sec_title.sec_label {
  width: 518px;
  top: -51px;
}
}