/* ------------------------------
 共通
 ------------------------------ */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
html, body, h1, h2, h3, h4, h5, h6, div, ul, li, dl, dt, dd, p, td, th {
  margin: 0;
  padding: 0;
}
html, body, h1, h2, h3, h4, h5, h6, div, ul, li, dl, dt, dd, p, td, th, span, a, input, textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    vertical-align: middle;
    border-width: medium;
}
ul, li {
  list-style-type: disc;
  list-style-image: none;
  text-align: left;
}
ul {
  padding-left: 20px;
}
html {
  height: 100%;
  width: 100%;
}
body {
	color: #111111;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 15px;
	line-height: 1.6;
	position: relative;
	background-color: #180823;
}
a {
	text-decoration: underline;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	color: #FFFFFF;
	word-break: break-all;
}
a:hover {
	color: #C7D1F7;
}
img {
    max-width: 100%;
    height: auto;
    font-size: medium;
}
input.text, textarea {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #503464;
    padding: 10px;
    width: 100%;
    font-size: 16px;
	background-color: #3b1d51;
    color: #fff;
}
input[type="date"] {
	width: auto;
	min-height: 2.8em!important;
	box-sizing: border-box!important;
	background-color: #3b1d51;
	text-align: left!important;
}
label {
  cursor: pointer;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.sp {
    display: none;
}
.mb30 {
    margin-bottom: 30px;
}
.mb10 {
	margin-bottom: 10px;
}
.center {
    text-align: center;
}
.step {
  list-style-type: none;
  display: table;
  width: 100%;
  padding: 0;
  margin: 0 0 30px;
  overflow: hidden;
}
.step li {
	display: table-cell;
	position: relative;
	background-color: #d1cbee;
	padding: 1em 0.5em 1em 2em;
	color: #c615f0;
	width: 33.3%;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
}
.step li:last-child {
  padding-right: 1em;
}
.step li:last-child:before, .step li:last-child:after {
  display: none;
}
.step li:before, .step li:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.step li:before {
  top: -15px;
  right: -1em;
  border-style: solid;
  border-color: transparent transparent transparent #300f46;
  border-width: 40px 0 40px 1em;
  z-index: 10;
}
.step li:after {
  top: -15px;
  right: -.8em;
  border-style: solid;
  border-color: transparent transparent transparent #d1cbee;
  border-width: 40px 0 40px 1em;
  z-index: 10;
}
.step li.is-current {
	background-color: #c615f0;
	font-weight: bold;
	padding: 1rem;
	color: #fff;
}
.step li.is-current:after {
    border-color: transparent transparent transparent #c615f0;
}
/* radio */
/* ---------------- */
.radio {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
.radio label{
	margin-right: 20px;
	margin-bottom: 10px;
}
.radio label:last-child {
    margin-right: 0;
}
.radio input {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
  -webkit-box-shadow: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px;
}
.radio-text{
	display: block;
}
.radio-name {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.radio-name:before {
  content: "";
  display: inline-block;
  width: 1.3rem;
  height: 1.3rem;
  border: 1px solid #ccc;
  border-radius: 50%;
  margin-right: 6px;
  flex-shrink: 0;
  background-color: #fff;
}
.radio input:checked + .radio-name {
  color: rgb(33, 150, 243);
}
.radio input:checked + .radio-name:before {
  border: 0.4em solid rgb(33, 150, 243);
}
.radio input:focus-visible + .radio-name .radio-text {
  background: linear-gradient(transparent 90%, rgba(33, 150, 243, 0.3) 90%);
}
/* checkbox */
/* ---------------- */
.checkbox {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-weight: bold;
	justify-content: center;
}
.checkbox input {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    margin: -1px;
    font-size: 16px;
}
.checkbox .required {
  vertical-align: super;
}
.checkbox-name {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.checkbox-name:before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-right: 6px;
  flex-shrink: 0;
  background-color: #fff;
}
.checkbox input:checked + .checkbox-name {
  color: rgb(33, 150, 243);
}
.checkbox input:checked + .checkbox-name:before {
  border: 1px solid rgb(33, 150, 243);
  background-color: rgb(33, 150, 243);
}
.checkbox input:checked + .checkbox-name:after {
  content: "";
  position: absolute;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  left: 0.4em;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.4em;
  height: 0.65em;
  transform: translateY(-1px) rotate(45deg);
}
.checkbox input:focus-visible + .checkbox-name .checkbox-text {
  background: linear-gradient(transparent 90%, rgba(33, 150, 243, 0.3) 90%);
}
input:disabled + .checkbox-name {
  opacity: 0.5;
}
/* select */
/* ---------------- */
.select {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 350px;
	
}
.select::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(135deg);
  pointer-events: none;
}
.select select {
    height: 2.8em;
    width: 100%;
    padding: 0 8px;
    border-radius: 3px;
    border: none;
    box-shadow: 0 0 0 1px #503464 inset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    font-size: 16px;
    background-color: #3b1d51;
    color: #fff;
}
.select select::-ms-expand {
  display: none;
}
.select select:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}
/* ------------------------------
 構造
 ------------------------------ */
.inner {
	padding: 20px 20px 40px;
	margin: 0 auto;
	width: 90%;
	max-width: 750px;
	background-color: #300f46;
	min-height: 100vh;
	color: #fff;
}
.note {
	display: block;
	margin-bottom: 10px;
}
.required {
  position: relative;
}
.required::before {
	content: "必須";
	display: inline-block;
	color: #FFF;
	background-color: #F40A0F;
	padding: 10px 5px;
	margin: 0;
	font-size: 10px;
	font-weight: normal;
	line-height: 1px;
	position: relative;
	left: 0;
	top: 0;
}
#form_body h1 {
    text-align: center;
    margin: 0;
}
#form_body h2 {
    padding: 5px;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}
