@charset "utf-8";
/* CSS Document */

/* ページタイトル */
.page_title {
	background: url("../../../common/img/title/service.webp") no-repeat center center;
	background-size: cover;
}

.breadcrumb {
	margin-bottom: 0;
}

.service_lead {
	width: 100%;
	padding: var(--space-80) 5%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px 50px;
	background: var(--base-color);
	margin-bottom: var(--space-80);
}
.service_lead--box {
	position: relative;
	max-width: 488px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px 30px;
}
.service_item--img {
	max-width: 480px;
	width: 100%;
	height: 340px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 20px 20px 40px #00000033;
	img {
		height: 100%;
		object-fit: cover;
	}
}

.usage_step {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 10px;
	li {
		max-width: calc(50% - 10px);
		width: 100%;
		border: 1px solid var(--main-color);
	}
}
.usage_step--num {
	width: 100%;
	padding: 0.5em 10px;
	background: var(--main-color);
	font-family: "Philosopher", serif;
	font-style: italic;
	font-size: var(--big-txt);
	color: #fff;
	letter-spacing: 2px;
	text-align: center;
	position: relative;
	&::after {
		content: "";
		width: 20px;
		height: 18px;
		display: block;
		background: var(--main-color);
		position: absolute;
		bottom: -18px;
		left: 0;
		right: 0;
		margin: auto;
		clip-path: polygon(50% 100%, 0 0, 100% 0);
	}
}
.usage_step--content {
	width: 100%;
	padding: 35px 25px;
	display: flex;
	gap: 20px;
	background: #fff;
	text-align: center;
	p {
		width: 100%;
		text-align: center;
	}
}
.densai_btn {
	max-width: 270px;
	width: 100%;
	position: absolute;
	bottom: -150px;
	right: 0;
	a {
		width: 100%;
		padding: 0.8em 45px 0.8em 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 1px solid var(--main-color);
		background: #fff;
		font-size: 1.4rem;
		font-family: "Shippori Mincho B1", serif;
		color: #000;
		font-weight: 600;
		line-height: 1.5;
		text-align: center;
		transition: all .2s;
		position: relative;
	}
	a:hover {
		background: var(--main-color);
		color: #fff;
		opacity: 1;
	}
	a::before {
		content: "";
		width: 35px;
		height: 35px;
		display: block;
		background: var(--main-color);
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
	}
	a:hover::before {
		background: #fff;
	}
	a::after {
		content: "";
    width: 11px;
    height: 17px;
    display: inline-block;
		background: url("../../../common/img/pageNav_icon_hover.webp") no-repeat center center;
		position: absolute;
		right: 10px;
		top: 50%;
		transform: translateY(-50%) rotate(-90deg);
	}
	a:hover::after {
		background: url("../../../common/img/pageNav_icon.webp") no-repeat center center;
	}
}
.cmn_subheading03 span {
	font-size: var(--base-txt);
	color: #000;
	font-weight: normal;
}
.border_box.flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0 15px;
	margin-bottom: 10px;
	img {
		transform: translateY(var(--space-30));
	}
}
.border_box.flex02 {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 10px;
}
.border_box.flex02 .cmn_subheading03 {
	width: 100%;
}
.usage_step--flex {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.move-in_list {
	display: flex;
	flex-direction: column;
	gap: 15px;
	li {
		display: flex;
		align-items: flex-start;
		gap: 10px;
	}
}
.move-in_list-num {
	font-size: var(--big-txt);
	color: var(--main-color);
	font-family: "Philosopher", serif;
  font-style: italic;
	transform: translateY(-0.25em);
	white-space: nowrap;
}
.move-in_list--txt {
	font-size: var(--more-txt);
}
.link_box {
	margin-top: 20px;
}
.link_box--flex {
	display: inline-flex;
	gap: 0 30px;
	li {
		text-decoration: underline;
		&::after {
			content: "";
			width: 16px;
			height: 16px;
			display: inline-block;
			background: url(../../../common/img/pdf_icon.webp) no-repeat center center;
			background-size: contain;
		}
	}
}
@media screen and (max-width: 767px){
  .service_item--img {
    height: 150px;
  }
	.table_2rows--flex th {
		width: 100%;
		height: 50px;
	}
	.usage_step li {
		max-width: 100%;
	}
	.usage_step--flex {
		flex-direction: column;
	}
	.link_box--flex {
		flex-direction: column;
	}
	.densai_btn {
		position: relative;
		bottom: auto;
		right: auto;
	}
}