@charset "utf-8";

/*==========================================
共通設定
===========================================*/
* {
	box-sizing: border-box;
}
html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	line-height: 1.6;
}
a {
	text-decoration: none;
}

/*==========================================
汎用クラス
===========================================*/
/*=== デバイス切り替え ===*/
.sp {
	display: none !important;
}
@media screen and (max-width: 640px) {
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
	.span.sp {
		display: inline !important;
	}
}

/* box size */
.box-size {
	width: 100%;
	margin: 0 auto;
}
.box-side {
	padding-right: 25px;
	padding-left: 25px;
}

.size-1090 {
	max-width: 1090px;
}
.box-side.size-1090 {
	max-width: 1140px;
}

/* flex box */
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex a,
.flex img {
	display: block;
	width: 100%;
}
.flex-reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.flex-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.col-2 > *,
.col-2-2-1 > * {
	width: 50%;
}
.col-margin-20 {
	margin: 0 0 -20px -20px;
}
.col-margin-20 > * {
	padding: 0 0 20px 20px;
}
.col-margin-50-50-20 {
	margin: 0 0 -50px -50px;
}
.col-margin-50-50-20 > * {
	padding: 0 0 50px 50px;
}
@media screen and (max-width: 640px) {
	.col-2-2-1 > * {
		width: 100%;
	}
	.col-margin-50-50-20 {
		margin: 0 0 -20px -20px;
	}
	.col-margin-50-50-20 > * {
		padding: 0 0 20px 20px;
	}
}

/*=== タイトル ===*/
.title {
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	text-indent: .3em;
	line-height: 1.3;
	letter-spacing: .3em;
}
.title .span {
	display: block;
	font-family: 'Jost', sans-serif;
	font-size: 3.5rem;
	text-indent: .2em;
	letter-spacing: .2em;
}
.title-color01 {
	color: #fff;
}
.title-color02 {
	color: #000;
}

/*=== アンカーマウスオーバー ===*/
/* button-scale */
.button-scale {
	display: block;
	transition: .2s;
}
.button-scale:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

/* contact-button */
.contact-button {
	max-width: 1000px;
	margin: 0 auto;
}
.contact-button a,
.contact-button img {
	display: block;
	width: 100%;
	position: relative;
}
.contact-button ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 0 -120px -80px;
}
.contact-button li {
	width: 50%;
	padding: 0 0 120px 80px;
}
.contact-button img:nth-child(1) {
	position: absolute;
	bottom: 0;
	right: 0;
	transition: .5s ease-out;
}
.contact-button a:hover img:nth-child(1) {
	-webkit-transform: translateY(-57%);
	transform: translateY(-57%);
}
@media screen and (max-width: 640px) {
	.contact-button ul {
		margin: 0;
	}
	.contact-button li {
		padding: 0;
	}
	.contact-button img:nth-child(1) {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	.contact-button a:hover img:nth-child(1) {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
}

/* floatingButton */
.floatingButton {
	width: 100%;
	max-width: 1000px;
	position: fixed;
	bottom: 0;
	left: 50%;
	z-index: 10;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.floatingButton a,
.floatingButton img {
	display: block;
	width: 100%;
}
.floatingButton a {
	opacity: .8;
	transition: .2s;
}
.floatingButton a:hover {
	opacity: 1;
}
.floatingButton ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 0 -80px -80px;
}
.floatingButton li {
	width: 50%;
	padding: 0 0 80px 80px;
}
@media screen and (max-width: 1000px) {
	.floatingButton ul {
		margin: 0;
	}
	.floatingButton li {
		padding: 0;
	}
}

/* image */
.img-c {
	display: block;
	width: 100%;
	margin: 0 auto;
}

/* margin */
.mt20 {
	margin-top: 20px !important;
}
.mt30 {
	margin-top: 30px !important;
}
.mt60 {
	margin-top: 60px !important;
}
.mt80,
.mt80-0 {
	margin-top: 80px !important;
}
@media screen and (max-width: 640px) {
	.mt80-0 {
		margin-top: 0 !important;
	}
}
.mt100 {
	margin-top: 100px !important;
}
.mt160 {
	margin-top: 160px !important;
}
.mt180 {
	margin-top: 180px !important;
}

.mb40 {
	margin-bottom: 40px !important;
}
.mb80 {
	margin-bottom: 80px !important;
}