@charset "UTF-8";
.is-top {
	scroll-behavior: smooth;
}

.main-visual {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 667px;
}
@media print, screen and (min-width: 1025px) {
	.main-visual {
		min-height: 768px;
	}
}
.main-visual .main-visual__shape-01 {
	position: absolute;
	width: 100%;
	height: 100%;
}
.main-visual .main-visual__shape-01::before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 30;
	width: 375px;
	height: 738px;
	margin-top: -369px;
	margin-left: -187px;
	content: '';
	background: url(../../svg/bg_shape_sp_01.svg) no-repeat center;
	background-size: 100% auto;
	-webkit-animation: 3s fuwafuwa infinite;
	animation: 3s fuwafuwa infinite;
}
.main-visual .main-visual__shape-01::after {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 30;
	width: 375px;
	height: 738px;
	margin-top: -369px;
	margin-left: -187px;
	content: '';
	background: url(../../svg/bg_shape_sp_02.svg) no-repeat center;
	background-size: 100% auto;
	-webkit-animation: 3s fuwafuwa infinite;
	animation: 3s fuwafuwa infinite;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}
@media print, screen and (min-width: 768px) {
	.main-visual .main-visual__shape-01::before {
		top: 50%;
		right: auto;
		bottom: auto;
		left: 50%;
		width: 1400px;
		height: 768px;
		margin-top: -384px;
		margin-left: -700px;
		background: url(../../svg/bg_shape_01.svg) no-repeat center;
	}
	.main-visual .main-visual__shape-01::after {
		top: 50%;
		right: auto;
		bottom: auto;
		left: 50%;
		width: 1400px;
		height: 768px;
		margin-top: -384px;
		margin-left: -700px;
		background: url(../../svg/bg_shape_02.svg) no-repeat center;
	}
}
.main-visual .main-visual__shape-02 {
	width: 100%;
	height: 100%;
}
.main-visual .main-visual__shape-02::before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 30;
	width: 375px;
	height: 738px;
	margin-top: -369px;
	margin-left: -187px;
	content: '';
	background: url(../../svg/bg_shape_sp_03.svg) no-repeat center;
	background-size: 100% auto;
	-webkit-animation: 3s fuwafuwa infinite;
	animation: 3s fuwafuwa infinite;
	-webkit-animation-delay: 0.7s;
	animation-delay: 0.7s;
}
@media print, screen and (min-width: 768px) {
	.main-visual .main-visual__shape-02::before {
		top: 50%;
		right: auto;
		bottom: auto;
		left: 50%;
		width: 1400px;
		height: 768px;
		margin-top: -384px;
		margin-left: -700px;
		background: url(../../svg/bg_shape_03.svg) no-repeat center;
	}
}

/* 回転するアニメーション */
@-webkit-keyframes fuwafuwa {
	0%,
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	50% {
		-webkit-transform: translateY(-45px);
		transform: translateY(-45px);
	}
}
@keyframes fuwafuwa {
	0%,
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	50% {
		-webkit-transform: translateY(-45px);
		transform: translateY(-45px);
	}
}
/* このクラスをつけると回転を無限に繰り返します */
.anime-fuwafuwa {
	-webkit-animation: 3s fuwafuwa infinite;
	animation: 3s fuwafuwa infinite;
}

/* アニメーションには関係ない見た目のスタイル */
.box {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 100px;
	margin: auto;
	background-color: #b9268f;
}

.main-visual__title-inner {
	position: absolute;
	z-index: 10;
	width: 100%;
	height: 100%;
	padding: 0 16px;
}
.main-visual__title-inner .main-visual__title {
	position: relative;
	width: 100%;
	height: 100%;
}
.main-visual__title-inner .main-visual__title .main-visual__title-content {
	position: absolute;
	top: calc(50% - 10px);
	left: 50%;
	display: inline-block;
	width: 100%;
	max-width: 343px;
	padding: 60px 20px;
	margin: auto;
	text-align: center;
	pointer-events: none;
	background-color: rgba(255, 255, 255, 0.85);
	border-radius: 15px;
	-webkit-transform: translateY(-50%) translateX(-50%);
	-ms-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
}
@media print, screen and (min-width: 768px) {
	.main-visual__title-inner .main-visual__title .main-visual__title-content {
		width: 580px;
		max-width: 735px;
		padding: 67px 40px 84px;
	}
}
.main-visual__title-inner
	.main-visual__title
	.main-visual__title-content
	.main-visual__title-image {
	width: 100%;
}
.main-visual__title-inner
	.main-visual__title
	.main-visual__title-content
	.main-visual__title-image
	> img {
	width: 303px;
}
@media print, screen and (min-width: 768px) {
	.main-visual__title-inner
		.main-visual__title
		.main-visual__title-content
		.main-visual__title-image
		> img {
		width: 100%;
	}
}
.main-visual__title-inner
	.main-visual__title
	.main-visual__title-content
	.main-visual__title-copy {
	position: relative;
	display: inline-block;
	min-width: 210px;
	padding: 8px 70px;
	margin-top: 15px;
	font-size: 1.6rem;
	font-weight: bold;
	color: #fff;
	background-color: #000;
	border-radius: 16px;
}
@media print, screen and (min-width: 768px) {
	.main-visual__title-inner
		.main-visual__title
		.main-visual__title-content
		.main-visual__title-copy {
		margin-top: 20px;
		border-radius: 50px;
	}
}
.main-visual__title-inner
	.main-visual__title
	.main-visual__title-content
	.main-visual__title-copy::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 20px;
	display: block;
	width: 9px;
	height: 9px;
	margin: auto;
	content: '';
	background-color: #fff;
	border-radius: 50%;
}
.main-visual__title-inner
	.main-visual__title
	.main-visual__title-content
	.main-visual__title-copy::after {
	position: absolute;
	top: 0;
	right: 20px;
	bottom: 0;
	display: block;
	width: 9px;
	height: 9px;
	margin: auto;
	content: '';
	background-color: #fff;
	border-radius: 50%;
}
.main-visual__title-inner
	.main-visual__title
	.main-visual__title-content
	.c-txt-p {
	margin-top: 15px;
	font-size: 1.6rem;
	font-weight: bold;
}
@media print, screen and (min-width: 768px) {
	.main-visual__title-inner
		.main-visual__title
		.main-visual__title-content
		.c-txt-p {
		margin-top: 20px;
	}
}

.main-visual__content {
	height: 100%;
}
.main-visual__content .main-visual__swiper {
	max-width: 100%;
	height: 100%;
	text-align: center;
}
.main-visual__content .main-visual__swiper .swiper-wrapper .swiper-slide {
	position: relative;
}
.main-visual__content
	.main-visual__swiper
	.swiper-wrapper
	.swiper-slide::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	text-align: center;
	content: '';
	background: rgba(255, 255, 255, 0.6);
	pointer__events: none;
}
.main-visual__content .main-visual__swiper .swiper-wrapper .swiper-slide > img {
	-o-object-fit: cover;
	object-fit: cover;
}
.main-visual__content .main-visual__swiper .swiper-pagination {
	bottom: 15%;
	padding-left: 0;
	text-align: center;
}
@media print, screen and (min-width: 768px) {
	.main-visual__content .main-visual__swiper .swiper-pagination {
		bottom: 2%;
		padding-bottom: 2%;
		padding-left: 12%;
		text-align: left;
	}
}
.main-visual__content
	.main-visual__swiper
	.swiper-pagination
	.swiper-pagination-bullet {
	width: var(
		--swiper-pagination-bullet-width,
		var(--swiper-pagination-bullet-size, 10%)
	);
}
@media print, screen and (min-width: 768px) {
	.main-visual__content
		.main-visual__swiper
		.swiper-pagination
		.swiper-pagination-bullet {
		width: var(
			--swiper-pagination-bullet-width,
			var(--swiper-pagination-bullet-size, 5%)
		);
	}
}

.main-visual__swiper img {
	width: 100%;
	height: 100%;
}

/*アニメーション要素のスタイル*/
.animation {
	visibility: hidden;
	opacity: 0;
	-webkit-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
	-webkit-transform: translateY(120px);
	-ms-transform: translateY(120px);
	transform: translateY(120px);
}

