@charset "UTF-8";

/* ==================================================

RESET

*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: transparent;
	background-repeat: no-repeat;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	font-style: normal;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}
html, body {
	width: 100%;
}
body {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
ul, ol {
	list-style-type: none;
}
table {
	border-collapse: collapse;
}
a, button {
	cursor: pointer;
}
img,
picture,
svg {
	display: block;
	width: 100%;
	height: auto;
}
input, select, textarea, button {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	border-radius: 0;
	resize: none;
}

::placeholder {
	color: #CBCBCB;
}
::-ms-input-placeholder {
	color: #CBCBCB;
}
:-ms-input-placeholder {
	color: #CBCBCB;
}

/* ==================================================

HTML

*/
html {
	background-color: #EAEAEA;
	/* 1rem = 10px */
	font-size: 62.5%;
}
@media screen and (max-width: 1080px) {
	html {
		/* 幅1080px 1rem = 10px */
		font-size: calc(1000 / 1080 * 1vw);
	}
}
@media screen and (max-width: 680px) {
	html {
		/* 幅680px 1rem = 10px */
		font-size: calc(1000 / 680 * 1vw);
	}
}

body {
	position: relative;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-size: 2.17rem;
	font-optical-sizing: auto;
	line-height: 2;
	color: var(--text-black);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 680px) {
	body {
		font-size: 2.2rem;
	}
}

main {
	overflow: hidden;
	margin: 0 auto;
	padding: 0 0 14rem 0;
	max-width: 1080px;
}
@media screen and (max-width: 680px) {
	main {
		padding: 0 0 10rem 0;
		max-width: initial;
	}
}

/* ==================================================

	[ UTILITY ] VISIBLE

*/
@media screen and (max-width: 680px) {
	.u-visible-pc {
		display: none !important;
	}
}
@media screen and (min-width: 681px) {
	.u-visible-sp {
		display: none !important;
	}
}

/* ==================================================

	[ COMPONENT ] BUTTON

*/
.c-button-submit,
.c-button-back {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding-left: 3rem;
	width: 39.5rem;
	height: 5.6rem;
	background-color: #641A7F;
	text-align: center;
	font-weight: 700;
	font-size: 2.35rem;
	color: #fff;
	transition: background-color 0.3s ease, opacity 0.3s ease;
}
.c-button-submit::before,
.c-button-back::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 10rem;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.85rem 0 0.85rem 1.2rem;
	border-color: transparent transparent transparent #FFF;
}
.c-button-back {
	background-color: #666;
}
.c-button-submit:disabled {
	pointer-events: none;
	background-color: #ccc;
}
@media (any-hover: hover) {
	.c-button-submit:hover,
	.c-button-back:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 680px) {
	.c-button-submit,
	.c-button-back {
		width: 43.5rem;
		height: 6rem;
		font-size: 3rem;
	}
	.c-button-submit::before,
	.c-button-back::before {
		content: '';
		display: block;
		margin-right: 1.8rem;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 1rem 0 1rem 1.5rem;
		border-color: transparent transparent transparent #FFF;
	}
}

/* ==================================================

	[ COMPONENT ] BADGE

*/
.c-badge-required {
	display: block;
	width: 4.8rem;
	text-align: center;
}
.c-badge-required em {
	display: block;
	padding: 0.1em 0 0.2em 0;
	border-radius: 0.6rem;
	background-color: #FBCF13;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.1;
	color: #FFF;
}
@media screen and (max-width: 680px) {
	.c-badge-required {
		width: 5.4rem;
	}
	.c-badge-required em {
		border-radius: 0.6rem;
		font-size: 2.27rem;
	}
}

/* ==================================================

	[ LAYOUT ] CENTER

*/
.l-center {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 6rem 0 12rem 0;
	min-height: 100vh;
}
@media screen and (max-width: 680px) {
	.l-center {
		padding: 6rem 0 6rem 0;
	}
}

/* ==================================================

	[ LAYOUT ] MAIN

*/
.l-main {
	position: relative;
}
.l-main h1 picture,
.l-main h1 img {
	aspect-ratio: 2160 / 1560;
}
.l-main .lead {
	margin: 3rem 0;
}
.l-main .lead picture,
.l-main .lead img {
	aspect-ratio: 2160 / 520;
}
@media screen and (max-width: 680px) {
	.l-main h1 picture,
	.l-main h1 img {
		aspect-ratio: 680 / 740;
	}
	.l-main .lead {
		margin: 0 0 3rem 0;
	}
	.l-main .lead picture,
	.l-main .lead img {
		aspect-ratio: 680 / 300;
	}
}

