@charset "UTF-8";

#entry header h1 {
	font-size: 2.2rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	text-align: center;
	padding: 5rem 0;
}
#entry footer {
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: #8d8d8d;
  padding-top: 10rem;
  padding-bottom: 5rem;
}

#entry .progressbar {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 50px;
}
#entry .progressbar .item {
	font-size: 1.8rem;
	font-weight: 500;
    position: relative;
    width: 25%;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 13px 0;
    line-height: 1.5;
    background: #b9c1d3;
    color: #fff;
}
#entry .progressbar .item span {
	font-weight: 600;
	margin-right: 1em;
}
#entry .progressbar .item:not(:last-child)::before,
#entry .progressbar .item:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 100%;
    content: '';
    border: 25px solid transparent;
    border-left: 15px solid #b9c1d3;
    margin: auto;
}
#entry .progressbar .item:not(:last-child)::before {
    margin-left: 2px;
    border-left-color: #FFF;
}
#entry .progressbar .item.active {
    z-index: 1;
    background: var(--link-color);
    color: #FFF;
}
#entry .progressbar .item.active:not(:last-child)::after {
    border-left-color: var(--link-color);
}
#entry .progressbar .item.active:not(:last-child)::before {
	border-left: none;
}

#entry h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;	
}
#entry h2 span {
	margin-right: 1rem;
}
#entry h2.tac {
	margin-right: 0;
	text-align: center;
	font-size: 2.2rem;
}
#entry h2.tac + p {
	font-size: 1.5rem;
	line-height: 2;
	text-align: center;
}
#entry h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

#entry .top_wrap {
	margin-bottom: 4rem;
  padding: 0 50px;
}
#entry .top_wrap p {
  font-size: 1.5rem;
  line-height: 2;  
}
#entry .top_wrap p span {
  color: var(--sub-color);
  font-weight: 600;
}
#entry .form_wrap {
  margin-bottom: 4rem;
}
#entry .form_cont {
  border: 10px solid #E1E5EF;
  padding: 4rem 4rem;
}
#entry .form_cont:not(:last-child) {
  margin-bottom: 2rem;
}
#entry .agree:not(:last-child) {
  margin-bottom: 4rem;
}
#entry table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.5rem;
}
#entry table th,
#entry table td {
  padding: 1rem;
  border: 1px solid var(--text-color);
  text-align: left;
  vertical-align: middle;
  line-height: 1.6;
}
#entry table th {
  background-color: var(--thin-color);
}


#entry .agree p {
	font-size: 1.5rem;
}
#entry .agree p + span {
	margin-top: 2rem;
	display: block;
}
#entry .agree a {
  color: var(--sub-color);
  text-decoration: underline;
}
#entry .agree label {
  background: #e7eefa;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  height: 6rem;
}
#entry .agree label:hover {
  cursor: pointer;
}
#entry label input[type=checkbox] {
	display: none;
}
#entry label span.checkbox-f-text {
	font-size: 1.6rem;
  display: block;
  line-height: 1.8rem;
  position: relative;
  cursor: pointer;
  padding-left: 3.2rem;
}
#entry label span.checkbox-f-text:before,
#entry label span.checkbox-f-text:after {
  position: absolute;
  content: "";
  transition: 0.3s;
}
#entry label span.checkbox-f-text:before {
  display: block;
  top: 0;
  left: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.2rem;
  border: 1px solid #B9B9B9;
  background: #ffffff;
}
#entry label span.checkbox-f-text:after {
  display: none;
  background: #ffffff;
  width: 1rem;
  height: 0.6rem;
  top: 0.5rem;
  left: 0.5rem;
  border-left: 2px solid #296CC7;
  border-bottom: 2px solid #296CC7;
  transform: rotate(-45deg);
}
#entry .agree input[type=checkbox]:checked + span:after {
  display: block;
}
#entry .form_btn {
	margin-top: 6rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