/*アニメーション要素までスクロールした時のスタイル*/
.active {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.p-about {
	position: relative;
	padding: 60px 16px;
	background: url(../../images/top/bg_about.jpg) repeat-x;
	background-position: center center;
	background-size: cover;
}
.p-about::before {
	position: absolute;
	bottom: 100%;
	left: 0%;
	z-index: 1;
	display: block;
	width: 100%;
	height: 30px;
	content: '';
	background-color: #3232a0;
	background-size: 100% auto;
}
.p-about::after {
	position: absolute;
	bottom: 100%;
	left: 50%;
	z-index: 1;
	display: block;
	width: 48px;
	height: 80px;
	content: '';
	background: url(../../images/top/p_about_connect.png) no-repeat center;
	background-size: 100% auto;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.p-about {
		height: 720px;
		padding: 100px 50px;
		background-size: 700px 736px;
	}
	.p-about::after {
		width: 60px;
		height: 100px;
	}
	.p-about::before {
		height: 30px;
	}
}
@media print, screen and (min-width: 1025px) {
	.p-about {
		height: 720px;
		padding: 100px 90px;
		background-size: 700px 736px;
	}
	.p-about::after {
		width: 60px;
		height: 100px;
	}
	.p-about::before {
		height: 30px;
	}
}
.p-about .p-about__inner {
	width: 100%;
	height: 100%;
}
.p-about .p-about__inner .p-about__content-inner {
	position: relative;
	z-index: 0;
	padding: 60px 20px;
	margin: 0 auto;
	text-align: center;
	background: url(../../images/top/bg-about-pattern.png) repeat top;
	background-color: #fff;
	background-size: 828px auto;
	border: #3232a0 1px solid;
	border-radius: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.p-about .p-about__inner .p-about__content-inner {
		max-height: 536px;
		padding: 60px 30px;
		background-size: 849px 525px;
		-webkit-box-shadow: #3232a0 10px 10px;
		box-shadow: #3232a0 10px 10px;
	}
}
@media print, screen and (min-width: 1025px) {
	.p-about .p-about__inner .p-about__content-inner {
		max-width: 920px;
		max-height: 536px;
		max-height: 569px;
		padding: 60px 50px;
		background-size: 849px 525px;
		-webkit-box-shadow: #3232a0 10px 10px;
		box-shadow: #3232a0 10px 10px;
	}
}
.p-about .p-about__inner .p-about__content-inner .p-about__shape-up::before {
	position: absolute;
	top: 10px;
	left: 10px;
	display: block;
	width: 10px;
	height: 10px;
	margin: auto;
	content: '';
	background-color: #3232a0;
	border-radius: 5px;
}
.p-about .p-about__inner .p-about__content-inner .p-about__shape-up::after {
	position: absolute;
	top: 10px;
	right: 10px;
	display: block;
	width: 10px;
	height: 10px;
	margin: auto;
	content: '';
	background-color: #3232a0;
	border-radius: 5px;
}
@media print, screen and (min-width: 768px) {
	.p-about .p-about__inner .p-about__content-inner .p-about__shape-up::before {
		top: 14px;
		left: 14px;
		width: 14px;
		height: 14px;
		border-radius: 7px;
	}
	.p-about .p-about__inner .p-about__content-inner .p-about__shape-up::after {
		top: 14px;
		right: 14px;
		width: 14px;
		height: 14px;
		border-radius: 7px;
	}
}
.p-about .p-about__inner .p-about__content-inner .p-about__shape-under::before {
	position: absolute;
	bottom: 10px;
	left: 10px;
	display: block;
	width: 10px;
	height: 10px;
	margin: auto;
	content: '';
	background-color: #3232a0;
	border-radius: 50%;
}
.p-about .p-about__inner .p-about__content-inner .p-about__shape-under::after {
	position: absolute;
	right: 10px;
	bottom: 10px;
	display: block;
	width: 10px;
	height: 10px;
	margin: auto;
	content: '';
	background-color: #3232a0;
	border-radius: 50%;
}
@media print, screen and (min-width: 768px) {
	.p-about
		.p-about__inner
		.p-about__content-inner
		.p-about__shape-under::before {
		bottom: 14px;
		left: 14px;
		width: 14px;
		height: 14px;
	}
	.p-about
		.p-about__inner
		.p-about__content-inner
		.p-about__shape-under::after {
		right: 14px;
		bottom: 14px;
		width: 14px;
		height: 14px;
	}
}
.p-about
	.p-about__inner
	.p-about__content-inner
	.p-about__content
	.p-about__copy {
	margin-top: 10px;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.5;
	line-height: 1.6;
	color: #3232a0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.p-about
		.p-about__inner
		.p-about__content-inner
		.p-about__content
		.p-about__copy {
		font-size: 2.4rem;
		line-height: 1.75;
	}
}
@media print, screen and (min-width: 1025px) {
	.p-about
		.p-about__inner
		.p-about__content-inner
		.p-about__content
		.p-about__copy {
		font-size: 2.4rem;
		line-height: 1.75;
	}
}
.p-about
	.p-about__inner
	.p-about__content-inner
	.p-about__content
	.p-about__copy
	> span {
	font-size: 2.4rem;
	line-height: 1.33;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.p-about
		.p-about__inner
		.p-about__content-inner
		.p-about__content
		.p-about__copy
		> span {
		font-size: 2.4rem;
		line-height: 1.5;
	}
}
@media print, screen and (min-width: 1025px) {
	.p-about
		.p-about__inner
		.p-about__content-inner
		.p-about__content
		.p-about__copy
		> span {
		font-size: 2.8rem;
		line-height: 1.5;
	}
}
.p-about .p-about__inner .p-about__content-inner .p-about__text {
	position: relative;
	padding: 20px 0px;
	margin-top: 30px;
	line-height: 1.71;
	color: #3232a0;
}
.p-about .p-about__inner .p-about__content-inner .p-about__text::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 28px;
	height: 28px;
	content: '';
	border-top: solid 4px #3232a0;
	border-left: solid 4px #3232a0;
}
.p-about .p-about__inner .p-about__content-inner .p-about__text::after {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 28px;
	height: 28px;
	content: '';
	border-right: solid 4px #3232a0;
	border-bottom: solid 4px #3232a0;
}
@media print, screen and (min-width: 768px) {
	.p-about .p-about__inner .p-about__content-inner .p-about__text {
		padding: 15px 30px;
		margin-top: 40px;
	}
	.p-about .p-about__inner .p-about__content-inner .p-about__text::before {
		left: calc(50% - 240px);
	}
	.p-about .p-about__inner .p-about__content-inner .p-about__text::after {
		right: calc(50% - 240px);
	}
}

.p-project__marker {
	position: relative;
	z-index: 0;
}
.p-project__marker::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	display: block;
	width: 100%;
	height: 1em;
	content: '';
	background-color: rgb(255, 255, 255);
	-webkit-transform: translateY(0.6em);
	-ms-transform: translateY(0.6em);
	transform: translateY(0.6em);
}
@media print, screen and (min-width: 768px) {
	.p-project__marker.--cyan::before {
		width: 93%;
		background-color: rgb(187, 241, 238);
	}
}
.p-project__marker.--cyan::before {
	background-color: rgb(187, 241, 238);
}
.p-project__marker.--magenta::before {
	background-color: rgb(254, 210, 224);
}
.p-project__marker.--yellow::before {
	background-color: rgb(254, 232, 187);
}
.p-project__marker.--pro-prog {
	line-height: 1.5;
	letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.p-project__marker.--pro-prog {
		font-size: 1.7rem;
	}
}
@media print, screen and (min-width: 1025px) {
	.p-project__marker.--pro-prog {
		font-size: 1.8rem;
	}
}
.p-project__marker.--pro-prog::before {
	left: -2%;
	width: 105%;
}

