@charset "UTF-8";

body {
  text-align: center;
  background: #fff;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin: 0;
}

a:not(.btn) {
  text-decoration: underline
}

a:not(.btn)link, a:not(.btn)visited {
  color: #06c
}

a:not(.btn)active, a:not(.btn)hover {
  color: #09f
}

@media (max-width:768px) {
  a:not(.btn)active, a:not(.btn)hover {
    color: #06c
  }
}

input,select{
  font-family: "Noto Sans JP", sans-serif;
}

.strong{
  font-weight: 700;
}

:root {
    --color-red: #D82A00;
    --color-blue: #0096D8;
    --color-gray: #f5f5f5;
    --color-gray-primary: #696969;
    --color-gray-base: #b7b7b7;
}
  
*[data-font="inter"]{
  font-family: "Inter", sans-serif;
  font-weight: 500;
}


/* =========================================================
header
========================================================= */
.c-hd {
    width: 100%;
    background: #fff;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 50;
}

.c-hd__in {
  display: flex;
  align-items: center;
  height: 72px;
}
@media (max-width: 768px) {
  .c-hd__in {
    height: 16vw;
  }
}

.c-hd-logo {
  flex: 1;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .c-hd-logo {
    padding: 0 0 0 16px;
  }
}
@media (min-width: 769px) {
  .c-hd-logo {
    padding: 0 16px 0 40px;
  }
}
.c-hd-logo a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .c-hd-logo__img {
    width: 92px;
  }
}
@media (min-width: 769px) {
  .c-hd-logo__img {
    width: 115px;
  }
}


/* =========================================================
footer
========================================================= */

footer {
  background-color: #000;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  footer {
    height: 64vw;
  }
  .c-ft__logo {
    width: 46.93vw;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .c-ft__logo {
    grid-area: logo;
    width: 175px;
  }
}
.c-ft__logo a {
  display: block;
}

.c-ft__copyright {
  color: #ffffff;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

@media (max-width: 768px) {
  .c-ft__copyright {
    margin: 6.4vw auto 0;
    font-size: 3.2vw;
  }
}
@media (min-width: 769px) {
  .c-ft__copyright {
    margin: 24px auto 0;
    font-size: 12px;
  }
}


input[type="submit"] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
  background: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
input:not([type="submit"]) {
  background-color: #F5F5F5;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  box-sizing: border-box;
  color: #000000;
  outline: none;
  padding: 14px 24px;
  margin: 8px 0 0 0;
  font-family: 'Noto Sans JP',sans-serif;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
}
textarea {
  background-color: #F5F5F5;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  box-sizing: border-box;
  color: #000000;
  outline: none;
  padding: 13px 20px;
  margin: 8px 0 0 0;
  font-family: 'Noto Sans JP',sans-serif;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  height: 300px;
}
@media screen and (max-width : 768px){
  input,
  textarea {
    border-radius: 1vw;
    font-size: 3.73vw;
    padding: 3.73vw 4.27vw;
    margin: 2vw 0 0 0;
  }
  textarea {
      height: 80vw;
  }
}


input::placeholder,
textarea::placeholder {
  color: #777777;
}
input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #F5F5F5 inset;
}

.select_box{
  position: relative;
}
.select_box::after{
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  margin: auto;
  vertical-align: middle;
  width: 11px;
  height: 11px;
  border-top: 1px solid #333333;
  border-left: 1px solid #333333;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width : 768px){
  .select_box::after{
      top: 7vw;
      right: 6vw;
      width: 2.13vw;
      height: 2.13vw;
  }
}
@media (min-width: 769px) {
  .select_box{
    width: 440px;
  }
}


select {
  /* 初期化 */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: #F5F5F5;
  color: #777777;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  outline: none;
  box-sizing: border-box;
  padding: 14px 24px;
  margin: 8px 0 0 0;
  font-family: 'Noto Sans JP',sans-serif;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  position: relative;
}
.select_box[data-type="selected"] select {
  color: #000000;
}
@media screen and (max-width : 768px){
  select {
    border-radius: 1vw;
    font-size: 3.73vw;
      padding: 3.73vw 4.27vw;
      margin: 2vw 0 0 0;
    }
}

