@charset "UTF-8";

/*
==================================================
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 #c1c1c1;
	box-shadow: 0 0 0 rgba(0,0,0,0) inset;
	font-size: 1.6rem;
	letter-spacing: 0.12em;
	line-height: 1.4;
	color: #222;
	transition: box-shadow 0.4s ease-out 0s, background-color 0.4s ease-out 0s;
	border-radius: 2px;
}

#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: #a8bdb2;
}

#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 ::-webkit-input-placeholder,
#formArea :-moz-placeholder,
#formArea ::-moz-placeholder,
#formArea :-ms-input-placeholder,
#formArea :placeholder-shown {
	color: rgba(0,0,0,0.6);
	font-size: 1.4rem;
	letter-spacing: 0;
}*/


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

#formArea select.size-fixed {
	max-width: 560px;
	width: 100%;
}

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


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

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

@media screen and (max-width: 900px) {
	#formArea button {
		height: 60px;
	}
}

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

#formArea button:hover {
	/*background-color: #0b3519;*/
	transform: scale(1.04);
}

#formArea button[type="submit"] {
	border: 2px solid #e7e8b6;
	background-color: #052620;
	color: #e7e8b6;
}

#formArea button[type="submit"]:hover {
	/*background-color: #0b3519;*/
	transform: scale(1.04);
}


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

#formArea label.typeCheck {
	position: relative;
	display: inline-block;
	height: 32px;
	padding: 6px 0 0 45px;
	cursor: pointer;
}

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

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

#formArea input[type="checkbox"]:checked+label.typeCheck::after {
	content: "";
	position: absolute;
	top: 8px;
	left: 12px;
	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: 32px;
	padding: 6px 0 0 45px;
	cursor: pointer;
}

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

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

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


/* === Input Error - Alert Text === */
/*#formArea .errorAlert {
	display: inline-block;
	animation: txtFlashing 1.4s ease-out 0s 5;
	color: rgba(255,80,20,1);
}

@keyframes txtFlashing {
	0% {
		color: rgba(255,80,20,1);
	}
	30% {
		color: rgba(255,80,20,0);
	}
	to {
		color: rgba(255,80,20,1);
	}
}*/


/* ==================================================
Form - Custom Layout
================================================== */
body.messagePage .areaBox {
}

/* formArea
------------------------------ */
#formArea {
}

#formArea .areaBox {
	padding: 20px 0 30px;
}

#formArea dt {
}

#formArea form {
	max-width: 800px;
	margin: 0 auto 60px;
	padding: 40px 3% 60px;
	background: rgba(5, 38, 32, 0.2);
	border: 1px solid #e7e8b6;
}

@media screen and (max-width: 768px) {
	#formArea {
	}

	#formArea dt {
	}

	#formArea form {
		max-width: 420px;
		width: 100%;
	}
}


/* formHead
------------------------------ */
#formHead {
	margin-bottom: 40px;
}

#formHead .notice {
	text-align: center;
	font-size: 1.3rem;
	margin-bottom: 30px;
}

#formHead dl {
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
}

#formHead dl dt {
	width: 160px;
	text-align: right;
	margin-bottom: 5px;
	line-height: 1.4;
	font-size: 1.3rem;
	font-weight: 700;
}

#formHead dl dd {
	width: calc(100% - 180px);
	text-align: left;
}

#formHead dl dd .note {
	margin: 20px 0 10px;
}

#formHead dl dd .sizeL {
}

@media screen and (max-width: 768px) {
	#formHead .notice {
		font-size: 1.2rem;
	}

	#formHead dl {
		justify-content: flex-start;
	}

	#formHead dl dt {
		width: 100%;
		text-align: left;
		margin-bottom: 8px;
	}

	#formHead dl dd {
		width: 100%;
		text-align: left;
	}

	#formHead dl dd .sizeL {
	}
}

/* ############ ↓↓↓ MEDIAQUERY ↓↓↓ ############ */ @media screen and (max-width: 768px) {
	#formHead dl {
		margin-bottom: 20px;
	}
} /* ############ ↑↑↑ MEDIAQUERY ↑↑↑ ############ */


/* jmeMember & jmeVisitor
------------------------------ */
#formArea .sctSet {
	margin-bottom: 40px;
}

#formArea #jmeMember.sctSet {
	margin-bottom: 40px;
}

#formArea #jmeVisitor.sctSet {
}

#formArea .sctSet .sectionTtl {
	border-bottom: 1px solid #e7e8b6;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
	margin-bottom: 30px;
}

#formArea .sctSet .sectionTtl h3 {
	background: #e7e8b6;
	color: #052620;
	height: 48px;
	display: flex;
	align-items: center;
	padding: 3px 12px;
	border: 1px solid #e7e8b6;
	border-bottom: none;
	font-size: 1.4rem;
	font-weight: 600;
	border-radius: 0 0 0 0;
}

#formArea .sctSet .sectionTtl .linkTxt {
}

