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

.u-desktop {
	display: none;
}

.u-md {
	display: none;
}

.u-lg {
	display: none;
}

.l-inner {
	margin-left: auto;
	margin-right: auto;
	padding-left: 10px;
	padding-right: 10px;
	/* padding-bottom: 96px; */
	width: 100%;
}

/* フェードイン(初期値) */

.js-fadeUp {
	opacity: 0; /* 最初は非表示 */
	-webkit-transform: translateY(30px);
	transform: translateY(30px); /* 下に30pxの位置から */
	-webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
	transition: opacity 0.8s, -webkit-transform 0.8s;
	transition: opacity 0.8s, transform 0.8s;
	transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s; /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */

.js-fadeUp.is-inview {
	opacity: 1; /* 表示領域に入ったら表示 */
	-webkit-transform: translateY(0);
	transform: translateY(0); /* 30px上に移動する */
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s; /* フェード開始を0.5秒遅らせる */
}

.js-fadeLeft {
	opacity: 0; /* 最初は非表示 */
	-webkit-transform: translateX(-30px);
	transform: translateX(-30px); /* 下に30pxの位置から */
	-webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
	transition: opacity 0.8s, -webkit-transform 0.8s;
	transition: opacity 0.8s, transform 0.8s;
	transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s; /* 透過率と縦方向の移動を0.8秒 */
}

.js-fadeLeft.is-inview {
	opacity: 1; /* 表示領域に入ったら表示 */
	-webkit-transform: translateX(0);
	transform: translateX(0); /* 30px上に移動する */
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s; /* フェード開始を0.5秒遅らせる */
}

.js-fadeRight {
	opacity: 0; /* 最初は非表示 */
	-webkit-transform: translateX(30px);
	transform: translateX(30px); /* 下に30pxの位置から */
	-webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
	transition: opacity 0.8s, -webkit-transform 0.8s;
	transition: opacity 0.8s, transform 0.8s;
	transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s; /* 透過率と縦方向の移動を0.8秒 */
}

.js-fadeRight.is-inview {
	opacity: 1; /* 表示領域に入ったら表示 */
	-webkit-transform: translateX(0);
	transform: translateX(0); /* 30px上に移動する */
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s; /* フェード開始を0.5秒遅らせる */
}

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

html {
	font-size: 16px;
}

/* ホバー */

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

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	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 */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

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

/* 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: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
	-webkit-filter: blur(10px);
	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;
}

.p-about {
	background: url(../images/about-back-sp.png) no-repeat center center/cover;
	color: #fff;
	position: relative;
}

.l-about__inner {
	margin: 0 auto;
	padding: 90px 10px 98px;
	padding: 5.625rem 0.625rem 6.125rem;
}

.p-about__title {
	font-size: 65px;
	font-size: 4.0625rem;
	font-weight: 400;
}

.p-about__lead {
	font-size: 28px;
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: 4px;
	line-height: 1.71428;
	padding-top: 23px;
	padding-top: 1.4375rem;
}

.p-about__detail {
	font-size: 14px;
	font-size: 0.875rem;
	letter-spacing: 0.7px;
	line-height: 2.57142;
	padding-top: 25px;
	padding-top: 1.5625rem;
}

.p-about__bottom-lead {
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: 1.5px;
	padding-top: 68px;
	padding-top: 4.25rem;
}

.p-about__bottom-lead span {
	font-size: 14px;
	font-size: 0.875rem;
}

.p-about__bottom-wrapper {
	margin-top: 30px;
	margin-top: 1.875rem;
}

.p-about__bottom-item {
	background-color: #000;
	font-family: "Noto Sans JP";
	font-size: 16px;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	padding: 18px 46px;
	padding: 1.125rem 2.875rem;
	position: relative;
}

.p-about__bottom-items:nth-child(2) {
	margin-top: 11px;
	margin-top: 0.6875rem;
}

.p-about__bottom-item::before {
	background: url(../images/about-check.png) no-repeat center;
	background-size: contain;
	content: "";
	content: "";
	height: 10px;
	height: 0.625rem;
	left: 6%;
	position: absolute;
	position: absolute;
	top: 44%;
	width: 15px;
	width: 0.9375rem;
}

.p-about__bottom-item + .p-about__bottom-item {
	margin-top: 8px;
	margin-top: 0.5rem;
}

.p-area {
	background-color: #191919;
	color: #fff;
	margin-top: -1px;
	margin-top: -0.0625rem;
}

.l-area__inner {
	margin: 0 auto;
	padding: 93px 10px 97px;
	padding: 5.8125rem 0.625rem 6.0625rem;
}

.p-area__title {
	font-size: 22px;
	font-size: 1.375rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-align: center;
}

.p-area__img {
	height: auto;
	margin: 0 auto;
	max-width: 880px;
	max-width: 55rem;
	padding-top: 50px;
	padding-top: 3.125rem;
	width: 100%;
}

.p-area__lead {
	font-family: "Noto Sans JP";
	font-size: 22px;
	font-size: 1.375rem;
	font-weight: 700;
	letter-spacing: 3px;
	line-height: 2.0909;
	padding-top: 58px;
	padding-top: 3.625rem;
	text-align: center;
}

.p-area__detail {
	font-family: "Noto Sans JP";
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.7px;
	line-height: 2.71428;
	margin: 0 auto;
	max-width: 675px;
	max-width: 42.1875rem;
	padding-top: 17px;
	padding-top: 1.0625rem;
}

.p-check {
	background-color: #ebd3d5;
	padding-bottom: 60px;
	padding-bottom: 3.75rem;
	padding-top: 70px;
	padding-top: 4.375rem;
}

.p-check__title {
	font-size: 32px;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 5px;
	line-height: 1.5;
	text-align: center;
}

.p-check__title span {
	color: #be333e;
	font-size: 42px;
	font-size: 2.625rem;
	font-weight: 700;
}

.p-check__lead {
	font-family: "Noto Sans JP";
	font-size: 13px;
	font-size: 0.8125rem;
	letter-spacing: 1.6px;
	line-height: 2.14285;
	margin-top: 43px;
	margin-top: 2.6875rem;
}

.p-check__lead span {
	border-bottom: 1px solid #be333e;
	color: #be333e;
	font-size: 18px;
	font-size: 1.125rem;
	padding-bottom: 5px;
	padding-bottom: 0.3125rem;
}

.p-check__inner {
	background-color: #fff;
	margin-top: 40px;
	margin-top: 2.5rem;
	padding: 66px 22px 70px;
	padding: 4.125rem 1.375rem 4.375rem;
}

.p-check__question-title {
	border-bottom: 2px solid #DDDDDD;
	color: #191919;
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 1;
	padding-bottom: 20px;
	padding-bottom: 1.25rem;
	position: relative;
}

.p-check__question-title::after {
	background-color: #901212;
	bottom: -1px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	width: 28%;
}

.p-check__question-title span {
	color: #901212;
	display: inline-block;
	font-family: "Noto Sans JP";
	font-size: 14px;
	font-size: 0.875rem;
	letter-spacing: 0.4px;
	line-height: 1.5714;
	padding-top: 9px;
	padding-top: 0.5625rem;
}

.p-check__question-title:not(:first-of-type) {
	margin-top: 102px;
	margin-top: 6.375rem;
}

.p-check__question-box {
	margin-top: 57px;
	margin-top: 3.5625rem;
}

.p-check__question-box.p-check__question-box--first {
	margin-top: 31px;
	margin-top: 1.9375rem;
}

.p-check__question-q {
	font-size: 14px;
	font-size: 0.875rem;
	letter-spacing: 3px;
	line-height: 2;
}

.p-check__example {
	font-size: 14px;
	font-size: 0.875rem;
	letter-spacing: 0.6px;
	line-height: 1.6;
	padding-top: 13px;
	padding-top: 0.8125rem;
}

.p-check__radio {
	margin-top: 26px;
	margin-top: 1.625rem;
	text-align: center;
}

.chartWrapper {
	left: 20%;
	position: absolute;
	top: 8%;
	width: 60%;
}

.chartWrapper::before {
	content: "";
	display: block;
	padding-top: 100%;
}

#resultChart {
	left: 0;
	position: absolute;
	top: 0;
}

.p-form-radio span {
	display: inline-block;
	font-family: "Noto Sans JP";
	font-size: 16px;
	font-size: 1rem;
	letter-spacing: 0.025em;
	line-height: 1.2307;
	position: relative;
}

.p-form-radio span::before {
	background: #fff;
	border: 1px solid #dbbabd;
	border-radius: 50%;
	bottom: -34px;
	bottom: -2.125rem;
	content: "";
	height: 24px;
	height: 1.5rem;
	left: 50%;
	position: absolute;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 24px;
	width: 1.5rem;
}

.p-form-radio span::after {
	background: #be333e;
	border-radius: 50%;
	bottom: -28px;
	bottom: -1.75rem;
	content: "";
	display: none;
	height: 12px;
	height: 0.75rem;
	left: 50%;
	position: absolute;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 12px;
	width: 0.75rem;
}

.p-form-radio [type=radio]:checked + span::after {
	display: block;
}

.p-form-radio__span-yes {
	margin-left: -12px;
	margin-left: -0.75rem;
}

.p-form-radio__span {
	margin-left: 77px;
	margin-left: 4.8125rem;
}

.p-check__btn {
	margin-top: 93px;
	margin-top: 5.8125rem;
	text-align: center;
}

.c-btn-submit {
	background-image: -webkit-gradient(linear, left top, right top, from(#DE6F00), color-stop(25%, #DF5300), color-stop(50%, #DF3600), color-stop(75%, #DF1C00), to(#E00000));
	background-image: linear-gradient(to right, #DE6F00 0%, #DF5300 25%, #DF3600 50%, #DF1C00 75%, #E00000 100%);
	border-radius: 6px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 20px;
	font-size: 1.25rem;
	letter-spacing: 2px;
	line-height: 1.1428;
	max-width: 310px;
	max-width: 19.375rem;
	padding: 31px 0;
	padding: 1.9375rem 0;
	position: relative;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 100%;
}

.c-btn-submit [type=submit] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	color: inherit;
	font-family: inherit;
}

.c-btn-submit::after {
	background: url(../images/arrow_btn.png) no-repeat center center/contain;
	content: "";
	height: 10px;
	height: 0.625rem;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 35px;
	width: 2.1875rem;
}

.c-btn-submit:hover {
	opacity: 0.7;
}

.c-btn-submit:hover::after {
	right: -1px;
}

.p-check-after {
	padding-bottom: 38px;
	padding-bottom: 2.375rem;
	/* /* padding-top: 77px; */
	padding-top: 4.8125rem; */
}