option {
  color: #333333;
}

.confirmError{
  color: var(--color-red);
  font-size: 12px;
  margin: 10px 0 0 0;
}
.confirmError::before{
  content: '※';
  font-family: 'Noto Sans JP',sans-serif;
}

@media (min-width: 769px) {

	*[data-view="pc"]{ display: block; }
	*[data-view="sp"]{ display: none; }

  .container{
    padding: 0 0 120px 0;
  }
  .container .inner{
    width: 90%;
    max-width: 904px;
    margin: 0 auto;
  }

  .form{
    width: 680px;
    margin: 0 auto;
  }




  /* =========================================================
  c-ttl
  ========================================================= */
  .c-ttl01{
    margin: 0 0 48px 0;
  }

  .c-ttl01 > * + * {
    margin: 8px auto 0;
  }

  .c-ttl01__en {
    font-size: clamp(10px, 7.4666666667vw, 28px);
    line-height: 1.3;
    font-weight: 500;
    text-align: center;
  }

  .c-ttl01__en--small {
    font-size: clamp(10px, 3.7333333333vw, 14px);
  }

  .c-ttl01__ja {
    font-size: clamp(10px, 3.2vw, 12px);
    line-height: 1.5;
    text-align: center;
  }


  /* =========================================================
  step
  ========================================================= */

  .info_step_list{
      display: flex;
      justify-content: center;
      align-items: flex-start;
      margin: 0 auto 64px auto;
      width: 308px;
      /* padding: 46px 16px 106px 0; */
      box-sizing: border-box;
  }
  .info_step_list li{
    position: relative;
    font-size: 16px;
    font-weight: 700;
  }
  .info_step_list li:not(:last-child){
    flex: 1;
  }
  .info_step_list li:not(:last-child)::before{
    content: "";
    position: absolute;
    top: 7px;
    right: -16px;
    width: 100%;
    height: 1px;
    z-index: -2;
  }
  .info_step_list li::before{
    background-color: var(--color-gray-base);
  }
  .info_step_list li .number{
    position: relative;
    margin: 0 0 0 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-indent: -0.05em;
    color: var(--color-gray-base);
  }
  .info_step_list[data-current="1"] li:nth-of-type(1) .number,
  .info_step_list[data-current="2"] li:nth-of-type(-n+2) .number,
  .info_step_list[data-current="3"] li:nth-of-type(-n+3) .number,
  .info_step_list[data-current="4"] li:nth-of-type(-n+4) .number{
    color: #ffffff;
  }
  .info_step_list li .number::before{
    content: "";
    position: absolute;
    top: -12px;
    left: -10px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--color-gray-base);
    border-radius: 50%;
    box-sizing: border-box;
    z-index: -1;
  }
  .info_step_list li:nth-of-type(1) .number::before{
    left: -11px;
  }
  .info_step_list li .number::before{
    background-color: #ffffff;
  }
  .info_step_list[data-current="1"] li:nth-of-type(1) .number::before,
  .info_step_list[data-current="2"] li:nth-of-type(-n+2) .number::before,
  .info_step_list[data-current="3"] li:nth-of-type(-n+3) .number::before,
  .info_step_list[data-current="4"] li:nth-of-type(-n+4) .number::before{
    border: 1px solid var(--color-blue);
  }
  .info_step_list[data-current="1"] li:first-child .number::before,
  .info_step_list[data-current="2"] li:first-child::before,
  .info_step_list[data-current="2"] li:nth-of-type(-n+2) .number::before,
  .info_step_list[data-current="3"] li:nth-of-type(-n+2)::before,
  .info_step_list[data-current="3"] li:nth-of-type(-n+3) .number::before,
  .info_step_list[data-current="4"] li:nth-of-type(-n+3)::before,
  .info_step_list[data-current="4"] li:nth-of-type(-n+4) .number::before{
    background-color: var(--color-blue);
  }

  .info_step_list li p{
    margin: 18px 0 0 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-gray-base);
    text-indent: 0.4em;
  }
  .info_step_list[data-current="1"] li:nth-of-type(1) p,
  .info_step_list[data-current="2"] li:nth-of-type(-n+2) p,
  .info_step_list[data-current="3"] li:nth-of-type(-n+3) p,
  .info_step_list[data-current="4"] li:nth-of-type(-n+4) p{
    color: var(--color-blue);
  }
  .info_step_list li:nth-of-type(4) p{
    text-indent: -0.6em;
  }



  /* =========================================================
  subTtl
  ========================================================= */

  h3.subTtl{
    font-size: 24px;
    line-height: 1.5;
    margin: 0 0 16px 0;
    padding: 64px 0 8px 0;
    border-bottom: 1px solid #d9d9d9;
  }
  .info_step_list + h3.subTtl{
    padding: 0 0 8px 0;
  }


  /* =========================================================
  privacyList
  ========================================================= */

  .privacyList{
    list-style: none;
  }
  .privacyList li{
    font-size: 14px;
  }
  .privacyList li:nth-of-type(n+2){
    margin: 24px 0 0 0;
  }
  .privacyList.attention > li:nth-of-type(n+2){
    margin-top: 8px;
  }
  .privacyList li > dl{
    display: flex;
    flex-wrap: wrap;
  }
  .privacyList li > dl > dt{
    font-size: 14px;
    font-weight: 700;
    width: 24px;
  }
  .privacyList li > dl > dd.ttl{
    font-size: 14px;
    font-weight: 700;
    width: calc(100% - 24px);
    margin: 0;
  }
  .privacyList li > dl > dd {
    font-size: 14px;
    margin: 8px 0 0 24px;
  }
  .privacyList li > dl[data-type="no_ttl"] > dd {
    width: calc(100% - 24px);
    margin: 0;
  }

  .privacyList .subCol{
    display: grid;
    grid-template-columns: auto 1fr;
    row-gap: 8px;
    margin: 8px 0 0 0;
  }
  .privacyList .subCol dt{
    text-align: left;
    font-weight: 500;
  }
  .privacyList .subCol dd{
    margin-left: 0;
  }
  .privacyList ul.ex{
    padding: 10px 0;
  }
  .privacyList ul.ex li{
    margin: 0 0 0 1em;
    text-indent: -1em;
  }
  .privacyList ol.ex{
    padding: 10px 0;
    list-style: none;
  }
  .privacyList ol.ex li{
    margin: 0 0 5px 0;
  }
  .privacyList ol.ex dl{
    overflow: hidden;
  }
  .privacyList ol.ex dt{
    float: left;
    width: 3em;
    text-align: center;
  }
  .privacyList ol.ex dd {
    margin-left: 3em;
  }


  /* =========================================================
  viewcard
  ========================================================= */

  .viewcard{
    background-color: var(--color-gray);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 420px;
    margin: 40px auto 0 auto;
    padding: 32px;
  }

  .viewcard_ttl{
    font-size: 14px;
    font-weight: 700;
    text-align: center;
  }
  .viewcard_num{
    font-size: 24px;
    font-weight: 700;
    text-align: center;
  }
  .viewcard_txt{
    color: #777777;
    font-size: 12px;
    text-align: center;
  }



  /* =========================================================
  form_box
  ========================================================= */
  .form_box{
    margin: 40px 0 0 0;
  }

  .form_box[data-type="clm2"]{
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
  }

  .form_box a{
      text-decoration: underline;
      text-underline-offset: 0.5em;
  }

  .form_box .form_clm{
      width: 100%;
  }
  .form_box[data-type="clm2"] .form_clm{
    width: 48.2%;
  }

  .form_box h4{
      display: flex;
      justify-content: space-between;
      margin: 0 0 8px 0;
      width: 100%;
  }
  .form_box h4 label{
      font-size: 14px;
      font-weight: 700;
  }
  .form_box h4 label span{
      color: var(--color-red);
      font-size: 12px;
      font-weight: 400;
      margin: 0 0 0 8px;
  }
  .form_box h4 span{
      font-size: 12px;
  }

  .form_box h5{
    font-size: 14px;
    font-weight: 700;
  }

  .form_box .form_clm p{
    font-size: 12px;
    margin: 4px 0 0 0;
  }
  .form_box .form_clm p.lead{
    font-size: 14px;
    margin: 0 0 10px 0;
  }

  .form_box[data-name="one_lumine_id"] input,
  .form_box[data-name="tel"] input{
      width: 240px;
  }
  


  input[type=radio]{
    display: none;
  }
  .form_radio{
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .form_radio span{
    font-size: 14px;
    font-weight: 700;
  }
  .form_radio label{
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    padding: 0 0 0 30px;
    position: relative;
    width: auto;
  }
  .form_radio label::before{
    background: #ffffff;
    border: 1px solid #D0D0D0;
    border-radius: 50%;
    content: '';
    display: block;
    height: 14px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 14px;
  }
  .form_radio label::after{
    background: var(--color-blue);
    border-radius: 50%;
    content: '';
    display: block;
    height: 10px;
    left: 8px;
    margin-top: -5px;
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 10px;
  }
  input[type=radio]:checked + label::after{
      opacity: 1;
  }


  .comment{
    font-size: 12px;
    margin: 12px 0 0 0;
  }



  /* =========================================================
  note
  ========================================================= */

  .note .noteTtl{
    font-size: 14px;
    font-weight: 700;
    margin: 40px 0 8px 0;
  }

  .note ul li{
    font-size: 14px;
  }
  .note ul li:nth-of-type(n+2){
    margin: 8px 0 0 0;
  }



  /* =========================================================
  thanks
  ========================================================= */

  .thanks{
    max-width: 680px;
    margin: 0 auto;
  }
  .thanks_ttl{
    font-size: 24px;
    margin: 0 0 24px 0;
    text-align: center;
  }
  .thanks_lead{
    color: var(--color-blue);
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 24px 0;
    text-align: center;
  }
  .thanks_txt{
    font-size: 14px;
    margin: 0 0 64px 0;
  }


  /* =========================================================
  pageNav
  ========================================================= */

  .pageNav{
    margin: 40px 0;
  }
  .pageNav .lead{
    margin: 0 0 40px 0;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
  }

  .pageNav ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
  }
  body[data-type="confirm"] .pageNav ul{
    flex-direction: row-reverse;
  }
  .pageNav ul li{
    border-radius: 8px;
    width: 328px;
    overflow: hidden;
  }
  .pageNav ul li .btn{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    width: 100%;
    height: 52px;
    font-size: 14px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
  }
  .pageNav ul li[data-type="prev"] .btn{
    background-color: #d9d9d9;
  }
  .pageNav ul li[data-type="next"] .btn{
    background-color: #777777;
    color: #ffffff;
  }
  .pageNav ul li .btn:hover{
    background-color: var(--color-blue);
    color: #ffffff;
  }

  .pageNav ul li .btn::after{
    content: "";
    display: block;
    position: absolute;
    top: 0; bottom: 0;
    margin: auto;
    vertical-align: middle;
    width: 8px;
    height: 8px;
    transform: rotate(135deg);
    transition: all 0.3s ease;
  }
  .pageNav ul li[data-type="prev"] .btn::after{
    border-top: 1px solid #000000;
    border-left: 1px solid #000000;
    left: 18px;
    transform: rotate(-45deg);
  }
  .pageNav ul li[data-type="next"] .btn::after{
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    right: 18px;
    transform: rotate(135deg);
  }
  .pageNav ul li .btn:hover::after{
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
  }



}@media (max-width: 768px) {

	*[data-view="pc"]{ display: none; }
	*[data-view="sp"]{ display: block; }

	*:focus {
		outline: none;
	}
	a {
		-webkit-tap-highlight-color:rgba(0,0,0,0);
		cursor:pointer;
	}

  .container{
    padding: 0 0 21.33vw 0;
  }
  .container .inner{
    width: 87%;
    margin: 0 auto;
  }


  /* =========================================================
  c-ttl
  ========================================================= */
  .c-ttl01{
    margin: 16vw 0;
  }

  .c-ttl01 > * + * {
    margin: 8px auto 0;
  }

  .c-ttl01__en {
    font-size: clamp(10px, 7.4666666667vw, 28px);
    line-height: 1.3;
    font-weight: 500;
    text-align: center;
  }

  .c-ttl01__en--small {
    font-size: clamp(10px, 3.7333333333vw, 14px);
  }

  .c-ttl01__ja {
    font-size: clamp(10px, 3.2vw, 12px);
    line-height: 1.5;
    text-align: center;
  }


  /* =========================================================
  step
  ========================================================= */

  .info_step_list{
      display: flex;
      justify-content: center;
      align-items: flex-start;
      margin: 0 auto 17.07vw auto;
      width: 80vw;
      box-sizing: border-box;
  }
  .info_step_list li{
    position: relative;
    font-size: 3.73vw;
    font-weight: 700;
  }
  .info_step_list li:not(:last-child){
    flex: 1;
  }
  .info_step_list li:not(:last-child)::before{
    content: "";
    position: absolute;
    top: 1.6vw;
    right: -4.27vw;
    width: 100%;
    height: 1px;
    z-index: -2;
  }
  .info_step_list li::before{
    background-color: var(--color-gray-base);
  }
  .info_step_list li .number{
    position: relative;
    margin: 0 0 0 2.13vw;
    font-size: 3.73vw;
    font-weight: 500;
    line-height: 1;
    text-indent: -0.03em;
    color: var(--color-gray-base);
  }
  .info_step_list li:nth-of-type(1) .number{
    text-indent: 0.025em;
  }
  .info_step_list[data-current="1"] li:nth-of-type(1) .number,
  .info_step_list[data-current="2"] li:nth-of-type(-n+2) .number,
  .info_step_list[data-current="3"] li:nth-of-type(-n+3) .number,
  .info_step_list[data-current="4"] li:nth-of-type(-n+4) .number{
    color: #ffffff;
  }
  .info_step_list li .number::before{
    content: "";
    position: absolute;
    top: -3.4vw;
    left: -2.67vw;
    width: 10.13vw;
    height: 10.13vw;
    border: 1px solid var(--color-gray-base);
    border-radius: 50%;
    box-sizing: border-box;
    z-index: -1;
  }
  .info_step_list li .number::before{
    background-color: #ffffff;
  }
  .info_step_list[data-current="1"] li:nth-of-type(1) .number::before,
  .info_step_list[data-current="2"] li:nth-of-type(-n+2) .number::before,
  .info_step_list[data-current="3"] li:nth-of-type(-n+3) .number::before,
  .info_step_list[data-current="4"] li:nth-of-type(-n+4) .number::before{
    border: 1px solid var(--color-blue);
  }
  .info_step_list[data-current="1"] li:first-child .number::before,
  .info_step_list[data-current="2"] li:first-child::before,
  .info_step_list[data-current="2"] li:nth-of-type(-n+2) .number::before,
  .info_step_list[data-current="3"] li:nth-of-type(-n+2)::before,
  .info_step_list[data-current="3"] li:nth-of-type(-n+3) .number::before,
  .info_step_list[data-current="4"] li:nth-of-type(-n+3)::before,
  .info_step_list[data-current="4"] li:nth-of-type(-n+4) .number::before{
    background-color: var(--color-blue);
  }

  .info_step_list li p{
    margin: 5vw 0 0 0;
    font-size: 3.2vw;
    font-weight: 400;
    line-height: 1;
    color: var(--color-gray-base);
    text-indent: 0.4em;
  }
  .info_step_list[data-current="1"] li:nth-of-type(1) p,
  .info_step_list[data-current="2"] li:nth-of-type(-n+2) p,
  .info_step_list[data-current="3"] li:nth-of-type(-n+3) p,
  .info_step_list[data-current="4"] li:nth-of-type(-n+4) p{
    color: var(--color-blue);
  }
  .info_step_list li:nth-of-type(4) p{
    text-indent: -0.6em;
  }



  /* =========================================================
  subTtl
  ========================================================= */

  h3.subTtl{
    font-size: 6.4vw;
    line-height: 1.5;
    margin: 0 0 4.27vw 0;
    padding: 17.07vw 0 2.13vw 0;
    border-bottom: 1px solid #d9d9d9;
  }
  .info_step_list + h3.subTtl{
    padding: 0 0 2.13vw 0;
  }


  /* =========================================================
  privacyList
  ========================================================= */

  .privacyList{
    /* margin: 0 0 40px 0; */
    list-style: none;
  }
  .privacyList li{
    font-size: 3.73vw;
  }
  .privacyList li:nth-of-type(n+2){
    margin: 6.4vw 0 0 0;
  }
  .privacyList li > dl{
    display: flex;
    flex-wrap: wrap;
  }
  .privacyList li > dl > dt{
    font-size: 3.73vw;
    font-weight: 700;
    width: 6.4vw;
  }
  .privacyList li > dl > dd.ttl{
    font-size: 3.73vw;
    font-weight: 700;
    width: calc(100% - 6.4vw);
    margin: 0;
  }
  .privacyList li > dl > dd {
    font-size: 3.73vw;
    margin: 2.13vw 0 0 6.4vw;
  }
  .privacyList li > dl[data-type="no_ttl"] > dd {
    width: calc(100% - 6.4vw);
    margin: 0;
  }

  .privacyList li > dl > dd a,
  .privacyList li > dl > dd a:visited,
  .privacyList li > dl > dd a:active,
  .privacyList li > dl > dd a:hover{
    color: #000000;
    text-decoration: none;
  }


  .privacyList .subCol{
    margin: 2.13vw 0 0 0;
  }
  .privacyList .subCol dt{
    text-align: left;
    font-weight: 500;
    margin-top: 2.13vw;
  }
  .privacyList .subCol dd{
    margin-left: 0;
  }
  .privacyList ul.ex{
    padding: 10px 0;
  }
  .privacyList ul.ex li{
    margin: 0 0 0 1em;
    text-indent: -1em;
  }
  .privacyList ol.ex{
    padding: 10px 0;
    list-style: none;
  }
  .privacyList ol.ex li{
    margin: 0 0 5px 0;
  }
  .privacyList ol.ex dl{
    overflow: hidden;
  }
  .privacyList ol.ex dt{
    float: left;
    width: 3em;
    text-align: center;
  }
  .privacyList ol.ex dd {
    margin-left: 3em;
  }


  /* =========================================================
  viewcard
  ========================================================= */

  .viewcard{
    background-color: var(--color-gray);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
    margin: 8vw auto 0 auto;
    padding: 6.4vw;
  }

  .viewcard_ttl{
    font-size: 3.73vw;
    font-weight: 700;
    text-align: center;
  }
  .viewcard_num{
    font-size: 6.4vw;
    font-weight: 700;
    text-align: center;
  }
  .viewcard_num a,
  .viewcard_num a:visited,
  .viewcard_num a:active,
  .viewcard_num a:hover{
    color: #000000;
    text-decoration: none;
  }
  .viewcard_txt{
    color: #777777;
    font-size: 3.2vw;
    text-align: center;
  }


  /* =========================================================
  form_box
  ========================================================= */
  .form_box{
    margin: 10.67vw 0 0 0;
  }

  .form_box[data-type="clm2"]{
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
  }

  .form_box a{
      text-decoration: underline;
      text-underline-offset: 0.5em;
  }

  .form_box .form_clm{
      width: 100%;
  }
  .form_box[data-type="clm2"] .form_clm:nth-of-type(n+2){
    margin: 2.13vw 0 0 0;
  }

  .form_box h4{
      display: flex;
      justify-content: space-between;
      margin: 0 0 1vw 0;
      width: 100%;
  }
  .form_box h4 label{
      font-size: 3.73vw;
      font-weight: 700;
  }
  .form_box h4 span{
    color: var(--color-red);
    font-size: 3.2vw;
    font-weight: 400;
    margin: 0 0 0 2vw;
  }
  .form_box[data-name="one_lumine_id"] h4 span{
    display: block;
    margin: 0;
  }

  .form_box h5{
    font-size: 3.73vw;
    font-weight: 700;
  }

  .form_box .form_clm p{
      font-size: 3.2vw;
      margin: 1vw 0 0 0;
  }
  .form_box .form_clm p.lead{
    font-size: 3.73vw;
    margin: 0 0 2.67vw 0;
  }

  .form_box[data-name="tel"] input{
    width: 64vw;
  }
  


  input[type=radio]{
    display: none;
  }
  .form_radio{
    display: flex;
    flex-direction: column;
    gap: 6.4vw;
    margin: 6.4vw 0 0 0;
  }
  body[data-type="confirm"] .form_radio{
    flex-direction: row;
  }


  .form_radio span{
    font-size: 3.73vw;
    font-weight: 700;
  }
  .form_radio label{
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    font-size: 3.73vw;
    font-weight: 700;
    padding: 0 0 0 30px;
    position: relative;
    width: auto;
  }
  .form_radio label::before{
    background: #ffffff;
    border: 1px solid #D0D0D0;
    border-radius: 50%;
    content: '';
    display: block;
    height: 3.73vw;
    left: 5px;
    margin-top: -2vw;
    position: absolute;
    top: 50%;
    width: 14px;
  }
  .form_radio label::after{
    background: var(--color-blue);
    border-radius: 50%;
    content: '';
    display: block;
    height: 10px;
    left: 2vw;
    margin-top: -5px;
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 10px;
  }
  input[type=radio]:checked + label::after{
      opacity: 1;
  }


  .comment{
    font-size: 3.2vw;
    margin: 4.27vw 0 0 0;
  }



  /* =========================================================
  note
  ========================================================= */

  .note .noteTtl{
    font-size: 3.73vw;
    font-weight: 700;
    margin: 10.67vw 0 2vw 0;
  }

  .note ul li{
    font-size: 3.73vw;
  }
  .note ul li:nth-of-type(n+2){
    margin: 8px 0 0 0;
  }



  /* =========================================================
  thanks
  ========================================================= */

  .thanks_ttl{
    font-size: 6.4vw;
    margin: 0 0 6.4vw 0;
    text-align: center;
  }
  .thanks_lead{
    color: var(--color-blue);
    font-size: 3.73vw;
    font-weight: 700;
    margin: 0 0 6.4vw 0;
    text-align: center;
  }
  .thanks_txt{
    font-size: 3.73vw;
    margin: 0 0 17.07vw 0;
  }




  /* =========================================================
  pageNav
  ========================================================= */

  .pageNav{
    margin: 10.67vw 0 0 0;
  }
  .pageNav .lead{
    margin: 0 0 10.67vw 0;
    font-size: 3.73vw;
    font-weight: 700;
    text-align: center;
  }

  .pageNav ul{
    display: flex;
    flex-direction: column-reverse;
    gap: 6.4vw;
    width: 53.33vw;
    margin: 0 auto;
  }
  body[data-type="confirm"] .pageNav ul{
    flex-direction: column;
  }
  .pageNav ul li{
    border-radius: 2.13vw;
    overflow: hidden;
    width: 100%;
  }
  .pageNav ul li .btn{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    width: 100%;
    height: 11.73vw;
    font-size: 3.2vw;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
  }
  .pageNav ul li[data-type="prev"] .btn{
    background-color: #d9d9d9;
  }
  .pageNav ul li[data-type="next"] .btn{
    background-color: #777777;
    color: #ffffff;
  }

  .pageNav ul li .btn::after{
    content: "";
    display: block;
    position: absolute;
    top: 0; bottom: 0;
    margin: auto;
    vertical-align: middle;
    width: 2.13vw;
    height: 2.13vw;
    transform: rotate(135deg);
    transition: all 0.3s ease;
  }
  .pageNav ul li[data-type="prev"] .btn::after{
    border-top: 1px solid #000000;
    border-left: 1px solid #000000;
    left: 4.8vw;
    transform: rotate(-45deg);
  }
  .pageNav ul li[data-type="next"] .btn::after{
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    right: 4.8vw;
    transform: rotate(135deg);
  }




}




