.line_text {
    width: 90%;
    margin: 2vw auto 0;
    font-size: 18px; 
    text-align: center;
}

.line_ctabox {
    /*--
    width: 90%;
    --*/
    padding:16px ;
    margin: 2vw auto;
    /*--追加--*/
    background-color:  #e4edee;
}

img.form_flow {
    width: 90%;
    margin: 4vw auto 0;
}

/* ---------------------form--------------------- */
#form {
    width:100%;
    margin: 12vw 0;

}

#formWrap {
	width:60%;
	margin:0 auto;
	color:#555;
	line-height:2vw;
	font-size:90%;
}

#formWrap h3 {
    font-size: 2vw;
    text-align: center;
    padding-bottom: 2vw;
}

p.f_text {
    font-size: 1vw;
    padding-bottom: 1vw;
    line-height: 2vw;
    letter-spacing: 1px;
    text-align: center;
}

table.formTable{
	width: 100%;
	margin:0 auto;
	border-collapse:collapse;
    table-layout: fixed;
}

table.formTable span {
    font-size: .8vw;
    padding: 0.2vw 0.6vw 0.4vw;
    margin-left: 3vw;
    background-color: red;
    border-radius: 6px;
    color: #fff;
}

table.formTable th, table.formTable td {
	width:auto;
	display:block;
}

table.formTable td,table.formTable th{
	padding:6px;
}

table.formTable th{
	width:100%;
	font-weight:500;
	text-align:left;
    color: #fff;
    border-radius: 2px;
    border-bottom:1px solid #fff;
}

/*生年月日入力欄*/
.birth-input {
  display: flex;
  align-items: center;
  gap: 5px;
}
.birth-input input {
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/*店舗と競技経験選択欄*/
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.checkbox-group label {
  margin-right: 10px;
}

/*雇用種類選択*/
.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 5px;
}
.radio-group label {
  cursor: pointer;
}

/*職歴*/
.shoku_textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  resize: vertical; /* 高さだけ変更可能 */
}

#name,
#furigana,
#age,
#phone,
#email,
#school {
    width: 100%;
    padding: 0.3vw 0;
    margin: 0.3vw auto;
}

.select_box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0.5vw 0;
    margin: 0 auto;
}

.select_box p {
    width: 15%;
}

#first_choice,
#second_choice,
#third_choice,
.day_select {
    width: 85%;
    color: #333;
    border-radius: 0px;
}



.btn_form {
    margin: 2vw 0;
}

.submit_btn {
    width: 80%;
    font-size: 18px;
    letter-spacing: 2px;
    padding: 1vw 2vw;
    background-color: rgba(208, 17, 113, 1);
    color: #fff;
    border-radius: 30vw;
    border: hsl(318, 100%, 50%);
}

.submit_btn:hover {
    opacity: 0.7;
    transition: 0.3s;
}

.reset_btn {
    font-size: 1vw;
    padding: 0.5vw 2vw;
    color: #333;
    border-radius: 30vw;
    border: none;
}

/*追記*/
.privacy-text {
  width: 100%;
  /*max-width: 600px;*/
  height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
  border: 1px solid #707070;
  padding: 10px;
  /*resize: none;          サイズ変更できないようにする */
  overflow-y: scroll;   /* 縦スクロール表示 */
  scrollbar-color: #b82caa #EFEFEF;
  background-color: #fafafa;
  font-size: 14px;
  line-height: 1.6;
}


/* ---------------------mobile----------------------- */
@media screen and (max-width:500px) {
img.form_flow {
    margin: 6vw auto 0;
}
    

.line_text {
    margin: 4vw auto 0;
    font-size: 14px; 
}

.line_ctabox {
    margin: 4vw auto ;
}

#formWrap {
	width:95%;
	margin:0 auto;
    line-height: 6vw;
}

#formWrap h3 {
    font-size: 16px;
    padding: 20px 0 40px;
}

p.f_text {
    width: 90%;
    margin: 0 auto;
    font-size: 14px;
    padding-bottom: 10px;
    line-height: 26px;
}

table.formTable span {
    font-size: 10px;
    padding: 0.6vw 2vw 1vw;
    margin-left: 6vw;
    background-color: red;
    border-radius: 6px;
    color: #fff;
}

table.formTable th {
	margin-top:0;
	border-bottom:0;
    border-bottom:1px solid #fff;
}

#name,
#furigana,
#age,
#phone,
#email,
#school {
    width: 100%;
    padding: 1vw 0;
    margin: 0.6vw auto;
    color: #333;
    border-radius: 0px;
}

form input[type="text"], form textarea {
	width:100%;
	padding:5px;
	font-size:110%;
	display:block;
}

form input[type="submit"], form input[type="reset"], form input[type="button"] {
	display:block;
	width:80%;
	height:40px;
}

form input[type="date"] {
    width: 70%;
  }
   

.btn_form {
    margin: 6vw 0;
}

.submit_btn {
    font-size: 18px;
}

}