@charset "UTF-8";

/* mv_sub  ------------------------------*/
.mv_sub {
  margin-top: 181px;
  position: relative;
  z-index: 0;
  height: 300px;

  @media screen and (max-width: 768px) {
    margin-top: 147px;
    height: 120px;
  }
  @media screen and (max-width: 390px) {
    margin-top: 108px;
  }

  &::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    background-image: url("../img/contact/mv.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    top: 0;
    left: calc(50% - 50vw);
    width: 1600px;
    aspect-ratio: 1600 / 300;
    border-radius: 0 15px 15px 0;
    @media screen and (max-width: 390px) {
      background-image: url("../img/contact/mv_sp.jpg");
      left: 0;
      width: 94.87%;
      aspect-ratio: 370 / 120;
      border-radius: 0 15px 15px 0;
    }
  }

  .mv_inner {
    margin: 0 auto;
    width: 1024px;
    height: 100%;
    display: flex;
    align-items: center;
    @media screen and (max-width: 768px) {
      margin: 0 auto 0 0;
      padding: 0 20px;
      width: 94.87%;
    }
  }

  h1 {
    font-weight: bold;
    font-size: 38px;
    letter-spacing: 0.05em;
    line-height: calc(68.4 / 38);
    .en {
      display: block;
      font-weight: 500;
      font-size: 18px;
      line-height: calc(32.4 / 18);
      color: #222;
      @media screen and (max-width: 768px) {
        font-size: 14px;
        line-height: calc(25.2 / 18);
      }
    }
    @media screen and (max-width: 768px) {
      font-weight: bold;
      font-size: 18px;
      line-height: calc(43.2 / 18);
    }
  }
}

/* content
----------------------------------------*/
.content {
	font-weight: 500;
	padding: 50px 0 0;
	margin: 0 auto;
	position: relative;
}
.content .inner > p {
	text-align: center;
	margin-bottom: 50px;
}
.content .inner .form_block {
	max-width: 900px;
	margin: 0 auto;
}
.content .inner .form_block dl {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	column-gap: 20px;
}
.content .inner .form_block dl.pt20 {
	border-top: 1px solid #CCCCCC;
	padding: 20px 20px 20px 0;
}
.content .inner .form_block dl.pt20:last-of-type {
	border-bottom: 1px solid #CCCCCC;
}
.content .inner .form_block dt {
	font-weight: 600;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 10px;
	padding-top: 13px;
}
.content .inner .form_block dt.pt17 {
	padding-top: 17px;
}
.content .inner .confirm .form_block dt {
	padding-top: 0;
}
.content .inner .form_block dt .txt_required {
	font-size: 14px;
	font-weight: 500;
	color: #F51B6C;
	padding: 5px 11px;
	border: 1px solid #F51B6C;
	border-radius: 5px;
}
.content .inner .form_block dd {
	width: 630px;
	font-size: 14px;
}
.content .inner .form_block dd.flex_box {
	display: flex;
	align-items: center;
}
.content .inner .form_block dd.flex_box span {
	font-size: 16px;
	font-weight: 600;
	margin-right: 10px;
}
.content .inner .form_block dd.flex_box input + span {
	margin-left: 30px;
}
.content .inner .form_block dd p {
	line-height: 1.8;
	margin-top: 10px;
}

.content .inner .confirm .form_block,
.content .inner .form_block.error {
	margin: 0 auto;
}
.content .inner .form_block.error {
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.8;
}
.content .inner .confirm h3,
.content .inner .form_block.error h3 {
	font-size: 30px;
	text-align: center;
	color: #000000;
	margin-bottom: 20px;
}
.content .inner .confirm h3 + p {
	text-align: center;
	margin-bottom: 40px;
}
.content .inner .form_block.error > p {
	margin-bottom: 20px;
}
.content .inner .form_block.error .txt_error {
	color: #F51B6C;
}

.sp {
	display: none;
}

@media only screen and (max-width: 768px) {
	.content {
		max-width: 100%;
		padding: 40px calc(20 / 390 * 100vw) 0;
	}
	.content .inner .form_block {
		width: 100%;
	}
	.content .inner .form_block dl.pt20 {
		display: block;
		padding: calc(20 / 390 * 100vw);
	}
	.content .inner .form_block dt {
		justify-content: flex-start;
		margin-bottom: 10px;
		padding-top: 0;
	}
	.content .inner .form_block dt .txt_required {
		top: -1px;
	}
	.content .inner .form_block dt.pt17 {
		padding-top: 0;
	}
	.content .inner .form_block dd {
		width: 100%;
	}
	.content .inner .form_block dd.flex_box input + span {
		margin-left: 19px;
	}
	.content .inner .confirm h3,
	.content .inner .form_block.error h3 {
		font-size: 24px;
	}
	.content .inner .confirm h3 + p {
		margin-bottom: 30px;
	}
	.content .inner .form_block.error .txt_error {
		font-size: 16px;
	}
	.sp {
		display: inline-block;
	}
	.thanks p {
		font-size: 14px;
	}
}

