@charset "utf-8";

/* 申し込み画面では消す */
.cv-btn {
	display: none;
}

#main_kv .title-footer svg path {
	fill: #ffffff;
}
main .flow {
  text-align: center;
  margin-bottom: 45px;
}
main p.privacy-message {
  line-height: 1.5;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
}
main p.guidance {
  line-height: 1.5;
  font-size: 14px;
  margin: 10px 0;
}
main div.thanks-message,
main div.close-message,
main div.error-message {
  min-height: 160px;
  padding: 20px 10px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}
main div.thanks-message span.bold,
main div.close-message span.bold,
main div.error-message span.bold {
  font-weight: bold;
  line-height: 2;
}
main .to-toppage {
  width: 320px;
	margin: 0 auto 80px;
}
main .to-toppage a {
  width: 100%;
	display: block;
	text-align: center;
	font-size: 24px;
	color: #fff;
	font-weight: bold;
	padding: 30px 0;
	background-image: linear-gradient(0deg, rgba(160, 0, 0, 1), rgba(255, 0, 0, 1));
	border-radius: 60px;
	position: relative;
	line-height: 1;
	transition: filter 0.3s ease;
}
main .to-toppage a:hover {
  filter: brightness(1.2);
}
main .to-toppage a:after {
	position: absolute;
	content: "";
	width: 18px;
	height: 16px;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 40px;
	background: url(../images/common/registration_btn_arrow.svg) no-repeat center/cover;
}





/* privacy box */
main .privacy-box {
  height: 300px;
  overflow: auto;
  border: 1px solid #656464;
  padding: 20px;
}
main .privacy-box > h4 {
  margin: 0 auto 20px;
}
main .privacy-box > ol > li {
  margin-bottom: 20px;
}
main .privacy-message {
  padding: 0 100px;
}
main .privacy-box a {
	color: #ee3333;
	text-decoration: underline;
}
main .privacy-box a:hover {
	text-decoration: none;
}

/* notice */
main dl.notice {
  margin: 0 auto;
}
main dl.notice > dt {
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 4px;
}
main dl.notice dd > ul {
  padding-bottom: 30px;
}
main dl.notice dd > ul > li {
  margin-bottom: 10px;
}
main dl.notice dd ul.memo > li {
  margin-bottom: 5px;
  line-height: 1.2;
}
main dl.notice dd ul.memo > li > dl > dd {
  padding-left: 1em;
  padding-bottom: 30px;
  line-height: 1.6;
}
main dl.notice dd ul.memo li > dl > dt {
  padding-bottom: 5px;
}
main dl.notice dd ul.memo li dl dt a {
  color: #000000;
  font-weight: bold;
  cursor: pointer;
}
main dl.notice dd ul.memo li dl dt a:hover {
  color: #777777;
}
main dl.notice dd ul.memo li dl dd ul {
  padding: 0;
}
main dl.notice dd ul.memo > li > dl > dd > ul > li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 0;
}
main dl.notice dd ul.memo > li > dl > dd > ul > li > ul > li {
  text-indent: -2em;
  padding-left: 2em;
}

/* flow */
.flow {
  background-color: #fff;
  position: relative;
  max-width: 700px;
  margin: 0 auto 50px;
}
.flow:after {
  content: "";
  width: calc(100% - 100px);
  height: 1px;
  display: block;
  background-color: #ccc;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.flow ol {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.flow ol li {
  margin: 0;
  width: 100px;
  z-index: 1000;
  text-align: center;
}
.flow ol li div.circle {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
}
.flow ol li div.circle span {
  display: table-cell;
  vertical-align: middle;
  font-size: 12px;
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 50%;
  background-color: #ccc;
  color: #fff;
}
.flow ol li.clear div.circle span {
  background-color: #ee3333;
}
.flow ol li:first-child {
  margin: 0;
}
.flow ol li div.text {
  display: block;
  margin: 20px 0 0 0;
  font-size: 14px;
  color: #333;
}

