@charset "UTF-8";
.u-lg2 {
	display: none;
}

@media screen and (min-width: 1249px) {
	.u-lg2 {
		display: block;
	}
}

@media screen and (min-width: 768px) {
	.u-sm-lg2 {
		display: none;
	}
}

@media screen and (min-width: 1249px) {
	.u-sm-lg2 {
		display: block;
	}
}

.u-pc {
	display: none;
}

@media screen and (min-width: 768px) {
	.u-pc {
		display: block;
	}
}

@media screen and (min-width: 768px) {
	.u-sp {
		display: none;
	}
}

/* FontFamily */
/* font-weight */
/* リキッドレイアウト対応 */
html {
	font-size: 16px;
}

@media (max-width: 375px) {
	html {
		font-size: 4.26667vw;
	}
}

@media screen and (min-width: 768px) {
	html {
		font-size: 1.50943vw;
	}
}

@media (min-width: 1060px) {
	html {
		font-size: 16px;
	}
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

/* ホバー */
a {
	text-decoration: none;
	color: inherit;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
	a:hover {
		opacity: 0.8;
	}
}

body {
	color: #333;
	font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Noto Sans JP",
		"sans-serif";
	font-size: 16px;
	font-size: 1rem;
}

.section {
	padding: 40px 0;
	padding: 2.5rem 0;
}

.section__titleWrap {
	width: 100%;
	max-width: 300px;
	max-width: 18.75rem;
	margin: 0 auto;
	text-align: center;
}

.section__subTitle {
	font-size: 16px;
	font-size: 1rem;
	color: #6e71bc;
	letter-spacing: 0.2em;
	font-weight: bold;
}

.section__title {
	font-size: 32px;
	font-size: 2rem;
	font-weight: bold;
	color: #333;
	font-family: "Trebuchet MS", "sans-serif";
}

*,
*::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 {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

/* 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 */
/* Make images easier to work with */
img {
	max-width: 100%;
	display: block;
	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);
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
	* {
		-webkit-animation-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		-webkit-animation-iteration-count: 1 !important;
		animation-iteration-count: 1 !important;
		-webkit-transition-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* フォームリセット */
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;
}

.appp {
	margin: 1px;
}

.accordion-container .accordion-title {
	position: relative;
	margin: 0;
	padding: 20px 20px 17px 22px;
	padding: 1.25rem 1.25rem 1.0625rem 1.375rem;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: normal;
	cursor: pointer;
	border-top: solid 1px #707070;
}

@media screen and (min-width: 768px) {
	.accordion-container .accordion-title {
		padding: 0.0625rem 1.875rem 1.625rem 2.1875rem;
		font-size: 1rem;
	}
}

.accordion-container .accordion-title::before {
	content: "Q";
	position: absolute;
	top: 19px;
	top: 1.1875rem;
	left: 0;
	font-weight: bold;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 768px) {
	.accordion-container .accordion-title::before {
		top: 0;
		left: 0.125rem;
	}
}

.accordion-container .accordion-title::after {
	content: "+";
	position: absolute;
	top: 17px;
	top: 1.0625rem;
	right: 5px;
	right: 0.3125rem;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

@media screen and (min-width: 768px) {
	.accordion-container .accordion-title::after {
		top: 0;
		right: 0.0625rem;
	}
}

.accordion-container .accordion-title.open::after {
	content: "-";
}

.accordion-content {
	display: none;
	padding: 0px 9px 10px 24px;
	padding: 0rem 0.5625rem 0.625rem 1.5rem;
	font-size: 14px;
	font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
	.accordion-content {
		padding: 0 1.875rem 1.625rem 1.3125rem;
		font-size: 1rem;
	}
}

.accordion-content p {
	padding-bottom: 4px;
	padding-bottom: 0.25rem;
}

@media screen and (min-width: 768px) {
	.accordion-content p {
		margin-top: 0;
	}
}

.buttonWrap {
	text-align: center;
	margin-top: 30px;
	margin-top: 1.875rem;
	margin-bottom: 11px;
	margin-bottom: 0.6875rem;
}

@media screen and (min-width: 768px) {
	.buttonWrap {
		margin-bottom: 1.875rem;
	}
}

.button {
	position: relative;
	padding: 10px 70px 10px 70px;
	padding: 0.625rem 4.375rem 0.625rem 4.375rem;
	text-align: center;
	background: #3e268d;
	display: inline-block;
	color: #ebebf7;
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: bold;
	font-family: "Helvetica", "Arial", "Neue Haas Grotesk", "sans-serif";
	border-radius: 0.7rem;
	-webkit-border-radius: 0.7rem;
	-moz-border-radius: 0.7rem;
	-ms-border-radius: 0.7rem;
	-o-border-radius: 0.7rem;
}

@media screen and (min-width: 375px) {
	.button {
		padding: 0.625rem 5.8125rem 0.625rem 5.4375rem;
	}
}

@media screen and (min-width: 768px) {
	.button {
		padding: 1.375rem 5.75rem 1.375rem 4.5rem;
		font-size: 1.5rem;
		border-radius: 0.5rem;
		-webkit-border-radius: 0.5rem;
		-moz-border-radius: 0.5rem;
		-ms-border-radius: 0.5rem;
		-o-border-radius: 0.5rem;
	}
}

.button::after {
	position: absolute;
	top: 14px;
	top: 0.875rem;
	right: 13px;
	right: 0.8125rem;
	content: "";
	display: inline-block;
	width: 43px;
	/*画像の幅*/
	height: 39px;
	/*画像の高さ*/
	background-image: url(../images/button-arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
}

@media screen and (min-width: 768px) {
	.button::after {
		top: 26%;
		right: 10px;
		width: 55px;
		height: 50px;
	}
}

@media screen and (min-width: 1024px) {
	.button::after {
		width: 83px;
		top: 16px;
	}
}

.card {
	background-color: #fff;
	border-radius: 2.25rem;
	-webkit-border-radius: 2.25rem;
	-moz-border-radius: 2.25rem;
	-ms-border-radius: 2.25rem;
	-o-border-radius: 2.25rem;
	-webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
	padding: 18px 24px 59px;
	padding: 1.125rem 1.5rem 3.6875rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media screen and (min-width: 768px) {
	.card {
		padding-bottom: 2.25rem;
	}
}

.card:nth-child(3) {
	padding-bottom: 114px;
	padding-bottom: 7.125rem;
}

.card__title {
	font-size: 20px;
	font-size: 1.25rem;
	color: #6e71bc;
	text-align: center;
	font-weight: bold;
	height: 19%;
	line-height: 1.7;
}

@media screen and (min-width: 375px) {
	.card__title {
		letter-spacing: 0.15em;
	}
}

@media screen and (min-width: 768px) {
	.card__title {
		line-height: 1.6;
	}
}

.card:nth-child(3) .card__title {
	height: 16%;
	margin-top: 17px;
	margin-top: 1.0625rem;
	font-size: 18px;
	font-size: 1.125rem;
}

@media screen and (min-width: 375px) {
	.card:nth-child(3) .card__title {
		font-size: 1.25rem;
		letter-spacing: 0.1em;
	}
}

@media screen and (min-width: 768px) {
	.card:nth-child(3) .card__title {
		letter-spacing: 0.1em;
	}
}

.card__image {
	width: 100px;
	width: 6.25rem;
	margin: 30px auto 0;
	margin: 1.875rem auto 0;
	min-height: 0%;
}

@media screen and (min-width: 768px) {
	.card__image {
		margin-top: 2.1875rem;
	}
}

.card:nth-child(1) .card__image {
	margin-top: 20px;
	margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
	.card:nth-child(1) .card__image {
		margin-top: 2rem;
	}
}

.card:nth-child(2) .card__image {
	width: 74px;
	width: 4.625rem;
	margin-top: 20px;
	margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
	.card:nth-child(2) .card__image {
		margin-top: 2rem;
	}
}

.card:nth-child(3) .card__image {
	width: 130px;
	width: 8.125rem;
	margin-top: 37px;
	margin-top: 2.3125rem;
}

.card__text {
	font-size: 16px;
	font-size: 1rem;
	margin-top: 30px;
	margin-top: 1.875rem;
	line-height: 1.71;
}

@media screen and (min-width: 768px) {
	.card__text {
		margin-top: 1.875rem;
		line-height: 1.7;
	}
}

.card:nth-child(2) .card__text {
	margin-top: 40px;
	margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
	.card:nth-child(2) .card__text {
		margin-top: 2.25rem;
	}
}

@media screen and (min-width: 768px) {
	.card:nth-child(3) .card__text {
		margin-top: 2.125rem;
	}
}

.concept__title {
	color: #6e71bc;
	font-size: 19px;
	font-size: 1.1875rem;
	font-weight: bold;
	line-height: 1.7;
	width: 320px;
	width: 20rem;
	margin: 0 auto;
	padding: 0 2px;
	padding: 0 0.125rem;
}

@media screen and (min-width: 375px) {
	.concept__title font-size {
		font-size: 1.25rem;
	}
}

@media screen and (min-width: 768px) {
	.concept__title {
		width: 25rem;
		margin-left: 0rem;
		font-size: 1.5rem;
	}
}

.concept__text {
	color: #333;
	font-size: 16px;
	font-size: 1rem;
	margin-top: 19px;
	margin-top: 1.1875rem;
	line-height: 1.7;
	font-weight: 500;
}

@media screen and (min-width: 768px) {
	.concept__text {
		font-size: 1.25rem;
		margin-top: 2.125rem;
	}
}

@media screen and (min-width: 1024px) {
	.concept__text {
		line-height: 1.7;
		font-size: 1.25rem;
	}
}

.overlay {
	content: "";
	display: block;
	width: 0;
	height: 0;
	background-color: rgba(14, 19, 54, 0.5);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.overlay.open {
	width: 100%;
	height: 7767px;
	height: 485.4375rem;
	opacity: 1;
}

.menu-trigger {
	display: inline-block;
	width: 18px;
	width: 1.125rem;
	height: 14px;
	height: 0.875rem;
	vertical-align: middle;
	cursor: pointer;
	position: fixed;
	top: 14px;
	top: 0.875rem;
	right: 18px;
	right: 1.125rem;
	z-index: 100;
}

.menu-trigger span {
	display: inline-block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	height: 0.125rem;
	background-color: #707070;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
}

.menu-trigger.active span {
	background-color: #707070;
}

.menu-trigger span:nth-of-type(1) {
	top: 0;
}

.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(12px) rotate(-45deg);
	transform: translateY(12px) rotate(-45deg);
	top: -6px;
}

.menu-trigger span:nth-of-type(2) {
	top: 6px;
	top: 0.375rem;
}

.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}

.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}

.menu-trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-12px) rotate(45deg);
	transform: translateY(-12px) rotate(45deg);
	bottom: -6px;
}

.drawer__nav {
	width: 300px;
	width: 18.75rem;
	height: 100%;
	padding-top: 50px;
	padding-top: 3.125rem;
	background-color: #fff;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
	-webkit-transform: translate(300px);
	transform: translate(300px);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.drawer__nav.open {
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.drawer__item {
	color: #707070;
	font-size: 20px;
	font-size: 1.25rem;
	border-bottom: 2px solid rgba(112, 112, 112, 0.5);
	border-bottom: 0.125rem solid rgba(112, 112, 112, 0.5);
}

.drawer__item a {
	display: block;
	padding: 14px 20px 14px;
	padding: 0.875rem 1.25rem 0.875rem;
}

.heading-1 {
	text-align: center;
	padding: 20px 0;
	font-size: 18px;
	font-size: 1.125rem;
}

@media screen and (min-width: 768px) {
	.heading-1 {
		font-size: 1.5rem;
	}
}

.info {
	font-size: 16px;
	font-size: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (min-width: 1249px) {
	.info {
		font-size: 1.25rem;
	}
}

@media screen and (min-width: 1249px) {
	.info:nth-child(2) {
		margin-left: 2.9375rem;
	}
}

@media screen and (min-width: 1249px) {
	.info:nth-child(3) {
		margin-left: 3.125rem;
	}
}

.info__title {
	border: 1px solid #333;
	padding: 10px 0 12px;
	padding: 0.625rem 0 0.75rem;
	margin-right: 8px;
	margin-right: 0.5rem;
	width: 120px;
	width: 7.5rem;
	text-align: center;
}

@media screen and (min-width: 768px) {
	.info__title {
		width: auto;
		padding: 0.5rem 0.75rem;
	}
}

@media screen and (min-width: 1249px) {
	.info__title {
		font-size: 1.25rem;
		padding: 0.5rem 1.75rem;
		letter-spacing: 0;
	}
}

@media screen and (min-width: 768px) {
	.info:nth-child(2) .info__title {
		padding: 0.5rem 1.25rem;
	}
}

@media screen and (min-width: 1249px) {
	.info:nth-child(2) .info__title {
		padding: 0.5rem 2.25rem;
	}
}

@media screen and (min-width: 768px) {
	.info:nth-child(3) .info__title {
		padding: 0.5rem 1.25rem;
	}
}

@media screen and (min-width: 768px) and (min-width: 1249px) {
	.info:nth-child(3) .info__title {
		padding: 0.5rem 1.4375rem;
	}
}

@media screen and (min-width: 1249px) {
	.info__detail {
		font-size: 1.25rem;
	}
}

.info:nth-child(1) .info__detail {
	letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
	.info:nth-child(1) .info__detail {
		letter-spacing: 0;
	}
}

@media screen and (min-width: 1249px) {
	.info:nth-child(1) .info__detail {
		letter-spacing: 0.18em;
	}
}

@media screen and (min-width: 768px) {
	.info:nth-child(3) .info__detail {
		margin-left: 0.3125rem;
	}
}

.item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	margin-top: 30px;
	margin-top: 1.875rem;
	position: relative;
}

@media screen and (min-width: 768px) {
	.item {
		margin-top: 4.3125rem;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.item:nth-child(3) {
	margin-top: 124px;
	margin-top: 7.75rem;
}

@media screen and (min-width: 768px) {
	.item:nth-child(3) {
		margin-top: 4.9375rem;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.item:nth-child(5) {
	margin-top: 138px;
	margin-top: 8.625rem;
}

@media screen and (min-width: 768px) {
	.item:nth-child(5) {
		margin-top: 2.1875rem;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.item__image {
	width: 98px;
	width: 6.125rem;
	height: 98px;
	height: 6.125rem;
	background-color: #6e71bc;
	margin-right: 28px;
	margin-right: 1.75rem;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	border-radius: 50%;
	position: relative;
}

@media screen and (min-width: 375px) {
	.item__image {
		margin-right: 2.875rem;
	}
}

@media screen and (min-width: 768px) {
	.item__image {
		margin-right: 1.4375rem;
	}
}

@-moz-document url-prefix() {
	.item__image {
		width: 6.125rem;
		height: 6.125rem;
		background-color: #6e71bc;
		margin-right: 1.75rem;
		flex-shrink: 0;
		border-radius: 50%;
		position: relative;
	}
	@media screen and (min-width: 375px) {
		.item__image {
			margin-right: 2.875rem;
		}
	}
	@media screen and (min-width: 768px) {
		.item__image {
			margin-right: 1.4375rem;
		}
	}
}

.item:nth-child(1) .item__image ::after {
	content: "";
	position: absolute;
	top: 8px;
	left: 46%;
	width: 8px;
	height: 340px;
	background: #6e71bc;
	z-index: -10;
	display: inline-block;
}

@media screen and (min-width: 768px) {
	.item:nth-child(1) .item__image ::after {
		height: 250px;
	}
}

.item:nth-child(3) .item__image :before {
	content: "";
	position: absolute;
	top: 4px;
	left: 46%;
	width: 8px;
	height: 320px;
	background: #6e71bc;
	display: inline-block;
	z-index: -10;
}

@media screen and (min-width: 768px) {
	.item:nth-child(3) .item__image :before {
		height: 240px;
	}
}

.item__image img {
	width: 48px;
	width: 3rem;
	height: 48px;
	height: 3rem;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	position: absolute;
}

.item:nth-child(3) .item__image img {
	width: 55px;
	width: 3.4375rem;
	height: 57px;
	height: 3.5625rem;
	top: 50%;
	left: 46%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	position: absolute;
}

.item__image img {
	width: 55px;
	width: 3.4375rem;
	height: 52px;
	height: 3.25rem;
	top: 52%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	position: absolute;
}

.item__title {
	position: relative;
}

@media screen and (min-width: 768px) {
	.item__title {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.item:nth-child(3) .item__title {
	margin-top: -72px;
}

@media screen and (min-width: 768px) {
	.item:nth-child(3) .item__title {
		margin-top: 0.1875rem;
	}
}

.item:nth-child(5) .item__title {
	margin-top: -60px;
}

@media screen and (min-width: 768px) {
	.item:nth-child(5) .item__title {
		margin-top: 0.8125rem;
	}
}

@media screen and (min-width: 768px) {
	.item__title--wrap {
		width: 150px;
		-ms-flex-negative: 0;
		flex-shrink: 0;
		text-align: center;
		margin-right: 0.8125rem;
	}
}

@media screen and (min-width: 768px) {
	.item:nth-child(3) .item__title--wrap {
		margin-left: 0.3125rem;
		margin-right: 0.1875rem;
	}
}

.item:nth-child(5) .item__title--wrap {
	margin-right: 7px;
	margin-right: 0.4375rem;
}

.item__title--sub {
	font-size: 16px;
	font-size: 1rem;
	color: #6e71bc;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.25em;
}

.item__title--main {
	font-size: 32px;
	font-size: 2rem;
	font-family: "Trebuchet MS", "sans-serif";
	font-weight: bold;
	margin-top: 7px;
	margin-top: 0.4375rem;
}

@media screen and (min-width: 768px) {
	.item:nth-child(3) .item__title--main {
		letter-spacing: 1em;
		text-align: right;
		margin-right: 1.75rem;
	}
}

@media screen and (min-width: 1024px) {
	.item:nth-child(3) .item__title--main {
		margin-right: 0;
	}
}

@media screen and (min-width: 768px) {
	.item:nth-child(5) .item__title--main {
		letter-spacing: 0.25em;
		line-height: 1.9;
		margin-top: 0;
		margin-left: 0.3125rem;
	}
}

.item__text {
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.75;
}

@media screen and (min-width: 768px) {
	.item__text {
		font-size: 1.25rem;
	}
}

@media screen and (min-width: 768px) {
	.item:nth-child(1) .item__text {
		margin-top: 2.4375rem;
	}
}

@media screen and (min-width: 768px) {
	.item:nth-child(3) .item__text {
		margin-top: 2.3125rem;
	}
}

.dotted-line {
	height: 2px;
	position: relative;
	margin-top: 50px;
	margin-top: 3.125rem;
}

.dotted-line::before {
	content: "";
	background-image: linear-gradient(
		to right,
		#6e71bc,
		#6e71bc 19px,
		transparent 19px,
		transparent 26px
	);
	background-size: 26px 3px;
	background-repeat: repeat-x;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

@media screen and (min-width: 768px) {
	.dotted-line1 {
		margin-top: 2.3125rem;
	}
}

@media screen and (min-width: 768px) {
	.dotted-line2 {
		margin-top: 5rem;
	}
}

.kiyaku {
	margin-bottom: 30px;
	line-height: 1.5;
}

.kiyaku h2 {
	margin-bottom: 10px;
	font-weight: bold;
	font-size: 16px;
	font-size: 1rem;
}

@media screen and (min-width: 768px) {
	.kiyaku h2 {
		font-size: 1.25rem;
	}
}

.kiyaku p {
	text-indent: 1em;
	font-size: 14px;
	font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
	.kiyaku p {
		font-size: 1rem;
	}
}

.kiyaku ol {
	margin-top: 10px;
	margin-left: 2em;
	list-style-type: decimal;
}

.kiyaku ol li {
	margin-top: 10px;
	line-height: 1.5;
	font-size: 14px;
	font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
	.kiyaku ol li {
		font-size: 1rem;
	}
}

.kiyaku ul {
	margin-top: 10px;
	margin-left: 32px;
	margin-left: 2rem;
	list-style-type: disc;
}

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

@media screen and (min-width: 768px) {
	.l-inner {
		max-width: 1280px;
		padding-right: 110px;
		padding-left: 110px;
	}
}

.l-body {
	width: 1280px;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.l-main {
	width: 800px;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding: 50px 15px;
}

/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
	display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
	background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
	background: #666;
}

.faq {
	padding-top: 55px;
	padding-top: 3.4375rem;
	padding-bottom: 194px;
	padding-bottom: 12.125rem;
}

@media screen and (min-width: 768px) {
	.faq {
		padding-top: 4.6875rem;
		padding-bottom: 10rem;
	}
}

.faq__inner {
	padding: 0 25px;
	padding: 0 1.5625rem;
}

@media screen and (min-width: 768px) {
	.faq__inner {
		padding: 0 1.875rem;
	}
}

.faq__title {
	line-height: 1.8;
}

.faq__contents {
	width: 100%;
	max-width: 500px;
	max-width: 31.25rem;
	margin: 50px auto 0;
	margin: 3.125rem auto 0;
	border-bottom: 1px solid #707070;
}

@media screen and (min-width: 768px) {
	.faq__contents {
		width: 100%;
		max-width: 505px;
		margin-top: 5.1875rem;
	}
}

.qa__mailaddress {
	color: #6e71bc;
}

.flow {
	padding-top: 53px;
	padding-top: 3.3125rem;
	padding-bottom: 42px;
	padding-bottom: 2.625rem;
}

@media screen and (min-width: 768px) {
	.flow {
		padding-top: 4.8125rem;
		padding-bottom: 4.125rem;
	}
}

.flow__inner {
	width: 100%;
	max-width: 500px;
	max-width: 31.25rem;
	padding-right: 30px;
	padding-right: 1.875rem;
	padding-left: 30px;
	padding-left: 1.875rem;
	margin: 0 auto;
}

@media screen and (min-width: 768px) {
	.flow__inner {
		width: 100%;
		max-width: 1280px;
		padding-right: 11.125rem;
		padding-left: 11.125rem;
	}
}

.flow__title {
	line-height: 1.8;
}

.flow__contents {
	margin-top: 51px;
	margin-top: 3.1875rem;
}

.flow__button {
	margin: 80px 0 15px;
	margin: 5rem 0 0.9375rem;
}

@media screen and (min-width: 768px) {
	.flow__button {
		margin-top: 5.625rem;
	}
}

.footer {
	background-color: #0e1336;
}

.footer__inner {
	padding: 8px 20px 20px;
	padding: 0.5rem 1.25rem 1.25rem;
}

.footer__contents {
	margin-top: 33px;
	margin-top: 2.0625rem;
}

@media screen and (min-width: 768px) {
	.footer__contents {
		margin-top: 0.625rem;
		width: 61.5%;
		margin-left: auto;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}

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

@media screen and (min-width: 768px) {
	.footer__sns-icons {
		width: 41%;
		margin-top: 2rem;
	}
}

.footer__sns-icon {
	width: 40px;
	width: 2.5rem;
	height: 40px;
	height: 2.5rem;
	border-radius: 50%;
	margin: 0 13px;
	margin: 0 0.8125rem;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

@media screen and (min-width: 768px) {
	.footer__sns-icon {
		margin-top: 10px;
		margin-right: 26px;
		margin-left: 0;
		-webkit-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	.footer__sns-icon:hover {
		opacity: 0.7;
	}
}

.footer__nav {
	margin: 0 auto;
}

@media screen and (min-width: 768px) {
	.footer__nav {
		width: 20%;
		margin-left: 33%;
	}
}

@media screen and (min-width: 768px) {
	.footer-nav__items {
		line-height: 1.78;
		margin-top: -0.125rem;
	}
}

.footer-nav__item {
	font-size: 10px;
	font-size: 0.625rem;
	color: #fff;
	margin-top: 4px;
	margin-top: 0.25rem;
}

@media screen and (min-width: 768px) {
	.footer-nav__item {
		margin-top: 0;
	}
}

.footer__copyright {
	font-size: 14px;
	font-size: 0.875rem;
	color: #fff;
	text-align: center;
	margin-top: 30px;
	margin-top: 1.875rem;
	padding-bottom: 11px;
	padding-bottom: 0.6875rem;
}

@media screen and (min-width: 375px) {
	.footer__copyright {
		font-size: 1rem;
	}
}

@media screen and (min-width: 768px) {
	.footer__copyright {
		text-align: right;
		font-size: 0.625rem;
		letter-spacing: -0.01em;
	}
}

/* ヘッダー */
.header {
	height: 48px;
	height: 3rem;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 20;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
}

@media screen and (min-width: 768px) {
	.header {
		background: #fff;
		height: 3rem;
		margin: 0 auto;
	}
}

.header__logo {
	width: 124px;
	width: 7.75rem;
}

@media screen and (min-width: 768px) {
	.header__logo {
		width: 10rem;
		padding-top: 0.625rem;
	}
}

.header__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: inherit;
}

@media screen and (min-width: 768px) {
	.header__inner {
		margin: 0 auto;
	}
}

.header__nav {
	margin-left: auto;
	height: inherit;
}

.global-nav__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: inherit;
}

.global-nav__item {
	height: inherit;
	padding: 0 14px;
	padding: 0 0.875rem;
}

.global-nav__item:last-child {
	padding: 0;
}

.global-nav__item a {
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 300;
	font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Noto Sans JP",
		"sans-serif";
	padding-top: 13px;
	padding-top: 0.8125rem;
	padding-bottom: 13px;
	padding-bottom: 0.8125rem;
}

.global-nav__item:last-child a {
	font-size: 16px;
	font-size: 1rem;
	font-weight: 500;
	background-color: #3e268d;
	color: #fff;
	padding: 13px 13px 11px 21px;
	padding: 0.8125rem 0.8125rem 0.6875rem 1.3125rem;
}

.main-visual {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 178%;
	/* (画像の高さ1332px / 画像の横幅748px) × 100 */
	background: url(../images/hero-top-sp@2x.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

@media screen and (min-width: 768px) {
	.main-visual {
		margin-top: 3rem;
		padding-top: 55%;
		background: url(../images/hero-top-pc@2x.jpg);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
	}
}

.main-visual__button {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%);
	width: 100%;
	text-align: center;
	-webkit-transform: translate(-50%);
	-moz-transform: translate(-50%);
	-ms-transform: translate(-50%);
	-o-transform: translate(-50%);
}

@media screen and (min-width: 768px) {
	.main-visual__button {
		top: 78%;
		width: 73%;
	}
}

.merit {
	background-color: #f2f2f2;
	padding-top: 58px;
	padding-top: 3.625rem;
	padding-bottom: 57px;
	padding-bottom: 3.5625rem;
}

@media screen and (min-width: 768px) {
	.merit {
		padding-top: 4.6875rem;
		padding-bottom: 5.125rem;
	}
}

@media screen and (min-width: 768px) {
	.merit__inner {
		max-width: 1280px;
		padding-right: 6.25rem;
		padding-left: 6.5rem;
	}
}

.merit__title {
	line-height: 1.8;
}

.merit__contents {
	margin-top: 47px;
	margin-top: 2.9375rem;
}

@media screen and (min-width: 768px) {
	.merit__contents {
		margin-top: 2.5rem;
	}
}

@media screen and (min-width: 768px) {
	.merit__items {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

.merit__item {
	margin: 30px auto 0;
	margin: 1.875rem auto 0;
	width: 100%;
	max-width: 500px;
	max-width: 31.25rem;
}

@media screen and (min-width: 768px) {
	.merit__item {
		width: calc(33.33333% - 30px);
		margin-right: 2.8125rem;
	}
}

.merit__item:nth-child(2) {
	padding-bottom: 34px;
	padding-bottom: 2.125rem;
}

.merit__item:not(:first-child) {
	margin-top: 44px;
	margin-top: 2.75rem;
}

@media screen and (min-width: 768px) {
	.merit__item:not(:first-child) {
		margin-top: 1.875rem;
	}
}

@media screen and (min-width: 768px) {
	.merit__item:nth-child(3n) {
		margin-right: 0;
	}
}

.profile {
	background-color: rgba(112, 112, 112, 0.35);
	padding-top: 59px;
	padding-top: 3.6875rem;
	padding-bottom: 50px;
	padding-bottom: 3.125rem;
}

@media screen and (min-width: 768px) {
	.profile {
		padding-top: 4.6875rem;
		padding-bottom: 2.8125rem;
	}
}

.profile__inner {
	width: 100%;
	padding-right: 26px;
	padding-left: 26px;
	margin-right: auto;
	margin-left: auto;
}

@media screen and (min-width: 768px) {
	.profile__inner {
		max-width: 80rem;
		padding-right: 6.5625rem;
		padding-left: 6.5625rem;
	}
}

.profile__title {
	line-height: 1.8;
}

@media screen and (min-width: 768px) {
	.profile__title {
		line-height: 1.95;
	}
}

.profile__contents {
	border-radius: 1.5rem;
	-webkit-border-radius: 1.5rem;
	-moz-border-radius: 1.5rem;
	-ms-border-radius: 1.5rem;
	-o-border-radius: 1.5rem;
	padding: 30px 0;
	padding: 1.875rem 0;
	margin: 30px auto 0;
	margin: 1.875rem auto 0;
	width: 100%;
	max-width: 500px;
	max-width: 31.25rem;
}

@media screen and (min-width: 768px) {
	.profile__contents {
		background-color: #fff;
		-webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
		box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-top: 4.0625rem;
		padding: 5.0625rem 12% 2.0625rem 12.5%;
		max-width: 66.1875rem;
	}
}

.profile__wrap {
	max-width: 225px;
	margin: 0 auto;
	width: 100%;
}

@media screen and (min-width: 768px) {
	.profile__wrap {
		-ms-flex-negative: 0;
		flex-shrink: 0;
		width: 40%;
		margin-right: 9.5%;
	}
}

.profile__image {
	border-radius: 1.5rem;
}

.profile__company {
	margin-top: 40px;
	margin-top: 2.5rem;
	margin-left: -rem(2);
	margin-left: -rem(2);
	font-size: 20px;
	font-size: 1.25rem;
	text-align: center;
	font-weight: bold;
	letter-spacing: 0.02em;
}

@media screen and (min-width: 768px) {
	.profile__company {
		margin-top: 1.25rem;
		font-size: 1.25rem;
		line-height: 1.7;
	}
}

.profile__text {
	margin-top: 57px;
	margin-top: 3.5625rem;
	line-height: 1.7;
}

@media screen and (min-width: 768px) {
	.profile__text {
		font-size: 1.25rem;
		width: 60%;
		line-height: 1.7;
		letter-spacing: -0.01em;
		margin-top: -0.25rem;
	}
}

@media screen and (min-width: 768px) {
	.profile__button {
		margin-top: 5rem;
	}
}

.sample {
	background-color: #f2f2f2;
	padding-top: 57px;
	padding-top: 3.5625rem;
	padding-bottom: 59px;
	padding-bottom: 3.6875rem;
}

@media screen and (min-width: 768px) {
	.sample {
		padding-top: 2.5625rem;
		padding-bottom: 5rem;
	}
}

.sample__inner {
	width: 100%;
	max-width: 500px;
	max-width: 31.25rem;
	padding-right: 8px;
	padding-right: 0.5rem;
	padding-left: 8px;
	padding-left: 0.5rem;
	margin: 0 auto;
}

@media screen and (min-width: 768px) {
	.sample__inner {
		margin-top: 1.125rem;
		width: 100%;
		max-width: 80rem;
		padding: 0 6.25rem 0 6.4375rem;
	}
}

.sample__title {
	line-height: 1.8;
}

.sample__contents {
	margin: 48px auto 0;
	margin: 3rem auto 0;
	width: 100%;
	max-width: 500px;
	max-width: 31.25rem;
}

@media screen and (min-width: 768px) {
	.sample__contents {
		margin: 2.875rem auto 0;
		width: 100%;
		max-width: 80rem;
	}
}

.summary {
	padding-top: 54px;
	padding-top: 3.375rem;
	padding-bottom: 0px;
	padding-bottom: 0rem;
}

@media screen and (min-width: 768px) {
	.summary {
		padding-top: 3.25rem;
		padding-bottom: 5.4375rem;
	}
}

.summary__inner {
	width: 100%;
	max-width: 500px;
	max-width: 31.25rem;
	padding-right: 9px;
	padding-right: 0.5625rem;
	padding-left: 10px;
	padding-left: 0.625rem;
	margin: 0 auto;
}

@media screen and (min-width: 768px) {
	.summary__inner {
		width: 100%;
		max-width: 80rem;
		padding-right: 6.0625rem;
		padding-left: 6.25rem;
	}
}

.summary__title {
	line-height: 1.8;
}

.summary__contents {
	margin: 10px auto 0;
	margin: 0.625rem auto 0;
	width: 100%;
	max-width: 500px;
	max-width: 31.25rem;
}

@media screen and (min-width: 768px) {
	.summary__contents {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		width: 100%;
		max-width: 66.25rem;
	}
}

.summary__body {
	margin-top: 40px;
	margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
	.summary__body {
		width: 45%;
		max-width: 27.5rem;
		margin-top: 1.5rem;
		margin-right: 1.875rem;
	}
}

@media screen and (min-width: 768px) {
	.summary__body {
		margin-top: 0.625rem;
	}
}

.summary__image {
	margin-top: 52px;
	margin-top: 3.25rem;
}

@media screen and (min-width: 768px) {
	.summary__image {
		width: 50%;
		max-width: 31.25rem;
		-ms-flex-negative: 0;
		flex-shrink: 0;
		margin-top: 1.6875rem;
	}
}

.summary__items {
	width: 272px;
	width: 17rem;
	margin: 65px auto 61px;
	margin: 4.0625rem auto 3.8125rem;
}

@media screen and (min-width: 768px) {
	.summary__items {
		width: auto;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin: 8.125rem 0 0 1.3125rem;
	}
}

@media screen and (min-width: 1249px) {
	.summary__items {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}

.summary__item:nth-child(2) {
	margin-top: 18px;
	margin-top: 1.125rem;
}

@media screen and (min-width: 768px) {
	.summary__item:nth-child(2) {
		margin-top: 0;
	}
}

.summary__item:nth-child(3) {
	margin-top: 18px;
	margin-top: 1.125rem;
}

@media screen and (min-width: 768px) {
	.summary__item:nth-child(3) {
		margin-top: 0;
	}
}

.test {
	padding: 10px;
	margin: 0 auto;
	color: #f00;
	background-color: #fff;
}
