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

/*
==================================================
Form - Baes Format
==================================================
*/

/* ### ===== Form - Reset ===== ### */
#formArea input,
#formArea button,
#formArea textarea,
#formArea select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

#formArea input,
#formArea button,
#formArea textarea,
#formArea select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

#formArea select::-ms-expand {
	display: none;
}


/* ### ===== Form - Custom ===== ### */

/* === input === */
#formArea input[type="text"],
#formArea input[type="password"],
#formArea input[type="email"],
#formArea input[type="tel"],
#formArea textarea {
	width: 100%;
	padding: 2px 12px;
	background-color: #fff;
	border: 1px solid #000;
	border-radius: 4px;
	box-shadow: 0 0 0 rgba(0,0,0,0) inset;
	font-size: 1.6rem;
	letter-spacing: 0.02em;
	line-height: 1.4;
	color: #222427;
	transition: box-shadow 0.4s ease-out 0s, background-color 0.4s ease-out 0s;
}

#formArea input[type="text"],
#formArea textarea {
	letter-spacing: 0.1em;
}

#formArea input[type="text"]:focus,
#formArea input[type="password"]:focus,
#formArea input[type="email"]:focus,
#formArea input[type="tel"]:focus,
#formArea textarea:focus {
	box-shadow: 0 1px 5px rgba(0,0,0,0.25) inset;
}

#formArea input.wrote,
#formArea textarea.wrote {
	background-color: #f9ffa8;
}

#formArea input {
	width: 100%;
}

#formArea textarea.sizeL,
#formArea input.sizeL { max-width: 800px; }
#formArea input.sizeM { max-width: 320px; }
#formArea input.sizeS { max-width: 240px; }
#formArea input.sizeXS { width: 60px; text-align: center; }


/* === Placeholder Text Color === */
#formArea input::placeholder {
	color: rgba(0,0,0,0.4);
	font-size: 1.4rem;
	letter-spacing: 0;
}


/* === select === */
#formArea select {
	padding: 4px 30px 4px 20px;
	background-color: #fff;
	border: 1px solid #c1c1c1;
	border-radius: 2px;
	box-shadow: 0 0 0 rgba(0,0,0,0) inset;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	line-height: 1.4;
	color: #000;
	text-align: center;
}

#formArea select.selected {
	background-color: #f9ffa8;
}


/* === label === */
#formArea label {
	display: inline-block;
	margin: 0;
	font-size: 1.6rem;
	line-height: 1.2;
	position: relative;
}


/* === button === */
#formArea button {
	display: block;
	border-radius: 100px;
	width: 100%;
	height: 60px;
	padding: 0 10px;
	margin: 0 auto;
	font-size: 1.6rem;
	letter-spacing: 0.15em;
	line-height: 1.2;
	color: #000;
	background-color: #d2de34;
	position: relative;
	transition: all 0.4s ease-out 0s;
	cursor: pointer;
	font-weight: 700;
}

#formArea button em {
	font-weight: inherit;
	display: inline-block;
}

#formArea button:hover {
	background-color: #f2a7c8;
}

#formArea button[type="submit"] {
}

#formArea button[type="submit"]:hover {
}


/* === check button === */
#formArea input[type="checkbox"] {
	display: none;
}

#formArea label.typeCheck {
	position: relative;
	display: inline-block;
	height: 26px;
	padding: 3px 0 0 36px;
	cursor: pointer;
}

#formArea label.typeCheck::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 26px;
	height: 26px;
	content: '';
	border: 1px solid #000;
	border-radius: 4px;
	background: #fff;
}

#formArea input[type="checkbox"]:checked+label.typeCheck::before {
	background-color: #f9ffa8;
}

#formArea input[type="checkbox"]:checked+label.typeCheck::after {
	content: "";
	position: absolute;
	top: 5px;
	left: 8px;
	width: 10px;
	height: 14px;
	border-right: 4px solid #222427;
	border-bottom: 4px solid #222427;
	transform: rotate(45deg);
}


/* === radio button === */
#formArea input[type="radio"] {
	display: none;
}

#formArea label.typeRadio {
	position: relative;
	display: inline-block;
	height: 26px;
	padding: 3px 0 0 36px;
	cursor: pointer;
}

#formArea label.typeRadio::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 26px;
	height: 26px;
	content: '';
	border: 1px solid #c1c1c1;
	border-radius: 30px;
	background: #fff;
}

