@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: 6px 15px;
	background-color: #fff;
	border: 1px solid #c1c1c1;
	border-radius: 6px;
	box-shadow: 0 0 0 rgba(0,0,0,0) inset;
	font-size: 1.6rem;
	letter-spacing: 0.2em;
	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: #f5f5f5;
}

#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: 2px 30px 2px 20px;
	background-color: #fff;
	border: 1px solid #c1c1c1;
	border-radius: 6px;
	box-shadow: 0 0 0 rgba(0,0,0,0) inset;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	line-height: 1.4;
	color: #222427;
	text-align: center;
}

#formArea select.selected {
	background-color: #f5f5f5;
}


/* === label === */
#formArea label {
	display: inline-block;
	/*margin: 0 25px 0 0;*/
	margin: 0;
	font-size: 1.6rem;
	/*! font-weight: bold; */
	line-height: 1.2;
	position: relative;
}

/* === button 1 === */
/*#formArea input[type="submit"],
#formArea input[type="button"],
#formArea input[type="reset"] {
	display: inline-block;
	width: 100%;
	max-width: 320px;
	height: 60px;
	padding: 0 0 0 3px;
	margin: 0;
	background-color: #eee;
	border: 1px solid #999;
	border-radius: 6px;
	font-size: 1.6rem;
	line-height: 1.2;
	letter-spacing: 3px;
	color: #999;
	text-decoration: none;
	transition: background 0.4s ease-out 0s;
	cursor: pointer;
}

#formArea input[type="submit"]:hover,
#formArea input[type="button"]:hover,
#formArea input[type="reset"]:hover {
	background: #ddd;
}*/


/* === button 2 === */
#formArea button {
	display: block;
	background-color: #fff;
	border: 1px solid #c1c1c1;
	/*border-radius: 2px;*/
	border-radius: 100px;
	width: 100%;
	max-width: 250px;
	min-width: 200px;
	height: 60px;
	padding: 0 10px;
	margin: 0 auto;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	line-height: 1.2;
	color: #222427;
	position: relative;
	transition: all 0.4s ease-out 0s;
	cursor: pointer;
}

#formArea button em {
	font-weight: inherit;
	display: inline-block;
	/*position: relative;*/
}

#formArea button:hover {
	background-color: #ddd;
}

#formArea button[type="submit"] {
	border: none;
	background-color: #222427;
	color: #fff;
}

/*#formArea button[type="submit"] em::before {
	font-family: "Font Awesome 5 Free";
	content: "\f0e0";
	display: inline-block;
	font-size: 1.8rem;
	margin-right: 10px;
	transform: translateY(1px);
}*/

#formArea button[type="submit"]:hover {
	background-color: #5494a1;
}


/* === 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: 6px;
	background: #fff;
}

#formArea input[type="checkbox"]:checked+label.typeCheck::before {
	background-color: #f5f5f5;
}

#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: #f5f5f5;
}

#formArea input[type="radio"]:checked+label.typeRadio::after {
	content: "";
	position: absolute;
	top: 8px;
	left: 8px;
	width: 16px;
	height: 16px;
	background-color: #222427;
	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);
	}
}*/



/* ==================================================
HEADER
================================================== */



/* ==================================================
CONTENTS
================================================== */
#cntWrap {
	padding: 60px 20px 80px;
}

section {
	padding: 0;
}

/*main::before {
	content: "UNDER CONSTRUCTION";
	padding: 50px 5%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
	height: calc(70vh - 100px);
	font-size: 2rem;
	font-weight: 700;
	opacity: 0.3;
}*/

/* formArea
------------------------------ */
#formArea {
}

#formArea dt {
	font-size: 1.6rem;
}

#formArea form {
	max-width: 760px;
	margin: 0 auto 60px;
}

@media screen and (max-width: 640px) {
	#formArea form {
		max-width: 420px;
		width: 90%;
	}
}


/* formHead
------------------------------ */
#formHead {
	margin-bottom: 100px;
}

#formHead .notice {
	font-size: 1.5rem;
	margin-bottom: 20px;
	color: rgba(34,36,40,0.6);
}

#formHead dl {
	margin-bottom: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
}

#formHead dl dt {
	width: 120px;
	text-align: right;
}

#formHead dl dd {
	width: calc(100% - 160px);
	text-align: left;
}

#formHead dl dd .sizeL {
}

@media screen and (max-width: 640px) {
	#formHead .notice {
		text-align: left;
	}

	#formHead dl {
		justify-content: flex-start;
	}

	#formHead dl dt {
		width: 100%;
		text-align: left;
		margin-bottom: 12px;
	}

	#formHead dl dd {
		width: 100%;
		text-align: left;
	}

	#formHead dl dd .sizeL {
	}
}

/* ############ ↓↓↓ MEDIAQUERY ↓↓↓ ############ */ @media screen and (max-width: 640px) {
	#formHead dl {
		margin-bottom: 20px;
	}
} /* ############ ↑↑↑ MEDIAQUERY ↑↑↑ ############ */