#entry .form_btn button {
  width: 30rem;
  height: 6rem;
  text-align: center;
  font-size: 2rem;
  border-radius: 1rem;
  font-weight: 600;
  border: 1px solid #ccc;
  background: #f1e767;
  background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
  background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
  background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
  -webkit-box-shadow: inset 1px 1px 1px #fff;
  box-shadow: inset 1px 1px 1px #fff;
}
#entry .form_btn button:hover {
  background: -webkit-gradient(linear, left bottom, left top, from(#fdfbfb), to(#ebedee));
  background: -webkit-linear-gradient(bottom, #fdfbfb 0%, #ebedee 100%);
  background: linear-gradient(to top, #fdfbfb 0%, #ebedee 100%);
}
#entry .form_btn button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
#entry .form_btn a {
	text-align: center;
	font-size: 1.6rem;
	font-weight: 600;
	text-decoration: underline;
}
#entry .caution {
	width: 100%;
/*	padding: 2rem 4rem;
	border: 1px solid var(--sub-color);*/
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 2rem
}
#entry .top_caution {
  width: 100%;
  padding: 2rem;
  border: 1px solid var(--sub-color);
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 4rem
}
#entry .caution li:not(:last-child) {
	margin-bottom: .5rem;
}
#entry .top_caution ul li,
#entry .caution ul li {
  text-indent: -1em;
  padding-left: 1em;
}
#entry .top_caution ul li::before,
#entry .caution ul li::before {
  display: inline-block;
  content: "";
  width: 0.6em;
  height: 0.6em;
  border-radius: 50%;
  background-color: var(--sub-color);
  margin: 0 .2em;
  vertical-align: 0.1em;
}
#entry .form_cont dl {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
  position: relative;
}
#entry .form_cont dl:not(:last-child) {
  margin-bottom: 2.5rem;
}
#entry .form_cont dl dt {
  letter-spacing: 0;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 2.8rem;
  width: 24rem;
  position: relative;
  padding-left: 5.5rem;
  padding-top: 1.2rem;
}
#entry.confirm .form_cont dl dt {
  padding-top: 0;
}

#entry .form_cont dl dt .requied {
  color: #ffffff;
  background: var(--sub-color);
  padding: 0.6rem 0.8rem;
  line-height: 1;
  font-size: 1.4rem;
  position: absolute;
  left: 0;
  top: 1.3rem;
}
#entry.confirm .form_cont dl dt .requied {
  top: 0;
}
#entry .form_cont dl dt .note {
	display: inline-block;
	font-size: 1.1rem;
	color: var(--sub-color);
	line-height: 1.5;
	margin-top: 0.5rem;
}
#entry .form_cont dl dd {
  font-size: 1.5rem;
  line-height: 2.6rem;
  width: calc(100% - 240px);
  position: relative;
}
#entry .form_radio {
  padding-top: 1.7rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  /*align-items: center;*/
  align-content: stretch;
  position: relative;
}

#entry .form_radio input[type=radio] {
  /*display: none;*/
  visibility: hidden;
  position: absolute;
}
#entry .form_radio input[type=radio]:checked + span:after {
  background: #296CC7;
}
#entry .form_radio span.radio-f:not(:last-child) {
  margin-right: 4rem;
}
#entry .form_radio span.radio-f-text {
  display: block;
  line-height: 1.8rem;
  position: relative;
  cursor: pointer;
  padding-left: 3.2rem;
}
#entry .form_radio span.radio-f-text:before,
#entry .form_radio span.radio-f-text:after {
  position: absolute;
  content: "";
  display: block;
  border-radius: 50%;
  transition: 0.3s;
}
#entry .form_radio span.radio-f-text:before {
  top: 0;
  left: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid #B9B9B9;
}
#entry .form_radio span.radio-f-text:after {
  background: #ffffff;
  width: 1rem;
  height: 1rem;
  top: 0.5rem;
  left: 0.5rem;
}
#entry .form_radio span.checkbox-f label,
#entry .form_radio span.radio-f label {
	font-weight: normal;
	margin-bottom: 0;
}
#entry .form_radio span.checkbox-f input,
#entry .form_radio span.radio-f input {
	margin-right: 5px;
}
#entry .form_radio label + figure {
	margin-top: 2rem;
	text-align: right;
}
#entry .form_radio label + p {
  margin-top: 2rem;
  font-size: 1.3rem;
  line-height: 1.4;
}
#entry .form_radio label + figure img {
	width: 150px;
}
#entry input[type=text],
#entry input[type=email],
#entry input[type=tel],
#entry input[type=url],
#entry input[type=number],
#entry input[type=password],
#entry select, #entry textarea {
  border: 1px solid #C6CBD8;
  padding: 1.1rem 2rem;
  border-radius: 0.6rem;
  font-size: 1.4rem;
  line-height: 2.6rem;
  background: #ffffff;
  width: 100%;
}
#entry .form_select {
	position: relative;
}
#entry .form_select::before {
  border-bottom: 10px solid var(--text-color);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  content: "";
  position: absolute;
  right: 20px;
  top: 10px;
  width: 0;
}
#entry .form_select::after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--text-color);
  content: "";
  position: absolute;
  right: 20px;
  top: 30px;
  width: 0;
}
#entry .sample_view {
	margin-top: 1.5rem;
}
#entry .sample_view ul {
	display: flex;
	margin-left: 1em;
}
#entry .sample_view ul li {
	margin-right: 3rem;
}
#entry .sample_view ul li a {
	text-decoration: underline;
}

#entry .tel-field input[type=text],
#entry .zip-field input[type=text] {
  width: 30rem;
  margin: 0 0.5rem;
}
/*#entry .tel-field input[type=text]:first-child,
#entry .zip-field input[type=text]:first-child {
  width: 8rem;
}*/
#entry .tel-field input[type=text]:first-child {
  margin-left: 0;
}