/* registration-notice */
.registration-notice {
  margin: 8px 0;
}

/* submit */
.submit {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  gap: 0 20px;
}



.submit li {
  display: inline-block;
}
.submit li input {
  width: 280px;
	margin: 0 auto;
	display: block;
	text-align: center;
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	padding: 25px 0;
	background-image: linear-gradient(0deg, rgba(160, 0, 0, 1), rgba(255, 0, 0, 1));
	border-radius: 60px;
	border: none;
	cursor: pointer;
}

	
.submit li input.agree {
  background-color: #0f4b8f;
}
.submit li input.not-agree {
  background-color: #cccccc;
}
.submit li input.next {
  background-color: #00a0e8;
}
.submit li input.back {
  background-color: #cccccc;
}
.submit li input.confirm {
  background-color: #0f4b8f;
}
.submit li input.register {
  background-color: #0f4b8f;
}
.submit li input.login {
  background-color: #0f4b8f;
}
.submit li input:hover {
  filter: alpha(opacity=80);
  opacity: 0.8;
}

/* check-list */
ul.check-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 15px;
}
ul.check-list li {
  display: flex;
  align-items: center;
}
ul.check-list li input[type="radio"],
ul.check-list li input[type="checkbox"] {
  width: auto;
  margin-right: 4px;
}

/* table.form */
table.form {
  width: 100%;
  margin-bottom: 20px;
}
table.form input[type="radio"],
table.form input[type="checkbox"],
table.form label {
  cursor: pointer;
}
table.form th {
  background-color: #efefef;
  color: #333333;
  border: 1px solid #cccccc;
  text-align: center;
  width: 200px;
  background-clip: padding-box;
}
table.form td {
  padding: 8px 15px;
  border: 1px solid #cccccc;
  text-align: left;
}
.confirm table.form td {
  padding: 14px 15px;
}
.confirm table.session td {
  padding: 8px 15px;
}
table.form th.error {
  background-color: #ffcccc;
}

table.sub-item {
  width: auto;
}
table.form table.sub-item th,
table.form table.sub-item th.error,
table.form table.sub-item td {
  background-color: transparent;
  background-image: none;
  width: auto;
  padding: 2px 5px 2px 0px;
  border: none;
  text-indent: 0px;
  text-align: left;
  font-weight: normal;
}
.require {
  color: #f00;
  padding: 0px 5px;
}
.textbox {
  border: 1px solid #ccc;
}
select {
  border: 1px solid #ccc;
}
textarea {
  width: 50%;
  margin: 0px 3px;
  border: 1px solid #ccc;
}

/* input width */
table.form td input {
  width: 400px;
  padding: 3px;
  font-weight: 400;
}
table.form td input:focus {
  outline: none;
}
table.form td input#corp,
table.form td input#corp_kana {
  width: 360px;
}
table.form td input#dept,
table.form td input#position {
  width: 360px;
  margin-right: 3px;
}
table.form td input#address_zip_1,
table.form td input#address_zip_2 {
  width: 45px;
}
table.form td input#address_1,
table.form td input#address_2,
table.form td input#address_3 {
  width: 340px;
}
table.form td input#tel_1,
table.form td input#tel_2,
table.form td input#tel_3,
table.form td input#fax_1,
table.form td input#fax_2,
table.form td input#fax_3 {
  width: 54px;
}
table.form td input#f_name,
table.form td input#g_name,
table.form td input#f_name_kana,
table.form td input#g_name_kana {
  width: 120px;
  margin: 0px 3px 0 0;
  padding: 3px;
}
table.form td input#corp,
table.form td input#tel_1,
table.form td input#fax_1,
table.form td input#address_zip_1 {
  margin: 0px 3px 0px 0px;
  padding: 3px;
}
table.form td input#tel_2,
table.form td input#fax_2 {
  margin: 0px 3px;
}
table.form td input#tel_3,
table.form td input#fax_3 {
  margin: 0px 3px;
}
table.form td input#address_zip_2 {
  margin: 0px 3px;
}
table.form td input#data1_1,
table.form td input#data1_2,
table.form td input#data1_3,
table.form td input#data1_4,
table.form td input#data1_5,
table.form td input#data1_9 {
  width: auto;
  margin: 0px 3px 0 0;
  vertical-align: middle;
}
table.form td label {
  vertical-align: middle;
}
table.form td p.notice {
  font-size: 10px;
  margin: 0px;
}
table.form td span.notice {
  font-size: 10px;
}

