@charset "UTF-8";
/* CSS Document */

.apply--contentbox{
	background-color: #FFFFFF;
	padding: 60px 160px;
	margin-top: 50px;
}



.apply-form br {
  display: none;
}

/* 共通フォームレイアウト */
.apply-form .form-row {
  margin-bottom: 20px;
}

/* ★ 横並び用：ラベルと入力欄を左右に */
.apply-form .form-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.apply-form .form-row__label {
  width: 160px;            /* ラベル列の幅：スクショ見ながら調整 */
  font-size: 14px;
  line-height: 1.6;
}

.apply-form .form-row__field {
  flex: 1;
}

/* label単体のスタイル */
.apply-form label {
  display: inline-block;
  font-size: 14px;
	font-weight: bold;
}

/* 必須バッジ */
.badge-required {
  display: inline-block;
  background-color: #5D3A8B;
  color: #ffffff;
  padding: 3px;
  font-size: 11px;
  font-weight: normal;
  margin-left: 10px;
}

/* テキスト / テキストエリア / select / tel / email */
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-tel,
.wpcf7-form-control.wpcf7-textarea,
.wpcf7-form-control.wpcf7-select {
  width: 100%;
  border: 1px solid #DC164D;
  padding: 8px 10px;
  box-sizing: border-box;
  border-radius: 0;
}

/* テキストエリア高さ調整 */
.wpcf7-form-control.wpcf7-textarea {
  min-height: 120px;
}

/* ラジオボタンの選択カラー */
.wpcf7-form input[type="radio"] {
  accent-color: #DC164D;
}

/* 生年月日：右側のフィールド内で横並び */
.birthday-field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.birthday-select {
  display: inline-flex;
  align-items: center;
	width: 146px;
}

.birthday-select select {
  width: auto;
  min-width: 80px;
}

.birthday-unit {
  margin-left: 4px;
}

/* ご住所内の行 */
.address-line {
  display: block;
  margin-bottom: 8px;
}

.address-label {
  font-size: 12px;
  display: inline-block;
  margin-right: 8px;
}

.postal-input {
  max-width: 180px;
}


/* ボタン本体 */
.apply-submit__inner {
  width: 100%;
  margin: 0 auto;
  background-color: #5D3A8B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 28px 40px;
  box-sizing: border-box;
	padding-left: 150px;
}

/* 左側（SEND / 送信する） */
.apply-submit__left {
  display: flex;
  flex-direction: column;
}

.apply-submit__en {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
  line-height: 1;
}

.apply-submit__jp {
  font-size: 14px;
  color: #fff;
  margin-top: 6px;
}

/* ★ 矢印画像を after で追加する */
.apply-submit__inner::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-image: url("../img/icon/arrow_w.png");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.25s ease;
}

/* ホバーで矢印が動く */
.apply-submit__inner:hover::after {
  transform: translateY(-50%) translateX(5px);
}

/* ★ CF7 の submit ボタン（透明で全面クリック可能） */
.apply-submit__btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0;
}

.wpcf7-spinner{
	display: none;
}

.apply-text--center{
	text-align: center;
	background-color: #FFFFFF;
	padding-bottom: 10px;
}

.contact-note {
  display: block;
  font-size: 12px;
  margin-top: 4px;
  text-align: left; /* 枠外左下寄せ */
}



@media screen and (min-width:601px) and (max-width:1024px){
	.apply--contentbox{
	background-color: #FFFFFF;
	padding: 60px 20px;
	margin-top: 50px;
}
}

@media screen and (max-width:600px){
	.apply--contentbox{
	background-color: #FFFFFF;
	padding: 30px 10px;
	margin-top: 50px;
}
	.apply-form .form-row{
		flex-direction: column;
		gap: 5px;
	}
	
	.birthday-select{
		width: 100px;
	}
	
	.apply-text--center{
		text-align: left;
	}
	
	.apply-submit__inner{
		padding: 20px 25px;
	}
	
	.apply-submit__en{
		font-size: 32px;
	}
	
	.apply-submit__inner::after{
		right: 150px;
		width: 27px;
		height: 27px;
	}
	
	.apply-text--center p{
		padding: 5px;
	}
	
}