/*202310 vol18変更*/
/*#entry .form_cont dl.change_input,
#entry .form_cont dl.new_input {
	display: none;
}*/

#entry .change_caution {
  display: block!important;
  color: var(--sub-color);
}
#entry .change_caution dt {
  padding-left: 0!important;
}
#entry .form_cont .pass_box {
  position: relative;
}
#entry .form_cont .pass_box #buttonEye {
  font-size: 2.2rem;
  position: absolute;
  top: 26%;
  right: 20px;
}


/*terms*/
#entry.terms .terms_wrap {
  width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background-color: var(--bg-color);
}
#entry.terms h2 {
  text-align: center;
}
#entry.terms section {
  font-size: 1.6rem;
  line-height: 2.4;
}
#entry.terms li::before {
  content: "\025a1";
}

.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb80 {
  margin-bottom: 80px;
}
.tac {
  text-align: center;
}


/*20231113追記*/
/*リピーター申込用ログイン*/
/*login*/

.login_caution {
  margin-bottom: 4rem;
}
.login_caution > ul {
  width: 660px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--sub-color);
  margin: 0 auto;
}
.login_caution > ul li {
  display: inline-block;
  width: 100%;
}
.login_form_wrap {
  max-width: 420px;
  margin:50px auto;
  padding: 0 30px;
  background-color: #fff;
}
.login_form_wrap h2 {
  font-size: 2.0rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
#login_form label {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 5px;
}
#login_form input {
  width: 100%;
}
#login_form input#login_mail,
#login_form input#login_pass {
  border: 1px solid #ccc;
  border-radius: 3px;
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 10%);
  -webkit-font-smoothing: antialiased;
  padding: 10px;
  transition: border-color linear .15s,box-shadow linear .1s;
}
#login_form input::placeholder {
  color: #ccc;
}
#login_form ul li + li {
  margin-top: 15px;
}
#login_form input[type="submit"] {
  margin-top: 30px;
  padding: 15px 0;
  background-color: #0065df;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  font-size: 1.5rem;
}
#login_form input[type="submit"]:hover {
  opacity: .5;
  transition: 0.2s linear;
}
#login_form p {
  text-align: center;
}
#login_form div + p {
  margin-top: 30px;
}
#login_form p a {
  text-align: center;
  color: #0065df;
}

/*前回裏表紙*/
.prev_img {
  max-width: 600px;
  height: auto;
  border: 1px solid #000;
  margin-top: 30px;
  margin-left: 240px;
}
.prev_img > img {
  width: 100%;
}


/*共通トップページ*/
#entry .top_greet {
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 50px;
}
#entry .entranceWrap {
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.6;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
#entry .entranceWrap > div {
  width: 480px;
  border-radius: 12px;
}
#entry .entranceWrap h2 {
  font-weight: 2.2rem;
  text-align: center;
  color: #fff;
  padding: 10px 0;
  margin-bottom: 0;
  border-radius: 12px 12px 0 0;
}
#entry .new_agency > h2 {
  background-color: #c01010;
}
#entry .prev_agency > h2 {
  background-color: #3070b0;
}
#entry .entranceWrap dl {
  width: 100%;
  padding: 20px 20px 0 20px;
  border-radius: 0 0 12px 12px;
}
#entry .entranceWrap .new_agency dl {
  border: 1px solid #c01010;
}
#entry .entranceWrap .prev_agency dl {
  border: 1px solid #3070b0;
}
#entry .entranceWrap dl dd {
    text-indent: -1em;
    padding-left: 1em;
}
#entry .entranceWrap dl dd::before {
  display: inline-block;
  content: "";
  width: 0.6em;
  height: 0.6em;
  border-radius: 50%;
  margin: 0 .2em;
  vertical-align: 0.1em;

}
#entry .entranceWrap .new_agency dl dd::before {
  background-color: #c01010; 
}
#entry .entranceWrap .prev_agency dl dd::before {
  background-color: #3070b0; 
}

#entry .goEntry {
  margin: 3rem 0 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
#entry .goEntry > a {
  display: flex;
  justify-content: center;
  align-items: center;  
  width: 30rem;
  height: 6rem;
  text-align: center;
  font-size: 1.8rem;
  border-radius: 1rem;
  font-weight: 600;
  color: #fff;
}
#entry .new_agency .goEntry > a {
  border: 1px solid #c01010;
  background: rgb(192,16,16);
  background: linear-gradient(180deg, rgba(192,16,16,0.3) 10%, rgba(192,16,16,1) 100%);
}
#entry .prev_agency .goEntry > a {
  border: 1px solid #3070b0;
  background: rgb(48,112,176);
  background: linear-gradient(180deg, rgba(48,112,176,0.3) 10%, rgba(48,112,176,1) 100%);
}
p.change_note {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--sub-color);
  margin-bottom: 2rem;
}