#form_body h3 {
    margin-bottom: 20px;
}
#form_body .attention {
	text-align: left;
	padding: 20px;
	border: 1px solid #C6C6C6;
	/* [disabled]background-color: #F0F0F0; */
	margin: 20px 0;
	/* [disabled]max-height: 270px; */
	/* [disabled]overflow-y: auto; */
}
#form_body .attention h3 {
  font-size: 15px;
  margin-bottom: 10px;
}
#form_body .attention ul {
  margin: 10px 0;
  padding-left: 15px;
}
#form_body .attention li {
  text-align: left;
  text-indent: -13px;
  /* [disabled]padding-left: 10px; */
  list-style-type: none;
}
#form_body h4{
	font-size: 17px;
	color: #fff;
	margin-bottom: 10px;
	border-bottom: 1px solid #fff;
	padding-bottom: 5px;
}
#form_body dl:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
#form_body dl {
    /* [disabled]height: 1%; */
    /* [disabled]display: table; */
    width: 100%;
    margin-bottom: 10px;
}
#form_body dt {
    font-weight: bold;
    /* [disabled]float: left; */
    width: 100%;
    /* [disabled]display: table-cell; */
    vertical-align: middle;
    font-size: 16px;
    text-align: left;
    padding: 5px 0;
    margin-bottom: 0px;
}
#form_body dt span {
    color: #FFF;
    background-color: #F40A0F;
    font-size: 10px;
    padding: 5px;
    margin: 0 5px;
    font-weight: normal;
    display: inline-block;
    line-height: 1;
}
#form_body dd {
    width: 100%;
    vertical-align: middle;
    /* [disabled]border-bottom: 1px solid #C6C6C6; */
    padding-bottom: 10px;
}
#form_body .radio dt {
  float: none;
  padding-bottom: 10px;
  text-align: center;
  width: auto;
}
#form_body .radio dd {
  margin-left: 0;
  text-align: center;
}
#form_body textarea {
  height: 150px;
}
#form .form_btn {
    text-align: center;
    padding-top: 30px;
}
#form .form_btn button {
    border-radius: 5px;
    background-color: #c615f0;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    color: #FFF;
    display: inline-block;
    font-size: 120%;
    margin: 0 10px;
    line-height: 50px;
    text-align: center;
    border-width: 0;
    max-width: 400px;
    width: 40%;
    transition: all 0.2s;
}
#form .form_btn .edit {
    background-color: #5F5F5F;
}
#form .form_btn button:hover{
    background-color: #6A5EE4;
}
#form .form_btn .edit:hover {
    background-color: #8C8C8C;
}
.error {
  color: #f30;
  font-size: 86%;
}
#form_body div.error {
  padding-top: 5px;
}
#form .privacy {
	/* [disabled]max-height: 300px; */
	/* [disabled]overflow-y: scroll; */
	padding: 10px;
	border: 1px solid #C6C6C6;
	margin-bottom: 30px;
}
#form .privacy dl {
  display: block;
}
#form .privacy dl dt {
  width: auto;
  display: block;
  border-bottom-width: 0;
  padding: 0;
  background-color: transparent;
}
#form .privacy dl dd {
    padding: 0;
    border-bottom-width: 0;
    margin-bottom: 10px;
    display: block;
    width: auto;
}
/* ------------------------------
 SP
 ------------------------------ */