#formArea .sctSet .sectionTtl .linkTxt a {
	text-decoration: none;
	display: inline-block;
	position: relative;
	letter-spacing: 0;
	font-size: 1.3rem;
	color: #fff;
	transition: all 0.4s ease-out 0s;
	padding-right: 12px;
}

#formArea .sctSet .sectionTtl .linkTxt a::after {
	content: "";
	position: absolute;
	top: calc(50% - 3px);
	right: 0;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

#formArea .sctSet .sectionTtl .linkTxt a:hover {
	opacity: 0.7;
}

#formArea .sctSet .sectionTtl .linkTxt a i {
	display: inline-block;
}

#formArea .sctSet dl {
	margin-bottom: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
}

#formArea .sctSet dl dt {
	text-align: right;
	width: 220px;
	margin-bottom: 5px;
	line-height: 1.4;
	font-size: 1.3rem;
	font-weight: 700;
}

#formArea .sctSet dl dt i {
	font-size: 1.1rem;
	letter-spacing: 0.05em;
}

#formArea .sctSet dl dd {
	width: calc(100% - 240px);
	text-align: left;
}

#formArea .sctSet .forget {
	width: calc(100% - 260px);
	margin: 20px 0 0 auto;
	text-align: left;
	font-size: 1.3rem;
}

#formArea .sctSet .forget a {
	text-decoration: none;
	display: inline-block;
	padding-bottom: 6px;
	border-bottom: 1px solid #fff;
	transition: all 0.4s ease-out 0s;
	color: #fff;
}

#formArea .sctSet .forget a:hover {
	opacity: 0.7;
}

#formArea .sctSet dl dd i {
	display: inline-block;
	vertical-align: middle;
}

#formArea .sctSet dl dd input + i {
	margin-left: 12px;
}

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

#formArea .sctSet dl .radioSet .list {
	margin-right: 30px;
	margin-bottom: 10px;
}

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


@media screen and (max-width: 768px) {
	#jmeVisitor.sctSet {
		margin-bottom: 40px;
	}

	#formArea .sctSet .sectionTtl {
	}

	#formArea .sctSet .sectionTtl h3 {
		letter-spacing: 0.05em;
	}

	#formArea .sctSet .sectionTtl .linkTxt {
		max-width: 110px;
	}

	#formArea .sctSet .sectionTtl .linkTxt a {
		text-align: right;
	}

	#formArea .sctSet .sectionTtl .linkTxt a:hover {
	}

	#formArea .sctSet .sectionTtl .linkTxt a::before {
	}

	#formArea .sctSet dl {
		justify-content: flex-start;
		margin-bottom: 20px;
	}

	#formArea .sctSet dl dt {
		width: 100%;
		text-align: left;
		margin-bottom: 8px;
	}

	#formArea .sctSet dl dd {
		width: 100%;
		text-align: left;
	}

	#formArea .sctSet .forget {
		width: 100%;
		font-size: 1.2rem;
		text-align: center;
		margin-top: 30px;
	}

	#formArea .sctSet dl.noWrap {
		flex-wrap: nowrap;
	}

	#formArea .sctSet dl.noWrap dt {
		width: 60px;
		margin-bottom: 0;
	}

	#formArea .sctSet dl.noWrap dd {
		width: calc(100% - 60px);
		flex-wrap: wrap;
	}
}


/* formFoot
------------------------------ */
#formFoot {
}

#formFoot .attention {
	text-align: left;
	line-height: 1.8;
	background-color: #f7f7f7;
	margin: 0 auto 40px;
	padding: 15px 2%;
	border-radius: 0;
}

#formFoot .attention p {
	color: #000;
	font-size: 1.3rem;
}

#formFoot .attention p a {
	color: #dc097a;
	text-decoration: underline;
	transition: none;
}

#formFoot .attention p a:hover {
	text-decoration: none;
}

#formFoot .btnSet {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
}

#formFoot .btnSet li {
	width: calc(50% - 15px);
}

#formFoot .btnSet li button {
	border-radius: 0;
	overflow: hidden;
}

#formFoot .btnSet li button em {
}

@media screen and (max-width: 768px) {
	#formFoot .attention {
		letter-spacing: 0.1em;
		font-size: 1.2rem;
		margin-bottom: 50px;
		padding: 15px 10px;
	}

	#formFoot .btnSet li {
		width: 100%;
	}
	
	#formFoot .btnSet li:not(:first-child) {
		margin-top: 20px;
	}
}


/* greetingArea
------------------------------ */
#greetingArea {
	/*! padding: 30px 0 0; */
}

#greetingArea .comment {
	max-width: 800px;
	margin: 0 auto 60px;
	padding: 60px 3%;
	background: rgba(5, 38, 32, 0.2);
	border: 1px solid #e7e8b6;
}

#greetingArea .comment .txtJp {
	font-size: 1.8rem;
	margin-bottom: 20px;
}

#greetingArea .comment .txtEn {
	font-size: 5rem;
	letter-spacing: 0.08em;
}