@charset "UTF-8";
/* ------------------------------------
	hero
------------------------------------ */

.hero {
	position: relative;
	height: 90rem;
	padding-top: 16rem;
	background: url("../img/index/img-main.jpg") center center / cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;

	width: 100%;
	height: 35rem;

	background: url("../img/common/bg_wave_w.png") no-repeat center bottom;
	background-size: 100% auto;

	z-index: 2;
}

.hero__copy {
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 1024px) {
	.hero {
		height: 52rem;
		padding-top: 14rem;
	}
}

@media screen and (max-width: 767.98px) {
	.hero {
		height: 42rem;
		padding-top: 0;
	}

	.hero::after {
		height: 4rem;
	}
}

/* ------------------------------------
	feature
------------------------------------ */

.feature {
	position: relative;
}

.feature.section {
	padding-bottom: 0;
}

.feature__list {
	display: flex;
	justify-content: center;
	gap: 1.8rem;
}
@media screen and (max-width: 767.98px) {
	.feature__list {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 1rem;
		max-width: 30rem;
		margin: 0 auto;
	}
}

.feature__list li {
	width: 16.5rem;
}
@media screen and (max-width: 767.98px) {
	.feature__list li {
		width: calc((100% - 2rem) / 3);
	}
}

.feature__list img {
	display: block;
	width: 100%;
	height: auto;
}

/* ------------------------------------
	greeting
------------------------------------ */

.greeting__lead {
	margin-bottom: 5rem;
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 2.1;
}

.greeting__main {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	width: 96rem;
	max-width: 100%;
	margin: 0 auto 5rem;
}

.greeting__main img {
	display: block;
	width: 100%;
	height: 28rem;
	object-fit: cover;
}

.greeting__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 4.8rem;
	width: 96rem;
	max-width: 100%;
	margin: 0 auto;
}

.greeting__item img {
	display: block;
	width: 100%;
	height: 13rem;
	object-fit: cover;
	border-radius: 1rem;
}

.greeting__item p {
	margin-top: 1.5rem;
}

.greeting__note {
	margin-top: 5rem;
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: .4rem;
}

@media screen and (max-width: 767.98px) {

	.greeting .container {
		max-width: 100%;
	}

	.greeting__lead {
		margin-bottom: 3rem;
		text-align: left;
		font-size: 1.4rem;
		line-height: 1.9;
	}

	.greeting__main {
		grid-template-columns: 1fr;
		width: 100%;
		margin-bottom: 3rem;
	}

	.greeting__main img {
		height: auto;
	}

	.greeting__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.4rem 1.6rem;
		width: 100%;
	}

	.greeting__item img {
		height: 10rem;
	}

	.greeting__item p {
		font-size: 1.2rem;
		line-height: 1.7;
	}

	.greeting__note {
		margin-top: 3rem;
		font-size: 1.4rem;
	}
}

/* ------------------------------------
	price
------------------------------------ */

.price {
	position: relative;
	background: #F2FFF3;
	z-index: -1;
}

.price .container-sm {
	position: relative;
	z-index: 2;
}

.price::before {
	content: "";
	position: absolute;
	left: 0;
	top: -38px;
	width: 100%;
	height: 38px;
	background-image: url("../img/common/bg_wave_g.png");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% 100%;
	z-index: -1;
}
@media screen and (max-width: 767.98px) {
	.price::before {
		top: -24px;
		height: 24px;
	}
}

.price .container-sm {
	position: relative;
	z-index: 1;
}

.price__block {
	position: relative;
	margin-bottom: 6rem;
}
@media screen and (max-width: 767.98px) {
	.price__block {
		margin-bottom: 4rem;
	}
}

.price__block:last-child {
	margin-bottom: 0;
}

.price__block h3 {
	margin-bottom: 2rem;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
	.price__block h3 {
		margin-bottom: 1.4rem;
		font-size: 2.1rem;
		line-height: 1.5;
	}
}

.price__block dl div {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	border-bottom: 1px solid #000;
	padding: 1rem 0;
}
@media screen and (max-width: 767.98px) {
	.price__block dl div {
		gap: 1.5rem;
		padding: .8rem 0;
	}
}

.price__block dt,
.price__block dd {
	margin: 0;
	font-size: 2rem;
	font-weight: 700;
}
@media screen and (max-width: 767.98px) {
	.price__block dt,
	.price__block dd {
		font-size: 1.4rem;
	}
}

.price__note {
	margin-top: 2rem;
	font-size: 1.6rem;
	line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
	.price__note {
		margin-top: 1.4rem;
		font-size: 1.2rem;
		line-height: 1.7;
	}
}