.p-project {
	position: relative;
	z-index: 0;
	height: 100%;
	background: url(../../images/top/bg_project_pattern.png) repeat;
	background-position: center center;
	background-size: 384px 386px;
}
.p-project::before {
	position: absolute;
	top: calc(0% - 24px);
	left: 50%;
	z-index: 1;
	display: block;
	width: 48px;
	height: 48px;
	content: '';
	background: url(../../images/top/p_project_connect.png) no-repeat center;
	background-size: 100% auto;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
@media print, screen and (min-width: 768px) {
	.p-project::before {
		top: calc(0% - 30px);
		width: 60px;
		height: 60px;
	}
}
.p-project::after {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	display: block;
	width: 100%;
	min-width: 375px;
	min-height: 562px;
	content: '';
	background: url(../../images/top/sp/bg_project_sp.png) center no-repeat;
	background-size: 100% auto;
}
@media print, screen and (min-width: 768px) {
	.p-project::before {
		bottom: 98.5%;
	}
	.p-project::after {
		top: 0;
		left: 50%;
		width: 100%;
		min-width: 1980px;
		height: 100%;
		min-height: 2018px;
		background: url(../../images/top/bg_project.png) center no-repeat;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}
.p-project .p-project__inner {
	padding: 60px 0;
}
@media print, screen and (min-width: 768px) {
	.p-project .p-project__inner {
		padding: 92px 0 100px;
	}
}
.p-project .p-project__inner .p-project__content {
	z-index: 1;
}
.p-project .p-project__inner .p-project__content .p-project__title-content {
	margin: 0 auto;
	text-align: center;
}
.p-project .p-project__inner .p-project__content .p-project__section {
	width: 100%;
	max-width: 562px;
	margin: 0 auto;
	margin-top: 30px;
	text-align: center;
}
@media print, screen and (min-width: 768px) {
	.p-project .p-project__inner .p-project__content .p-project__section {
		max-width: 678px;
		padding: 0 34px;
		margin-top: 38px;
		text-align: center;
	}
}
.p-project
	.p-project__inner
	.p-project__content
	.p-project__section
	.p-project__text {
	margin-top: 14px;
	line-height: 1.71;
	text-align: center;
}
@media print, screen and (min-width: 768px) {
	.p-project
		.p-project__inner
		.p-project__content
		.p-project__section
		.p-project__text {
		line-height: 2;
		text-align: left;
	}
}
.p-project
	.p-project__inner
	.p-project__content
	.p-project__section
	.p-project__text-p {
	margin-top: 14px;
	line-height: 1.5;
	text-align: center;
}
@media print, screen and (min-width: 768px) {
	.p-project
		.p-project__inner
		.p-project__content
		.p-project__section
		.p-project__text-p {
		line-height: 2;
	}
}
.p-project
	.p-project__inner
	.p-project__content
	.p-project__section
	.p-project__text-p:first-child {
	margin-top: 0;
}
.p-project .p-project__inner .p-project__content-inner {
	margin-top: 35px;
}
@media print, screen and (min-width: 768px) {
	.p-project .p-project__inner .p-project__content-inner {
		margin-top: 48px;
	}
}
.p-project .p-project__inner .p-project__content-inner .p-project__title-inner {
	text-align: center;
	background-color: #21bec1;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__title-inner
	.p-project__title {
	position: relative;
	padding: 10px 30px;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.5;
	color: #fff;
	letter-spacing: 0.04em;
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__title-inner
	.p-project__title::before {
	position: absolute;
	top: 0px;
	bottom: 0;
	left: 20px;
	display: block;
	width: 10px;
	height: 10px;
	margin: auto;
	content: '';
	background-color: #fff;
	border-radius: 5px;
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__title-inner
	.p-project__title::after {
	position: absolute;
	top: 0px;
	right: 20px;
	bottom: 0;
	display: block;
	width: 10px;
	height: 10px;
	margin: auto;
	content: '';
	background-color: #fff;
	border-radius: 5px;
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__title-inner
	.p-project__title.p-project__title--dot {
	padding: 48px 20px 16px;
}
@media print, screen and (min-width: 768px) {
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__title-inner
		.p-project__title.p-project__title--dot {
		padding: 20px 30px;
	}
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__title-inner
	.p-project__title.p-project__title--dot::before {
	top: 33px;
}
@media print, screen and (min-width: 768px) {
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__title-inner
		.p-project__title.p-project__title--dot::before {
		top: 0;
	}
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__title-inner
	.p-project__title.p-project__title--dot::after {
	top: 33px;
}
@media print, screen and (min-width: 768px) {
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__title-inner
		.p-project__title.p-project__title--dot::after {
		top: 0;
	}
}
@media print, screen and (min-width: 768px) {
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__title-inner
		.p-project__title {
		padding: 20px 30px;
		font-size: 2.4rem;
	}
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__title-inner
		.p-project__title::before {
		top: 0;
		left: 30px;
		width: 14px;
		height: 14px;
		border-radius: 7px;
	}
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__title-inner
		.p-project__title::after {
		top: 0;
		right: 30px;
		width: 14px;
		height: 14px;
		border-radius: 7px;
	}
}
.p-project .p-project__inner .p-project__content-inner .p-project__prog {
	display: block;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 5px;
}
@media print, screen and (min-width: 768px) {
	.p-project .p-project__inner .p-project__content-inner .p-project__prog {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__prog
	.p-project__prog-content {
	position: relative;
	padding: 80px 20px 20px;
	border-bottom-right-radius: 16px;
	border-bottom-left-radius: 16px;
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__prog
	.p-project__prog-content:first-child {
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__prog
		.p-project__prog-content:first-child {
		border-bottom-left-radius: 16px;
	}
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__prog
		.p-project__prog-content:last-child {
		border-bottom-left-radius: 0px;
	}
}
@media print, screen and (min-width: 1025px) {
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__prog
		.p-project__prog-content {
		padding: 40px 50px 40px 80px;
		font-size: 1.8rem;
	}
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__prog
		.p-project__prog-content:first-child {
		border-bottom-left-radius: 16px;
	}
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__prog
		.p-project__prog-content:last-child {
		border-bottom-left-radius: 0px;
	}
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__prog
	.p-project__prog-content::before {
	position: absolute;
	top: 100%;
	left: 45%;
	z-index: 1;
	display: block;
	width: 50px;
	height: 55px;
	content: '';
	background-size: 100% auto;
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__prog
	.p-project__prog-content.--bg-enter {
	background-color: #fef0d2;
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__prog
	.p-project__prog-content.--bg-enter::before {
	width: 40px;
	height: 43px;
	background: url(../../images/top/sp/p_yellow_pin_sp.png) no-repeat center;
	background-size: 100% auto;
}
@media print, screen and (min-width: 1025px) {
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__prog
		.p-project__prog-content.--bg-enter {
		padding: 40px 80px 40px 50px;
	}
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__prog
		.p-project__prog-content.--bg-enter::before {
		top: 100%;
		width: 50px;
		height: 55px;
		background: url(../../images/top/p_yellow_pin.png) no-repeat center;
		background-size: 100% auto;
	}
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__prog
	.p-project__prog-content.--bg-school {
	background-color: #fed2e0;
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__prog
	.p-project__prog-content.--bg-school::before {
	content: none;
	background: url(../../images/top/p_magenta_pin.png) no-repeat center;
}
@media print, screen and (min-width: 768px) {
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__prog
		.p-project__prog-content.--bg-school::before {
		content: '';
	}
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__prog
	.p-project__prog-content
	.p-project__prog-title {
	position: relative;
	font-size: 1.6rem;
	font-weight: bold;
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__prog
	.p-project__prog-content
	.p-project__prog-title.--school {
	padding-left: 0px;
	text-align: center;
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__prog
	.p-project__prog-content
	.p-project__prog-title.--school::before {
	position: absolute;
	bottom: calc(100% + 5px);
	left: 50%;
	z-index: 1;
	display: block;
	width: 64px;
	height: 50px;
	margin: auto;
	content: '';
	background: url(../../svg/i_school.svg) no-repeat center;
	background-size: 100% auto;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
@media print, screen and (min-width: 1025px) {
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__prog
		.p-project__prog-content
		.p-project__prog-title.--school {
		padding-left: 78px;
		text-align: left;
	}
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__prog
		.p-project__prog-content
		.p-project__prog-title.--school::before {
		bottom: 0;
		left: 0;
		width: 64px;
		height: 50px;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__prog
	.p-project__prog-content
	.p-project__prog-title.--enter {
	padding-left: 0px;
	text-align: center;
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__prog
	.p-project__prog-content
	.p-project__prog-title.--enter::before {
	position: absolute;
	bottom: calc(100% + 5px);
	left: 50%;
	z-index: 1;
	display: block;
	width: 50px;
	height: 50px;
	margin: auto;
	content: '';
	background: url(../../svg/i_enter.svg) no-repeat center;
	background-size: 100% auto;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
@media print, screen and (min-width: 1025px) {
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__prog
		.p-project__prog-content
		.p-project__prog-title.--enter {
		padding-left: 78px;
		margin-right: -50px;
		text-align: left;
	}
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__prog
		.p-project__prog-content
		.p-project__prog-title.--enter::before {
		bottom: 0;
		left: 0;
		width: 50px;
		height: 50px;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__prog
	.p-project__prog-content
	.p-project__prog-title
	.p-project__prog-title-enter {
	display: block;
	font-size: 1.8rem;
	line-height: 1.5;
	color: #fab41e;
	letter-spacing: 0.04em;
}
@media print, screen and (min-width: 768px) {
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__prog
		.p-project__prog-content
		.p-project__prog-title
		.p-project__prog-title-enter {
		font-size: 2rem;
	}
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__prog
	.p-project__prog-content
	.p-project__prog-title
	.p-project__prog-title-school {
	display: block;
	font-size: 1.8rem;
	line-height: 1.5;
	color: #fa1e64;
	letter-spacing: 0.04em;
}
@media print, screen and (min-width: 768px) {
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__prog
		.p-project__prog-content
		.p-project__prog-title
		.p-project__prog-title-school {
		font-size: 2rem;
	}
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__prog
	.p-project__prog-content
	.c-txt-p {
	margin-top: 15px;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: 0.02em;
}
@media print, screen and (min-width: 768px) {
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__prog
		.p-project__prog-content
		.c-txt-p {
		margin-top: 20px;
		font-size: 1.6rem;
		line-height: 1.75;
	}
}
.p-project .p-project__inner .p-project__content-inner .p-project__event {
	position: relative;
	padding: 20px 20px 50px;
	margin-bottom: 5px;
	background-color: #bbf1ee;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__event::before {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 1;
	display: block;
	width: 40px;
	height: 43px;
	content: '';
	background: url(../../images/top/sp/p_cyan_pin_sp.png) no-repeat center;
	background-size: 100% auto;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
@media print, screen and (min-width: 768px) {
	.p-project .p-project__inner .p-project__content-inner .p-project__event {
		padding: 30px 80px 45px;
		border-bottom-right-radius: 16px;
		border-bottom-left-radius: 16px;
	}
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__event:before {
		top: 100%;
		left: 22%;
		width: 50px;
		height: 55px;
		background: url(../../images/top/p_cyan_pin.png) no-repeat center;
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		transform: translateX(0%);
	}
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__event
	.p-project__event-content {
	margin-top: 20px;
	text-align: center;
}
@media print, screen and (min-width: 768px) {
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__event
		.p-project__event-content {
		margin-top: 40px;
	}
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__event
	.p-project__event-content
	.p-project__event-title {
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.75;
	text-align: left;
	letter-spacing: 0.02em;
}
@media print, screen and (min-width: 768px) {
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__event
		.p-project__event-content
		.p-project__event-title {
		font-size: 1.8rem;
	}
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__event
	.p-project__event-content
	.p-project__event-inner {
	margin-top: 10px;
	text-align: center;
}
@media print, screen and (min-width: 768px) {
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__event
		.p-project__event-content
		.p-project__event-inner {
		margin-top: 20px;
	}
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__event
	.p-project__event-content
	.p-project__event-inner
	> img {
	width: 100%;
	height: 100%;
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__event
	.p-project__event-content
	.p-project__event-inner
	.p-project__tech-inner {
	position: relative;
	z-index: 5;
}
@media print, screen and (min-width: 768px) {
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__event
		.p-project__event-content
		.p-project__event-inner
		.p-project__tech-inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__event
		.p-project__event-content
		.p-project__event-inner
		.p-project__tech-inner
		.p-project__tech-connect {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		z-index: 4;
		display: block;
		height: 100%;
		margin: auto;
		content: '';
	}
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__event
	.p-project__event-content
	.p-project__event-img {
	position: relative;
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__event
	.p-project__event-content
	.p-project__event-img::before {
	position: absolute;
	bottom: 98%;
	left: 50%;
	display: block;
	width: 4px;
	height: 185px;
	content: '';
	background-color: #21bec1;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
@media print, screen and (min-width: 768px) {
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__event
		.p-project__event-content
		.p-project__event-img::before {
		height: 70px;
	}
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__event
	.c-txt-p {
	margin-top: 0;
	line-height: 1.5;
	letter-spacing: 0.02em;
}
@media print, screen and (min-width: 768px) {
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__event
		.c-txt-p {
		line-height: 1.75;
	}
}
.p-project .p-project__inner .p-project__content-inner .p-project__pre {
	padding: 20px;
	background-color: #bbf1ee;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}
@media print, screen and (min-width: 768px) {
	.p-project .p-project__inner .p-project__content-inner .p-project__pre {
		padding: 30px 80px 30px;
		border-bottom-right-radius: 16px;
		border-bottom-left-radius: 16px;
	}
}
.p-project
	.p-project__inner
	.p-project__content-inner
	.p-project__pre
	.c-txt-p {
	margin-top: 0;
	line-height: 1.5;
	letter-spacing: 0.02em;
}
@media print, screen and (min-width: 768px) {
	.p-project
		.p-project__inner
		.p-project__content-inner
		.p-project__pre
		.c-txt-p {
		line-height: 1.75;
	}
}

.p-project__tech-content {
	position: relative;
	z-index: 3;
	display: inline-block;
	width: 100%;
	max-width: 467px;
	padding: 20px 15px;
	background-color: #fff;
	border-radius: 20px;
	-webkit-box-shadow: #fed2e0 -10px -10px, #fef0d2 10px 10px;
	box-shadow: #fed2e0 -10px -10px, #fef0d2 10px 10px;
}
@media print, screen and (min-width: 768px) {
	.p-project__tech-content {
		border-radius: 16px;
	}
}
.p-project__tech-content::before {
	position: absolute;
	bottom: calc(100% + 10px);
	left: 50%;
	z-index: -1;
	display: block;
	width: 4px;
	height: 70px;
	content: '';
	background-color: #21bec1;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.p-project__tech-content {
		padding: 20px 34px 20px 54px;
	}
}
@media print, screen and (min-width: 1025px) {
	.p-project__tech-content {
		padding: 20px 44px 20px;
	}
}
.p-project__tech-content.p-project__tech-content--enter {
	background-color: #fef0d2;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.p-project__tech-content.p-project__tech-content--enter::before {
	content: none;
}
@media print, screen and (min-width: 768px) {
	.p-project__tech-content.p-project__tech-content--enter {
		width: 50%;
		border-top-right-radius: 16px;
	}
}
.p-project__tech-content.p-project__tech-content--school {
	background-color: #fed2e0;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.p-project__tech-content.p-project__tech-content--school::before {
	content: none;
}
@media print, screen and (min-width: 768px) {
	.p-project__tech-content.p-project__tech-content--school {
		width: 50%;
		border-bottom-left-radius: 16px;
	}
}
.p-project__tech-content .p-project__tech-title {
	font-size: 1.8rem;
	font-weight: bold;
	color: #21bec1;
	text-align: center;
	letter-spacing: 0.02em;
}
@media print, screen and (min-width: 768px) {
	.p-project__tech-content .p-project__tech-title {
		font-size: 2rem;
		line-height: 1.45;
	}
}
.p-project__tech-content .p-project__tech-title.--iot {
	line-height: 1.1;
	color: #fa1e64;
}
.p-project__tech-content .p-project__tech-title.--ai {
	line-height: 1.1;
	color: #fab41e;
}
.p-project__tech-content .p-project__tech-copy {
	font-size: 1.2rem;
	text-align: center;
	letter-spacing: 0.02em;
}
@media print, screen and (min-width: 768px) {
	.p-project__tech-content .p-project__tech-copy {
		font-size: 1.4rem;
		line-height: 1.45;
	}
}
.p-project__tech-content .p-project__tech-copy.--iot {
	color: #fa1e64;
}
.p-project__tech-content .p-project__tech-copy.--ai {
	color: #fab41e;
}
.p-project__tech-content .c-list-desc {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 280px;
	padding: 0;
	margin: 0;
	margin: 10px auto 0px;
}
.p-project__tech-content .c-list-desc.--iot {
	width: 281px;
}
.p-project__tech-content .c-list-desc.--ai {
	width: 210px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.p-project__tech-content .c-list-desc {
		width: 310px;
	}
	.p-project__tech-content .c-list-desc.--iot {
		width: 155px;
	}
	.p-project__tech-content .c-list-desc.--ai {
		width: 155px;
	}
}
@media print, screen and (min-width: 1025px) {
	.p-project__tech-content .c-list-desc {
		width: 310px;
	}
	.p-project__tech-content .c-list-desc.--iot {
		width: 325px;
	}
	.p-project__tech-content .c-list-desc.--ai {
		width: 270px;
	}
}
.p-project__tech-content .c-list-desc .p-project__tech-item {
	width: calc(50% - 10px);
	line-height: 1.5;
	text-align: left;
	letter-spacing: 0.02em;
}
.p-project__tech-content .c-list-desc .p-project__tech-item:nth-child(2n) {
	margin-left: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.p-project__tech-content .c-list-desc .p-project__tech-item {
		width: calc(50% - 10px);
	}
	.p-project__tech-content .c-list-desc .p-project__tech-item:nth-child(2n) {
		margin-left: 0px;
	}
	.p-project__tech-content .c-list-desc .p-project__tech-item.--iot {
		width: 100%;
	}
	.p-project__tech-content .c-list-desc .p-project__tech-item.--ai {
		width: 100%;
	}
}

.p-merit {
	position: relative;
	z-index: 0;
	height: 100%;
	background-color: #e8e8e8;
	background-position: center center;
}
.p-merit::before {
	position: absolute;
	top: calc(0% - 24px);
	left: 50%;
	z-index: 1;
	display: block;
	width: 48px;
	height: 48px;
	content: '';
	background: url(../../images/top/p_merit_connect.png) no-repeat center;
	background-size: 100% auto;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
@media print, screen and (min-width: 768px) {
	.p-merit::before {
		top: calc(0% - 30px);
		width: 60px;
		height: 60px;
	}
}
.p-merit .p-merit__inner {
	padding: 60px 0 92px;
}
@media print, screen and (min-width: 768px) {
	.p-merit .p-merit__inner {
		padding: 94px 20px 132px;
	}
}
.p-merit .p-merit__inner .p-merit__title-content {
	text-align: center;
}
.p-merit .p-merit__inner .p-merit__content-inner {
	display: block;
	padding: 0 16px;
	margin-top: 40px;
}
@media print, screen and (min-width: 768px) {
	.p-merit .p-merit__inner .p-merit__content-inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		padding: 0;
	}
}
.p-merit .p-merit__inner .p-merit__content-inner .p-merit__flow-inner {
	text-align: center;
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner:last-child {
	margin-top: 80px;
}
@media print, screen and (min-width: 768px) {
	.p-merit
		.p-merit__inner
		.p-merit__content-inner
		.p-merit__flow-inner:first-child {
		margin-right: 20px;
	}
	.p-merit
		.p-merit__inner
		.p-merit__content-inner
		.p-merit__flow-inner:last-child {
		margin-top: 0px;
		margin-left: 20px;
	}
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__title-inner {
	position: relative;
	display: block;
	width: 320px;
	padding: 22px 20px;
	margin: 0 auto;
	text-align: center;
	background: url(../../images/top/bg_merit_title.png) no-repeat center;
	background-size: 100% auto;
}
@media print, screen and (min-width: 768px) {
	.p-merit
		.p-merit__inner
		.p-merit__content-inner
		.p-merit__flow-inner
		.p-merit__title-inner {
		display: inline-block;
		width: auto;
	}
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__title-inner::before {
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: -1;
	display: block;
	width: 100%;
	height: 100%;
	margin: auto;
	content: '';
	background: url(../../images/top/bg_title_shadow_01.png) no-repeat center;
	background-size: 100% auto;
}
@media print, screen and (min-width: 768px) {
	.p-merit
		.p-merit__inner
		.p-merit__content-inner
		.p-merit__flow-inner
		.p-merit__title-inner::before {
		top: 10px;
		left: 10px;
	}
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__title-inner.--school-merit:before {
	background: url(../../images/top/bg_title_shadow_02.png) no-repeat center;
	background-size: 100% auto;
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__title-inner
	.p-merit__flow-title {
	position: relative;
	display: block;
	padding: 23px 30px;
	font-size: 1.6rem;
	font-weight: bold;
	color: #000;
}
@media print, screen and (min-width: 768px) {
	.p-merit
		.p-merit__inner
		.p-merit__content-inner
		.p-merit__flow-inner
		.p-merit__title-inner
		.p-merit__flow-title {
		display: inline-block;
		font-size: 1.8rem;
	}
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__title-inner
	.p-merit__flow-title::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 10px;
	height: 10px;
	margin: auto;
	content: '';
	background-color: #fab41e;
	border-radius: 50%;
}
@media print, screen and (min-width: 768px) {
	.p-merit
		.p-merit__inner
		.p-merit__content-inner
		.p-merit__flow-inner
		.p-merit__title-inner
		.p-merit__flow-title::before {
		width: 14px;
		height: 14px;
	}
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__title-inner
	.p-merit__flow-title::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	display: block;
	width: 10px;
	height: 10px;
	margin: auto;
	content: '';
	background-color: #fab41e;
	border-radius: 50%;
}
@media print, screen and (min-width: 768px) {
	.p-merit
		.p-merit__inner
		.p-merit__content-inner
		.p-merit__flow-inner
		.p-merit__title-inner
		.p-merit__flow-title::after {
		width: 14px;
		height: 14px;
	}
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__title-inner
	.p-merit__flow-title.--bg-magenta::before {
	background-color: #fa1e64;
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__title-inner
	.p-merit__flow-title.--bg-magenta::after {
	background-color: #fa1e64;
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__title-inner
	.p-merit__flow-title
	.merit-logo {
	position: absolute;
	top: -32px;
	right: 0%;
	left: 0%;
	z-index: 1;
	display: block;
	margin: auto;
	background-size: 50px 50px;
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__title-inner
	.p-merit__flow-title
	.merit-logo.--enter {
	width: 50px;
	height: 50px;
	background: url(../../svg/i_enter.svg) no-repeat center;
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__title-inner
	.p-merit__flow-title
	.merit-logo.--school {
	width: 64px;
	height: 50px;
	background: url(../../svg/i_school.svg) no-repeat center;
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__flow-steps {
	margin-top: 15px;
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__flow-steps
	.p-merit__flow-item {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	margin-top: 112px;
}
@media print, screen and (min-width: 768px) {
	.p-merit
		.p-merit__inner
		.p-merit__content-inner
		.p-merit__flow-inner
		.p-merit__flow-steps
		.p-merit__flow-item {
		margin-top: 112px;
	}
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__flow-steps
	.p-merit__flow-item::before {
	position: absolute;
	bottom: 100%;
	left: 50%;
	z-index: -1;
	width: 4px;
	height: 100px;
	content: '';
	background-color: #fab41e;
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__flow-steps
	.p-merit__flow-item.merit__flow-item--school::before {
	background-color: #fa1e64;
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__flow-steps
	.p-merit__flow-item:last-child {
	margin-bottom: 0;
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__flow-steps
	.p-merit__flow-item:first-child {
	margin-top: 58px;
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__flow-steps
	.p-merit__flow-item
	.p-merit__flow-text {
	position: relative;
	width: 100%;
	max-width: 343px;
	height: 100%;
	padding: 0 20px;
	padding-top: 12px;
	margin: auto;
	text-align: left;
	background: url(../../svg/bg_merit_item02_sp.svg) repeat-y center;
	background-size: 100% auto;
	background-size: 100% auto;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.p-merit
		.p-merit__inner
		.p-merit__content-inner
		.p-merit__flow-inner
		.p-merit__flow-steps
		.p-merit__flow-item
		.p-merit__flow-text {
		max-width: 520px;
		padding: 0 30px;
		padding-top: 18px;
		background: url(../../svg/bg_merit_item02_tab.svg) repeat-y center;
		background-size: 100% auto;
	}
}
@media print, screen and (min-width: 1025px) {
	.p-merit
		.p-merit__inner
		.p-merit__content-inner
		.p-merit__flow-inner
		.p-merit__flow-steps
		.p-merit__flow-item
		.p-merit__flow-text {
		max-width: 520px;
		padding: 0 40px;
		padding-top: 18px;
		background: url(../../svg/bg_merit_item02_pc.svg) repeat-y center;
		background-size: 100% auto;
	}
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__flow-steps
	.p-merit__flow-item
	.p-merit__flow-text
	.p-merit__flow-num {
	position: absolute;
	top: -52px;
	left: 5.83%;
	z-index: 2;
	display: block;
	font-family: 'Roboto', sans-serif;
	font-size: 5.4rem;
	font-weight: 900;
	line-height: 1;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.p-merit
		.p-merit__inner
		.p-merit__content-inner
		.p-merit__flow-inner
		.p-merit__flow-steps
		.p-merit__flow-item
		.p-merit__flow-text
		.p-merit__flow-num {
		left: 8.46%;
		font-size: 6rem;
	}
}
@media print, screen and (min-width: 1025px) {
	.p-merit
		.p-merit__inner
		.p-merit__content-inner
		.p-merit__flow-inner
		.p-merit__flow-steps
		.p-merit__flow-item
		.p-merit__flow-text
		.p-merit__flow-num {
		top: -54px;
		left: 8.46%;
		font-size: 6rem;
	}
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__flow-steps
	.p-merit__flow-item
	.p-merit__flow-text::before {
	position: absolute;
	bottom: 100%;
	left: 0;
	display: block;
	width: 100%;
	height: 32px;
	margin: auto;
	content: '';
	background: url(../../svg/bg_merit_item01_sp.svg) bottom no-repeat;
	background-size: 100% auto;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.p-merit
		.p-merit__inner
		.p-merit__content-inner
		.p-merit__flow-inner
		.p-merit__flow-steps
		.p-merit__flow-item
		.p-merit__flow-text::before {
		bottom: calc(100% - 1px);
		height: 32px;
		background: url(../../svg/bg_merit_item01_tab.svg) bottom no-repeat;
		background-size: 100% auto;
	}
}
@media print, screen and (min-width: 1025px) {
	.p-merit
		.p-merit__inner
		.p-merit__content-inner
		.p-merit__flow-inner
		.p-merit__flow-steps
		.p-merit__flow-item
		.p-merit__flow-text::before {
		bottom: calc(100% - 1px);
		height: 32px;
		background: url(../../svg/bg_merit_item01_pc.svg) bottom no-repeat;
		background-size: 100% auto;
	}
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__flow-steps
	.p-merit__flow-item
	.p-merit__flow-text::after {
	position: absolute;
	top: 100%;
	left: 0;
	display: block;
	width: 100%;
	height: 32px;
	margin: auto;
	content: '';
	background: url(../../svg/bg_merit_item03_sp.svg) top no-repeat;
	background-size: 100% auto;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.p-merit
		.p-merit__inner
		.p-merit__content-inner
		.p-merit__flow-inner
		.p-merit__flow-steps
		.p-merit__flow-item
		.p-merit__flow-text::after {
		top: calc(100% - 1px);
		height: 32px;
		background: url(../../svg/bg_merit_item03_tab.svg) top no-repeat;
		background-size: 100% auto;
	}
}
@media print, screen and (min-width: 1025px) {
	.p-merit
		.p-merit__inner
		.p-merit__content-inner
		.p-merit__flow-inner
		.p-merit__flow-steps
		.p-merit__flow-item
		.p-merit__flow-text::after {
		top: calc(100% - 1px);
		height: 32px;
		background: url(../../svg/bg_merit_item03_pc.svg) top no-repeat;
		background-size: 100% auto;
	}
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__flow-steps
	.p-merit__flow-item
	.p-merit__flow-text
	.p-merit__flow-copy {
	display: block;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
	.p-merit
		.p-merit__inner
		.p-merit__content-inner
		.p-merit__flow-inner
		.p-merit__flow-steps
		.p-merit__flow-item
		.p-merit__flow-text
		.p-merit__flow-copy {
		font-size: 1.8rem;
	}
}
.p-merit
	.p-merit__inner
	.p-merit__content-inner
	.p-merit__flow-inner
	.p-merit__flow-steps
	.p-merit__flow-item
	.p-merit__flow-text
	.p-merit__flow-copy-txt {
	margin-top: 10px;
	line-height: 1.5;
}

.p-schedule {
	position: relative;
	z-index: 0;
	height: 100%;
}
.p-schedule::before {
	position: absolute;
	top: calc(0% - 24px);
	left: 50%;
	z-index: 1;
	display: block;
	width: 48px;
	height: 48px;
	content: '';
	background: url(../../images/top/p_project_connect.png) no-repeat center;
	background-size: 100% auto;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
@media print, screen and (min-width: 768px) {
	.p-schedule::before {
		top: calc(0% - 30px);
		width: 60px;
		height: 60px;
	}
}
.p-schedule .p-schedule__inner {
	position: relative;
	height: 100%;
	padding: 60px 0px;
}
@media print, screen and (min-width: 768px) {
	.p-schedule .p-schedule__inner {
		padding: 93px 0 100px;
	}
}
.p-schedule .p-schedule__inner::before {
	position: absolute;
	top: 0%;
	right: calc(50% + 207px);
	z-index: -1;
	display: block;
	width: 100%;
	max-width: 1042px;
	height: 100%;
	content: '';
	background: url(../../images/top/bg_schedule_01.jpg) no-repeat center;
	background-size: cover;
}
.p-schedule .p-schedule__inner::after {
	position: absolute;
	top: 0%;
	left: 0%;
	z-index: -2;
	display: block;
	width: 100%;
	height: 100%;
	content: '';
	background: url(../../images/top/bg_schedule_pattern.png) repeat center;
	background-size: 384px 386px;
}
.p-schedule .p-schedule__inner .p-schedule__content .p-schedule__title-content {
	text-align: center;
}
.p-schedule .p-schedule__inner .p-schedule__content .p-schedule__flow-inner {
	text-align: center;
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-date {
	position: relative;
	display: inline-block;
	min-width: 210px;
	padding: 16px 20px;
	font-size: 1.6rem;
	font-weight: bold;
	color: #fff;
	background-color: #000;
	border-radius: 50px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.p-schedule
		.p-schedule__inner
		.p-schedule__content
		.p-schedule__flow-inner
		.p-schedule__flow-date {
		font-size: 1.8rem;
	}
	.p-schedule
		.p-schedule__inner
		.p-schedule__content
		.p-schedule__flow-inner
		.p-schedule__flow-date::before {
		position: absolute;
		right: 50%;
		bottom: 100%;
		z-index: -1;
		display: block;
		width: 4px;
		height: 70px;
		content: '';
		background-color: #000;
		background-size: 100% auto;
	}
}
@media print, screen and (min-width: 1025px) {
	.p-schedule
		.p-schedule__inner
		.p-schedule__content
		.p-schedule__flow-inner
		.p-schedule__flow-date {
		font-size: 1.8rem;
	}
	.p-schedule
		.p-schedule__inner
		.p-schedule__content
		.p-schedule__flow-inner
		.p-schedule__flow-date::before {
		height: 100px;
	}
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-date::before {
	position: absolute;
	right: 50%;
	bottom: 100%;
	z-index: -1;
	display: block;
	width: 4px;
	height: 90px;
	content: '';
	background-color: #000;
	background-size: 100% auto;
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-date.first-date::before {
	content: none;
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-box {
	position: relative;
	width: 100%;
	max-width: 400px;
	height: 100%;
	margin: 0 auto;
	margin-top: 30px;
	color: #fff;
	background-color: #21bec1;
	border-radius: 16px;
}
@media print, screen and (min-width: 768px) {
	.p-schedule
		.p-schedule__inner
		.p-schedule__content
		.p-schedule__flow-inner
		.p-schedule__flow-box {
		margin-top: 60px;
	}
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-box::before {
	position: absolute;
	right: 50%;
	bottom: 100%;
	z-index: -1;
	display: block;
	width: 4px;
	height: 90px;
	content: '';
	background-color: #000;
	background-size: 100% auto;
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-box
	.p-schedule__flow-matters {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 15px 67px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.4;
	text-align: left;
}
@media print, screen and (min-width: 768px) {
	.p-schedule
		.p-schedule__inner
		.p-schedule__content
		.p-schedule__flow-inner
		.p-schedule__flow-box
		.p-schedule__flow-matters {
		padding: 15px 60px;
	}
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-box
	.p-schedule__flow-matters::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 21px;
	display: block;
	width: 10px;
	height: 10px;
	margin: auto;
	content: '';
	background-color: #fff;
	border-radius: 5px;
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-box
	.p-schedule__flow-matters::after {
	position: absolute;
	top: 0;
	right: 21px;
	bottom: 0;
	display: block;
	width: 10px;
	height: 10px;
	margin: auto;
	content: '';
	background-color: #fff;
	border-radius: 5px;
}
@media print, screen and (min-width: 768px) {
	.p-schedule
		.p-schedule__inner
		.p-schedule__content
		.p-schedule__flow-inner
		.p-schedule__flow-box
		.p-schedule__flow-matters::before {
		width: 14px;
		height: 14px;
		border-radius: 7px;
	}
	.p-schedule
		.p-schedule__inner
		.p-schedule__content
		.p-schedule__flow-inner
		.p-schedule__flow-box
		.p-schedule__flow-matters::after {
		width: 14px;
		height: 14px;
		border-radius: 7px;
	}
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-box
	.p-schedule__flow-matters
	.p-schedule__flow-matter-date {
	-ms-flex-preferred-size: 48%;
	flex-basis: 48%;
	padding-right: 9px;
	font-size: 1.6rem;
	line-height: 1.5;
	text-align: left;
	border-right: #fff solid 1px;
}
@media print, screen and (min-width: 768px) {
	.p-schedule
		.p-schedule__inner
		.p-schedule__content
		.p-schedule__flow-inner
		.p-schedule__flow-box
		.p-schedule__flow-matters
		.p-schedule__flow-matter-date {
		-ms-flex-preferred-size: 35%;
		flex-basis: 35%;
		font-size: 1.8rem;
	}
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-box
	.p-schedule__flow-matters
	.p-schedule__flow-matter {
	-ms-flex-preferred-size: 52%;
	flex-basis: 52%;
	padding-left: 20px;
	font-size: 1.6rem;
	line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
	.p-schedule
		.p-schedule__inner
		.p-schedule__content
		.p-schedule__flow-inner
		.p-schedule__flow-box
		.p-schedule__flow-matters
		.p-schedule__flow-matter {
		-ms-flex-preferred-size: 65%;
		flex-basis: 65%;
		font-size: 1.8rem;
	}
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-date {
	margin-top: 30px;
}
@media print, screen and (min-width: 768px) {
	.p-schedule
		.p-schedule__inner
		.p-schedule__content
		.p-schedule__flow-inner
		.p-schedule__flow-date {
		margin-top: 60px;
	}
	.p-schedule
		.p-schedule__inner
		.p-schedule__content
		.p-schedule__flow-inner
		.p-schedule__flow-date.first-date {
		margin-top: 35px;
	}
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content {
	display: block;
	margin-top: 100px;
}
@media print, screen and (min-width: 1025px) {
	.p-schedule
		.p-schedule__inner
		.p-schedule__content
		.p-schedule__flow-inner
		.p-schedule__flow-content {
		position: relative;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin-top: 60px;
	}
	.p-schedule
		.p-schedule__inner
		.p-schedule__content
		.p-schedule__flow-inner
		.p-schedule__flow-content::before {
		position: absolute;
		top: calc(0% - 60px);
		right: 50%;
		z-index: -1;
		display: block;
		width: 4px;
		height: 400px;
		content: '';
		background-color: #000;
		background-size: 100% auto;
	}
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 400px;
	height: 100%;
	margin: 0 auto;
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog::before {
	position: absolute;
	right: 50%;
	bottom: 100%;
	z-index: -1;
	display: block;
	width: 4px;
	height: 100px;
	content: '';
	background-color: #000;
	background-size: 100% auto;
}
@media print, screen and (min-width: 1025px) {
	.p-schedule
		.p-schedule__inner
		.p-schedule__content
		.p-schedule__flow-inner
		.p-schedule__flow-content
		.p-schedule__flow-prog::before {
		content: none;
	}
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog:last-child {
	margin-top: 100px;
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog:last-child::after {
	position: absolute;
	right: 50%;
	bottom: 100%;
	z-index: -1;
	display: block;
	width: 4px;
	height: 100px;
	content: '';
	background-color: #000;
	background-size: 100% auto;
}
@media print, screen and (min-width: 1025px) {
	.p-schedule
		.p-schedule__inner
		.p-schedule__content
		.p-schedule__flow-inner
		.p-schedule__flow-content
		.p-schedule__flow-prog:last-child {
		margin-top: 0px;
	}
	.p-schedule
		.p-schedule__inner
		.p-schedule__content
		.p-schedule__flow-inner
		.p-schedule__flow-content
		.p-schedule__flow-prog:last-child::after {
		content: none;
	}
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog.--col2 {
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog.p-schedule__flow-prog--img {
	position: absolute;
	top: 11%;
	left: 50%;
	z-index: 0;
	display: block;
	width: 280px;
	max-height: 30px;
	margin: auto;
	text-align: center;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog
	.p-schedule__prog-title-inner {
	text-align: center;
	background-color: #000;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog
	.p-schedule__prog-title-inner::before {
	position: absolute;
	bottom: 100%;
	left: 50%;
	display: block;
	width: 140px;
	height: 70px;
	content: '';
	background-size: 100% auto;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog
	.p-schedule__prog-title-inner::after {
	position: absolute;
	top: 0%;
	right: 100%;
	bottom: 0%;
	display: block;
	width: 140px;
	height: 70px;
	content: '';
	background-size: 100% auto;
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog
	.p-schedule__prog-title-inner.--school {
	background-color: #ea095b;
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog
	.p-schedule__prog-title-inner.--school::before {
	background: url(../../images/top/i_half_school.png) no-repeat center;
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog
	.p-schedule__prog-title-inner.--enter {
	background-color: #f59f0b;
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog
	.p-schedule__prog-title-inner.--enter::before {
	background: url(../../images/top/i_half_enter.png) no-repeat center;
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog
	.p-schedule__prog-title-inner
	.p-schedule__prog-title {
	position: relative;
	padding: 13px 30px;
	line-height: 1.5;
	color: #fff;
}
@media print, screen and (min-width: 768px) {
	.p-schedule
		.p-schedule__inner
		.p-schedule__content
		.p-schedule__flow-inner
		.p-schedule__flow-content
		.p-schedule__flow-prog
		.p-schedule__prog-title-inner
		.p-schedule__prog-title {
		padding: 18px 30px;
	}
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog
	.p-schedule__prog-title-inner
	.p-schedule__prog-title::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 30px;
	display: block;
	width: 10px;
	height: 10px;
	margin: auto;
	content: '';
	background-color: #fff;
	border-radius: 5px;
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog
	.p-schedule__prog-title-inner
	.p-schedule__prog-title::after {
	position: absolute;
	top: 0;
	right: 30px;
	bottom: 0;
	display: block;
	width: 10px;
	height: 10px;
	margin: auto;
	content: '';
	background-color: #fff;
	border-radius: 5px;
}
@media print, screen and (min-width: 768px) {
	.p-schedule
		.p-schedule__inner
		.p-schedule__content
		.p-schedule__flow-inner
		.p-schedule__flow-content
		.p-schedule__flow-prog
		.p-schedule__prog-title-inner
		.p-schedule__prog-title::before {
		width: 14px;
		height: 14px;
		border-radius: 7px;
	}
	.p-schedule
		.p-schedule__inner
		.p-schedule__content
		.p-schedule__flow-inner
		.p-schedule__flow-content
		.p-schedule__flow-prog
		.p-schedule__prog-title-inner
		.p-schedule__prog-title::after {
		width: 14px;
		height: 14px;
		border-radius: 7px;
	}
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog
	.p-schedule__prog-content {
	position: relative;
	padding: 20px;
	text-align: left;
	background-color: #000;
	border-bottom-right-radius: 16px;
	border-bottom-left-radius: 16px;
}
@media print, screen and (min-width: 768px) {
	.p-schedule
		.p-schedule__inner
		.p-schedule__content
		.p-schedule__flow-inner
		.p-schedule__flow-content
		.p-schedule__flow-prog
		.p-schedule__prog-content {
		padding: 30px;
	}
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog
	.p-schedule__prog-content.--contentbg-y {
	background-color: #fef0d2;
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog
	.p-schedule__prog-content.--contentbg-m {
	background-color: #fed2e0;
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog
	.p-schedule__prog-content
	.p-schedule__prog-text {
	font-weight: bold;
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog
	.p-schedule__prog-content
	.p-schedule__prog-items {
	margin-top: 10px;
}
@media print, screen and (min-width: 1025px) {
	.p-schedule
		.p-schedule__inner
		.p-schedule__content
		.p-schedule__flow-inner
		.p-schedule__flow-content
		.p-schedule__flow-prog
		.p-schedule__prog-content
		.p-schedule__prog-items {
		margin-top: 20px;
	}
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog
	.p-schedule__prog-content
	.p-schedule__prog-items
	.p-schedule__prog-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-bottom: 5px;
	margin-bottom: 10px;
	line-height: 1.5;
	letter-spacing: 0.04em;
	border-bottom: #333 solid 1px;
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog
	.p-schedule__prog-content
	.p-schedule__prog-items
	.p-schedule__prog-item:last-child {
	margin-bottom: 0px;
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog
	.p-schedule__prog-content
	.p-schedule__prog-items
	.p-schedule__prog-item
	.p-schedule__prog-date {
	-ms-flex-preferred-size: 40%;
	flex-basis: 40%;
}
.p-schedule
	.p-schedule__inner
	.p-schedule__content
	.p-schedule__flow-inner
	.p-schedule__flow-content
	.p-schedule__flow-prog
	.p-schedule__prog-content
	.p-schedule__prog-items
	.p-schedule__prog-item
	.c-txt-p {
	-ms-flex-preferred-size: 60%;
	flex-basis: 60%;
	margin-top: 0;
}

.p-flow {
	position: relative;
	z-index: 0;
	height: 100%;
	background-color: #e8e8e8;
	background-position: center center;
}
.p-flow::before {
	position: absolute;
	top: calc(0% - 24px);
	left: 50%;
	z-index: 1;
	display: block;
	width: 48px;
	height: 48px;
	content: '';
	background: url(../../images/top/p_merit_connect.png) no-repeat center;
	background-size: 100% auto;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
@media print, screen and (min-width: 768px) {
	.p-flow::before {
		top: calc(0% - 30px);
		width: 60px;
		height: 60px;
	}
}
.p-flow .p-flow__inner {
	padding: 60px 16px;
}
@media print, screen and (min-width: 768px) {
	.p-flow .p-flow__inner {
		padding: 94px 20px;
	}
}
.p-flow .p-flow__inner .p-flow__content {
	position: relative;
	padding: 53px 20px 63px;
	color: #fff;
	text-align: center;
	background-color: #3232a0;
	border-radius: 16px;
}
.p-flow .p-flow__inner .p-flow__content::before {
	position: absolute;
	top: 10px;
	left: 10px;
	display: block;
	width: 10px;
	height: 10px;
	margin: auto;
	content: '';
	background-color: #fff;
	border-radius: 50%;
}
.p-flow .p-flow__inner .p-flow__content::after {
	position: absolute;
	top: 10px;
	right: 10px;
	display: block;
	width: 10px;
	height: 10px;
	margin: auto;
	content: '';
	background-color: #fff;
	border-radius: 50%;
}
@media print, screen and (min-width: 768px) {
	.p-flow .p-flow__inner .p-flow__content::before {
		top: 30px;
		left: 30px;
		width: 14px;
		height: 14px;
		border-radius: 50%;
	}
	.p-flow .p-flow__inner .p-flow__content::after {
		top: 30px;
		right: 30px;
		width: 14px;
		height: 14px;
		border-radius: 50%;
	}
}
.p-flow .p-flow__inner .p-flow__content .under-shape::before {
	position: absolute;
	bottom: 10px;
	left: 10px;
	display: block;
	width: 10px;
	height: 10px;
	margin: auto;
	content: '';
	background-color: #fff;
	border-radius: 50%;
}
.p-flow .p-flow__inner .p-flow__content .under-shape::after {
	position: absolute;
	right: 10px;
	bottom: 10px;
	display: block;
	width: 10px;
	height: 10px;
	margin: auto;
	content: '';
	background-color: #fff;
	border-radius: 50%;
}
@media print, screen and (min-width: 768px) {
	.p-flow .p-flow__inner .p-flow__content .under-shape::before {
		bottom: 30px;
		left: 30px;
		width: 14px;
		height: 14px;
		border-radius: 50%;
	}
	.p-flow .p-flow__inner .p-flow__content .under-shape::after {
		right: 30px;
		bottom: 30px;
		width: 14px;
		height: 14px;
		border-radius: 50%;
	}
}
.p-flow .p-flow__inner .p-flow__content .p-flow__title-content {
	color: #fff;
}
.p-flow
	.p-flow__inner
	.p-flow__content
	.p-flow__title-content
	.c-title-text.--white {
	color: #fff;
}
.p-flow .p-flow__inner .p-flow__content .p-flow__content-inner {
	padding-top: 30px;
	text-align: left;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.p-flow .p-flow__inner .p-flow__content .p-flow__content-inner {
		padding: 27px 40px 0px;
	}
}
@media print, screen and (min-width: 1025px) {
	.p-flow .p-flow__inner .p-flow__content .p-flow__content-inner {
		padding: 27px 90px 0px;
	}
}
.p-flow
	.p-flow__inner
	.p-flow__content
	.p-flow__content-inner
	.p-flow__date
	.p-flow__date-text {
	margin-top: 20px;
}
.p-flow .p-flow__inner .p-flow__content .p-flow__content-inner .p-flow__method {
	margin-top: 30px;
}
@media print, screen and (min-width: 768px) {
	.p-flow
		.p-flow__inner
		.p-flow__content
		.p-flow__content-inner
		.p-flow__method {
		margin-top: 50px;
	}
}
.p-flow
	.p-flow__inner
	.p-flow__content
	.p-flow__content-inner
	.p-flow__method
	.p-flow__method-items {
	margin-top: 20px;
}
@media print, screen and (min-width: 768px) {
	.p-flow
		.p-flow__inner
		.p-flow__content
		.p-flow__content-inner
		.p-flow__method
		.p-flow__method-items {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}
.p-flow
	.p-flow__inner
	.p-flow__content
	.p-flow__content-inner
	.p-flow__method
	.p-flow__method-items
	.p-flow__method-item {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 33px;
}
.p-flow
	.p-flow__inner
	.p-flow__content
	.p-flow__content-inner
	.p-flow__method
	.p-flow__method-items
	.p-flow__method-item::before {
	position: absolute;
	top: 50%;
	left: 25px;
	width: 4px;
	height: 130%;
	content: '';
	background-color: #fff;
}
@media print, screen and (min-width: 768px) {
	.p-flow
		.p-flow__inner
		.p-flow__content
		.p-flow__content-inner
		.p-flow__method
		.p-flow__method-items
		.p-flow__method-item {
		display: block;
		-ms-flex-preferred-size: 33%;
		flex-basis: 33%;
		margin-top: 0;
	}
	.p-flow
		.p-flow__inner
		.p-flow__content
		.p-flow__content-inner
		.p-flow__method
		.p-flow__method-items
		.p-flow__method-item::before {
		position: absolute;
		top: 25px;
		left: 50%;
		width: 100%;
		height: 4px;
		content: '';
		background-color: #fff;
	}
}
.p-flow
	.p-flow__inner
	.p-flow__content
	.p-flow__content-inner
	.p-flow__method
	.p-flow__method-items
	.p-flow__method-item:first-child {
	margin-top: 0;
}
.p-flow
	.p-flow__inner
	.p-flow__content
	.p-flow__content-inner
	.p-flow__method
	.p-flow__method-items
	.p-flow__method-item:last-child::before {
	content: none;
}
.p-flow
	.p-flow__inner
	.p-flow__content
	.p-flow__content-inner
	.p-flow__method
	.p-flow__method-items
	.p-flow__method-item
	.p-flow__method-num {
	position: relative;
	width: 50px;
	height: 50px;
	padding: 9px 8px;
	font-family: 'Roboto', sans-serif;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.3;
	color: #3232a0;
	text-align: center;
	background-color: #fff;
	border-radius: 50%;
}
@media print, screen and (min-width: 768px) {
	.p-flow
		.p-flow__inner
		.p-flow__content
		.p-flow__content-inner
		.p-flow__method
		.p-flow__method-items
		.p-flow__method-item
		.p-flow__method-num {
		margin: 0 auto;
	}
}
.p-flow
	.p-flow__inner
	.p-flow__content
	.p-flow__content-inner
	.p-flow__method
	.p-flow__method-items
	.p-flow__method-item
	.p-flow__method-text {
	-ms-flex-preferred-size: 80%;
	flex-basis: 80%;
	padding-left: 15px;
}
@media print, screen and (min-width: 768px) {
	.p-flow
		.p-flow__inner
		.p-flow__content
		.p-flow__content-inner
		.p-flow__method
		.p-flow__method-items
		.p-flow__method-item
		.p-flow__method-text {
		margin-top: 18px;
	}
}
.p-flow
	.p-flow__inner
	.p-flow__content
	.p-flow__content-inner
	.p-flow__method
	.p-flow__method-items
	.p-flow__method-item
	.p-flow__method-text
	.p-flow__method-title {
	display: block;
	margin-bottom: 10px;
	font-size: 1.6rem;
	font-weight: bold;
}
@media print, screen and (min-width: 768px) {
	.p-flow
		.p-flow__inner
		.p-flow__content
		.p-flow__content-inner
		.p-flow__method
		.p-flow__method-items
		.p-flow__method-item
		.p-flow__method-text
		.p-flow__method-title {
		font-size: 1.8rem;
		text-align: center;
	}
}
.p-flow
	.p-flow__inner
	.p-flow__content
	.p-flow__content-inner
	.p-flow__method
	.p-flow__method-items
	.p-flow__method-item
	.p-flow__method-text
	.p-flow__method-text-corf {
	font-size: 1.2rem;
	line-height: 1.75;
}
.p-flow
	.p-flow__inner
	.p-flow__content
	.p-flow__content-inner
	.p-flow__careful {
	margin-top: 30px;
}
@media print, screen and (min-width: 768px) {
	.p-flow
		.p-flow__inner
		.p-flow__content
		.p-flow__content-inner
		.p-flow__careful {
		margin-top: 50px;
	}
}
.p-flow__title {
	position: relative;
	padding-left: 16px;
	font-size: 1.6rem;
	font-weight: bold;
}
@media print, screen and (min-width: 768px) {
	.p-flow__title {
		font-size: 1.8rem;
	}
}
.p-flow__title::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 6px;
	height: 100%;
	content: '';
	background-color: #fff;
	border-radius: 3px;
}

.p-guide {
	position: relative;
	z-index: 0;
	height: 100%;
	background: url(../../images/top/bg_schedule_pattern.png) repeat center;
	background-position: center center;
	background-size: 384px 386px;
}
.p-guide::before {
	position: absolute;
	top: calc(0% - 24px);
	left: 50%;
	z-index: 1;
	display: block;
	width: 48px;
	height: 48px;
	content: '';
	background: url(../../images/top/p_guide_connect.png) no-repeat center;
	background-size: 100% auto;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
@media print, screen and (min-width: 768px) {
	.p-guide::before {
		top: calc(0% - 30px);
		width: 60px;
		height: 60px;
	}
}
.p-guide::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	z-index: -1;
	display: block;
	width: 100%;
	min-width: 1920px;
	height: 100%;
	max-height: 1052px;
	margin: auto;
	content: '';
	background: url(../../images/top/bg_guideline.png) center no-repeat;
	background-size: 100% auto;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.p-guide .p-guide__inner {
	padding: 60px 0px;
}
@media print, screen and (min-width: 768px) {
	.p-guide .p-guide__inner {
		padding: 100px 0px 100px;
	}
}
.p-guide .p-guide__inner .p-guide__content .p-guide__title-content {
	text-align: center;
}
.p-guide .p-guide__inner .p-guide__content .p-guide__table {
	width: 100%;
	margin-top: 37px;
	border-spacing: 0;
	border-collapse: separate;
	border: #3232a0 solid 1px;
	border-radius: 16px;
}
@media print, screen and (min-width: 768px) {
	.p-guide .p-guide__inner .p-guide__content .p-guide__table {
		-webkit-box-shadow: #3232a0 10px 10px;
		box-shadow: #3232a0 10px 10px;
	}
}
.p-guide
	.p-guide__inner
	.p-guide__content
	.p-guide__table
	.p-guide__table-items:first-child
	.p-guide__table-head {
	border-radius: 16px 16px 0 0;
}
.p-guide
	.p-guide__inner
	.p-guide__content
	.p-guide__table
	.p-guide__table-items:first-child
	.p-guide__table-item {
	background-color: #fed2e0;
}
.p-guide
	.p-guide__inner
	.p-guide__content
	.p-guide__table
	.p-guide__table-items:first-child
	.p-guide__table-item:last-child {
	background-color: #fef0d2;
}
.p-guide
	.p-guide__inner
	.p-guide__content
	.p-guide__table
	.p-guide__table-items:nth-child(2)
	.p-guide__table-item {
	background-color: #fed2e0;
}
.p-guide
	.p-guide__inner
	.p-guide__content
	.p-guide__table
	.p-guide__table-items:nth-child(2)
	.p-guide__table-item:last-child {
	background-color: #fef0d2;
}
.p-guide
	.p-guide__inner
	.p-guide__content
	.p-guide__table
	.p-guide__table-items:last-child
	.p-guide__table-item:last-child {
	padding-bottom: 35px;
	border-radius: 0 0 16px 16px;
}
@media print, screen and (min-width: 768px) {
	.p-guide
		.p-guide__inner
		.p-guide__content
		.p-guide__table
		.p-guide__table-items
		.p-guide__table-head {
		width: 20%;
	}
	.p-guide
		.p-guide__inner
		.p-guide__content
		.p-guide__table
		.p-guide__table-items
		.p-guide__table-item {
		width: 40%;
	}
	.p-guide
		.p-guide__inner
		.p-guide__content
		.p-guide__table
		.p-guide__table-items:first-child
		.p-guide__table-head {
		border-radius: 16px 0 0 0;
	}
	.p-guide
		.p-guide__inner
		.p-guide__content
		.p-guide__table
		.p-guide__table-items:first-child
		.p-guide__table-item {
		background-color: #fed2e0;
	}
	.p-guide
		.p-guide__inner
		.p-guide__content
		.p-guide__table
		.p-guide__table-items:first-child
		.p-guide__table-item:last-child {
		background-color: #fef0d2;
		border-radius: 0 16px 0 0;
	}
	.p-guide
		.p-guide__inner
		.p-guide__content
		.p-guide__table
		.p-guide__table-items:nth-child(2)
		.p-guide__table-item {
		background-color: #fed2e0;
	}
	.p-guide
		.p-guide__inner
		.p-guide__content
		.p-guide__table
		.p-guide__table-items:nth-child(2)
		.p-guide__table-item:last-child {
		background-color: #fef0d2;
	}
	.p-guide
		.p-guide__inner
		.p-guide__content
		.p-guide__table
		.p-guide__table-items:last-child
		.p-guide__table-head {
		border-radius: 0 0 0 16px;
	}
	.p-guide
		.p-guide__inner
		.p-guide__content
		.p-guide__table
		.p-guide__table-items:last-child
		.p-guide__table-item:last-child {
		border-radius: 0 0 16px 0;
	}
}
.p-guide
	.p-guide__inner
	.p-guide__content
	.p-guide__table
	.p-guide__table-items
	.p-guide__table-head {
	display: block;
	padding: 20px;
	font-size: 1.6rem;
	text-align: left;
	letter-spacing: 0.02em;
}
@media print, screen and (min-width: 768px) {
	.p-guide
		.p-guide__inner
		.p-guide__content
		.p-guide__table
		.p-guide__table-items
		.p-guide__table-head {
		display: table-cell;
		padding: 30px;
		font-size: 1.8rem;
	}
}
.p-guide
	.p-guide__inner
	.p-guide__content
	.p-guide__table
	.p-guide__table-items
	.p-guide__table-item {
	display: block;
	padding: 20px;
	background-color: #fff;
}
@media print, screen and (min-width: 768px) {
	.p-guide
		.p-guide__inner
		.p-guide__content
		.p-guide__table
		.p-guide__table-items
		.p-guide__table-item {
		display: table-cell;
		padding: 30px;
	}
}
.p-guide
	.p-guide__inner
	.p-guide__content
	.p-guide__table
	.p-guide__table-items
	.p-guide__table-item
	.c-list-desc {
	margin-top: 0;
}
.p-guide
	.p-guide__inner
	.p-guide__content
	.p-guide__table
	.p-guide__table-items
	.p-guide__table-head {
	color: #fff;
	background-color: #3232a0;
	border-bottom: #fff solid 1px;
}
.p-guide
	.p-guide__inner
	.p-guide__content
	.p-guide__table
	.p-guide__table-items
	.p-guide__table-head.p-guide__table-head--border-bl {
	border-bottom: #3232a0 solid 1px;
}
.p-guide
	.p-guide__inner
	.p-guide__content
	.p-guide__table
	.p-guide__table-items
	.p-guide__table-item {
	border-right: #3232a0 solid 1px;
	border-bottom: #3232a0 solid 1px;
}

.p-request {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 820px;
	background: url(../../images/top/bg_request.jpg) no-repeat center;
	background-size: cover;
}
.p-request::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 20px;
	content: '';
	background-color: #3232a0;
}
@media print, screen and (min-width: 768px) {
	.p-request {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		min-height: 584px;
	}
}
.p-request .p-request__inner {
	padding: 150px 16px 90px;
}
@media print, screen and (min-width: 768px) {
	.p-request .p-request__inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		width: 100%;
		padding: 150px 16px 100px;
	}
}
.p-request .p-request__inner .p-request__content-inner {
	position: relative;
	width: 100%;
	padding: 50px 25px 55px;
	text-align: center;
	background-color: #fed2e0;
	border: #fa1e64 4px solid;
	border-radius: 10px;
}
.p-request .p-request__inner .p-request__content-inner::after {
	position: absolute;
	bottom: 100%;
	left: 50%;
	display: block;
	width: 180px;
	height: 90px;
	margin: auto;
	content: '';
	background: url(../../images/top/i_half_school.png) no-repeat center;
	background-size: 100% auto;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.p-request .p-request__inner .p-request__content-inner {
		width: calc(100% - 20px);
		padding: 62.5px 20px;
		margin: 0 auto;
	}
	.p-request .p-request__inner .p-request__content-inner::after {
		width: 200px;
		height: 100px;
	}
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (min-width: 1025px) {
	.p-request .p-request__inner .p-request__content-inner {
		width: calc(100% - 20px);
		padding: 62.5px 135px;
	}
	.p-request .p-request__inner .p-request__content-inner::after {
		width: 200px;
		height: 100px;
	}
}
.p-request
	.p-request__inner
	.p-request__content-inner.p-request__content-inner--enter {
	margin-top: 130px;
	margin-right: 0px;
	background-color: #fef0d2;
	border: #fab41e 4px solid;
}
.p-request
	.p-request__inner
	.p-request__content-inner.p-request__content-inner--enter::after {
	width: 180px;
	height: 90px;
	background: url(../../images/top/i_half_enter.png) no-repeat center;
	background-size: 100% auto;
}
@media print, screen and (min-width: 768px) {
	.p-request
		.p-request__inner
		.p-request__content-inner.p-request__content-inner--enter {
		margin-top: 0;
		margin-left: 40px;
	}
	.p-request
		.p-request__inner
		.p-request__content-inner.p-request__content-inner--enter::after {
		width: 200px;
		height: 100px;
	}
}
.p-request
	.p-request__inner
	.p-request__content-inner
	.p-request__shape-up::before {
	position: absolute;
	top: 10px;
	left: 10px;
	display: block;
	width: 10px;
	height: 10px;
	margin: auto;
	content: '';
	background-color: #fa1e64;
	border-radius: 5px;
}
.p-request
	.p-request__inner
	.p-request__content-inner
	.p-request__shape-up::after {
	position: absolute;
	top: 10px;
	right: 10px;
	display: block;
	width: 10px;
	height: 10px;
	margin: auto;
	content: '';
	background-color: #fa1e64;
	border-radius: 5px;
}
@media print, screen and (min-width: 768px) {
	.p-request
		.p-request__inner
		.p-request__content-inner
		.p-request__shape-up::before {
		top: 14px;
		left: 14px;
		width: 14px;
		height: 14px;
		border-radius: 7px;
	}
	.p-request
		.p-request__inner
		.p-request__content-inner
		.p-request__shape-up::after {
		top: 14px;
		right: 14px;
		width: 14px;
		height: 14px;
		border-radius: 7px;
	}
}
.p-request
	.p-request__inner
	.p-request__content-inner
	.p-request__shape-up.p-request__shape-up--enter::before {
	background-color: #fab41e;
}
.p-request
	.p-request__inner
	.p-request__content-inner
	.p-request__shape-up.p-request__shape-up--enter::after {
	background-color: #fab41e;
}
.p-request
	.p-request__inner
	.p-request__content-inner
	.p-request__shape-under::before {
	position: absolute;
	bottom: 10px;
	left: 10px;
	display: block;
	width: 10px;
	height: 10px;
	margin: auto;
	content: '';
	background-color: #fa1e64;
	border-radius: 5px;
}
.p-request
	.p-request__inner
	.p-request__content-inner
	.p-request__shape-under::after {
	position: absolute;
	right: 10px;
	bottom: 10px;
	display: block;
	width: 10px;
	height: 10px;
	margin: auto;
	content: '';
	background-color: #fa1e64;
	border-radius: 5px;
}
@media print, screen and (min-width: 768px) {
	.p-request
		.p-request__inner
		.p-request__content-inner
		.p-request__shape-under::before {
		bottom: 14px;
		left: 14px;
		width: 14px;
		height: 14px;
		border-radius: 7px;
	}
	.p-request
		.p-request__inner
		.p-request__content-inner
		.p-request__shape-under::after {
		right: 14px;
		bottom: 14px;
		width: 14px;
		height: 14px;
		border-radius: 7px;
	}
}
.p-request
	.p-request__inner
	.p-request__content-inner
	.p-request__shape-under.p-request__shape-under--enter::before {
	background-color: #fab41e;
}
.p-request
	.p-request__inner
	.p-request__content-inner
	.p-request__shape-under.p-request__shape-under--enter::after {
	background-color: #fab41e;
}
.p-request .p-request__inner .p-request__content-inner .p-request__content {
	font-family: 'Roboto', sans-serif;
}
.p-request
	.p-request__inner
	.p-request__content-inner
	.p-request__content
	.p-request__title {
	font-size: 2rem;
	font-weight: bold;
}
@media print, screen and (min-width: 768px) {
	.p-request
		.p-request__inner
		.p-request__content-inner
		.p-request__content
		.p-request__title {
		font-size: 2.4rem;
	}
}