/* c_form
----------------------------------------*/
.c_form input:not([type=checkbox]):not([type=button]),
.c_form textarea {
	font-size: 14px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
	border-radius: 5px;
  width: 100%;
  background-color: #F5F5F5;
  outline: none;
	padding: 13px 15px 13px;
	min-height: 50px;
}
.c_form input.text_input_s {
	width: 200px !important;
}
.c_form input::placeholder,
.c_form textarea::placeholder {
	font-size: 12px;
	color: #DEDEDE;
}

.checkbox {
	border: none;
	margin-top: 27px;
	font-size: 14px;
}
.checkbox label {
	display: flex;
	align-items: center;
	column-gap: 10px;
	position: relative;
	cursor: pointer;
}
.checkbox label::before {
	width: 24px;
	height: 24px;
	border: .1rem solid #DEDEDE;
	background: #FFFFFF;
	content: '';
	margin-top: 2px;
	border-radius: 5px;
}
.checkbox label:has(:checked)::after {
	position: absolute;
	top: 10px;
	left: 4px;
	width: 14px;
	height: 9px;
	background: url(../img/contact/icon_check.svg) no-repeat left top / 100% auto;
	content: '';
}
.checkbox input {
	display: none;
}
.align_c {
	text-align: center;
}
.align_c label {
	display: inline-flex;
}

.c_form .selectbox {
	width: 400px;
	display: inline-flex;
	align-items: center;
	position: relative;
}
.c_form .selectbox::before,
.c_form .selectbox::after {
	position: absolute;
  top: 50%;
	right: 14px;
	content: '';
	pointer-events: none;
  width: 10px;
  height: 3%;
  display: inline-block;
  border-radius: 2px;
  background: #0a0a0a;
}
.c_form .selectbox::before {
  transform: rotate(135deg);
}
.c_form .selectbox::after {
	right: 21px;
  transform: rotate(-135deg);
}
.c_form .selectbox select {
	display: flex;
	align-items: center;
	appearance: none;
	min-width: 100%;
	padding: 13px 15px 13px;
	background: #F6F7FA;
	color: #000000;
	font-size: 14px;
	cursor: pointer;
	min-height: 50px;
	border-radius: 5px;
}


.c_form textarea {
	width: 100%;
	height: 166px;
}
.c_form .form_btn_block {
	display: flex;
	justify-content: center;
	column-gap: 20px;
	margin-top: 50px;
}
.c_form .form_btn_block .btn_approval {
}
.c_form .form_btn_block .submit_arrow input {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	width: 400px;
	height: 100px;
	color: #2767FA;
	background: transparent;
	border-radius: 28px;
	border: 1px solid #2767FA;
	border-radius: 5px;
	padding: 0 30px;
}
.c_form .form_btn_block .submit_arrow {
	display: inline-block;
	position: relative;
}
.c_form .form_btn_block .submit_arrow::before {
	content: "";
	display: block;
	width: 60px;
	height: 60px;
	background: url(../img/contact/icon_arrow.svg) no-repeat left top / contain;
	position: absolute;
	right: 30px;
	top: 20px;
	z-index: -1;
}
.c_form .form_btn_block .disabled-look {
	opacity: 0.4;
}
.c_form .form_btn_block .disabled-look {
	cursor: not-allowed;
}
.c_form .form_btn_block .disabled-look input {
	pointer-events: none;
}

.c_form .form_btn_block .back_arrow button {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	width: 400px;
	height: 100px;
	color: #999999;
	background: transparent;
	border-radius: 28px;
	border: 1px solid #999999;
	border-radius: 5px;
	padding: 0 30px;
}
.c_form .form_btn_block .back_arrow {
	display: inline-block;
	position: relative;
}
.c_form .form_btn_block .back_arrow::before {
	content: "";
	display: block;
	width: 60px;
	height: 60px;
	background: url(../img/contact/icon_back.svg) no-repeat left top / contain;
	position: absolute;
	left: 30px;
	top: 20px;
	z-index: -1;
}

@media only screen and (max-width: 768px) {
	.c_form input.text_input_s {
		width: calc(110 / 390 * 100vw) !important;
	}
	.c_form .selectbox {
		width: 100%;
	}
	.checkbox label {
		column-gap: 10px;
	}
	.checkbox label::before {
		margin-top: 3px;
	}
	.c_form .form_btn_block {
		flex-direction: column;
		align-items: center;
		row-gap: 20px;
		margin-top: 40px;
	}
	.c_form .form_btn_block .submit_arrow input,
	.c_form .form_btn_block .back_arrow button {
		width: 310px;
		height: 120px;
		font-size: 16px;
	}
	.c_form .form_btn_block .submit_arrow::before,
	.c_form .form_btn_block .back_arrow::before {
		top: 30px;
	}
}

/* privacy
----------------------------------------*/
.privacy {
	margin: 30px 0;
	line-height: 1.8;
}
.privacy h3 {
	color: #FFFFFF;
	font-size: 16px;
	background: #2767FA;
	border-radius: 10px 10px 0 0;
	padding: 20px;
}
.confirm .privacy {
	margin: 40px 0 0;
}
.privacy_box {
	font-size: 16px;
	background: #F6F7FA;
}
.privacy_inner {
	padding: 20px;
}
@media only screen and (max-width: 768px) {
	.confirm .privacy {
		margin: 30px 0 0;
	}
}

