body {
	font-family: "Yu Mincho", "YuMincho", serif;
}

body {
	font-weight: 400;
}

body {
	color: #333;
}

.u-desktop {
	display: none;
}

.flow__inner {
	max-width: 800px;
	margin: 0 auto;
}

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

.flow__eng-title {
	position: absolute;
	top: -30%;
	left: 50%;
	transform: translateX(-50%);
	font-family: "Times New Roman", Times, serif;
	font-size: clamp(40px, 2.5rem, 70px);
	font-weight: 400;
	line-height: 1;
	color: #F0F0F0;
	z-index: -1;
	text-transform: uppercase;
}

.flow__intro {
	margin-top: clamp(20px, 4.375rem, 70px);
	padding: 0 20px;
}

.flow__intro-img {
	width: 100%;
}

.flow__intro-img img {
	width: 100%;
	height: auto;
}

.flow__intro-contents {
	padding-top: clamp(20px, 1.5625rem, 40px);
}

.flow__contents {
	position: relative;
	margin-top: clamp(20px, 3.75rem, 80px);
	margin-bottom: clamp(20px, 5rem, 80px);
}

.flow__contents::before {
	content: "";
	position: absolute;
	top: 0;
	left: 2.8125rem;
	width: 1px;
	height: 82%;
	background: repeating-linear-gradient(to bottom, #333 0, #333 0.125rem, transparent 0.125rem, transparent 0.1875rem);
	z-index: -1;
}

.flow__intro-title {
	font-size: clamp(18px, 1.25rem, 26px);
	font-weight: 400;
	text-align: center;
}

.flow__intro-text {
	margin-top: 0.625rem;
	font-size: clamp(15px, 0.9375rem, 16px);
	line-height: 1.5;
	color: #333;
}

.flow-steps {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	padding-left: 1.25rem;
}

.flow-step {
	display: grid;
	grid-template-areas: "number content" "number image";
	grid-template-columns: 15% 78%;
	grid-template-rows: auto auto;
	gap: 1.25rem 1.875rem;
	align-items: start;
}

.flow-step__number {
	grid-area: number;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding-top: 1.25rem;
	background-color: #fff;
	position: relative;
	z-index: 1;
}

.flow-step__label {
	display: block;
	font-size: clamp(18px, 1.125rem, 30px);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.flow-step__num {
	display: block;
	font-size: clamp(40px, 2.5rem, 58px);
	line-height: 1;
}

.flow-step__content {
	grid-area: content;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 1.875rem;
}

.flow-step__title {
	font-size: clamp(24px, 1.5rem, 32px);
	font-weight: 400;
	padding-right: 1.25rem;
}

.flow-step__subtitle {
	margin-top: 0.9375rem;
	font-size: clamp(16px, 1rem, 18px);
	font-weight: 500;
	font-family: "Noto Sans JP", sans-serif;
	padding-right: 1.25rem;
}

.flow-step__text {
	margin-top: 0.625rem;
	font-size: clamp(15px, 0.9375rem, 16px);
	color: #333;
	line-height: 1.5;
	font-family: "Noto Sans JP", sans-serif;
	padding-right: 1.25rem;
}

.flow-step__image {
	margin-top: 1.875rem;
	grid-area: image;
	width: 100%;
	aspect-ratio: 554/302;
	border-radius: 0.75rem 0 0 0.75rem;
	overflow: hidden;
	margin-top: 0.625rem;
}

.flow-step__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.flow-step__number {
	order: 1;
}

.flow-step__content {
	order: 2;
}

.flow-step__image {
	order: 3;
}

@media screen and (min-width: 1001px) {

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

.flow__inner {
	max-width: 100%;
	margin: 0;
}

.flow__title {
	position: relative;
	padding-top: 3rem;
	padding-left: 6.25rem;
	text-align: left;
}

.flow__eng-title {
	position: absolute;
	top: -30%;
	left: 0;
	transform: unset;
	font-size: 8.3125rem;
}

.flow__intro {
	margin-top: 5.625rem;
	background-color: #F8F7F3;
	padding: 0;
}

.flow__intro-flex {
	display: flex;
}

.flow__intro-img {
	aspect-ratio: 406/298;
	overflow: hidden;
	width: 25.375rem;
}

.flow__intro-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.flow__intro-contents {
	width: calc(100% - 25.375rem);
	padding-left: 5.3125rem;
	padding-right: 3.125rem;
	padding-top: 3.125rem;
}

.flow__contents {
	margin-top: 5.625rem;
	margin-bottom: 7.625rem;
	padding-right: 0;
}

.flow__contents::before {
	top: 6.375rem;
	left: 3.75rem;
	height: calc(100% - 25rem);
}

.flow__intro-title {
	font-size: 1.875rem;
	font-weight: 400;
	line-height: 1.5;
	color: #333;
	text-align: left;
}

.flow__intro-text {
	margin-top: 1.25rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #333;
}

.flow-steps {
	gap: 6.875rem;
}

.flow-step {
	grid-template-areas: "number content image";
	grid-template-columns: 5rem 1fr 34.625rem;
	grid-template-rows: 1fr;
	gap: 0rem 3.75rem;
	align-items: stretch;
	min-height: 13.75rem;
}

.flow-step__number {
	justify-content: center;
	padding-top: 0;
}

.flow-step__label {
	font-size: 1.875rem;
}

.flow-step__num {
	font-size: 3.625rem;
}

.flow-step__content {
	align-self: flex-start;
	padding-top: 1.875rem;
}

.flow-step__title {
	font-size: 2rem;
	padding: 0;
}

.flow-step__subtitle {
	margin-top: 1.875rem;
	font-size: 1.1875rem;
	padding: 0;
}

.flow-step__text {
	margin-top: 0.8125rem;
	font-size: 1rem;
	padding: 0;
}

.flow-step__image {
	margin-top: 1.25rem;
	align-self: center;
	border-radius: 0.75rem;
}

.flow-step__number {
	order: 1;
	align-self: start;
}

.flow-step__content {
	order: 2;
}

.flow-step__image {
	order: 3;
}

}


/*# sourceMappingURL=flow.css.map */