#formArea input[type="radio"]:checked+label.typeRadio::before {
	background-color: #f9ffa8;
}

#formArea input[type="radio"]:checked+label.typeRadio::after {
	content: "";
	position: absolute;
	top: 6px;
	left: 6px;
	width: 14px;
	height: 14px;
	background-color: #222427;
	border-radius: 30px;
}


/* ==================================================
CONTENTS
================================================== */
#mainWrap {
}

.areaTtl {
	margin-bottom: 40px;
}

.areaTtl img {
}


/* formArea
------------------------------ */
#formArea {
	padding: 0 3%;
}

#formArea a {
	text-decoration: underline;
}

#formArea a:hover {
	text-decoration: none;
}

#formArea form {
	border: 2px solid #000;
	background: #d2de34;
	padding: 9px;
	max-width: 800px;
	margin: 0 auto 40px;
}

#formArea form .formInner {
	background: #fff;
	border: 1px solid #000;
	padding: 30px 3%;
}

#formArea dt {
}

#formArea dl {
	margin-bottom: 30px;
}

#formArea dl dt {
	margin-bottom: 12px;
	font-size: 1.6rem;
	letter-spacing: 0;
}

#formArea dl dt b {
	display: inline-block;
	border-radius: 4px;
	background-color: #f9ffa8;
	padding: 2px 5px;
	line-height: 1;
}

@media screen and (max-width: 640px) {
	#formArea dl dt {
		font-size: 1.5rem;
	}
}

#formArea dl dt i {
}

#formArea dl dd {
	font-weight: 400;
	font-size: 1.4rem;
}

#formArea dl dd .list {
}

#formArea dl dd .list:not(:last-child) {
	margin-bottom: 5px
}

#formArea dl dd i {
}

#formArea dl dd .txtbox {
	margin-top: 5px
}

#formArea dl dd.radioSet {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
}

#formArea dl dd.radioSet .list {
}

#formArea dl dd.radioSet .list:not(:first-child) {
	margin-left: 30px;
}

/* formHead
------------------------------ */
#formHead {
	max-width: 800px;
	margin: 0 auto 40px;
	padding: 20px 3%;
	border: 3px solid #fff;
	color: #fff;
}

@media screen and (max-width: 640px) {
	#formHead {
	}
}

/* formBody
------------------------------ */
#formBody {
}

/* formFoot
------------------------------ */
#formFoot {
	border-top: 3px solid #000;
	padding: 30px 0 0;
}

#formFoot .comment {
	margin-bottom: 30px;
}

#formFoot .comment p {
	font-size: 1.5rem;
}

#formFoot .box {
	border-bottom: 3px solid #000;
	margin-bottom: 30px;
}

#formFoot .note {
	margin-bottom: 30px;
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: 0;
}

#formFoot .note p {
}

#formFoot .note p b {
	display: inline-block;
	font-weight: 700;
}

#formFoot .submitBtn {
}



/* greetingArea
------------------------------ */
#greetingArea {
	text-align: center;
	padding: 0 3%;
}

#greetingArea .box {
	border: 2px solid #000;
	background: #d2de34;
	padding: 9px;
	max-width: 800px;
	margin: 0 auto 40px;
}

#greetingArea .box .inner {
	background: #fff;
	border: 1px solid #000;
	padding: 60px 3%;
}

#greetingArea .comment {
}

#greetingArea .btnHome {
}

#greetingArea .btnHome a {
	display: block;
	border-radius: 200px;
	width: 100%;
	max-width: 260px;
	padding: 10px 10px;
	margin: 0 auto;
	background-color: #d2de34;
	font-size: 1.5rem;
	line-height: 1.2;
	color: #000;
	font-weight: 700;
	transition: all 0.4s ease-out 0s;
}

#greetingArea .btnHome a:hover {
	background-color: #f2a7c8;
}

#greetingArea .btnHome a em {
	font-family: tandelle, sans-serif;
	font-weight: 700;
	letter-spacing: 0.05em;
	font-size: 1.8rem;
}

@media screen and (max-width: 640px) {
	#greetingArea {
	}

	#greetingArea .comment {
	}

	#greetingArea .btnHome {
	}

	#greetingArea .btnHome a {
	}

	#greetingArea .btnHome a:hover {
	}

	#greetingArea .btnHome a em {
	}
}
