@charset "utf-8";

.contents-2columns .body-side-faq{
  position: relative;
  margin: 0;
  padding: 0;
  width: 25%;
  max-width: 30rem;
  min-width: 26rem;
  order: 1;
}



@media screen and (max-width: 840px) {
/*
.contents-2columns .body-side-faq{ display: none;}
*/
}/* End max 840 */


.form-intro .inner{
  margin: 0;
  padding: 1.5em;
  display: block;
  border-radius: 1rem;
  background-color: #f1f1f1;
}



/* form STEP */

.form-step{
  margin: 0 0 1.5em;
  padding: 0;
  display: flex;
  overflow: hidden;
  background-color: #eee;
}

.form-step li{
  position: relative;
  margin: 0;
  padding: 0.5em 0.2em 0.5em 1.5em;
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.form-step.free li{
  position: relative;
  margin: 0;
  padding: 0.5em 0.2em 0.5em 1.5em;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.form-step.form-step-3 li{ width: calc(100% / 3);}

.form-step li:before{
  position: absolute;
  top: 0;
  right: -1.7rem;
  bottom: 0;
  margin: auto;
  padding: 0;
  width: 2.5em;
  height: 2.5em;
  border: 0.4rem solid #fff;
  border-width: 0.4rem 0.4rem 0 0;
  background-color: #eee;
  display: inline-block;
  transform: rotate(45deg) skew(calc((90deg - 40deg) / 2),calc((90deg - 40deg) / 2));  
  pointer-events: none;
  content: "";
  z-index: 10;
}

.form-step li:last-child::before{ display: none;}
.form-step li.active{ background-color: #0081cc; color: #fff;}
.form-step li.active:before{ background-color: #0081cc;}

.form-step li span{
  width: 100%;
  display: block;
  font-size: 1.2rem;
  line-height: 1.4;
}

.form-step li strong{
  position: relative;
  width: 100%;
  display: block;
  font-size: var(--font-size-s);
  min-height: 0;
  line-height: 1.4;
  z-index: 11;
}

@media screen and (max-width: 520px) {

.form-step.free li{ padding: 0.5em 0.2em 0.5em 1em;}
.form-step.free li:first-child{ padding: 0.5em 0.2em 0.5em 0.2em;}
.form-step.free li strong{ font-size: 1.2rem;}

} /* End max 520 */

@media screen and (max-width: 380px) {

.form-step li strong em{ display: none;}

} /* End max 380 */



/* form-contents-section */

.form-contents-section{
  padding: 1.5em;
  width: calc(100% - 2rem);
  max-width: 120rem;
  display: block;
  border-radius: 1rem;
  border: solid #ccc 0.1rem;
}

.section-2columns .form-contents-section{ width: 100%;}

@media screen and (max-width: 480px) {

.form-contents-section{ padding: 1em;}

} /* End max 480 */


/* FORM TABLE */

.form-table{
  margin: auto;
  width: 100%;
  border-collapse: collapse;
  border: 0.1rem solid #ccc;
  border-width: 0.1rem 0;
}

.form-table tr{border-bottom: 0.1rem dotted #999;}
.form-table tr:last-child{ border-bottom: none;}

.form-table th{
  padding: 1em;
  width: 26%;
  background-color: #f1f1f1;  
  font-weight: 400;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.form-table td{
  padding: 1em;
  width: 74%;
  background-color: #fff;
  text-align: left;
  vertical-align: middle;
}

.form-table th span{
  margin: 0 0 0 0.5em;
  padding: 0.1em 0.5em;
  background-color: #c00;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.form-table td .form-caution-txt{ color: #f60;}

.form-set .form-table .input-block input,
.form-set .form-table .select-block select{
  padding: 0.5em !important;
  border-radius: 0.4rem !important;
}


/* error */

.form-table tr.error th{ background-color: #ffd5d5;}
.form-table tr.error td{ background-color: #ffeaea;}

.form-table tr.error .error-msg,
.red{
  padding: 0 0 1em 0;
  display: block;
  color: #c00;
  font-size: var(--font-size-m);
  font-weight: 600;
  line-height: 1.4;
}


.error-block{
  margin-top: 1.5em;
  padding: 1.5em;
  width: calc(100% - 2rem);
  max-width: 120rem;
  display: block;
  border-radius: 1rem;
  background-color: #ffeaea;
}

.error-block a{
  color: #c00;
  text-decoration: underline;
}

.error-list-ul{ padding: 0 0 0 0.6em;}

.error-list-ul li{
  margin: 0 0 0 1em;
  padding: 0 0 0.5em 0;
  display: list-item;
  list-style: disc;
  color: #c00;
}

.form-set .input-block{ width: 100%; display: flex; align-items: center; justify-content: flex-start; flex-wrap: wrap; gap: 0.5rem 0.5rem; overflow: hidden;}
.form-set .input-block input{ margin: 0; width: 100%; display: block;}
.form-set .input-block input:last-child{ margin: 0;}
.form-set .input-block.size-s input{ width: 6em;}
.form-set .input-block.tel input{ width: 5em;}
.form-set .input-block.size-m input{ width: 48%; max-width: 28rem;}
.form-set .select-block.size-m{ width: 48%; max-width: 28rem;}

.form-set .select-block.size-s{ width: 30%; max-width: 20rem;}




.form-set .input-block.receipt-addressee input{ width: calc(100% - 5em - 0.5rem);}
.form-set .input-block.receipt-addressee .select-block{ width: 5em;}



.form-table .form-split-list{
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem 1rem;
}

.form-table .form-split-list.full li,
.form-table .form-split-list li.full{ width: 100%;}
.form-table .form-split-list.split-2 li,
.form-table .form-split-list li.split-2{ width: calc(50% - 1rem);}
.form-table .form-split-list.split-3 li,
.form-table .form-split-list li.split-3{ width: calc(100% / 3 - 1rem);}
.form-table .form-split-list.split-4 li,
.form-table .form-split-list li.split-4{ width: calc(25% - 1rem);}

.form-table .form-split-list.split-free li,
.form-table .form-split-list li.split-free{ margin-right: 1.5em; width: auto;}

.form-table .image-list{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.form-table .image-list li{
  padding: 0.5em 0;
  width: 48%;
  display: block;
}



/* PHOTO UPLOAD */

.photo-upload{
  margin: auto;
  width: 100%;
  border-collapse: collapse;
}

.form-table.photo-upload tr:first-child{ border-bottom: none;}

.photo-upload th{
  padding: 0.5em 1em 0.5em 0;
  border-bottom: 0.1rem solid #ccc;
  background-color: transparent;
}

.photo-upload th:first-child{ border-right: 0.4rem solid #fff;}
.photo-upload td{ position: relative; padding: 1em 0.5em;}
.photo-upload td:first-child{ position: relative; width: 55%; border-right: 0.4rem solid #fff;}

.form-photo{ margin: auto; width: 100%; max-width: 36rem;}
.form-photo-title{ text-align: center;}

@media screen and (max-width: 720px) {

.photo-upload th:first-child{ border-right: none;}
.photo-upload th:nth-child(2){ display: none;}

.photo-upload td{ padding: 0 0 1.5em; width: 100%; display: block;}
.photo-upload td:first-child{ padding: 1em 0 0.5em; width: 100%; border-right: none;}

.photo-upload td .input-block,
.photo-upload td .input-block input{ width: 100%;}


} /* End max 720 */


.form-table .member-type{
  position: relative;
  margin: 0;
  padding: 1.5em 0 1em 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: var(--font-size-s);
}

.form-table .member-type dt{
  margin: 0;
  padding: 0 0 0.5em 0;
  width: 6em;
  font-weight: 600;
  clear: both;
}
.form-table .member-type dd{
  margin: 0;
  padding: 0 0 0.5em 0;
  width: calc(100% - 6em);
}


.form-kojin{
  margin: 0;
  padding: 1.5em;
  width: 100%;
  height: 40vh;
  display: block;
  overflow-y: scroll;
  background-color: #f1f1f1;
  border: 0.1rem solid #ccc;
}

.form-kojin .list-dl dt{ margin-bottom: 1em;}
.form-kojin .list-dl dd{ padding-bottom: 1.5em;}
.form-kojin .list-ol{ margin: 0; padding: 0;}
.form-kojin .list-ol .alpha{ padding: 1em 0 0 0;}
.form-kojin .list-ol .alpha li{ list-style-type: lower-alpha;}

.form-agree{
  margin: 0 auto 2em;
  padding: 1.5em;
  width: 100%;
  border: 0.1rem solid #ccc;
  border-top: none;
}

.form-agree.error{ background-color: #ffd5d5;}

.form-agree.error .error-msg{
  padding: 0 0 1em 0;
  display: block;
  color: #c00;
  font-size: var(--font-size-s);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.form-agree em{
  position: relative;
  margin: 0;
  padding: 0 0 0 0.5rem;
  z-index: 1;
}

.form-agree label{
  margin: 0;
  padding: 0;
  width: 100%;
  
  display: flex;
  align-items: center;
  justify-content: center;  
  font-weight: 600;
  line-height: 1.4;
}

.form-agree label strong{
  margin: 0 0 0 0.5em;
  padding: 0.1em 0.5em;
  background-color: #c00;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}



.checkbox-input{ display: none !important;}

.checkbox-parts{
  position:relative;
  margin: 0;
  padding: 3rem 0 0 0;
  width: 3rem;
  height: 0;
  display: block;
  overflow: hidden;
  line-height: 300;
  z-index: 100;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}


.checkbox-parts:before{
  position: absolute;
  top: 0.5rem;
  left: 0.4rem;
  margin: auto;
  width: 1.8rem;
  height: 1.8rem;
  display: block;
  border: 0.1rem solid #999;
  border-radius: 0.2em;
  background-color: #fff;
  content: "";
}

.checkbox-input:checked + label{
  font-weight: 600;
  color: #0081cc;
}

.checkbox-input:checked + .checkbox-parts:after{
  position: absolute;
  top: 0.4rem;
  left: 0.7rem;
  width: 1.7rem;
  height: 1.1rem;
  display: block;
  border-left: 0.4rem solid #0081cc;
  border-bottom: 0.4rem solid #0081cc;
  transform: rotate( -45deg );
  content: "";
}

button.form-next-button{transition: all .5s ease !important;}

button.form-next-button[disabled]{ opacity: 1; cursor: default !important; background-color: #ccc; border: solid 0.1rem #ccc;}
button.form-next-button[disabled]:hover{ opacity: 1 !important;}

.thanks-txt{
  position: relative;
  margin: 1em auto;
  padding: 3em 0;
  border: 0.1rem dotted #999;
  border-width: 0.1rem 0;
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
}

.thanks-back{
  position: relative;
  margin: 0;
  padding: 1em 0 2em 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.thanks-back a{
  position: relative;
  margin: 0;
  padding: 0.8em 1.5em;
  width: 90%;
  max-width: 32rem;
  display: block;
  background: url(/new_service/common/img/icon_arrow_white.svg) center left 1em no-repeat #0081cc;
  background-size: 2.2rem;
  border: solid 0.1rem #0081cc;
  border-radius: 2em;
  color: #fff;
  text-align: center;
}


.bottom-line{
  margin-bottom: 1em;
  padding: 0 0 0.5em 0;
  border-bottom: 0.1rem dotted #999;
}

.thanks-info{
  position: relative;
  margin: 2em auto;
  padding: 2em;
  width: 100%;
  max-width: 64rem;
  display: flex;
  flex-wrap: wrap;
  border-radius: 1rem;
  background-color: #f9f9f9;  
  font-weight: 600;
}

.thanks-info dt{
  margin: 0;
  padding: 0.5em 0;
  width: 6em;
}

.thanks-info dd{
  margin: 0;
  padding: 0.5em 0;
  width: calc(100% - 6em);
}

.add-notice{
  margin: 2em auto;
  padding: 1em;
  width: 96%;
  display: block;
  background-color: #f1f1f1;
}


@media screen and (max-width: 420px) {

.thanks-info{ padding: 1em;}

.thanks-info dt{
  margin: 0;
  padding: 0.5em 0;
  width: 100%;
  border-bottom: 0.1rem dotted #999;
}

.thanks-info dd{
  margin: 0;
  padding: 0.5em 0 0.5em 1em;
  width: 100%;
}


} /* End max 420 */






.add-notice p{
  position: relative;
  margin: 0 0 0.5em 0;
  padding: 0 0 0 1.5em;
  
  line-height: 1.4;
}

.add-notice p:before {
  position: absolute;
  top: 0;
  left: 0;
  color: #c00;
  content: '\203B';
}

.add-notice .split{
  margin: 0;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.add-notice .split span{ width: calc(100% - 6em);}

.add-notice .split select{ padding: 0.5em;}

.add-notice .split button{
  position: relative;
  margin: 0;
  padding: 0.5em 0.5em 0.5em 1.5em;
  width: 5em;
  display: block;
  border: 0.1rem solid #1ba6e0;
  border-bottom: 0.1rem solid #054c9c;
  border-right: 0.1rem solid #054c9c;
  border-radius: 0.2em;
  box-sizing: border-box;
  background-color: #1079be;
  color: #fff;
  font-size: var(--font-size-s);
  line-height: 1.6;
  text-align: center;
  cursor: pointer;
  z-index: 1;
}

.add-notice .split button:before{
  position: absolute;
  top: 0;
  left: 0.5em;
  bottom: 0;
  margin: auto;
  padding: 0;
  width: 14px;
  height: 14px;
  display: block;
  background: url(/service/common/img/icon_arrow_white.svg) no-repeat;
  background-size: contain;
  content: "";
  z-index: 100;
}



@media screen and (max-width: 640px) {

.form-table th{
  padding: 0.8em 0.5em;
  width: 100%;
  display: block;
  background-color: #eee;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.form-table td{
  padding: 0.8em 0.5em 1.5em 0.5em;
  width: 100%;
  display: block;
  background-color: #fff;
  text-align: left;
  vertical-align: middle;
}

.form-table td .cart-foot-caution{
  padding: 1.5em 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.form-table td .cart-foot-caution dd{
  padding-top: 0.5em;
  width: 100%;
}

.photo-upload th{
  padding: 0.5em 1em 0.5em 0;
  border-bottom: none;
  background-color: transparent;
  font-weight: 600;
}
.photo-upload th:first-child{ border-right: none;}
.photo-upload th:nth-child(2){ display: none;}

.photo-upload td{ padding: 0 0 1.5em; width: 100%; display: block;}
.photo-upload td:first-child{ padding: 1em 0 0.5em; width: 100%; border-right: none;}



.form-kojin{
  padding: 1em;
  height: 50vh;
}

.form-agree{ padding: 1.5em 1rem;}

.add-notice{
  margin: 2em auto;
  padding: 1em;
  width: 96%;
  display: block;
  background-color: #f1f1f1;
}

.add-notice p{
  position: relative;
  margin: 0 0 0.5em 0;
  padding: 0 0 0 1.5em;  
  line-height: 1.4;
}

.add-notice p:before {
  position: absolute;
  top: 0;
  left: 0;
  color: #c00;
  content: '\203B';
}

.add-notice .split{
  margin: 0;
  width: 70%;
  align-items: center;
  justify-content: space-between;
}

.add-notice .split span{ width: calc(100% - 6em);}


}/* max 640 */



@media screen and (max-width: 440px) {

.form-table .form-split-list.split-2 li,
.form-table .form-split-list li.split-2,
.form-table .form-split-list.split-3 li,
.form-table .form-split-list li.split-3,
.form-table .form-split-list.split-4 li,
.form-table .form-split-list li.split-4{ width: 100%;}

}/* max 440 */


.registration-flow{
  margin: 2em auto;
  width: 100%;
  max-width: 64rem;
  display: block;
}


.member-entry-div{
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 1em;
}

.member-entry-div.border-top{
  padding: 2em 0 0;
  border-top: 0.1rem dotted #999;
}

@media screen and (max-width: 768px) {

.member-entry-div{
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;  
  align-items: center;
  justify-content: center;
  gap: 1em 0;
}

}/* max 768 */


.reset-title{
  margin: 0 0 1em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: var(--font-size-l);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.reset-title em{
  margin: 0 0 0.5em;
  padding: 0.3em 1.5em;
  border-radius: 0.3em;
  color: #fff;
  font-size: var(--font-size-s);
  line-height: 1.6;
  background-color: #c00;
}


/* select-shipping */

.select-shipping{ margin: 0 0 2em; padding: 1em; background-color: #f1f1f1;}

.select-shipping .form-table{ border: none;}

.shipping-select-block{
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 1em;
}

.shipping-select-block .select-block{
  margin: 0;
  padding: 0;
  width: calc(100% - 6em);
  max-width: 44rem;
}

.select-shipping .button{
  position: relative;
  margin: 0;
  padding: 0.5em 0.5em;
  width: 90%;
  max-width: 6em;
  display: block;
  border-radius: 2em;
  background-color: #0081cc;
  color: #fff;
  text-align: center;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.5em;
  cursor: pointer;
}