/* ==================================================

	[ LAYOUT ] FORM INPUT

*/
.l-form-input {
	margin: 0 auto;
	width: 88rem;
}
.l-form-input select,
.l-form-input textarea,
.l-form-input input[type="text"] {
	display: block;
	padding: 0.5em 1em;
	width: 100%;
	background-color: #FFF;
	border: 1px solid #CBCBCB;
	font-weight: normal;
	font-size: 2rem;
	line-height: normal;
}
.l-form-input select.invalid,
.l-form-input textarea.invalid,
.l-form-input input[type="text"].invalid {
	background-color: #FCE5E4;
	border-color: #E84145;
}
.l-form-input select {
	background-position: 100% 50%;
	background-repeat: no-repeat;
	background-image: url(../img/select.png);
	background-size: 5rem 5rem;
}
.l-form-input select.unselected {
	color: #CBCBCB;
}
.l-form-input input[type="checkbox"] {
	display: block;
	margin-right: 0.3em;
	width: 2.6rem;
	height: 2.6rem;
	background-color: #FFF;
	border: 1px solid #CBCBCB;
	flex-shrink: 0;
}
.l-form-input input[type="checkbox"]:checked {
	border-color: #69167E;
	background-color: #69167E;
	background-image: url(../img/input-checkbox.svg);
	background-size: contain;
}
.l-form-input .agree {
	display: flex;
	justify-content: center;
	margin-top: 5rem;
	font-size: 2.17rem;
	line-height: 1.3;
}
.l-form-input .agree label {
	display: flex;
	justify-content: center;
	align-items: center;
}
.l-form-input .agree input[type="checkbox"] {
	margin: 0.2rem 0.8rem 0 0;
	width: 2rem;
	height: 2rem;
}
.l-form-input .foot {
	display: flex;
	justify-content: center;
	margin-top: 5rem;
}
.l-form-input .attention {
	margin-top: 3.8rem;
	padding: 0.8rem 1.2rem 0.9rem 1.2rem;
	background-color: #FCE5E4;
	border: 1px solid #E84145;
	font-size: 2.4rem;
	line-height: 1.3;
	color: #E84145;
}
.l-form-input .attention em {
	display: flex;
	align-items: center;
}
.l-form-input .attention em::before {
	content: '';
	display: block;
	margin-right: 1rem;
	width: 4rem;
	height: 4rem;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/icon-attention.svg);
	background-size: contain;
}
.l-form-input .alert {
	font-weight: 500;
	font-size: 1.9rem;
	color: #E84145;
}
.l-form-input h2 {
	padding: 0.8rem 1.2rem;
	background-color: #69167E;
	font-weight: 700;
	font-size: 2.26rem;
	line-height: 1.3;
	color: #FFF;
}
.l-form-input h3 {
	display: flex;
	align-items: center;
	margin-top: 3rem;
	font-weight: 700;
	font-size: 2.17rem;
	line-height: 1.3;
}
.l-form-input h3 .c-badge-required {
	margin: 0.1rem 0.6rem 0 0;
}
.l-form-input .row {
	margin-top: 1.6rem;
}
.l-form-input .row-name {
	display: flex;
	gap: 1.5rem;
}
.l-form-input .row-name > div {
	display: flex;
	align-items: flex-start;
	flex: 1;
}
.l-form-input .row-name > div > div:first-child {
	flex-basis: 5.6rem;
	padding-top: 0.8rem;
	text-align: center;
	line-height: 1.5;
}
.l-form-input .row-name > div > div:last-child {
	flex: 1;
}
.l-form-input .row-middle {
	display: flex;
}
.l-form-input .row-middle > div {
	flex-basis: 51.5rem;
}
.l-form-input .text-shop {
	margin-top: 0.5rem;
	text-indent: -0.5em;
	font-size: 2.08rem;
	line-height: 1.4;
	color: #4D4D4D;
}
.l-form-input .terms {
	margin-top: 1.2rem;
	padding: 2rem 2.4rem;
	background-color: #FFF;
	border: 1px solid #CBCBCB;
	font-weight: 500;
	font-size: 2.17rem;
	line-height: 1.7;
}
.l-form-input .terms h4 {
	font-weight: 700;
}
.l-form-input .terms h4:not(:first-child) {
	margin-top: 1.6rem;
}
.l-form-input .posted {
	margin: 2.5rem 0 10rem;
}
.l-form-input .posted .frame {
	padding: 8rem 0;
	background-color: #FFF;
	border: 0.2rem solid #CCC;
	text-align: center;
	font-weight: 500;
	font-size: 2.2rem;
}
@media screen and (max-width: 680px) {
	.l-form-input {
		padding: 0 3.2rem;
		width: 100%;
	}
	.l-form-input select,
	.l-form-input textarea,
	.l-form-input input[type="text"] {
		padding: 0.6em;
		font-size: 2.4rem;
	}
	.l-form-input .agree {
		margin-top: 3rem;
		font-size: 2.6rem;
	}
	.l-form-input .agree input[type="checkbox"] {
		margin: 0.2rem 0.8rem 0 0;
		width: 2.4rem;
		height: 2.4rem;
	}
	.l-form-input .foot {
		margin-top: 3rem;
	}
	.l-form-input h2 {
		font-size: 2.6rem;
	}
	.l-form-input h3 {
		font-size: 2.6rem;
	}
	.l-form-input h3 .c-badge-required {
		margin: 0.1rem 0.6rem 0 0;
	}
	.l-form-input .row {
		margin-top: 1.6rem;
	}
	.l-form-input .row-name {
		display: block;
		gap: 1.5rem;
	}
	.l-form-input .row-name > div {
		display: flex;
	}
	.l-form-input .row-name > div:last-child {
		margin-top: 2rem;
	}
	.l-form-input .row-name > div > div:first-child {
		flex-basis: 6.6rem;
		padding-top: 1.4rem;
		font-size: 2.6rem;
	}
	.l-form-input .row-middle > div {
		flex-basis: 100%;
	}
	.l-form-input .text-shop {
		margin-top: 1rem;
		font-size: 2.3rem;
	}
	.l-form-input .terms {
		margin-top: 1.2rem;
		padding: 1.6rem 2rem;
		font-size: 2.4rem;
	}
	.l-form-input .terms h4:not(:first-child) {
		margin-top: 2rem;
	}
	.l-form-input .posted {
		margin: 2.5rem 0 5rem;
	}
	.l-form-input .posted .frame {
		padding: 8rem 0;
		font-size: 2.6rem;
	}
}

