@charset "utf-8";


html {
	scroll-behavior: initial !important; /* smoothを指定しているとバリデーション時に正常に動作しないため必須 */
}


/*  l-entry
--------------------------------------------------*/
.l-entry {
	position: relative;
	padding-block: 5.0rem 1.5rem;
}
.entry-inner {
	max-width: 1000px;
}
.entry-caution {
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: .05em;
	color: #d13d3d;
	font-weight: 500;
	word-break: break-all;
	text-indent: -1em;
	margin-left: 1em;
}
@media screen and (max-width: 768px){
	.l-entry {
		padding-block: 2.5rem 0;
	}
	.entry-caution {
		font-size: 1.4rem;
	}
}



/*  form-input（入力画面）
--------------------------------------------------*/
.form-input {
	position: relative;
	padding-bottom: 15.0rem;
}
.form-input::before ,
.form-input::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	z-index: -1;
}
.form-input::before {
	background: #f7f7f7;
}
.form-input::after {
	background: linear-gradient(180deg, rgba(255 255 255 / 1) 0%, rgba(255 255 255 / 0.91) 8.96%, rgba(255 255 255 / 0) 100%);
}
.form-sec {
	position: relative;
	padding-block: 5.5rem 9.4rem;
}
.form-sec__contents {
	position: relative;
	max-width: 1000px;
}
.form-content {
	position: relative;
}
.form-content + .form-content {
	margin-top: 4.5rem;
}
.form-content__name {
	position: relative;
	width: 100%;
	font-size: 2.0rem;
	line-height: 1.45;
	letter-spacing: .1em;
	font-weight: 500;
	margin-bottom: 2.5rem;
}
.form-content--required .form-content__name::after {
	content: "";
	display: inline-block;
	width: 5.0rem;
	height: 2.2rem;
	vertical-align: -.15em;
  margin-left: .5rem;
  background: url(../img/icon_required.svg) no-repeat center center / 100% 100%;
}
.form-content__input {
	position: relative;
	width: 100%;
}
.form .form-confirm__caution {
	display: none;
}
@media screen and (max-width: 768px){
	.form-input {
		padding-bottom: 8.0rem;
	}
	.form-sec {
		padding-block: 5.5rem 6.4rem;
	}
	.form-content + .form-content {
		margin-top: 3.5rem;
	}
	.form-content__name {
		font-size: 1.6rem;
		margin-bottom: 1.2rem;
	}
	.form-content--required .form-content__name::after {
		width: 4.2rem;
		height: 1.9rem;
		vertical-align: -.19em;
    margin-left: .5rem;
	}
}



/* ↓ ラジオボタン ↓ */
.form-content--radio {
	position: relative;
}
.form-content__input-radio {
	gap: 3.5rem;
}
.form-content--radio input[type="radio"] {
	position: relative;
	width: 3.4rem;
	height: 3.4rem;
	border: 1px solid #dedede;
	border-radius: 50%;
	background: var(--white);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	padding: 0;
}
.form-content--radio input[type="radio"]:checked {
	border: 1px solid #47b3d1;
}
.form-content--radio input[type="radio"]:checked:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60%;
	height: 60%;
	border-radius: 50%;
	background: #47b3d1;
}
.form-content__input-radio-group {
	position: relative;
	cursor: pointer;
}
.form-content__input-radio-group-txt {
	font-size: 2.0rem;
	line-height: 1;
	letter-spacing: .05em;
	padding-left: 1.8rem;
  padding-bottom: .4rem;
}
@media screen and (max-width: 768px){
	.form-content__input-radio {
		gap: 2.0rem;
		margin-top: 2.0rem;
	}
	.form-content--radio input[type="radio"] {
		width: 2.4rem;
		height: 2.4rem;
	}
	.form-content__input-radio-group-txt {
		font-size: 1.6rem;
		padding-left: 1.2rem;
	}
}



/* ↓ セレクトボックス ↓ */
.form-content__input-select {
	position: relative;
}
.form-content__input-select::before {
  position: absolute;
	top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-width: 7px 6px 0 6px;
  border-style: solid;
  border-color: #999999 transparent transparent transparent;
  content: "";
  pointer-events: none;
}
.form-content select {
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	cursor: pointer;
	outline: none;
	font-size: max(1.6rem,16px);
	line-height: 1.625;
	letter-spacing: .05em;
	color: #333333;
	border: solid 1px #e0e0e0;
	background: rgba(var(--white-rgb), 1);
	border-radius: .6rem;
	padding: .5rem 1.5rem .7rem;
	width: 100%;
}
@media screen and (max-width: 768px){
}