.p-check-after__title {
	font-size: 32px;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 5px;
	line-height: 1.7142;
	text-align: center;
}

.p-check-after__down {
	height: 23px;
	height: 1.4375rem;
	margin: 13px auto 0;
	margin: 0.8125rem auto 0;
	width: 36px;
	width: 2.25rem;
}

.p-check-after__score {
	color: #be333e;
	font-family: "Bruno Ace";
	font-size: 68px;
	font-size: 4.25rem;
	line-height: 1;
	margin-top: 60px;
	margin-top: 3.75rem;
	text-align: center;
}

.p-check-after__score span {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 700;
	padding-left: 8px;
	padding-left: 0.5rem;
}

.p-check-after__lead {
	color: #be333e;
	font-size: 22px;
	font-size: 1.375rem;
	font-weight: bold;
	letter-spacing: 3px;
	line-height: 2.0909;
	margin-bottom: 58px;
	margin-bottom: 3.625rem;
	margin-top: 39px;
	margin-top: 2.4375rem;
	padding: 0 23px;
	padding: 0 1.4375rem;
}

.p-check-after__chart {
	position: relative;
}

.p-check-after__result {
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: bold;
	letter-spacing: 0.025em;
	line-height: 1.3333;
	margin-top: 65px;
	margin-top: 4.0625rem;
	text-align: center;
}

.p-check-after__text {
	font-size: 14px;
	font-size: 0.875rem;
	letter-spacing: 0.025em;
	line-height: 2.14285;
	margin-top: 12px;
	margin-top: 0.75rem;
	padding: 0 25px;
	padding: 0 1.5625rem;
}

.p-check-after__btn {
	margin-top: 41px;
	margin-top: 2.5625rem;
	text-align: center;
}