.price__list li {
	position: relative;
	margin-bottom: 1rem;
	padding-left: 2rem;
	font-size: 1.6rem;
	line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
	.price__list li {
		margin-bottom: .8rem;
		padding-left: 1.6rem;
		font-size: 1.2rem;
		line-height: 1.7;
	}
}

.price__list li:last-of-type {
	margin-bottom: 0;
}

.price__list li::before {
	content: "●";
	position: absolute;
	left: 0;
	top: 0;
}

.price__deco {
	pointer-events: none;
}

.price__dog {
	position: absolute;
	height: auto;
	pointer-events: none;
	z-index: -1;
}

.price__dog--01 {
	top: -7rem;
	left: calc(50% - 50rem);
	width: 5.6rem;
}
@media screen and (max-width: 767.98px) {
	.price__dog--01 {
		top: -4rem;
		left: 1.2rem;
		width: 4rem;
	}
}

.price__dog--02 {
	top: 5rem;
	right: -9rem;
	width: 8.8rem;
}
@media screen and (max-width: 767.98px) {
	.price__dog--02 {
		top: 2rem;
		right: -2rem;
		width: 5.8rem;
	}
}

.price__dog--03 {
	left: -11rem;
	bottom: 0;
	width: 12.8rem;
}
@media screen and (max-width: 767.98px) {
	.price__dog--03 {
		left: -3rem;
		bottom: -1rem;
		width: 7.5rem;
	}
}

.price__dog--04 {
	top: -2rem;
	right: -10rem;
	width: 11.2rem;
}

@media screen and (max-width: 767.98px) {
	.price__dog--04 {
		top: 0;
		right: -2rem;
		width: 6.5rem;
	}
}

/* ------------------------------------
	benefits
------------------------------------ */

.benefits {
	position: relative;
	background: #FFFF00;
}

.benefits.section {
	padding-bottom: 22rem;
}
@media screen and (max-width: 767.98px) {
	.benefits.section {
		padding-bottom: 11rem;
	}
}

.benefits::before {
	content: "";
	position: absolute;
	left: 0;
	top: -38px;
	width: 100%;
	height: 38px;
	background-image: url("../img/common/bg_wave_y.png");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% 100%;
	z-index: -1;
}
@media screen and (max-width: 767.98px) {
	.benefits::before {
		top: -24px;
		height: 24px;
	}
}

.benefits__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.2rem;
}
@media screen and (max-width: 767.98px) {
	.benefits__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.6rem;
	}
}

.benefits__item h3 {
	background: #E73230;
	color: #FFF;
	border-radius: 1rem;
	padding: 3rem 1rem;
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
}
@media screen and (max-width: 767.98px) {
	.benefits__item h3 {
		border-radius: .8rem;
		padding: 1.8rem .8rem;
		font-size: 1.8rem;
		line-height: 1.3;
	}
}

.benefits__item p {
	margin-top: 2rem;
	font-size: 1.8rem;
	line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
	.benefits__item p {
		margin-top: 1rem;
		font-size: 1.4rem;
	}
}

.benefits__note {
	margin-top: 6rem;
}
@media screen and (max-width: 767.98px) {
	.benefits__note {
		margin-top: 3rem;
	}
}

/* ------------------------------------
	flow
------------------------------------ */

.flow {
	position: relative;
	background: #FFF;
	z-index: 1;
}

.flow::before {
	content: "";
	position: absolute;
	left: 0;
	top: -38px;
	width: 100%;
	height: 38px;
	background-image: url("../img/common/bg_wave_w.png");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% 100%;
	z-index: -1;
}
@media screen and (max-width: 767.98px) {
	.flow::before {
		top: -24px;
		height: 24px;
	}
}

.flow .container {
	position: relative;
	z-index: 2;
}

.flow__deco {
	pointer-events: none;
}

.flow__person,
.flow__ashiato,
.flow__dog {
	position: absolute;
	height: auto;
	pointer-events: none;
	z-index: 1;
}

.flow__person {
	top: -17rem;
	left: 50%;
	width: 20rem;
	transform: translateX(-50%);
}
@media screen and (max-width: 767.98px) {
	.flow__person {
		top: -7rem;
		width: 10rem;
	}
}

.flow__ashiato {
	position: absolute;
	height: auto;
	pointer-events: none;
	z-index: 1;
}

.flow__ashiato--01 {
	top: 8rem;
	left: calc(50% - 60rem);
	width: 35rem;
}
@media screen and (max-width: 767.98px) {
	.flow__ashiato--01 {
		top: 5rem;
		left: 0;
		width: 22rem;
	}
}

.flow__ashiato--02 {
	right: calc(50% - 60rem);
	bottom: 4rem;
	width: 35rem;
}
@media screen and (max-width: 767.98px) {
	.flow__ashiato--02 {
		right: 0;
		bottom: 4rem;
		width: 22rem;
	}
}

