@charset "UTF-8";

/*--------------------------------------------------------------------
funerals.html
funerals.css
--------------------------------------------------------------------*/

/*------------about---------------------------------------------------------------*/
#about ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 0.8em;
}
#about ul li {
	width: calc((100% - 10px * 2) / 3);
	padding-left: 0;
	text-indent: 0;
}
#about ul li p {
	margin-top: 0.45em;
	text-align: center;
	font-weight: bold;
	color: var(--co-pink02);
}

@media (max-width: 979px) {
	#about ul li { width: calc((100% - 10px) / 2); }
}

@media (max-width: 599px) {
	#about ul li { width: 100%; }
}

/*------------flow---------------------------------------------------------------*/
#flow section section {
	position: relative;
	padding-bottom: 60px;
}
#flow section section:not(:last-of-type)::after {
	position: absolute;
	display: block;
	content: "";
	width: 35px;
	height: 35px;
	border-top: 9px solid var(--co-pink02);
	border-right: 9px solid var(--co-pink02);
	bottom: 9px;
	left: 50%;
	transform: var(--transformX) rotate(135deg);
}

#flow #workBtn {
	width: 80%;
	max-width: 400px;
	margin: 0 auto;
	background-color: var(--co-orange02);
}
#flow #workBtn a {
	position: relative;
	display: block;
	padding: 0.3em 1.5em 0.2em;
	text-align: center;
	font-weight: bold;
	color: var(--co-white);
	transition: .5s;
}
#flow #workBtn a::before {
	position: absolute;
	display: block;
	content: "";
	width: 0.35em;
	height: 0.35em;
	border-top: 3px solid var(--co-white);
	border-right: 3px solid var(--co-white);
	top: 50%;
	right: 0.5em;
	transform: var(--transformY) rotate(45deg);
	transition: .5s;
}
#flow #workBtn a:hover { color: var(--co-black); }
#flow #workBtn a:hover::before {
	border-top: 3px solid var(--co-black);
	border-right: 3px solid var(--co-black);
}

@media (max-width: 979px) {
}

/*------------video---------------------------------------------------------------*/
#video section {
	width: 100%;
	text-align: center;
	margin: auto;
	padding-bottom: 0;
}
#video video {
	width: 100%;
	max-width: 400px;
}

/*------------offerings---------------------------------------------------------------*/
#offerings section div {
	position: relative;
	padding: 20px;
	border-width: 2px;
	border-style: solid;
}
#offerings section div::before {
	position: absolute;
	display: block;
	content: "";
	width: 107px;
	height: 107px;
	top: 20px;
	left: 20px;
	background-position: left top;
	background-repeat: no-repeat;
}
#offerings .redTxt {
	font-weight: bold;
	color: var(--co-red);
}

/*------------batu------------------------------------*/
#offerings #batu {
	border-color: #f00;
	padding-left: 175px;
}
#offerings #batu::before { background-image: url("../../img/works/batsu.png"); }

/*------------maru------------------------------------*/
#offerings #maru {
	border-color: #0a61c7;
	padding-left: 175px;
}
#offerings #maru::before { background-image: url("../../img/works/maru.png"); }
#offerings #maru dl:not(:first-of-type) { margin-top: 1em; }
#offerings #maru dl dt {
	line-height: 1.2;
	font-size: 1.25em;
	font-weight: bold;
	color: #0a61c7;
}
#offerings #maru .redTxt {
	margin-top: 1em;
	text-align: center;
}

/*------------wish------------------------------------*/
#offerings #wish {
	border-color: #57b596;
	text-align: center;
}

@media (max-width: 979px) {
	#offerings section div::before {
		left: 50%;
		transform: var(--transformX);
	}
#offerings #batu {
	padding-left: 20px;
	padding-top: 150px;
}
#offerings #maru {
	padding-left: 20px;
	padding-top: 150px;
}
}