/* ↓ テキスト入力欄 ↓ */
.form-content input ,
.form-content textarea {
	outline: none;
	font-size: max(2.0rem,16px);
	line-height: 1.625;
	letter-spacing: .05em;
	border: solid 1px #dedede;
	border-radius: 1.6rem;
	padding: 2.2rem 2.7rem 2.4rem;
	background: var(--white);
	width: 100%;
}
.form-content textarea {
	min-height: 30.0rem;
}
.form-content input::placeholder ,
.form-content textarea::placeholder {
	font-size: max(2.0rem,16px);
	line-height: 1.625;
	letter-spacing: .05em;
	color: #b3b3b3;
}
@media screen and (max-width: 768px){
	.form-content input ,
	.form-content textarea {
		font-size: 1.6rem;
		border-radius: .6rem;
		padding: 1.0rem 1.5rem 1.2rem;
	}
	.form-content textarea {
		min-height:15.0rem;
	}
	.form-content input::placeholder ,
	.form-content textarea::placeholder {
		font-size: 1.4rem;
	}
}




/* ↓ 郵便番号 ↓ */
.form-content input.form-content__input-group--zip[type="text"] {
	width: max(12.0rem,120px);
	text-align: center;
}
.form-content--zip .form-content__input__line {
	display: inline-block;
	font-size: max(2.0rem,20px);
	padding-inline: max(2.0rem,20px);
}
@media screen and (max-width: 768px){
	.form-content input.form-content__input-group--zip[type="text"] {
		width: 8.0rem;
	}
	.form-content--zip .form-content__input__line {
		font-size: 1.4rem;
		padding-inline: 1.0rem;
	}
}




/* ↓ 電話番号 ↓ */
.form-content input.form-content__input-group--tel[type="text"] {
	width: max(12.0rem,120px);
	text-align: center;
}
.form-content--tel .form-content__input__line {
	display: inline-block;
	font-size: max(2.0rem,20px);
	padding-inline: max(2.0rem,20px);
}
@media screen and (max-width: 768px){
	.form-content input.form-content__input-group--tel[type="text"] {
		width: 8.0rem;
	}
	.form-content--tel .form-content__input__line {
		font-size: 1.4rem;
		padding-inline: 1.0rem;
	}
}



/* ↓ プライバシーポリシー ↓ */
.form-privacy {
	position: relative;
}
.form-privacy__txt {
	font-size: 1.8rem;
	line-height: 2;
	letter-spacing: .05em;
	text-align: center;
}
.form-privacy__txt a {
	color: #47b3d1;
	font-weight: 500;
	border-bottom: solid 1px #47b3d1;
}
@media (any-hover: hover){
	.form-privacy__txt a {
		transition: color .3s linear;
	}
	.form-privacy__txt a:hover {
		color: #30ccf7;
	}
}
@media screen and (max-width: 768px){
	.form-privacy__txt {
		font-size: 1.4rem;
		line-height: 2.142857142857143;
	}
}




/* ↓ ボタン ↓ */
.form-btn__wrap {
	margin-top: 5.0rem;
}
.form-btn__item {
	position: relative;
	width: 36.0rem;
	height: 8.0rem;
	margin-inline: auto;
}
.form-btn__item-back {
	justify-content: flex-end;
	width: 30.0rem;
	height: 6.0rem;
}
.form-btn__item + .form-btn__item {
	margin-top: 2.5rem;
}
.form-btn__item input {
	outline: none;
	line-height: inherit;
	letter-spacing: inherit;
	color: inherit;
	border: none;
	background: none;
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: #6c6c6c;
	border: solid 1px #6c6c6c;
	padding-inline: 3.4rem;
	font-size: 2.0rem;
	line-height: 1.45;
	letter-spacing: .05em;
	color: var(--white);
	font-weight: 500;
	border-radius: 4.0rem;
	padding-bottom: .3em;
}
.form-btn__item input:focus-visible {
	outline: auto;
}
.form-btn__item-back input {
	justify-content: flex-end;
	font-size: 1.8rem;
	background-color: var(--white);
	border: solid 1px #6c6c6c;
	color: #6c6c6c;
}
.form-btn__item i {
	position: absolute;
	right: 3.4rem;
	top: 42%;
	width: 2.7rem;
	line-height: 1;
}
.form-btn__item-back i {
	right: auto;
	left: 3.4rem;
	width: 2.1rem;
}
@media (any-hover: hover){
	.form-btn__item {
		transition: transform .2s linear,filter .2s linear;
	}
	.form-btn__item:hover {
		transform: scale(1.01);
  	filter: drop-shadow(4px 4px 1px rgba(0 0 0 / .2));
	}
  .form-btn__item:hover i {
      animation: arrow .6s .2s;
  }
  .form-btn__item-back:hover i {
      animation: arrow-back .6s .2s;
  }
}
@media screen and (max-width: 768px){
	.form-btn__wrap {
		margin-top: 3.5rem;
	}
	.form-btn__item {
		width: 28.0rem;
		height: 6.0rem;
	}
	.form-btn__item-back {
		width: 22.0rem;
		height: 5.0rem;
	}
	.form-btn__item input {
		padding-inline: 3.0rem;
		font-size: 1.6rem;
		border-radius: 3.0rem;
		padding-bottom: .3em;
	}
	.form-btn__item-back input {
		font-size: 1.4rem;
		padding-bottom: .2em;
	}
	.form-btn__item i {
		right: 3.0rem;
		width: 2.0rem;
	}
	.form-btn__item-back i {
		right: auto;
		left: 3.0rem;
		width: 1.8rem;
	}
}