.p-contact {
	background-image: -webkit-gradient(linear, left top, right top, from(#650D0D), color-stop(50%, #841212), to(#A21616));
	background-image: linear-gradient(to right, #650D0D 0%, #841212 50%, #A21616 100%);
	color: #fff;
	margin-top: -1px;
	text-align: center;
}

.l-contact__inner {
	margin: 0 auto;
	padding: 59px 10px 39px;
	padding: 3.6875rem 0.625rem 2.4375rem;
}

.p-contact__title {
	font-size: 22px;
	font-size: 1.375rem;
	letter-spacing: 3px;
	line-height: 2.0909;
	padding: 0 25px;
	padding: 0 1.5625rem;
}

.p-contact__detail {
	font-size: 16px;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 2.5;
	padding: 20px 20px 59px;
	padding: 1.25rem 1.25rem 3.6875rem;
}

.p-contact-parts {
	background-image: -webkit-gradient(linear, left top, right top, from(#650D0D), color-stop(50%, #841212), to(#A21616));
	background-image: linear-gradient(to right, #650D0D 0%, #841212 50%, #A21616 100%);
	color: #fff;
	margin-top: -1px;
}

.l-contact-parts__inner {
	padding: 40px 10px;
	padding: 2.5rem 0.625rem;
}

.c-contact {
	border: 1px solid #fff;
	border-radius: 10px;
	display: block;
	margin: 0 auto;
	max-width: 756px;
	max-width: 47.25rem;
	padding: 32px 0 42px;
	padding: 2rem 0 2.625rem;
	text-align: center;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.c-contact__lead {
	font-size: 50px;
	font-size: 3.125rem;
}

.c-contact__text {
	font-size: 16px;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 2px;
	line-height: 1.875;
}

.c-contact__click {
	font-size: 15px;
	font-size: 0.9375rem;
	font-weight: 400;
	padding-top: 14px;
	padding-top: 0.875rem;
	position: relative;
}

.c-contact__click::after {
	background-image: url(../images/arrow.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 8px;
	content: "";
	height: 10px;
	height: 0.625rem;
	margin-left: 11px;
	position: absolute;
	width: 10px;
	width: 0.625rem;
}

.c-contact__click::before {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	background-color: #fff;
	bottom: -6px;
	content: "";
	height: 1px;
	left: 51%;
	opacity: 0;
	position: absolute;
	transform: translate(-50%, -50%);
	width: 17%;
}

.c-contact:hover .c-contact__click::before {
	opacity: 1;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.c-contact:hover {
	background-color: #923939;
	cursor: pointer;
	opacity: 1;
}

.c-contact:hover .c-contact__lead {
	color: #923939;
	text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}

.p-mv__check-btn:hover .c-btn-check__arrow {
	-webkit-transform: translateX(5px);
	transform: translateX(5px);
}

.c-contents__img {
	padding-top: 50px;
	padding-top: 3.125rem;
}

.l-service__img {
	padding-top: 55px;
	padding-top: 3.4375rem;
}

.l-point__img {
	padding-top: 46px;
	padding-top: 2.875rem;
}

.l-point__img--bottom {
	padding-top: 66px;
	padding-top: 4.125rem;
}

.c-contents__item-lead {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	color: #901212;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 15px;
	font-size: 0.9375rem;
	padding-top: 38px;
	padding-top: 2.375rem;
}

.c-contents__item-lead::after {
	background-color: #901212;
	content: "";
	height: 1px;
	margin-bottom: 13px;
	margin-bottom: 0.8125rem;
	margin-left: 25px;
	margin-left: 1.5625rem;
	width: 50px;
}

.c-contents__item-title {
	font-size: 28px;
	font-size: 1.75rem;
	font-weight: 400;
	letter-spacing: 4px;
	line-height: 1.7;
	padding-top: 14px;
	padding-top: 0.875rem;
}

.c-contents__item-title span {
	position: relative;
	z-index: 0;
}

.c-contents__item-title span::before {
	background-color: #9a000d;
	content: "";
	height: 127%;
	left: 0;
	position: absolute;
	top: -7px;
	width: 95%;
	z-index: -1;
}

.c-contents__item-detail {
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.7px;
	line-height: 2.71428;
	padding-top: 22px;
	padding-top: 1.375rem;
}

.p-feature {
	background-color: #F0F0F0;
	color: #191919;
	position: relative;
	z-index: 0;
}

.p-feature::before {
	background-image: url(../images/feature-backimg-top_sp.png);
	background-position: top;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 230px;
	height: 14.375rem;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 375px;
	width: 23.4375rem;
	z-index: -1;
}

.p-feature::after {
	background-image: url(../images/feature-backimg-under_sp.png);
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 0;
	content: "";
	height: 230px;
	height: 14.375rem;
	height: 100%;
	position: absolute;
	right: 0;
	width: 375px;
	width: 23.4375rem;
	z-index: -1;
}

.l-feature__inner {
	margin: 0 auto;
	padding: 63px 11px 100px;
	padding: 3.9375rem 0.6875rem 6.25rem;
}

.p-feature__title {
	font-size: 32px;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 4.5px;
	line-height: 1.7;
	padding-top: 4px;
	padding-top: 0.25rem;
	text-align: center;
}

.p-feature__items:first-of-type {
	margin-top: 55px;
	margin-top: 3.4375rem;
}

.p-feature__items + .p-feature__items {
	margin-top: 28px;
	margin-top: 1.75rem;
}

.p-feature__item {
	background-color: #fff;
	padding: 30px 22px 53px;
	padding: 1.875rem 1.375rem 3.3125rem;
}

.p-feature__item + .p-feature__item {
	margin-top: 29px;
	margin-top: 1.8125rem;
}

.p-feature__item-lead {
	color: #901212;
	font-size: 15px;
	font-size: 0.9375rem;
	font-weight: 400;
	position: relative;
}

.p-feature__item-lead::after {
	background-color: #901212;
	content: "";
	display: inline-block;
	height: 1px;
	margin-bottom: 3px;
	margin-bottom: 0.1875rem;
	margin-left: 15px;
	margin-left: 0.9375rem;
	width: 50px;
}

.p-feature__item-title {
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.7;
	padding-top: 8px;
	padding-top: 0.5rem;
}

.p-feature__item-img {
	padding-top: 27px;
	padding-top: 1.6875rem;
}

.p-feature__item-detail {
	font-family: "Noto Sans JP";
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.5px;
	line-height: 2.14285;
	padding-top: 19px;
	padding-top: 1.1875rem;
}

.p-flow {
	background-color: #191919;
	color: #fff;
}

.l-flow__inner {
	margin: 0 auto;
	padding: 70px 0 0;
	padding: 4.375rem 0 0;
}

.p-flow__title {
	font-size: 32px;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 4px;
	text-align: center;
}

.p-flow__wrapper {
	margin: 61px auto 0;
	margin: 3.8125rem auto 0;
	max-width: 550px;
	max-width: 34.375rem;
	padding: 0 12px;
	padding: 0 0.75rem;
	width: 99%;
}

.p-flow__items-top,
.p-flow__items-bottom {
	margin-left: auto;
	position: relative;
	width: 86%;
}

.p-flow__items-top::before {
	background-image: url(../images/service-flow-red.png);
	background-position: left;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 101%;
	left: -50px;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-flow__items-bottom::before {
	background-image: url(../images/service-flow-yellow.png);
	background-position: left;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 100%;
	left: -50px;
	position: absolute;
	top: 0;
	width: 100%;
}

.c-flow__item-wrapper + .c-flow__item-wrapper {
	margin-top: 18px;
	margin-top: 1.125rem;
}

.c-flow__item {
	background-color: #191919;
	color: #fff;
	padding: 40px 23px 27px;
	padding: 2.5rem 1.4375rem 1.6875rem;
}

.c-flow__item--01 {
	border: 1px solid #fff;
	position: relative;
}

.c-flow__item--01::before {
	content: "調査フェーズ";
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 700;
	left: -46px;
	letter-spacing: 3px;
	position: absolute;
	top: 74px;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.c-flow__item--03,
.c-flow__item--04,
.c-flow__item--05 {
	position: relative;
}

.c-flow__item--03::before {
	border: 1px solid #D31A1A;
	content: "中間報告会";
	font-size: 16px;
	font-size: 1rem;
	font-weight: 400;
	height: 84%;
	left: -46px;
	letter-spacing: 2px;
	padding: 58px 3px 30px 2px;
	padding: 3.625rem 0.1875rem 1.875rem 0.125rem;
	position: absolute;
	top: 27px;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.c-flow__item--04::before {
	border: 1px solid #D31A1A;
	content: "最終報告会";
	font-size: 16px;
	font-size: 1rem;
	font-weight: 400;
	height: 84%;
	left: -45px;
	letter-spacing: 1px;
	padding: 88px 3px 30px 2px;
	padding: 5.5rem 0.1875rem 1.875rem 0.125rem;
	position: absolute;
	top: 34px;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.c-flow__item--05::before {
	content: "調査後の支援";
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 700;
	left: -45px;
	position: absolute;
	top: 80px;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.c-flow__item-wrapper {
	background-image: url(../images/flow-wrapper.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-top: 7px;
	margin-top: 0.4375rem;
	padding: 44px 23px 27px;
	padding: 2.75rem 1.4375rem 1.6875rem;
}

.c-flow__item-head {
	text-align: center;
}

.c-flow__item-title {
	font-size: 18px;
	font-size: 1.125rem;
}

.c-flow__item-wrapper .c-flow__item-title {
	padding-top: 8px;
	padding-top: 0.5rem;
}

.c-flow__item-subtitle {
	color: #D31A1A;
	font-size: 33px;
	font-size: 2.0625rem;
	position: relative;
}

.c-flow__item-subtitle::before {
	content: "Step";
	font-size: 13px;
	font-size: 0.8125rem;
	left: 12%;
	position: absolute;
	top: -20px;
	top: -1.25rem;
}

.l-flow__item-subtitle::before {
	left: 0;
}

.c-flow__item-text {
	font-size: 14px;
	font-size: 0.875rem;
	letter-spacing: 0.5px;
	line-height: 2;
	padding-top: 14px;
	padding-top: 0.875rem;
}

.c-flow__item-text span {
	background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20%, #555555));
	background-image: linear-gradient(to bottom, transparent 0%, #555555 20%);
	display: inline;
	padding: 0 2px 5px;
	padding: 0 0.125rem 0.3125rem;
}

.p-footer {
	background-color: #191919;
	color: #fff;
	font-family: "Noto Sans JP";
	margin-top: -1px;
	padding: 28px 0 35px;
	padding: 1.75rem 0 2.1875rem;
	text-align: center;
}

.p-footer__link {
	font-size: 14px;
	font-size: 0.875rem;
	letter-spacing: 1.1px;
	margin-right: 20px;
	margin-right: 1.25rem;
	position: relative;
}

.p-footer__link::after {
	background-image: url(../images/arrow.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 4px;
	content: "";
	height: 10px;
	height: 0.625rem;
	margin-left: 10px;
	margin-left: 0.625rem;
	position: absolute;
	width: 10px;
	width: 0.625rem;
}

.p-footer__copyright {
	color: #6A6A6A;
	font-size: 12px;
	font-size: 0.75rem;
	letter-spacing: 0.8px;
	padding-top: 14px;
	padding-top: 0.875rem;
}

.p-header {
	background-color: rgba(0, 0, 0, .8);
	height: 57px;
	height: 3.5625rem;
	opacity: 0;
	position: fixed;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	width: 100%;
	z-index: 2;
}

.p-header.is-show {
	opacity: 1;
}

.p-header__inner {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: inherit;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-left: 13px;
	padding-left: 0.8125rem;
	padding-right: 17px;
	padding-right: 1.0625rem;
}

.p-header__logo {
	width: 180px;
	width: 11.25rem;
}

.p-header__logo a {
	display: grid;
	place-items: center;
}

.p-header__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.p-header__btn-pc {
	display: none;
}

.p-header__btn-sp {
	display: block;
	font-size: 10px;
	font-size: 0.625rem;
	padding: 8px;
	padding: 0.5rem;
}

.p-header__btn-sp::after {
	display: none;
}

.p-header__btn-sp__img {
	display: block;
	margin: 0 auto 4px;
	max-width: 21px;
	max-width: 1.3125rem;
}

.p-header__inner {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: inherit;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-left: 20px;
	padding-left: 1.25rem;
	padding-right: 20px;
	padding-right: 1.25rem;
}

.comlogo img {
	height: auto;
	position: absolute;
	right: 15px;
	right: 0.9375rem;
	top: 16px;
	top: 1rem;
	width: 186px;
	width: 11.625rem;
	z-index: 3;
}

.p-header__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.c-btn-contact {
	background-image: -webkit-gradient(linear, left top, right top, from(#650D0D), color-stop(50%, #841212), to(#A21616));
	background-image: linear-gradient(to right, #650D0D 0%, #841212 50%, #A21616 100%);
	border: 2px solid #fff;
	border-radius: 6px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	letter-spacing: 0.5px;
	max-width: 134px;
	max-width: 8.375rem;
	padding: 9px 23px 4px 19px;
	padding: 0.5625rem 1.4375rem 0.25rem 1.1875rem;
	position: relative;
	text-align: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	width: 100%;
	z-index: 0;
}

.c-btn-contact:hover {
	background-color: #923939;
	background-image: none;
	opacity: 1;
}

.c-btn-contact::after {
	background: url(../images/arrow.png) no-repeat center center/contain;
	content: "";
	height: 11px;
	height: 0.6875rem;
	position: absolute;
	right: 4%;
	top: 56%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 11px;
	width: 0.6875rem;
}

.u-desktop-contact {
	display: none;
}

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

.p-mv {
	color: #fff;
	height: 679px;
	height: 42.4375rem;
	position: relative;
}

.p-mv__img {
	-o-object-fit: cover;
	-webkit-animation: blur-anim2 3s linear forwards;
	animation: blur-anim2 3s linear forwards;
	filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="20" /></filter></svg>#filter');
	-webkit-filter: blur(20px);
	filter: blur(20px);
	height: auto;
	object-fit: cover;
	opacity: 0;
	-webkit-transition: 5s;
	transition: 5s;
	width: 100%;
}

.p-mv__img source,
.p-mv__img img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-mv::before {
	background-color: rgba(0, 0, 0, .65);
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.-imageloaded {
	opacity: 1;
}

.p-mv__detail {
	left: 4vw;
	position: absolute;
	top: 15%;
	width: 90%;
	z-index: 1;
}

.p-mv__message {
	font-family: "Noto serif JP";
	font-size: 34px;
	font-size: 2.125rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	line-height: 1.6;
}

.p-mv__text {
	font-size: 16px;
	font-size: 1rem;
	letter-spacing: 0.08em;
	line-height: 2;
	padding-top: 38px;
	padding-top: 2.375rem;
}

.u-mv__text-left {
	display: block;
	margin-left: -7px;
	margin-left: -0.4375rem;
	margin-top: 3px;
	margin-top: 0.1875rem;
}

.p-mv__btn-wrapper {
	margin-left: -4px;
	margin-left: -0.25rem;
	margin-top: 35px;
	margin-top: 2.1875rem;
}

.p-mv__check-btn {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #D06E1B;
	border: 2px solid #fff;
	border-radius: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 15px;
	padding: 0.9375rem;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 353px;
	width: 22.0625rem;
}

.c-btn-check__text {
	color: #fff;
	font-family: "Noto Sans JP";
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 1.1px;
	margin-left: 13px;
	margin-left: 0.8125rem;
	width: 70%;
}

.c-btn-check__text span {
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: 1.7px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.c-btn-check__img {
	height: auto;
	width: 65px;
	width: 4.0625rem;
	width: 20%;
}

.c-btn-check__arrow {
	height: 9px;
	height: 0.5625rem;
	margin-right: 8px;
	margin-top: 4px;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
	width: 25px;
	width: 1.5625rem;
	width: 10%;
}

.p-mv__check-btn:hover {
	background-color: #d5954b;
	cursor: pointer;
	opacity: 1;
}

.p-mv__check-btn:hover .c-btn-check__text span {
	color: #d5954b;
	text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}

.p-mv__check-btn:hover .c-btn-check__arrow {
	-webkit-transform: translateX(5px);
	transform: translateX(5px);
}

.p-point {
	background-color: #191919;
	color: #fff;
	margin-top: -1px;
}

.l-point__inner {
	margin: 0 auto;
	padding: 83px 11px 94px;
	padding: 5.1875rem 0.6875rem 5.875rem;
}

.p-point__title-lead {
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 400;
	letter-spacing: 2px;
	text-align: center;
}

.p-point__title {
	font-size: 32px;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 4.5px;
	line-height: 1.625;
	padding-top: 5px;
	padding-top: 0.3125rem;
	text-align: center;
}

.p-service {
	background-color: #520707;
	color: #fff;
	margin-top: -1px;
	overflow: hidden;
	position: relative;
}

.l-service__inner {
	margin: 0 auto;
	padding: 67px 11px 92px;
	padding: 4.1875rem 0.6875rem 5.75rem;
}

.p-service__title-img {
	-webkit-text-stroke: 2px rgba(255, 255, 255, .13);
	color: transparent;
	font-family: "Bruno Ace";
	font-size: 19vw;
	height: auto;
	left: 0;
	position: absolute;
	top: -8vw;
	width: 100%;
}

.p-service__title {
	font-size: 32px;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 4.5px;
	text-align: center;
}

.p-service__title-img {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.5s linear;
	transition: -webkit-transform 0.5s linear;
	transition: transform 0.5s linear;
	transition: transform 0.5s linear, -webkit-transform 0.5s linear;
}

.img-blur {
	-webkit-animation-name: imageBlur;
	animation-name: imageBlur;
	opacity: 1;
	-webkit-transition: 0.8s;
	transition: 0.8s;
}

.c-to-top {
	bottom: 0;
	opacity: 0;
	position: fixed;
	right: 0;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	visibility: hidden;
	width: 50px;
	width: 3.125rem;
}

.c-to-top.is-show {
	opacity: 1;
	visibility: visible;
}

.p-worries {
	background: url(../images/worries-back-sp.png) no-repeat center center/cover;
	color: #fff;
	font-family: "Noto Sans JP";
	margin-top: -1px;
	position: relative;
	text-align: center;
}

.l-worries__inner {
	margin: 0 auto;
	padding: 76px 10px 101px;
	padding: 4.75rem 0.625rem 6.3125rem;
}

.p-worries__title {
	font-size: 32px;
	font-size: 2rem;
	letter-spacing: 5px;
	line-height: 1.75;
	position: relative;
}

.p-worries__title span {
	color: #D31A1A;
}

.p-worries__title::after {
	background: url(../images/worries-arrow.png) no-repeat center bottom/contain;
	bottom: -63px;
	bottom: -3.9375rem;
	content: "";
	height: 26%;
	left: 0;
	position: absolute;
	position: absolute;
	width: 100%;
}

.p-worries__items {
	margin: 0 auto;
	margin-top: 100px;
	margin-top: 6.25rem;
	max-width: 620px;
	max-width: 38.75rem;
}

.p-worries__item {
	border: 1px solid #fff;
	border-radius: 15px 15px 0 15px;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 1.7;
	margin: 0 auto;
	padding: 30px 20px;
	padding: 1.875rem 1.25rem;
	width: 81%;
}

.p-worries__item + .p-worries__item {
	margin-top: 11px;
	margin-top: 0.6875rem;
}

.p-worries__item span {
	color: #D31A1A;
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 700;
}

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

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

.u-md {
	display: block;
}

.l-inner {
	max-width: 1150px;
	padding-left: 25px;
	padding-right: 25px;
	/* padding-bottom: 77px; */
}

html {
	font-size: 1.4545454545vw;
}

a:hover {
	opacity: 0.8;
}

.p-about {
	background: url(../images/about-back-pc.png) no-repeat center center/cover;
}

.l-about__inner {
	max-width: 69.375rem;
	padding: 8.375rem 1.5625rem 8.5rem;
}

.p-about__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.p-about__title {
	font-size: 4.6875rem;
	width: 40%;
}

.p-about__text {
	width: 60%;
}

.p-about__lead {
	font-size: 2.125rem;
	letter-spacing: 5px;
	padding-top: 0;
}

.p-about__detail {
	font-size: 1rem;
	padding-top: 1.25rem;
}

.p-about__bottom-lead {
	font-size: 1.25rem;
	padding-top: 5.875rem;
}

.p-about__bottom-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.p-about__bottom-items {
	width: 49.5%;
}

.p-about__bottom-item {
	letter-spacing: 2.5px;
	padding: 1.125rem 2.6875rem;
}

.p-about__bottom-items:nth-child(2) {
	margin-top: 0;
}

.p-about__bottom-item::before {
	left: 4%;
}

.l-area__inner {
	max-width: 55rem;
	padding: 6.375rem 1.5625rem 7.5rem;
}

.p-area__title {
	font-size: 2rem;
	letter-spacing: 4px;
}

.p-area__lead {
	font-size: 2rem;
	letter-spacing: 4.5px;
	line-height: 1.75;
	padding-top: 3.1875rem;
}

.p-area__detail {
	font-size: 0.9375rem;
	letter-spacing: 0.6px;
	padding-top: 1.5rem;
}

.p-check {
	padding-bottom: 8.125rem;
	padding-top: 8.1875rem;
}

.p-check__title {
	font-size: 2.625rem;
	letter-spacing: 7px;
}

.p-check__title span {
	font-size: 3.25rem;
}

.p-check__lead {
	font-size: 1rem;
	letter-spacing: 0.019em;
	line-height: 1.89;
	margin-top: 3.9375rem;
	text-align: center;
}

.p-check__lead span {
	font-size: 1.5rem;
}

.p-check__inner {
	margin: 2.9375rem auto 0;
	max-width: 65.9375rem;
	padding: 4.0625rem 3.0625rem 6.75rem;
	width: 100%;
}

.p-check__question-title {
	font-size: 1.375rem;
	padding-bottom: 0.5625rem;
}

.p-check__question-title::after {
	width: 8.6%;
}

.p-check__question-title span {
	font-size: 1rem;
	line-height: 2.6;
}

.p-check__question-title:not(:first-of-type) {
	margin-top: 3.5625rem;
}

.p-check__question-title.p-check__question-title--layout01 {
	margin-top: 3.125rem;
}

.p-check__question-title.p-check__question-title--layout02 {
	margin-top: 3.25rem;
}

.p-check__question-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 2.125rem;
}

.p-check__question-box.p-check__question-box--first {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 1.75rem;
}

.p-check__question-text {
	width: 72%;
}

.p-check__question-q {
	font-size: 1.125rem;
	letter-spacing: 0.7px;
}

.p-check__example {
	font-size: 0.9375rem;
	letter-spacing: 0.5px;
	line-height: 1.9;
	padding-top: 0.625rem;
}

.p-check__radio {
	margin-top: 0.375rem;
}

.p-check__radio.p-check__radio--margin {
	margin-top: 2.625rem;
}

.chartWrapper {
	left: 18%;
	top: 7%;
	width: 65%;
}

.p-form-radio span {
	font-size: 1.125rem;
}

.p-form-radio__span-yes {
	margin-left: 0;
}

.p-form-radio__span {
	margin-left: 4.5rem;
	margin-right: 3.5625rem;
}

.p-check__btn {
	margin-top: 4.125rem;
}

.c-btn-submit {
	max-width: 23.4375rem;
	padding: 1.875rem 0;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.c-btn-submit::after {
	height: 0.625rem;
	right: 1%;
	width: 2rem;
}

.c-btn-submit:hover {
	opacity: 0.8;
}

.p-check-after {
	margin: 0 auto;
	max-width: 52.1875rem;
	padding-bottom: 7.5rem;
	padding-top: 6rem;
	width: 100%;
}

.p-check-after__title {
	font-size: 2.625rem;
}

.p-check-after__down {
	margin-top: 0.8125rem;
}

.p-check-after__score {
	font-size: 5.5rem;
	margin-left: -0.4375rem;
	margin-top: 3.1875rem;
}

.p-check-after__score span {
	font-size: 2rem;
}

.p-check-after__lead {
	font-size: 2rem;
	letter-spacing: 3.8px;
	line-height: 1.7;
	margin-bottom: 3.375rem;
	margin-top: 2.625rem;
	padding-left: 0.625rem;
	text-align: center;
}

.p-check-after__result {
	font-size: 1.375rem;
	margin-top: 3.8125rem;
	/* margin-right:20px */
}

.p-check-after__text {
	font-size: 0.9375rem;
	line-height: 2.66666;
	margin: 0 auto;
	margin-top: 0.5rem;
	max-width: 45.25rem;
}

.p-check-after__btn {
	margin-top: 3.0625rem;
}

.l-contact__inner {
	max-width: 57.5rem;
	padding: 5.1875rem 1.5625rem 5.4375rem;
}

.p-contact__title {
	font-size: 2rem;
	letter-spacing: 5px;
	line-height: 1.75;
	padding: 0;
}

.p-contact__detail {
	font-size: 1.125rem;
	line-height: 2.22222;
	padding: 2.75rem 1.5625rem 3.6875rem;
}

.l-contact-parts__inner {
	padding: 3.5625rem 0.625rem;
}

.c-contact {
	padding: 1.375rem 0 2.5rem;
}

.c-contact__lead {
	font-size: 3.375rem;
}

.c-contact__text {
	font-size: 1.125rem;
	letter-spacing: 1.6px;
}

.c-contact__click {
	font-size: 1rem;
}

.c-contents__img {
	padding-top: 0;
	width: 44.5%;
}

.l-service__img {
	padding-top: 0;
}

.l-point__img {
	padding-top: 0;
}

.l-point__img--bottom {
	padding-top: 0;
}

.c-contents__text {
	width: 50%;
}

.c-contents__item-lead {
	padding-top: 0;
}

.c-contents__item-lead::after {
	margin-bottom: 0.6875rem;
	margin-left: 1.875rem;
}

.c-contents__item-title {
	font-size: 1.875rem;
}

.c-contents__item-detail {
	font-size: 0.9375rem;
}

.p-feature::before {
	background-image: url(../images/feature-backimg-top_pc.png);
	height: 36.0625rem;
	width: 100%;
}

.p-feature::after {
	background-image: url(../images/feature-backimg-under_pc.png);
	height: 36.0625rem;
	width: 96rem;
}

.l-feature__inner {
	max-width: 78.125rem;
	padding: 7.125rem 1.5625rem 8.3125rem;
}

.p-feature__title {
	font-size: 2.625rem;
	letter-spacing: 5.5px;
	padding-top: 0.3125rem;
	text-align: left;
	text-align: center;
}

.p-feature__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.p-feature__items:first-of-type {
	margin-top: 3.875rem;
}

.p-feature__items + .p-feature__items {
	margin-top: 1.875rem;
}

.p-feature__item {
	padding: 1.875rem 1.625rem 3.4375rem;
	width: 31.6%;
}

.l-feature__padding {
	padding: 1.875rem 1.625rem 2.1875rem;
}

.p-feature__item + .p-feature__item {
	margin-left: 1.875rem;
	margin-top: 0;
}

.p-feature__item:nth-child(n+4) {
	margin-top: 1.875rem;
}

.p-feature__item-lead {
	font-size: 0.9375rem;
}

.p-feature__item-lead::after {
	margin-left: 1.1875rem;
}

.p-feature__item-title {
	font-size: 1.375rem;
	letter-spacing: 0.7px;
	line-height: 1.54545;
	padding-top: 0.6875rem;
}

.p-feature__item-img {
	padding-top: 1.8125rem;
}

.l-feature__item-img {
	padding-top: 3.9375rem;
}

.p-feature__item-detail {
	letter-spacing: 1.4px;
}

.l-flow__inner {
	padding: 11.25rem 0 0;
}

.p-flow__title {
	font-size: 2.625rem;
}

.p-flow__wrapper {
	max-width: 48.75rem;
	padding: 3.8125rem 1.5625rem 0;
	width: 100%;
}

.c-flow__item-wrapper + .c-flow__item-wrapper {
	margin-top: 0;
}

.c-flow__item {
	width: calc(33.33333% - 5px);
}

.c-flow__item + .c-flow__item {
	margin-left: 5px;
}

.c-flow__item--01::before {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	left: 50%;
	letter-spacing: 1px;
	top: -7%;
	transform: translate(-50%, -50%);
	-webkit-writing-mode: horizontal-tb;
	-ms-writing-mode: lr-tb;
	writing-mode: horizontal-tb;
}

.c-flow__item--03::before {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	height: auto;
	left: 50%;
	letter-spacing: 1px;
	padding: 0.125rem 0 0.125rem;
	text-align: center;
	top: -7%;
	transform: translate(-50%, -50%);
	width: 83%;
	-webkit-writing-mode: horizontal-tb;
	-ms-writing-mode: lr-tb;
	writing-mode: horizontal-tb;
}

.c-flow__item--04::before {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	height: auto;
	left: 50%;
	letter-spacing: 1px;
	padding: 0.125rem 0 0.125rem;
	text-align: center;
	top: -7%;
	transform: translate(-50%, -50%);
	width: 83%;
	-webkit-writing-mode: horizontal-tb;
	-ms-writing-mode: lr-tb;
	writing-mode: horizontal-tb;
	z-index: 1;
}

.c-flow__item--04::after {
	background-image: url(../images/service-flow-red768-bottom.png);
	background-position: top;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 50px;
	left: 0;
	position: absolute;
	top: -13%;
	width: 110%;
	z-index: 0;
}

.c-flow__item--05::before {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	left: 50%;
	letter-spacing: 1px;
	top: -7%;
	transform: translate(-50%, -50%);
	-webkit-writing-mode: horizontal-tb;
	-ms-writing-mode: lr-tb;
	writing-mode: horizontal-tb;
	z-index: 1;
}

.c-flow__item--05::after {
	background-image: url(../images/service-flow-yellow768.png);
	background-position: top;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 46px;
	left: -2px;
	position: absolute;
	top: -13%;
	width: 103%;
	z-index: 0;
}

.c-flow__item-wrapper {
	background-image: url(../images/flow-wrapper768.png);
	margin-top: 0;
	padding: 2.5rem 2rem 7.5rem;
}

.c-flow__item-title {
	padding-top: 0.1875rem;
}

.c-flow__item-wrapper .c-flow__item-title {
	padding-top: 0.1875rem;
}

.p-flow__items-top-tab {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
}

.p-flow__items-top-tab::before {
	background-image: url(../images/service-flow-red768-top.png);
	background-position: top;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: -13%;
	width: 100%;
}

.p-flow__items-bottom-tab {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 4.25rem;
	position: relative;
}

.p-flow__items-bottom-tab .c-flow__item-wrapper {
	padding: 2.5rem 2rem 2.5625rem;
}

.p-footer {
	padding: 3.6875rem 0 3.75rem;
}

.p-footer__link {
	font-size: 1rem;
	letter-spacing: 1.2px;
}

.p-footer__copyright {
	font-size: 0.875rem;
	padding-top: 1.625rem;
}

.p-header {
	height: 5.125rem;
}

.p-header__inner {
	margin: 0 auto;
	padding-left: 1.5625rem;
	padding-right: 1.5625rem;
}

.p-header__logo {
	height: inherit;
	width: 13.508rem;
}

.p-header__logo a {
	height: inherit;
}

.p-header__btn-pc {
	display: block;
	font-size: 0.875rem;
	line-height: 1;
	max-height: 2.875rem;
	padding: 1rem 3.5rem;
}

.p-header__btn-sp {
	display: none;
}

.p-header__inner {
	margin: 0 auto;
	padding-left: 1.5625rem;
	padding-right: 1.5625rem;
}

.comlogo img {
	right: 0.9375rem;
	top: 0.9375rem;
	width: 12.5rem;
}

.c-btn-contact {
	font-size: 16px;
	max-width: 240px;
	padding: 8px 45px 8px 25px;
}

.c-btn-contact::after {
	right: 9.5%;
	top: 49%;
}

.u-desktop-contact {
	display: inline-block;
}

.inner {
	max-width: 1150px;
	padding-left: 25px;
	padding-right: 25px;
}

.p-mv {
	height: max(56vw, 500px);
}

.p-mv__detail {
	left: 6.5vw;
	top: 25.5%;
}

.p-mv__message {
	font-size: 2.5rem;
	line-height: 1.7;
}

.p-mv__text {
	display: inline-block;
	font-size: 1rem;
	letter-spacing: 3.3px;
	line-height: 2.4;
	padding-top: 2.1875rem;
	width: 30.75rem;
}

.p-mv__btn-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: 0.25rem;
	margin-top: 2.6875rem;
}

.p-mv__check-btn {
	padding: 0.625rem;
	width: 24.8125rem;
}

.c-btn-check__text {
	margin-top: 0.3125rem;
}

.c-btn-check__text span {
	letter-spacing: 4px;
}

.l-point__inner {
	max-width: 78.125rem;
	padding: 7.8125rem 1.5625rem 10rem;
}

.p-point__title-lead {
	font-size: 1.25rem;
	text-align: left;
}

.p-point__title {
	font-size: 2.625rem;
	letter-spacing: 5.5px;
	padding-top: 0.625rem;
	text-align: left;
}

.p-point__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 4.5rem;
}

.p-point__item:nth-of-type(2) {
	padding-top: 3.9375rem;
}

.l-service__inner {
	max-width: 78.125rem;
	padding: 9.25rem 1.5625rem 10rem;
}

.p-service__title-img {
	font-size: 16vw;
	left: 5%;
	letter-spacing: 9px;
	top: -6vw;
}

.p-service__title {
	font-size: 2.625rem;
	letter-spacing: 5.5px;
	text-align: left;
}

.p-service__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 4.125rem;
}

.p-service__item:nth-of-type(2) {
	padding-top: 4.375rem;
}

.c-to-top {
	width: 4.0625rem;
}

.p-worries {
	background: url(../images/worries-back-pc.png) no-repeat center center/cover;
}

.l-worries__inner {
	max-width: 78.125rem;
	padding: 7.1875rem 1.5625rem 8.125rem;
}

.p-worries__title {
	font-size: 2.625rem;
	letter-spacing: 6px;
}

.p-worries__title::after {
	background: url(../images/worries-arrow-pc.png) no-repeat center bottom/contain;
	bottom: -3.75rem;
	height: 58%;
}

.p-worries__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 8.5625rem;
}

.p-worries__item {
	width: 46%;
}

.p-worries__item + .p-worries__item {
	margin-top: 0;
}

.p-worries__item:nth-child(n+3) {
	margin-top: 1.1875rem;
}

}

@media (min-width: 1100px) {

html {
	font-size: 16px;
}

}

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

.u-md {
	display: none;
}

.u-lg {
	display: block;
}

.l-flow__inner {
	padding: 10.875rem 0 0;
}

.p-flow__wrapper {
	max-width: 78.125rem;
}

.c-flow__item--01::before {
	top: -8%;
}

.c-flow__item--03::before {
	left: 52%;
	text-align: center;
	top: -8%;
	width: 90%;
}

.c-flow__item--04::before {
	left: 52%;
	text-align: center;
	top: -8%;
	width: 90%;
}

.c-flow__item--04::after {
	background-image: none;
}

.c-flow__item--05::before {
	top: -8%;
}

.c-flow__item--05::after {
	background-image: none;
}

.c-flow__item-wrapper {
	padding: 2.5rem 1.5625rem 2.1875rem 2.1875rem;
}

.c-flow__item-text {
	padding-top: 0.625rem;
}

.p-flow__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}

.p-flow__items::before {
	background-image: url(../images/service-flow1280.png);
	background-position: top;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 2.75rem;
	position: absolute;
	top: -14%;
	width: 100%;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@-webkit-keyframes blur-anim2 {

100% {
	filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
	-webkit-filter: blur(0);
	filter: blur(0);
}

}

@keyframes blur-anim2 {

100% {
	filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
	-webkit-filter: blur(0);
	filter: blur(0);
}

}

@-webkit-keyframes imageBlur {

from {
	-moz-filter: blur(15px);
	-ms-filter: blur(15px);
	-o-filter: blur(15px);
	filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="15" /></filter></svg>#filter');
	-webkit-filter: blur(15px);
	filter: blur(15px);
	opacity: 0;
}

to {
	-moz-filter: blur(0px);
	-ms-filter: blur(0px);
	-o-filter: blur(0px);
	filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
	-webkit-filter: blur(0px);
	filter: blur(0px);
	opacity: 1;
}

}

@keyframes imageBlur {

from {
	-moz-filter: blur(15px);
	-ms-filter: blur(15px);
	-o-filter: blur(15px);
	filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="15" /></filter></svg>#filter');
	-webkit-filter: blur(15px);
	filter: blur(15px);
	opacity: 0;
}

to {
	-moz-filter: blur(0px);
	-ms-filter: blur(0px);
	-o-filter: blur(0px);
	filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
	-webkit-filter: blur(0px);
	filter: blur(0px);
	opacity: 1;
}

}


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