.flow__dog--01 {
	top: 10rem;
	left: calc(50% - 30rem);
	width: 13rem;
}
@media screen and (max-width: 767.98px) {
	.flow__dog--01 {
		top: 12rem;
		left: 1rem;
		width: 7rem;
	}
}

.flow__dog--02 {
	top: 11rem;
	right: calc(50% - 40rem);
	width: 14rem;
}
@media screen and (max-width: 767.98px) {
	.flow__dog--02 {
		top: 12rem;
		right: 1rem;
		width: 8rem;
	}
}

.flow__dog--03 {
	bottom: 1rem;
	left: calc(50% - 35rem);
	width: 21rem;
}
@media screen and (max-width: 767.98px) {
	.flow__dog--03 {
		bottom: 1rem;
		left: 1rem;
		width: 10rem;
	}
}

.flow__dog--04 {
	bottom: 1rem;
	right: calc(50% - 35rem);
	width: 22rem;
}
@media screen and (max-width: 767.98px) {
	.flow__dog--04 {
		bottom: 1rem;
		right: 1rem;
		width: 11rem;
	}
}

.flow__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6rem 4rem;
	max-width: 106rem;
	margin: 8rem auto 0;
}
@media screen and (max-width: 767.98px) {
	.flow__grid {
		grid-template-columns: 1fr;
		gap: 3.2rem;
		max-width: 32rem;
		margin: 5rem auto 0;
	}
}

.flow__item {
	position: relative;
	text-align: center;
}

.flow__item h3 {
	position: relative;
	background: #E73230;
	color: #FFF;
	border-radius: 999px;
	padding: 1.6rem 2rem;
	font-size: 2.5rem;
	font-weight: 700;
}
@media screen and (max-width: 767.98px) {
	.flow__item h3 {
		padding: 1.3rem 1.6rem;
		font-size: 1.8rem;
	}
}

.flow__item h3::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -1.1rem;
	width: 2rem;
	height: 1.6rem;
	background: url("../img/index/icon-fukidashi.png") no-repeat center center / contain;
	transform: translateX(-50%);
}
@media screen and (max-width: 767.98px) {
	.flow__item h3::after {
		bottom: -1rem;
		width: 1.6rem;
		height: 1.3rem;
	}
}

.flow__item:not(:nth-child(3n))::before {
	content: "";
	position: absolute;
	top: 2.7rem;
	right: -3.2rem;
	width: 1.8rem;
	height: 1.8rem;
	background: url("../img/index/icon-arrow.png") no-repeat center center / contain;
}
@media screen and (max-width: 767.98px) {
	.flow__item:not(:last-child)::before {
		content: "";
		display: block;
		position: absolute;
		left: 50%;
		right: auto;
		top: auto;
		bottom: -2.3rem;
		width: 1.5rem;
		height: 1.5rem;
		background: url("../img/index/icon-arrow.png") no-repeat center center / contain;
		transform: translateX(-50%) rotate(90deg);
	}
}

.flow__item p {
	margin-top: 2rem;
}

/* ------------------------------------
	company
------------------------------------ */

.company__wrap {
	display: flex;
	align-items: flex-start;
	gap: 4rem;
}
@media screen and (max-width: 767.98px) {
	.company__wrap {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 3rem;
	}
}

.company__table {
	flex: 1;
	width: auto;
	border-collapse: collapse;
}

.company__konatsu {
	flex: 0 0 24rem;
}
@media screen and (max-width: 767.98px) {
	.company__konatsu {
		order: 1;
		flex: none;
		width: 16rem;
		margin: 0 auto;
	}
}

.company__konatsu img {
	display: block;
	width: 100%;
	height: auto;
}
@media screen and (max-width: 767.98px) {
	.company__konatsu img {
		display: block;
		width: 100%;
		height: auto;
	}
}

.company__table th,
.company__table td {
	border-bottom: 1px solid #000;
	padding: 1.5rem 1rem;
	text-align: left;
}

.company__table th {
	width: 35%;
	font-weight: 500;
}

@media screen and (max-width: 767.98px) {
	.company__table {
		order: 2;
		width: 100%;
	}
	.company__table tr {
		display: block;
		padding: 1.4rem 0;
		border-bottom: 1px solid #000;
	}
	.company__table th,
	.company__table td {
		display: block;
		width: 100%;
		padding: 0;
		border: none;
	}
	.company__table th {
		margin-bottom: 0.5rem;
	}
}

/* ------------------------------------
	map
------------------------------------ */

.map {
	width: 100%;
}

.map iframe {
	width: 100%;
	height: 30rem;
	display: block;
	object-fit: cover;
	border: 0;
}

@media screen and (max-width: 767.98px) {
	.map iframe {
		height: 24rem;
	}
}