/* ↓ エラーメッセージ ↓ */
.error {
	font-size: 1.4rem;
	line-height: 1.45;
	letter-spacing: .05em;
	color: #cf3939;
	margin-top: 1.5rem;
}
@media screen and (max-width: 768px){
	.error {
		font-size: 1.2rem;
		margin-top: 1.0rem;
	}

}


/*  form-confirm（確認画面）
--------------------------------------------------*/
.form-confirm {
	position: relative;
	padding-bottom: 15.0rem;
}
.form-confirm::before ,
.form-confirm::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	z-index: -1;
}
.form-confirm::before {
	background: #f7f7f7;
}
.form-confirm::after {
	background: linear-gradient(180deg, rgba(255 255 255 / 1) 0%, rgba(255 255 255 / 0.91) 8.96%, rgba(255 255 255 / 0) 100%);
}
.form-confirm__caution {
	padding-block: ;
	font-size: 3.6rem;
	line-height: 2;
	letter-spacing: .05em;
	font-weight: 500;
	text-align: center;
	padding-block: 22.0rem 2.5rem;
}
.form-confirm .form-btn__wrap {
	margin-top: 0;
}
.form-confirm__content + .form-confirm__content {
	margin-top: 4.2rem;
}
.form-confirm__content__name {
	position: relative;
	width: 100%;
	font-size: 2.0rem;
	line-height: 2.0;
	letter-spacing: .05em;
	font-weight: 500;
	background: #e3f4f8;
	border-radius: 1.6rem;
	padding: 1.8rem 2.5rem 2.2rem;
	margin-bottom: 1.5rem;
}
.form-confirm__content__input {
	position: relative;
	width: 100%;
	font-size: 2.0rem;
	line-height: 2.0;
	letter-spacing: .05em;
	font-weight: 400;
	padding-inline: 2.5rem;
}
.confirm .l-kv {
	display: none;
}
@media screen and (max-width: 768px){
	.form-confirm {
		padding-bottom: 8.0rem;
	}
	.form-confirm__caution {
		font-size: 2.0rem;
    padding-block: 12.5rem 3.5rem;
	}
	.form-confirm__content + .form-confirm__content {
		margin-top: 3.5rem;
	}
	.form-confirm__content__name {
		font-size: 1.6rem;
		line-height: 1.625;
		border-radius: .6rem;
		padding: 1.0rem 1.4rem 1.4rem;
		margin-bottom: 1.5rem;
	}
	.form-confirm__content__input {
		font-size: 1.6rem;
		line-height: 1.625;
		padding-inline: 1.4rem;
	}
}




/*  form-complete（完了画面）
--------------------------------------------------*/
.form-complete {
	position: relative;
	padding-block: 22.0rem 15.0rem;
}
.form-complete::before ,
.form-complete::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	z-index: -1;
}
.form-complete::before {
	background: #f7f7f7;
}
.form-complete::after {
	background: linear-gradient(180deg, rgba(255 255 255 / 1) 0%, rgba(255 255 255 / 0.91) 8.96%, rgba(255 255 255 / 0) 100%);
}
.form-complete__success {
	position: relative;
  font-size: 2.0rem;
  line-height: 1.8;
  letter-spacing: .05em;
  text-align: center;
  margin-bottom: 5.5rem;
}
.form-complete__success span {
	display: block;
  font-size: 1.8em;
  font-weight: 500;
  margin-bottom: 2.0rem;
}
.form-complete__error {
	font-size: 2.8rem;
  line-height: 2;
  letter-spacing: .05em;
  text-align: center;
}
.complete .l-kv {
	display: none;
}
.complete .form-confirm__caution {
	display: none;
}
.complete .l-entry {
	display: none;
}
@media screen and (max-width: 768px){
	.form-complete {
		padding-block: 12.0rem 8.0rem;
	}
	.form-complete__success {
	  font-size: 1.6rem;
	  line-height: 2;
	  margin-bottom: 3.0rem;
	}
	.form-complete__success span {
	  font-size: 1.5em;
	  margin-bottom: 1.4rem;
	}
	.form-complete__error {
		font-size: 1.8rem;
	}
}