/* table.enquete */
table.enquete {
  width: 100%;
  margin: 25px 0;
  text-align: left;
  border-collapse: collapse;
}
table.enquete input[type="radio"],
table.enquete input[type="checkbox"],
table.enquete label {
  cursor: pointer;
}
table.enquete th {
  padding: 8px;
  vertical-align: middle;
  border: solid 1px #cccccc;
  background-color: #efefef;
  text-align: left;
}
.confirm table.enquete th {
  padding: 12px 8px;
}
table.enquete th.error {
  background-color: #ffcccc;
}
table.enquete td {
  text-align: left;
  padding: 8px;
  vertical-align: middle;
  border: solid 1px #ccc;
}
table.enquete td .items {
	display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
}
table.enquete td input#enq_5.textbox,
table.enquete td input#enq_6.textbox {
	width: 300px;
}
table.enquete td .special-text {
  display: inline-block;
  margin-left: 10px;
}
.confirm table.enquete td {
  padding: 14px 8px;
}
table.enquete td ul.check-item {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
table.enquete td ul.check-item li {
  list-style: none;
  margin-right: 10px;
  display: inline;
  white-space: nowrap;
}
table.enquete td ul.check-item li input,
table.enquete td ul.check-item li label {
  vertical-align: middle;
}
table.enquete td div.container {
  padding: 0 10px;
}
table.enquete td .section-top {
  margin: 0 0 2px -10px;
}
table.enquete td .section {
  margin: 15px 0 2px -10px;
}

table.enquete td span.item {
  line-height: 24px;
}

/* confirm */
div.confirm table.enquete td span.item {
  display: block;
  margin-bottom: 12px;
}
div.confirm table.enquete td span.item:last-child {
  margin-bottom: 0;
}

/* input width */
table.enquete td input {
  width: auto;
  margin: 3px 0px;
  vertical-align: middle;
}
table.enquete td label {
  margin: 0px 5px 0px 3px;
  vertical-align: middle;
}
table.enquete td input.textbox {
  width: 200px;
  padding: 3px;
  font-weight: 400;
}

/* session select */
h3.session-select {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  position: relative;
  text-align: center;
  margin: 80px 0 50px;
}
/*h3.session-select:before {*/
/*  content: "";*/
/*  display: block;*/
/*  width: 178px;*/
/*  height: 2px;*/
/*  background: #0f4b8f;*/
/*  position: absolute;*/
/*  top: 28px;*/
/*  left: 50%;*/
/*  transform: translateX(-50%);*/
/*}*/
h3.session-select > span {
  font-size: 16px;
  display: block;
  margin-top: 20px;
}

/* session table */
table.session {
  width: 100%;
}
table.session tr td {
  border: none;
  padding: 3px 5px;
}
table.session tr td.time {
  width: 124px;
}
table.session tr td.code {
  width: 70px;
}

/* error */
p.session-error-message,
p.error-message-top {
  color: #f00;
  font-size: 14px !important;
  font-weight: bold !important;
  background-color: #ffecec;
  text-align: center !important;
  padding: 20px 0px;
  margin: 12px 0 !important;
  border-bottom: 3px double #ce0807;
  border-top: 3px double #ce0807;
}
p.error-message {
  clear: both;
  color: #f00;
  margin: 3px 0px 0px 3px;
}
