@charset "UTF-8";

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

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

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

#form-area select::-ms-expand {
	display: none;
}


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

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

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

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

#form-area input.wrote,
#form-area textarea.wrote {
	background-color: #dffffd;
}

#form-area input {
	width: 100%;
}

#form-area textarea.size-large,
#form-area input.size-large { max-width: 800px; }
#form-area input.size-medium { max-width: 320px; }
#form-area input.size-small { max-width: 240px; }
#form-area input.size-xsmall { width: 60px; text-align: center; }


/* === Placeholder Text Color === */
/*#form-area ::-webkit-input-placeholder,
#form-area :-moz-placeholder,
#form-area ::-moz-placeholder,
#form-area :-ms-input-placeholder,
#form-area :placeholder-shown {
	color: rgba(0,0,0,0.6);
	font-size: 1.4rem;
	letter-spacing: 0;
}*/


/* === select === */
#form-area select {
	padding: 4px 10px 4px 10px;
	background-color: #fff;
	border: 1px solid #0066b1;
	border-radius: 3px;
	box-shadow: 0 0 0 rgba(0,0,0,0) inset;
	font-size: 1.6rem;
	letter-spacing: 0.03em;
	line-height: 1.4;
	color: #0066b1;
	/*text-align: center;*/
	text-align: left;
	width: 100%;
	max-width: 240px;
}

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

#form-area select.selected {
	background-color: #dffffd;
}


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

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

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

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

#form-area button:hover {
	/*transform: scale(1.06);*/
	background-color: rgba(0, 102, 177, 0.2);
	/*! color: #fff; */
}

#form-area button[type="submit"] {
	border: 1px solid #0066b1;
	background-color: #0066b1;
	color: #fff;
}

#form-area button[type="submit"]:hover {
	/*filter: brightness(110%) contrast(110%) saturate(150%);*/
	background-color: rgba(0, 102, 177, 0.7);
	/*! color: #000; */
}


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

#form-area label.type-check {
	position: relative;
	display: inline-block;
	height: 32px;
	padding: 6px 0 0 45px;
	cursor: pointer;
}

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

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

#form-area input[type="checkbox"]:checked+label.type-check::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 === */
#form-area input[type="radio"] {
	display: none;
}

#form-area label.type-radio {
	position: relative;
	display: inline-block;
	height: 32px;
	padding: 6px 0 0 45px;
	cursor: pointer;
}

#form-area label.type-radio::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 32px;
	height: 32px;
	content: '';
	border: 1px solid #0066b1;
	border-radius: 30px;
	background: #fff;
}

#form-area input[type="radio"]:checked+label.type-radio::before {
	background-color: #dffffd;
}

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


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

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


/* ==================================================
Form - Custom Layout
================================================== */
#form-area {
}

#form-wrap {
	/*! border: 1px solid #a9fbed; */
	position: relative;
	width: min(100%, 800px);
	margin: 0 auto 80px;
	color: #0066b1;
}

#form-area form {
	/*! padding: 40px 3%; */
	/*! background: #000; */
}

@media screen and (max-width: 900px) {
	#form-area {
	}

	#form-wrap {
		max-width: 640px;
		width: 100%;
		margin-bottom: 60px;
	}

	#form-area form {
	}
}


/* form-head
------------------------------ */
#form-head {
	margin-bottom: 30px;
}

#form-head .notice {
	text-align: center;
	font-size: 1.3rem;
	margin-bottom: 25px;
}

#form-head dl {
	margin-bottom: 8px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: row;
}

#form-head dl dt {
	width: 160px;
	text-align: right;
	margin-bottom: 5px;
	line-height: 1.4;
	font-size: 1.5rem;
	font-weight: 700;
	padding-top: 3px;
}

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

#form-head dl dd .note {
	margin: 20px 0 10px;
}

#form-head dl dd .size-large {
}

@media screen and (max-width: 900px) {
	#form-head .notice {
		font-size: 1.4rem;
		margin-bottom: 10px;
	}

	#form-head dl {
		justify-content: flex-start;
	}

	#form-head dl dt {
		width: 100%;
		text-align: left;
		margin-bottom: 6px;
	}

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

	#form-head dl dd .size-large {
	}
}

@media screen and (max-width: 900px) {
	#form-head dl {
		margin-bottom: 8px;
	}
}


/* jme-member & jme-visitor
------------------------------ */
#form-area .sct-set {
	margin-bottom: 30px;
}

#form-area #jme-member.sct-set {
	margin-bottom: 40px;
}

#form-area #jme-visitor.sct-set {
}

#form-area .sct-set .section-ttl {
	border-bottom: 1px solid #0066b1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
	margin-bottom: 30px;
}

#form-area .sct-set .section-ttl h3 {
	background: #0066b1;
	color: #fff;
	height: 48px;
	display: flex;
	align-items: center;
	padding: 3px 12px;
	border: 1px solid #0066b1;
	border-bottom: none;
	font-size: 1.4rem;
	/*border-radius: 6px 6px 0 0;*/
}

#form-area .sct-set .section-ttl .link-txt {
}

#form-area .sct-set .section-ttl .link-txt a {
	text-decoration: none;
	display: inline-block;
	position: relative;
	letter-spacing: 0;
	font-size: 1.4rem;
	color: #000;
	transition: all 0.4s ease-out 0s;
	padding-right: 12px;
	line-height: 1.4;
}