/* ==================================================

	[ LAYOUT ] FORM CONFIRM

*/
.l-form-confirm {
	margin: 0 auto;
	width: 88rem;
}
.l-form-confirm h1 {
	margin: 0 auto;
	padding: 7.6rem 0;
	width: 60rem;
}
.l-form-confirm h2 {
	padding: 0.8rem 1.2rem;
	background-color: #69167E;
	font-weight: 700;
	font-size: 2.26rem;
	line-height: 1.3;
	color: #FFF;
}
.l-form-confirm .list {
	display: table;
	margin-top: 2.1rem;
	width: 100%;
	background-color: #FFF;
	border: 1px solid #CCC;
	border-top: 0;
}
.l-form-confirm .list dl {
	display: table-row;
}
.l-form-confirm .list dt,
.l-form-confirm .list dd {
	display: table-cell;
	vertical-align: top;
	padding: 1.9rem;
	border-top: 1px solid #CCC;
}
.l-form-confirm .list dt {
	padding-right: 0;
	width: 34rem;
	font-weight: 700;
	font-size: 2.08rem;
}
.l-form-confirm .list dt div {
	display: flex;
	align-items: center;
	padding: 0.2rem 0;
}
.l-form-confirm .list dt .c-badge-required {
	margin: 0.1rem 0.6rem 0 0;
}
.l-form-confirm .list dd {
	font-size: 1.9;
}
.l-form-confirm .foot {
	display: flex;
	justify-content: center;
	gap: 5rem;
	margin-top: 8rem;
}
@media screen and (max-width: 680px) {
	.l-form-confirm {
		padding: 0 3.2rem;
		width: 100%;
	}
	.l-form-confirm h1 {
		padding: 8rem 0 6rem 0;
		width: 100%;
	}
	.l-form-confirm h2 {
		font-size: 2.6rem;
	}
	.l-form-confirm .list {
		display: block;
		margin-top: 2.1rem;
	}
	.l-form-confirm .list dl {
		display: block;
		border-top: 1px solid #CCC;
	}
	.l-form-confirm .list dt,
	.l-form-confirm .list dd {
		display: block;
		padding: 2rem;
		border-top: 0;
	}
	.l-form-confirm .list dt {
		width: auto;
		font-size: 2.4rem;
	}
	.l-form-confirm .list dt div {
		padding: 0;
	}
	.l-form-confirm .list dd {
		padding-top: 0;
		font-size: 2.27rem;
	}
	.l-form-confirm .foot {
		flex-direction: column;
		align-items: center;
		gap: 6rem;
		margin-top: 8rem;
	}
}

/* ==================================================

	[ LAYOUT ] FORM COMPLETE

*/
.l-form-complete {
	margin: 0 auto;
	text-align: center;
}
.l-form-complete h1 {
	margin: 0 auto;
	width: 600px;
}
.l-form-complete p {
	margin-top: 3.5rem;
	font-size: 2.2rem;
	line-height: 1.7;
}
@media screen and (max-width: 680px) {
	.l-form-complete h1 {
		width: 100%;
	}
	.l-form-complete p {
		font-size: 2.4rem;
	}
}

/* ==================================================

	[ LAYOUT ] FORM ERROR

*/
.l-form-error {
	margin: 0 auto;
	text-align: center;
}
.l-form-error p {
	font-size: 2.2rem;
	line-height: 1.7;
}
.l-form-error .foot {
	display: flex;
	justify-content: center;
	margin-top: 3.5rem;
}
@media screen and (max-width: 680px) {
	.l-form-error p {
		font-size: 2.4rem;
	}
}

/* ==================================================

	[ LAYOUT ] FORM SYSTEM

*/
.l-form-system {
	margin: 0 auto;
	text-align: center;
}
.l-form-system p {
	font-size: 2.2rem;
	line-height: 1.7;
}
.l-form-system .foot {
	display: flex;
	justify-content: center;
	margin-top: 3.5rem;
}
@media screen and (max-width: 680px) {
	.l-form-system p {
		font-size: 2.4rem;
	}
}