.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

body {
	font-family: "Noto Sans JP", sans-serif;
}

/* リキッドレイアウト対応 */

html {
	font-size: 62.5%;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

/* Set core body defaults */

body {
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeLegibility;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

/* ホバー */

a {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

.l-section {
	letter-spacing: 0;
	padding: 9.6rem 0 12rem;
}

.c-button-group {
	display: flex;
	gap: 1.2rem;
	margin-top: 4.8rem;
}

.c-button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 99.9rem;
	color: #fff;
	display: flex;
	font-size: 1.8rem;
	font-weight: 700;
	height: 8rem;
	justify-content: center;
	line-height: 1.3;
	max-width: 32.4rem;
	padding: 1.5rem 0;
	padding-left: 3.6rem;
	position: relative;
	text-align: center;
	transition: all 0.3s ease;
	width: 100%;
}

.c-button--contact {
	background-color: #564dd7;
}

.c-button--contact:hover {
	border: 1px solid #564dd7;
	opacity: 0.7;
}

.c-button--download {
	background-color: #f7568e;
}

.c-button--download:hover {
	border: 1px solid #f7568e;
	opacity: 0.7;
}

.c-button--contact::before,
.c-button--download::before {
	content: "";
	height: 2.4rem;
	left: 6.2rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2.4rem;
}

.c-button--contact::before {
	background: url(../images/index-icon-mail.svg) no-repeat center center/cover;
}

.c-button--download::before {
	background: url(../images/index-icon-download.svg) no-repeat center center/cover;
}

.c-title__head {
	display: flex;
	flex-direction: column;
	gap: 3.2rem;
}

.c-title__eyebrow {
	color: #564dd7;
	font-family: "Montserrat", sans-serif;
	font-size: 2.8rem;
	font-weight: 500;
	letter-spacing: 0.28rem;
	line-height: 1;
	text-align: center;
}

.c-title__title {
	background-color: transparent;
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.4;
	padding: 0;
	text-align: center;
}

.js-scroll-fade {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-scroll-fade.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.js-scroll-fade-only {
	opacity: 0;
	transition: opacity 0.8s ease;
}

.js-scroll-fade-only.is-visible {
	opacity: 1;
}

.js-scroll-fade-left {
	opacity: 0;
	transform: translateX(-30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-scroll-fade-left.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.js-scroll-fade-right {
	opacity: 0;
	transform: translateX(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-scroll-fade-right.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.js-scroll-fade-delay-1 {
	transition-delay: 0.1s;
}

.js-scroll-fade-delay-2 {
	transition-delay: 0.2s;
}

.js-scroll-fade-delay-3 {
	transition-delay: 0.3s;
}

.js-scroll-fade-delay-4 {
	transition-delay: 0.4s;
}

.js-scroll-fade-delay-5 {
	transition-delay: 0.5s;
}

.p-caseStudy {
	background-color: #f7f7f7;
}

.p-caseStudy__list {
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
	margin-bottom: 0;
	margin-top: 6.4rem;
}

.p-caseStudy__item {
	align-items: center;
	background-color: #fff;
	border-radius: 1rem;
	display: flex;
	padding: 4.8rem;
}

.p-caseStudy__side {
	border-right: 1px solid #cacaca;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	gap: 2.4rem;
	padding-right: 4rem;
	text-align: center;
	width: 21.4rem;
}

.p-caseStudy__case {
	align-items: center;
	color: #564dd7;
	display: flex;
	font-family: "Montserrat", sans-serif;
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: 0.2rem;
	line-height: 1;
}

.p-caseStudy__case span {
	font-family: "Montserrat", sans-serif;
	font-size: 4rem;
	font-weight: 300;
	letter-spacing: 0.4rem;
	line-height: 1;
	margin-left: 1rem;
}

.p-caseStudy__company {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.7;
}

.p-caseStudy__plan {
	background-color: #564dd7;
	border-radius: 99.9rem;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.4;
	padding: 1.6rem 0;
	text-align: center;
}

.p-caseStudy__content {
	display: flex;
	flex-direction: column;
	gap: 3.2rem;
	padding-bottom: 0.85rem;
	padding-left: 4rem;
	padding-top: 0.85rem;
}

.p-caseStudy__title {
	color: #564dd7;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.7;
}

.p-caseStudy__detail {
	display: flex;
	flex-direction: column;
	gap: 3.2rem;
	margin-bottom: 0;
}

.p-caseStudy__detail-item {
	align-items: center;
	display: flex;
	gap: 3.8rem;
}

.p-caseStudy__label {
	align-items: center;
	display: flex;
	font-size: 1.6rem;
	font-weight: 700;
	gap: 2rem;
	line-height: 1.4;
}

.p-caseStudy__label span {
	white-space: nowrap;
}

.p-caseStudy__label--purple {
	color: #564dd7;
}

.p-caseStudy__label img {
	width: 3.2rem;
}

.p-caseStudy__desc {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.7;
	margin-left: 3.3rem;
}

.p-cta {
	background-color: #564dd7;
	padding: 4.8rem 0;
}

.p-cta__box {
	background-color: #fff;
	border-radius: 1rem;
	padding: 4.8rem 0;
}

.p-cta__texts {
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
}

.p-cta__title {
	background-color: transparent;
	color: #564dd7;
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.4;
	padding: 0;
	text-align: center;
}

.p-cta__lead {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.7;
	text-align: center;
}

.p-cta__buttons {
	gap: 2rem;
	justify-content: center;
	margin-top: 3.2rem;
}

.p-cta__buttons .c-button {
	max-width: 35.2rem;
}

.p-flow__lead {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.7;
	margin-top: 4.8rem;
	text-align: center;
}

.p-flowStep {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 0;
	margin-top: 6.4rem;
}

.p-flowStep__block {
	display: flex;
	min-height: 11.9rem;
	position: relative;
}

.p-flowStep__block--first::before {
	background: url(../images/flowstep_arrow_first.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: -1.6rem;
	content: "";
	height: 3.2rem;
	left: 11.2rem;
	position: absolute;
	width: 3.2rem;
	z-index: 1;
}

.p-flowStep__block--second::before {
	background: url(../images/flowstep_arrow_second.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: -1.6rem;
	content: "";
	height: 3.2rem;
	left: 11.2rem;
	position: absolute;
	width: 3.2rem;
	z-index: 1;
}

.p-flowStep__label {
	align-items: center;
	color: #fff;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	font-size: 1.6rem;
	font-weight: 700;
	gap: 0.4rem;
	justify-content: center;
	line-height: 1.2;
	padding: 0 1.6rem;
	text-align: center;
	width: 7.2rem;
	writing-mode: vertical-rl;
}

.p-flowStep__label span {
	display: block;
}

.p-flowStep__label--blue {
	background-color: #20abd9;
}

.p-flowStep__label--skyblue {
	background-color: #3e8de7;
}

.p-flowStep__label--purple {
	background-color: #564dd7;
}

.p-flowStep__num--blue {
	color: #20abd9;
}

.p-flowStep__num--skyblue {
	color: #3e8de7;
}

.p-flowStep__num--purple {
	color: #564dd7;
}

.p-flowStep__items {
	background-color: #f7f7f7;
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
	justify-content: center;
	padding: 3.2rem 2.9rem 3.2rem 4rem;
	width: 100%;
}

.p-flowStep__item {
	align-items: center;
	display: flex;
	gap: 2.4rem;
}

.p-flowStep__num {
	flex-shrink: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: 0.2rem;
	line-height: 1;
	width: 3.2rem;
}

.p-flowStep__content {
	align-items: center;
	display: flex;
	gap: 2.4rem;
}

.p-flowStep__title {
	font-feature-settings: "palt" on;
	color: #20abd9;
	flex-shrink: 0;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 170%;
	width: 23rem;
}

.p-flowStep__title--skyblue {
	color: #3e8de7;
}

.p-flowStep__title--purple {
	color: #564dd7;
}

.p-flowStep__text {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.8;
}

.p-hero {
	height: calc(100dvh - 15.2rem);
	min-height: 70rem;
	position: relative;
}

.p-hero::after {
	background: url(../images/index-bg-hero.png) no-repeat center center/cover;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.p-hero__content {
	letter-spacing: 0;
	max-width: 66rem;
	position: absolute;
	top: 12%;
	width: 100%;
}

.p-hero__label {
	background-color: #564dd7;
	border-radius: 0.4rem;
	color: #fff;
	display: inline-block;
	font-family: "Montserrat", sans-serif;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1;
	padding: 1.6rem;
}

.p-hero__title {
	font-size: 4.8rem;
	font-weight: 700;
	line-height: 1.4;
	margin-top: 3.2rem;
}

.p-hero__highlight {
	color: #564dd7;
}

.p-hero__text {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.8;
	margin-top: 2rem;
}

.p-hero__note {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.4;
	margin-top: 2.4rem;
	text-align: center;
}

.p-merit__list {
	margin-top: 9.6rem;
}

.p-merit__item {
	display: flex;
	gap: 6.4rem;
}

.p-merit__item:not(:first-child) {
	border-top: 1px solid #d9d9d9;
	margin-top: 6.4rem;
	padding-top: 6.4rem;
}

.p-meritItem__body {
	width: 100%;
}

.p-meritItem__head {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.p-meritItem__num {
	color: #564dd7;
	font-family: "Montserrat", sans-serif;
	font-size: 2rem;
	font-weight: 300;
	line-height: 1;
}

.p-meritItem__heading {
	color: #564dd7;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.6;
}

.p-meritItem__text {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.8;
	margin-top: 4rem;
}

.p-meritItem__image {
	max-width: 57.2rem;
	width: 100%;
}

.p-service {
	padding: 9.6rem 0 8rem;
}

.p-service__list {
	display: flex;
	flex-direction: column;
	gap: 9.6rem;
	margin-top: 9.6rem;
}

.p-service__item {
	display: flex;
	gap: 4.8rem;
}

.p-service__image {
	border: 1px solid #cacaca;
	border-radius: 1rem;
	height: 24rem;
	max-width: 36rem;
	overflow: hidden;
	width: 100%;
}

.p-service__image img {
	-o-object-fit: cover;
	aspect-ratio: 360/240;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.p-service__content {
	flex: 1;
}

.p-service__title {
	color: #564dd7;
	font-size: 3.2rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.8;
}

.p-service__text {
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.8;
	margin-top: 2.4rem;
}

.p-service__button {
	-webkit-text-decoration: none;
	border: 1px solid #564dd7;
	border-radius: 99.9rem;
	display: block;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1;
	margin-top: 3.2rem;
	max-width: 17.6rem;
	padding: 1.6rem 0;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: 0.3s ease-in-out;
	width: 100%;
}

.p-service__button:hover {
	opacity: 0.7;
}

.p-service__button::after {
	background: url(../images/index-icon-new-tab.svg) no-repeat center center/cover;
	content: "";
	height: 2rem;
	position: absolute;
	right: 1.2rem;
	top: 50%;
	transform: translateY(-50%);
	width: 2rem;
}

.p-solution {
	background: #f7f7f7;
	letter-spacing: 0;
	margin-top: 8rem;
	padding: 12rem 0;
	position: relative;
}

.p-solution__inner {
	margin-top: 7.4rem;
}

.p-solution__head-wrapper {
	background-color: #fff;
	border-radius: 2rem;
	padding: 6.4rem;
}

.p-solution__big-title {
	background-color: #564dd7;
	border-radius: 0.5rem;
	color: #fff;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.4;
	margin-left: auto;
	margin-right: auto;
	margin-top: -16.7rem;
	max-width: 105rem;
	padding: 2.4rem 0;
	position: relative;
	text-align: center;
	width: 100%;
}

.p-solution__big-title::after {
	border-bottom: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-style: solid;
	border-top: 40px solid #564dd7;
	bottom: -2.8rem;
	content: "";
	height: 0;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 0;
}

.p-solution__title {
	background-color: transparent;
	color: #564dd7;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.4;
	padding: 0;
	text-align: center;
}

.p-solution__desc {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-top: 6.4rem;
}

.p-solution__text {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.8;
}

.p-solution__ill {
	margin-top: 6.4rem;
	max-width: 107.2rem;
	width: 100%;
}

.p-solution__features {
	margin-top: 9.6rem;
}

.p-solution__cards {
	grid-gap: 4rem;
	display: grid;
	gap: 4rem;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 6.4rem;
}

.p-scard {
	background-color: #fff;
	border-radius: 1rem;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.p-solution__card-body {
	padding: 4.8rem 2rem 2.4rem;
}

.p-scard__icon {
	margin-left: auto;
	margin-right: auto;
	width: 6.4rem;
}

.p-scard__icon img {
	-o-object-fit: cover;
	aspect-ratio: 64/64;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.p-scard__body {
	margin-top: 4rem;
}

.p-scard__title {
	font-feature-settings: "palt" on;
	color: #564dd7;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.p-scard__text {
	font-feature-settings: "palt" on;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.8;
	margin-top: 3.2rem;
}

.p-scard__wrap {
	margin-top: auto;
}

.p-scard__arrow {
	margin: 0 auto 2.4rem;
	width: 4rem;
}

.p-scard__foot {
	background-color: #564dd7;
	border-radius: 0 0 1rem 1rem;
	color: #fff;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
	margin-top: auto;
	padding: 2.4rem 0;
	text-align: center;
}

.p-solution__note {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.4;
	margin-top: 8rem;
	text-align: center;
}

.p-worry__cards {
	grid-gap: 4.05rem;
	display: grid;
	gap: 4.05rem;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 6.4rem;
}

.p-worry__card {
	display: flex;
	flex-direction: column;
	gap: 3.2rem;
	max-width: 37.3rem;
	width: 100%;
}

.p-card__thumb img {
	-o-object-fit: cover;
	aspect-ratio: 373/210;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.p-card__title {
	color: #564dd7;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.p-card__text {
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.8;
}

.l-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1240px;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

@media (max-width: 1200px) {

html {
	font-size: 0.8333333333vw;
}

}

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

.u-desktop {
	display: none;
}

.u-mobile {
	display: block;
}

html {
	font-size: 62.5%;
}

.l-section {
	padding-bottom: 8rem;
	padding-top: 8rem;
}

.c-button-group {
	flex-direction: column;
	margin-top: 6.4rem;
}

.c-button {
	font-size: 1.4rem;
	height: 5.6rem;
	padding-left: 4rem;
}

.c-button--contact::before,
.c-button--download::before {
	left: 3.2rem;
}

.c-title__head {
	gap: 2rem;
}

.c-title__eyebrow {
	font-size: 2rem;
	letter-spacing: 0.2rem;
}

.c-title__title {
	font-size: 2.4rem;
}

.p-caseStudy__list {
	gap: 1.2rem;
	margin-top: 4rem;
}

.p-caseStudy__item {
	flex-direction: column;
	padding: 3.2rem 1.6rem;
}

.p-caseStudy__side {
	border-bottom: 1px solid #cacaca;
	border-right: 0;
	border-right: initial;
	gap: 1.6rem;
	padding-bottom: 3.2rem;
	padding-right: 0;
	padding-right: initial;
	width: 100%;
}

.p-caseStudy__company {
	font-size: 2.2rem;
}

.p-caseStudy__plan {
	margin-left: auto;
	margin-right: auto;
	padding: 1.6rem 3.4rem;
	width: -moz-fit-content;
	width: fit-content;
}

.p-caseStudy__content {
	padding-left: 0;
	padding-left: initial;
	padding-top: 3.2rem;
}

.p-caseStudy__title {
	font-size: 2rem;
}

.p-caseStudy__detail-item {
	align-items: flex-start;
	flex-direction: column;
	gap: 2rem;
}

.p-caseStudy__label {
	align-items: flex-start;
}

.p-caseStudy__desc {
	font-size: 1.4rem;
	margin-left: 0;
	margin-left: initial;
}

.p-cta {
	padding-bottom: 3.2rem;
	padding-top: 3.2rem;
}

.p-cta__box {
	padding-bottom: 3.2rem;
	padding-left: 1.6rem;
	padding-right: 1.6rem;
	padding-top: 3.2rem;
}

.p-cta__texts {
	gap: 1.6rem;
}

.p-cta__title {
	font-size: 2.8rem;
	line-height: 1.2;
}

.p-cta__lead {
	font-size: 1.4rem;
}

.p-cta__buttons {
	align-items: center;
	gap: 1.2rem;
}

.p-flow__lead {
	font-size: 1.4rem;
	margin-top: 3.2rem;
	text-align: left;
}

.p-flowStep {
	gap: 4.8rem;
	margin-top: 4rem;
}

.p-flowStep__block {
	flex-direction: column;
	min-height: 0;
	min-height: initial;
}

.p-flowStep__block--first::before {
	bottom: -4rem;
	left: 50%;
	transform: translateX(-50%);
}

.p-flowStep__block--second::before {
	bottom: -4rem;
	left: 50%;
	transform: translateX(-50%);
}

.p-flowStep__label {
	display: flex;
	flex-direction: row;
	padding-bottom: 0.8rem;
	padding-top: 0.8rem;
	text-align: center;
	width: auto;
	width: initial;
	writing-mode: initial;
}

.p-flowStep__items {
	gap: 0.8rem;
	justify-content: flex-start;
	padding: 2.4rem 1.6rem;
}

.p-flowStep__item {
	align-items: flex-start;
}

.p-flowStep__num {
	font-size: 1.8rem;
	margin-top: 0.4rem;
}

.p-flowStep__content {
	align-items: flex-start;
	flex-direction: column;
	gap: 0.8rem;
}

.p-flowStep__title {
	font-size: 1.6rem;
	width: auto;
	width: initial;
}

.p-flowStep__text {
	font-size: 1.4rem;
}

.p-hero { /* height: calc(100dvh - rem(32)); */
	height: 58rem;
	min-height: 0;
	min-height: initial;
}

.p-hero::after {
	-o-object-fit: cover;
	aspect-ratio: 375/348;
	background: url(../images/index-bg-hero-sp.png) no-repeat center center/cover;
	height: auto;
	left: auto;
	left: initial;
	object-fit: cover;
	top: 0rem;
	width: 100%;
}

.p-hero__content {
	top: 6%;
}

.p-hero__label {
	font-size: 1.6rem;
	padding: 0.8rem;
}

.p-hero__title {
	font-size: 2.8rem;
	line-height: 1.5;
	margin-top: 1.2rem;
}

.p-hero__text {
	font-size: 1.4rem;
	line-height: 1.6;
	margin-top: 1.2rem;
}

.p-hero__note {
	font-size: 1.4rem;
	margin-top: 1.6rem;
}

.p-hero__btn-wrapper {
	margin-top: 2rem;
	width: 32.4rem;
}

.p-merit__list {
	margin-top: 4rem;
}

.p-merit__item {
	flex-direction: column;
	gap: 2rem;
}

.p-merit__item:not(:first-child) {
	margin-top: 3.2rem;
	padding-top: 3.2rem;
}

.p-meritItem__head {
	flex-direction: row-reverse;
	justify-content: space-between;
}

.p-meritItem__num {
	font-size: 3.2rem;
	margin-top: 0.4rem;
}

.p-meritItem__heading {
	font-size: 2.8rem;
}

.p-meritItem__text {
	font-size: 1.4rem;
	margin-top: 1.6rem;
}

.p-meritItem__image {
	max-width: none;
	max-width: initial;
}

.p-service {
	padding-bottom: 8rem;
	padding-top: 8rem;
}

.p-service__list {
	gap: 4.8rem;
	margin-top: 4.8rem;
}

.p-service__item {
	flex-direction: column;
	gap: 2.4rem;
}

.p-service__image {
	height: auto;
	height: initial;
	max-width: none;
	max-width: initial;
}

.p-service__title {
	font-size: 2rem;
}

.p-service__text {
	font-size: 1.4rem;
	margin-top: 2rem;
}

.p-service__button {
	font-size: 1.4rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2rem;
	max-width: 16.4rem;
}

.p-service__button::after {
	height: 1.6rem;
	right: 1.5rem;
	width: 1.6rem;
}

.p-solution {
	padding-bottom: 8rem;
}

.p-solution__inner {
	margin-top: 4.8rem;
}

.p-solution__head-wrapper {
	border-radius: 1rem;
	padding-bottom: 3.2rem;
	padding-left: 2rem;
	padding-right: 2rem;
	padding-top: 3.2rem;
}

.p-solution__big-title {
	font-size: 1.6rem;
}

.p-solution__big-title::after {
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 20px solid #564dd7;
	bottom: -1.4rem;
}

.p-solution__title {
	font-size: 2rem;
}

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

.p-solution__text {
	font-size: 1.4rem;
}

.p-solution__ill {
	display: inline-block;
	margin-top: 3.2rem;
	overflow-x: auto;
	white-space: nowrap;
	width: 60rem;
}

.p-solution__features {
	margin-top: rme(64);
}

.p-solution__cards {
	gap: 2rem;
	grid-template-columns: repeat(1, 1fr);
	margin-top: 2.4rem;
}

.p-scard__body {
	margin-top: 2.4rem;
}

.p-scard__title {
	font-size: 2rem;
}

.p-scard__text {
	font-size: 1.4rem;
	margin-top: 2rem;
}

.p-scard__arrow {
	margin-bottom: 1.2rem;
	margin-top: 0;
	margin-top: initial;
	width: 3.2rem;
}

.p-scard__foot {
	font-size: 1.6rem;
	padding-bottom: 1.2rem;
	padding-top: 1.2rem;
}

.p-solution__note {
	font-size: 2rem;
	margin-top: 3.2rem;
}

.p-worry__cards {
	gap: 3.2rem;
	grid-template-columns: repeat(1, 1fr);
	margin-top: 4.8rem;
}

.p-worry__card {
	gap: 1.6rem;
	max-width: 100%;
}

.p-card__thumb img {
	aspect-ratio: 335/189;
}

.p-card__title {
	font-size: 2rem;
}

.p-card__text {
	font-size: 1.4rem;
}

.l-inner {
	max-width: 60rem;
	padding-left: 20px;
	padding-right: 20px;
}

}

@media (max-width: 375px) {

html {
	font-size: 2.6666666667vw;
}

}


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