@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
.mainBox {
	margin: 0 auto;
	max-width: 1000px;
}
.widBox {
	margin: 0 auto;
	max-width: 900px;
}
@media all and (max-width: 896px) {
	.mainBox {
		width: auto;
	}
}
.flexR {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
.flexL {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
}
@media all and (max-width: 896px) {
	.flexL,.flexR {
		margin: 0;
		display: block;
	}
}
.headLine01 {
	margin: -30px 0 7px;
	color: #000;
	font-size: 1.2rem;
	letter-spacing: -0.04em;
	line-height: 1.5;
	z-index: 100;
	position: relative;
}
.headLine01 .en {
    margin-right: 10px;
    font-family: 'Bodoni Moda', serif;
    font-size: 4.8rem;
    letter-spacing: -0.05em;
    font-weight: normal;
}
.headLine01 .btm {
	margin-top: -7px;
	display: block;
	font-size: 1.5rem;
}
.headLine01 .btm span {
	font-size: 1rem;
}
@media all and (max-width: 896px) {
	.headLine01 {
		margin: -34px 0 26px 0;
		text-align: center
	}
	.headLine01 .en {
		margin-right: 0;
		display: block;
		letter-spacing: -0.02em;
	}
	.headLine01 .btm {
		margin-top: 12px;
	}
}
@media all and (max-width: 374px) {
	.headLine01 .en {
		font-size: 4rem;
	}
}
.headLine02 {
	margin: 3px 0 4px;
	color: #000;
	font-size: 1.4rem;
	letter-spacing: -0.04em;
}
.headLine02 span {
	margin-right: 10px;
	display: block;
	font-family: 'Bodoni Moda', serif;
	font-size: 2rem;
	line-height: 1.74;
}
.headLine02 .add {
	margin-right: 0;
	display: inline;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}
@media all and (max-width: 896px) {
	.headLine02 {
		text-align: center;
	}
}
@media all and (max-width: 374px) {
	.headLine02 {
		font-size: 1.2rem;
	}
}
.comTable {
	margin-bottom: 14px;
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	vertical-align: top;
}
.mailForm .submit {
	text-align: center;
}
.mailForm .submit li {
	margin-right: 14px;
	position: relative;
	display: inline-block;
	background-color: #C8828C;
	border-radius: 5px;
}
.mailForm .submit li:last-child {
	margin-right: 0;
}
.mailForm .submit li::after {
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	background-color: #FA7378;
	border-radius: 5px;
	transition: 0.3s;
	content: "";
	z-index: -1;
}
.mailForm .submit input {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	height: 30px;
	width: 85px;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: -0.04em;
	background-color: transparent;
	border: none;
	box-sizing: border-box;
	border-radius: 5px;
	cursor: pointer;
}
@media all and (min-width: 897px) {
	.mailForm .submit li:hover {
		z-index: 1;
	}
	.mailForm .submit li:hover::after {
		width: 100%;
	}
}
/* spLink */
.spLink {
	padding: 10px 15px;
	position: fixed;
	bottom:0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: rgba(160,115,115,0.95);
	box-sizing: border-box;
	z-index: 1000;
	transform: translateY(100%);
	transition: .3s linear;
}
.spLink.on {
	transform: translateY(0);
}
.spLink ul {
	display: flex;
}
.spLink li:not(:last-child) {
	margin-right: 25px;
}
.spLink li a {
	width: 40px;
	display: block;
}
.spLink .arrowTop a {
	width: 50px;
	display: block;
}
@media all and (max-width: 374px) {
	#main .about .spLink ul {
		margin-right: 35px;
	}
	#main .about .spLink li:not(:last-child) {
		margin-right: 15px;
	}
}