@media screen and (max-width: 768px) {
  body {
  }
.sp {
    display: block;
}
  #container {
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    width: auto;
  }
  #form_body dl {
    display: block;
  }
#form_body h1 {
    font-size: 16px;
}
  #form_body .radio dt, #form_body dt {
    padding-bottom: 5px;
    text-align: left;
    width: 100%;
    display: block;
    border-bottom-width: 0;
    margin-bottom: 10px;
  }
  #form_body .radio dd, #form_body dd {
    margin: 0;
    /* [disabled]padding: 0; */
    text-align: left;
    width: 100%;
    display: block;
    border-bottom-width: 0;
  }
#form_body .attention {
    padding: 10px;
}
#form .form_btn button {
    width: 80%;
    margin: 0 auto 20px;
    max-width: none;
    display: block;
}
.required::before {
  top: 0px;
}
.inner {
	padding: 10px 10px 40px;
	width: 94%;
}
}

/* ------------------------------
 Upload Progress Bar & File Status Styles
 ------------------------------ */
/* Upload Progress Bar Styles */
.progress-bar {
	width: 100%;
	height: 20px;
	background-color: #f0f0f0;
	border-radius: 10px;
	overflow: hidden;
	margin: 10px 0;
	box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.progress-fill {
	height: 100%;
	background-color: #4CAF50;
	transition: width 0.3s ease;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	background-image: linear-gradient(
		45deg,
		rgba(255, 255, 255, 0.15) 25%,
		transparent 25%,
		transparent 50%,
		rgba(255, 255, 255, 0.15) 50%,
		rgba(255, 255, 255, 0.15) 75%,
		transparent 75%,
		transparent
	);
	background-size: 1rem 1rem;
	animation: progress-bar-stripes 1s linear infinite;
}

@keyframes progress-bar-stripes {
	0% {
		background-position: 1rem 0;
	}
	100% {
		background-position: 0 0;
	}
}

.progress-text {
	text-align: center;
	font-size: 14px;
	margin-top: 5px;
	font-weight: bold;
	color: #ffffff;
}

/* File Upload Status Styles */
.file-status-container {
	display: inline-flex;
	align-items: center;
	margin-top: 8px;
}

.file-status-container input[name="file1_status"] {
	font-size: 14px;
	color: #999;
	padding: 5px 10px;
	background-color: #2a2a2a !important;
	border-radius: 4px !important;
	transition: all 0.3s ease;
}

.file-status-container input[name="file1_status"].uploaded {
	background-color: #d4edda !important;
	color: #155724 !important;
	font-weight: bold;
}

.file-remove-btn {
	font-size: 14px;
	font-weight: bold;
	transition: opacity 0.3s ease;
	white-space: nowrap;
	min-width: 70px;
	text-align: center;
}

.file-remove-btn:hover {
	opacity: 0.7;
}

input[type="file"] {
	visibility:hidden;
	position:absolute;
}