/* jmeMember & jmeVisitor
------------------------------ */
#formArea .sctSet {
	margin-bottom: 80px;
}

#formArea #jmeMember.sctSet {
	margin-bottom: 100px;
}

#formArea #jmeVisitor.sctSet {
}

/*#formArea #jmeVisitor select option span::before {
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}*/

#formArea .sctSet .sectionTtl {
	border-bottom: 1px solid #222428;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
	margin-bottom: 40px;
}

#formArea .sctSet .sectionTtl h3 {
	background: #222428;
	color: #fff;
	height: 42px;
	display: flex;
	align-items: center;
	padding: 5px 20px;
	border-radius: 10px 10px 0 0;
}

#formArea .sctSet .sectionTtl .linkTxt {
}

#formArea .sctSet .sectionTtl .linkTxt a {
	text-decoration: none;
	display: inline-block;
	position: relative;
	letter-spacing: 0;
	color: #222428;
	font-size: 1.5rem;
	line-height: 1.2;
}

#formArea .sctSet .sectionTtl .linkTxt a:hover {
	color: #008aff;
}

/*#formArea .sctSet .sectionTtl .linkTxt a::before {
	font-family: "Font Awesome 5 Free" !important;
	content: "\f0da";
	font-weight: 900;
	font-size: 150%;
	display: inline-block;
	margin-right: 8px;
	transform: translateY(2px);
	line-height: 1;
}*/

#formArea .sctSet .sectionTtl .linkTxt a i {
	display: inline-block;
}

#formArea .sctSet dl {
	margin-bottom: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
}

#formArea .sctSet dl dt {
	text-align: right;
	width: 220px;
}

#formArea .sctSet dl dt i {
	font-size: 1.1rem;
	letter-spacing: 0.05em;
}

#formArea .sctSet dl dd {
	width: calc(100% - 260px);
	text-align: left;
}

#formArea .sctSet .forget {
	width: calc(100% - 260px);
	margin: -10px 0 0 auto;
	text-align: left;
	font-size: 1.3rem;
}

#formArea .sctSet .forget a {
	text-decoration: none;
	color: #5494A1;
	display: inline-block;
	padding-bottom: 10px;
	border-bottom: 1px solid rgb(84,148,161,1);
	transition: all 0.4s ease-out 0s;
}

#formArea .sctSet .forget a:hover {
	color: #008aff;
	border-bottom: 1px solid rgb(0,138,255,0.6);
}

#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 {
}

#formArea .sctSet dl .radioSet .list:not(:first-child) {
	margin-left: 30px;
}


@media screen and (max-width: 640px) {
	#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: 12px;
	}

	#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);
	}
}


/* formFoot
------------------------------ */
#formFoot {
}

#formFoot .attention {
	background-color: #f7f7f7;
	border-radius: 6px;
	padding: 30px;
	font-size: 1.3rem;
	text-align: left;
	margin: 0 auto 80px;
	line-height: 1.6;
}

#formFoot .attention p {
}

#formFoot .attention p a {
}

#formFoot .btnSet {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
}

#formFoot .btnSet li {
	width: 240px;
	margin: 0 20px;
}

#formFoot .btnSet li button {
}

#formFoot .btnSet li button em {
	font-weight: 700;
}

@media screen and (max-width: 640px) {
	#formFoot .attention {
		letter-spacing: 0.1em;
		font-size: 1.25rem;
		margin-bottom: 50px;
	}

	#formFoot .btnSet li:not(:first-child) {
		margin-top: 20px;
	}
}

/* .btnHome
------------------------------ */
#formArea .btnHome,
#greetingArea .btnHome {
	text-align: center;
}

#formArea .btnHome a,
#greetingArea .btnHome a {
	color: #222428;
	text-decoration: none;
	display: inline-block;
	position: relative;
	min-width: 260px;
	padding-bottom: 20px;
}

#formArea .btnHome a::after,
#greetingArea .btnHome a::after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background-color: #222428;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	transition: all 0.8s ease-out 0s;
}

#formArea .btnHome a:hover,
#greetingArea .btnHome a:hover {
	color: #5494a1;
}

#formArea .btnHome a:hover::after,
#greetingArea .btnHome a:hover::after {
	/*transform: rotateY(180deg);*/
	background-color: #5494a1;
}

#formArea .btnHome a .ttl,
#greetingArea .btnHome a .ttl {
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	display: inline-block;
	margin-bottom: 15px;
}

#formArea .btnHome a .txt,
#greetingArea .btnHome a .txt {
}


/* greetingArea
------------------------------ */
#greetingArea .txtJp {
	font-size: 1.8rem;
	margin-bottom: 40px;
}

#greetingArea .txtEn {
	font-size: 5rem;
	font-weight: 300;
	margin-bottom: 60px;
}

