@charset "utf-8";

/* 背景
========================================== */

.bg-lgy {
	background: #F8F8F8;
}
.bg-pink {
	background: #E7355C;
}

/* ic
========================================== */

.ic-tel__bk {
	background: url(../img/common/ic_tel_bk.svg) no-repeat left center;
	padding-left: 2em;

}
.ic-mail__bk {
	background: url(../img/common/ic_mail_bk.svg) no-repeat left center;
	padding-left: 2em;
}

/* unit > font
========================================== */

.u-font-fugaz {
	font-family: "Fugaz One", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-weight: bold;
}

/* テキスト
========================================== */

.txt-basic {
	font-size: 16px;
	line-height: 3;
	letter-spacing: 0.2em;
}
@media only screen and (max-width: 767px) {
	.txt-basic {
		line-height: 2.6;
		letter-spacing: 0.2em;
		font-size: 14px;
	}
}

/* DOOR
========================================== */

.anime_door {
	position: relative;
	overflow: hidden;
}
.anime_door:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	background: #000;
	transition: transform cubic-bezier(0.8, 0, 0.2, 1) 1.3s;
}
.anime_door.door-wh:before {
	background: #fff;
}
.anime_door.inView:before {
	transform: translate3d(100%, 0, 0);
}
.ani {
	transition: 1s all;
	opacity: 0;
}
.ani.move {
	opacity: 1;
}

/***********************************************************************

------------------------------------------------------------------------
アニメーション
***********************************************************************/

.animation-delay {
	display: none;
}
.fadeUp.move {
	animation-name:fadeUpAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity: 0;
}
	@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ボタン
========================================== */

.btn-red {
	display: block;
	background: #E7355C;
	color: #fff;
	text-align: center;
	width: 250px;
	padding: 15px 15px;
	border-radius: 5px;
	border-bottom: 5px solid #8F3146;
}
.taC .btn-red {
	margin-left: auto;
	margin-right: auto;
}
@media only screen and (max-width: 767px) {
	.btn-red {
		width: 100%;
	}
}

/* タイトル
========================================== */

.tit-section p {
	font-weight: bold;
	color: #E7355C;
	font-size: 34px;
	font-family: 'Noto Serif JP', serif;
}
@media only screen and (max-width: 767px) {
	.tit-section {
		width: 80%;
	}
	.tit-section p {
		font-size: 20px;
	}
}

dl.c-contact {}
dl.c-contact dt {
	font-weight: bold;
	font-size: 20px;
}
dl.c-contact dd {
	margin-top: 10px;
}

.u-text__tel {
	font-weight: bold;
}