#form-area .sct-set .section-ttl .link-txt a::after {
	content: "";
	position: absolute;
	top: calc(50% - 3px);
	right: 0;
	width: 6px;
	height: 6px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	transform: rotate(45deg);
}

#form-area .sct-set .section-ttl .link-txt a:hover {
	opacity: 0.5;
}

#form-area .sct-set .section-ttl .link-txt a i {
	display: inline-block;
}

#form-area .sct-set dl {
	margin-bottom: 8px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: row;
}

#form-area .sct-set dl dt {
	text-align: right;
	width: 220px;
	margin-bottom: 5px;
	line-height: 1.4;
	font-size: 1.4rem;
	font-weight: 700;
	padding-top: 3px;
}

#form-area .sct-set dl dt i {
	font-size: 1.1rem;
	letter-spacing: 0.05em;
}

#form-area .sct-set dl dd {
	width: calc(100% - 240px);
	text-align: left;
}

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

#form-area .sct-set .forget a {
	text-decoration: none;
	display: inline-block;
	padding-bottom: 2px;
	border-bottom: 1px solid #000;
	transition: all 0.4s ease-out 0s;
	color: #000;
}

#form-area .sct-set .forget a:hover {
	opacity: 0.7;
}

#form-area .sct-set dl dd i {
	display: inline-block;
	vertical-align: middle;
}

#form-area .sct-set dl dd input + i {
	margin-left: 12px;
}

#form-area .sct-set dl .radio-set {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
}

#form-area .sct-set dl .radio-set .list {
	margin-right: 30px;
	margin-bottom: 10px;
}

#form-area .sct-set dl .radio-set .list:not(:first-child) {
	/*margin-left: 30px;*/
}


@media screen and (max-width: 900px) {
	#jme-visitor.sct-set {
		margin-bottom: 25px;
	}

	#form-area .sct-set .section-ttl {
	margin-bottom: 10px;
	}

	#form-area .sct-set .section-ttl h3 {
		letter-spacing: 0.05em;
	}

	#form-area .sct-set .section-ttl .link-txt {
		max-width: 110px;
	}

	#form-area .sct-set .section-ttl .link-txt a {
		text-align: right;
	}

	#form-area .sct-set .section-ttl .link-txt a:hover {
	}

	#form-area .sct-set .section-ttl .link-txt a::before {
	}

	#form-area .sct-set dl {
		justify-content: flex-start;
		margin-bottom: 8px;
	}

	#form-area .sct-set dl dt {
		width: 100%;
		text-align: left;
		margin-bottom: 8px;
		padding-top: 0;
	}

	#form-area .sct-set dl dd {
		width: 100%;
		text-align: left;
	}

	#form-area .sct-set .forget {
		width: 100%;
		font-size: 1.4rem;
		text-align: center;
		margin-top: 20px;
	}

	#form-area .sct-set dl.no-wrap {
		flex-wrap: nowrap;
	}

	#form-area .sct-set dl.margin-t {
		margin-top: 25px;
	}

	#form-area .sct-set dl.no-wrap dt {
		width: 60px;
		margin-bottom: 0;
	}

	#form-area .sct-set dl.no-wrap dd {
		width: calc(100% - 60px);
		flex-wrap: wrap;
	}
}


/* form-foot
------------------------------ */
#form-foot {
}

#form-foot .attention {
	text-align: left;
	line-height: 1.8;
	background-color: #f5f5f5;
	margin: 0 auto 30px;
	padding: 20px 2%;
	border-radius: 3px;
}

#form-foot .attention p {
	color: #000;
	font-size: 1.4rem;
}

#form-foot .attention p a {
	color: #ff43af;
	text-decoration: underline;
	transition: none;
}

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

#form-foot .btn-set {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
}

#form-foot .btn-set li {
	width: calc(50% - 15px);
}

#form-foot .btn-set li button {
	/* border-radius: 3px; */
	overflow: hidden;
}

#form-foot .btn-set li button em {
}

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

	#form-foot .btn-set li {
		width: 100%;
	}
	
	#form-foot .btn-set li:not(:first-child) {
		margin-top: 20px;
	}
}


/* backlink-area
------------------------------ */
#backlink-area {
	padding: 80px 3% 120px;
}

#backlink-area .btn-block {
}


/* ==================================================
Greeting Area
================================================== */
#greeting-area {
}


/* #greeting-wrap
------------------------------ */
#greeting-wrap {
	position: relative;
	margin: 0 auto;
}

#greeting-wrap .box {
	border: 1px solid #0066b1;
	min-height: 320px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: min(100%, 800px);
	margin: 0 auto;
}

#greeting-wrap .box .comment {
	padding: 100px 0;
}

#greeting-wrap .box .comment p {
}

#greeting-wrap .box .comment p i {
}

#greeting-wrap .box .comment p.font-en {
	font-size: 5rem;
	letter-spacing: 0.06em;
	margin-bottom: 20px;
}

#greeting-wrap .box .comment p.font-jp {
	font-size: 1.8rem;
}


@media screen and (max-width: 900px) {
	#greeting-wrap {
		/*width: min(100%, 640px);*/
	}
	
	#greeting-wrap .box {
	}
	
	#greeting-wrap .box .comment {
		padding: 60px 0 80px;
	}
	
	#greeting-wrap .box .comment p {
	}
	
	#greeting-wrap .box .comment p i {
	}
	
	#greeting-wrap .box .comment p.font-en {
		font-size: 3.8rem;
	}

	#greeting-wrap .box .comment p.font-jp {
		font-size: 1.6rem;
	}
}