@charset "utf-8";

* {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


html {
	height: 100%;
	scroll-behavior: smooth;
}

body {
	color: #fff;
	background-color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	word-wrap: break-word;
	line-height: 1.8;
	font-size: 16px;
}

.mincho {
	font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

img {
	vertical-align: top;
}

a img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	-webkit-transition: .3s linear;
	-moz-transition: .3s linear;
	transition: .3s linear;
}

li {
	list-style-type: none;
}

a {
	color: #333;
	text-decoration: none;
	-webkit-transition: .3s linear;
	-moz-transition: .3s linear;
	transition: .3s linear;
}

.sp-br {
	display: none;
}

.pc-br {
	display: block;
}

@media (max-width: 599px) {
	body {
		font-size: .875rem;
	}

	.sp-br {
		display: block;
	}

	.pc-br {
		display: none;
	}
}

header {
	justify-content: unset;
	align-items: center;
	display: flex;
	top: 0;
	z-index: 100;
	width: 100%;
	height: 70px;
	position: fixed;
	padding: 0 30px;
	box-sizing: border-box;
	background-color: rgba(255, 255, 255, 0);
}

header .wrapper {
	display: flex;
	width: 100%;
	margin: auto 50px;
	justify-content: space-between;
	align-items: center;
}

header .wrapper a {
	color: #fff;
}

header.scrolled .wrapper a {
	color: #333;
}

header .wrapper .logo {
	display: flex;
	align-items: center;
	z-index: 400;
}

header .wrapper .logo h1 a {
	display: block;
	font-size: 20px;
}

header .wrapper .logo h1 a::before {
	content: "";
	display: inline-block;
	background-size: cover;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
	vertical-align: -2.5px;
	margin-right: 10px;
	background-image: url(/common/images/icon-07.png);
}

header.scrolled .wrapper .logo h1 a::before {
	background-image: url(/common/images/icon-07-b.png);
}

header .wrapper .logo h1 a:hover {
	opacity: .5;
}

header .wrapper .logo img {
	width: 120px;
	height: auto;
	display: flex;
}

header .wrapper nav .flex {
	display: flex;
	text-align: center;
}

header .wrapper nav li {
	margin-right: 50px;
	line-height: 1.5;
}

header .wrapper nav li:last-child {
	margin-right: 0;
}

header .wrapper nav ul li a {
	position: relative;
	padding: 10px 0;
	display: block;
}

header .wrapper nav ul li a:hover {
	opacity: .4;
}

header .wrapper nav ul li a::after {
	position: absolute;
	left: -5px;
	content: '';
	width: calc(100% + 10px);
	height: 2px;
	background: #fff;
	bottom: 3px;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.3s;
}

header .wrapper nav ul li a:hover::after {
	transform: scale(1, 1);
	transform-origin: left top;
}

@media (max-width: 1280px) {
	header {
		padding: 0 20px;
		font-size: .875rem;
	}

	header .wrapper .logo h1 {
		font-size: .625rem;
	}

	header .wrapper nav li {
		margin-right: 40px;
	}
}

@media (max-width: 1024px) {
	header {
		height: 50px;
	}

	header .wrapper {
		margin: auto;
	}

	header .wrapper .logo img {
		width: 75px;
	}

	header .wrapper nav ul li {
		margin-right: 0px;
		margin: 0 auto;
	}

	header .wrapper nav ul li:last-child {
		margin: 0 auto;
	}

	header .wrapper nav ul li a {
		width: 100vw;
		padding: 30px 0;
		margin: 0 auto;
		display: block;
	}

	header .wrapper nav ul li a:hover {
		background: rgba(255, 255, 255, .15);
		opacity: 1;
	}

	header.scrolled .wrapper nav ul li a:hover {
		background: rgba(0, 0, 0, .15);
		opacity: 1;
	}

	header .wrapper nav ul li a::after {
		display: none;
	}

	header #navi {
		overflow-y: auto;
		padding-top: 50px;
		width: 100%;
		height: 550px;
		z-index: 200;
		top: 0;
		right: -100%;
		background-color: #1f2937;
		position: fixed;
		flex-direction: column;
		align-items: baseline;
	}

	header.scrolled #navi {
		background-color: #fff;
	}

	header .nav_btn {
		width: 45px;
		height: 45px;
		z-index: 300;
		top: 50%;
		transform: translateY(-50%);
		right: 20px;
		cursor: pointer;
		position: absolute;
	}

	header .hamburger_line {
		transition: all 0.6s;
		width: 34px;
		height: 2px;
		left: 5px;
		background-color: #fff;
		position: absolute;
	}

	header.scrolled .hamburger_line {
		transition: all 0.6s;
		background-color: #333;
	}

	.hamburger_line1 {
		top: 10px;
	}

	.hamburger_line2 {
		top: 21px;
	}

	.hamburger_line3 {
		top: 32px;
	}

	.nav_bg {
		opacity: 0;
		transition: all 0.6s;
		width: 100vw;
		height: 100vh;
		z-index: 100;
		top: 0;
		left: 0;
		visibility: hidden;
		background-color: #000;
		cursor: pointer;
		position: fixed;
	}

	.nav_open header #navi {
		right: 0;
	}

	.nav_open .nav_bg {
		opacity: 0.3;
		visibility: visible;
	}

	.nav_open .hamburger_line1 {
		transform: rotate(45deg);
		top: 20px;
	}

	.nav_open .hamburger_line2 {
		width: 0;
		left: 50%;
	}

	.nav_open .hamburger_line3 {
		transform: rotate(-45deg);
		top: 20px;
	}
}

@media (max-width:599px) {
	header .wrapper .logo h1 a {
		display: block;
		font-size: 15px;
	}
}

.txt-cent {
	text-align: center;
}

.top-catch-zone {
	display: flex;
	align-items: center;
	padding: 80px 40px 40px;
	height: 400px;
	width: 100%;
	z-index: 1;
	background: linear-gradient(-225deg, #667de9 0%, #6d68cb 50%, #764ca4 100%);
}

.top-catch-zone .top-catch {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.top-catch-zone .top-catch h2 {
	font-size: 50px;
	letter-spacing: 1px;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 20px;
	letter-spacing: .05
}

.top-catch-zone .top-catch p {
	font-weight: 600;
	line-height: 2;
	letter-spacing: 1px;
	color: #fff;
	margin-bottom: 30px;
}

.top-catch-zone .top-catch ul {
	color: #fff;
	text-align: center;
	display: flex;
}

.top-catch-zone .top-catch ul li {
	background: rgba(255, 255, 255, .3);
	padding: 0 10px;
	border-radius: 25px;
	margin-right: 20px;
}

.top-catch-zone .top-catch ul li:last-child {
	margin-right: 0;
}

.top-catch-zone .top-catch ul li::before {
	content: "";
	display: inline-block;
	background-size: cover;
	background-repeat: no-repeat;
	width: 16px;
	height: 16px;
	vertical-align: -1.5px;
	margin-right: 5px;
}

.top-catch-zone .top-catch ul li:first-child::before {
	background-image: url(/common/images/icon-20.png);
}

.top-catch-zone .top-catch ul li:nth-child(2)::before {
	background-image: url(/common/images/icon-19.png);
}

.top-catch-zone .top-catch ul li:last-child::before {
	background-image: url(/common/images/icon-17.png);
}

@media (max-width:1024px) {
	.top-catch-zone {
		padding: 50px 20px 20px;
	}

	.top-catch-zone .top-catch {
		margin: auto;
	}

	.top-catch-zone .top-catch h2 {
		font-size: 30px;
	}

	.top-catch-zone .top-catch p {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.btn-basic a {
		font-size: .875rem;
	}
}

@media (max-width:324px) {

	.top-catch-zone .top-catch h2 {
		font-size: 25px;

	}

	.top-catch-zone .top-catch ul {
		flex-direction: column;
	}

	.top-catch-zone .top-catch ul li {
		margin-bottom: 10px;
		margin-right: 0;
	}

	.top-catch-zone .top-catch ul li:last-child {
		margin-bottom: 0;
	}
}

/*
メインコンテンツ
-------------------------------------------*/

main {
	width: 100%;
	background-color: #fff;
}

main .midashi {
	margin: 0 auto;
}



main .midashi h1,
main .midashi h3 {
	position: relative;
	padding: 0 0 10px;
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: 3px;
	line-height: 1.5;
	text-align: center;
}

main .midashi .desc {
	font-size: 1.25rem;
	text-align: center;
	color: #4b5563;
}

@media (max-width:599px) {

	main .midashi h1,
	main .midashi h3 {
		font-size: 1.5rem;
		letter-spacing: 2px;
	}

	main .midashi .desc {
		font-size: 1rem;
	}
}

main .contents-1 {
	padding: 50px;
	margin: 0 auto;
	width: 100%;
	background: #fff;
	color: #333;
}

main .contents-1 ul {
	display: flex;
	justify-content: center;
	align-items: stretch;
	margin: 40px auto 20px;
	padding: 0;
	width: 100%;
	max-width: 1500px;
}

main .contents-1 ul li {
	width: calc(33.333% - 20px);
	margin-right: 30px;
	background: #fff;
	padding: 30px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2), inset 0px 5px 0px 0px rgba(37, 99, 235, 1);
}

main .contents-1 ul li.-green {
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2), inset 0px 5px 0px 0px rgba(5, 150, 105, 1);
}

main .contents-1 ul li.-purple {
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2), inset 0px 5px 0px 0px rgba(124, 58, 237, 1);
}

main .contents-1 ul li:last-child {
	margin-right: 0;
}

main .contents-1 ul li h4 {
	font-size: 1.5rem;
	position: relative;
	margin-top: 70px;
}

main .contents-1 ul li h4::before {
	position: absolute;
	content: "";
	display: block;
	background: #dbeafe;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	top: -35px;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .contents-1 ul li.-green h4::before {
	background: #d1fae5;
}

main .contents-1 ul li.-purple h4::before {
	background: #ede9fe;
}

main .contents-1 ul li h4::after {
	position: absolute;
	content: "";
	display: block;
	background-image: url(/common/images/icon-06.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 50px;
	height: 50px;
	top: -35px;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .contents-1 ul li.-green h4::after {
	background-image: url(/common/images/icon-04.png);
}

main .contents-1 ul li.-purple h4::after {
	background-image: url(/common/images/icon-01.png);
}

main .contents-1 ul li .t-left {
	text-align: left;
}

main .contents-1 ul li .m0 {
	margin: 10px auto;
	background: #dbeafe;
	padding: 0 10px;
	border-radius: 25px;
	color: #1e40af;
	display: inline-block;
}



main .contents-1 ul li.-green .m0 {
	background: #d1fae5;
	color: #065f46;
}

main .contents-1 ul li.-purple .m0 {
	background: #ede9fe;
	color: #5b21b6;
}

main .contents-1 ul li .m1 {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 10px 0 0;
}

main .contents-1 ul li .m1::before {
	content: "";
	display: inline-block;
	background-size: cover;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	vertical-align: -7.5px;
	margin-right: 5px;
}

main .contents-1 ul li .m1.-one::before {
	background-image: url(/common/images/icon-21.png);
}

main .contents-1 ul li .m1.-two::before {
	background-image: url(/common/images/icon-18.png);
}

main .contents-1 ul li .m1.-three::before {
	background-image: url(/common/images/icon-05.png);
}

main .contents-1 ul li .m1.-four::before {
	background-image: url(/common/images/icon-22.png);
}

main .contents-1 ul li .m1.-five::before {
	background-image: url(/common/images/icon-16.png);
}

main .contents-1 ul li .m1.-six::before {
	background-image: url(/common/images/icon-03.png);
}

main .contents-1 ul li .t-left p {
	margin-left: 35px
}

@media (max-width:1024px) {
	main .contents-1 {
		padding: 30px 20px;
	}

	main .contents-1 ul li {
		width: calc(33.333% - 13.3px);
		margin-right: 20px;
		padding: 20px;
	}
}

@media (max-width:768px) {
	main .contents-1 ul {
		flex-direction: column;
		align-items: center;
	}

	main .contents-1 ul li {
		width: 100%;
		max-width: 500px;
		margin-right: 0;
		margin-bottom: 20px;
	}

	main .contents-1 ul li:last-child {
		margin-bottom: 0;
	}
}

@media (max-width:599px) {
	main .contents-1 ul {
		margin: 20px auto;
	}

	main .contents-1 ul li h4 {
		font-size: 1.25rem;
	}

	main .contents-1 ul li .m1 {
		font-size: 1rem;
	}
}

main .contents-2 {
	padding: 50px;
	margin: 0 auto;
	width: 100%;
	background: #fff;
	color: #333;
}

main .contents-2 .l-ul {
	margin: 40px auto;
	width: 100%;
	max-width: 1500px;
}

main .contents-2 .l-ul .l-li {
	margin: 0 auto 40px;
	background: #fff;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
}

main .contents-2 .l-ul .l-li .wrapper {
	width: 50%;
	margin-right: 30px;
}

main .contents-2 .l-ul .l-li .wrapper h4 {
	font-size: 1.5rem;
	margin-left: 50px;
	margin-bottom: 10px;
	position: relative;
}

main .contents-2 .l-ul .l-li .wrapper h4::before {
	position: absolute;
	content: "";
	display: block;
	background: #dbeafe;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	top: 50%;
	left: 0;
	transform: translate(-50px, -50%);
}

main .contents-2 .l-ul .l-li.-green .wrapper h4::before {
	background: #d1fae5;
}

main .contents-2 .l-ul .l-li.-purple .wrapper h4::before {
	background: #ede9fe;
}

main .contents-2 .l-ul .l-li .wrapper h4::after {
	position: absolute;
	content: "";
	display: block;
	background-image: url(/common/images/icon-06.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	top: 50%;
	left: 0;
	transform: translate(-45px, -50%);
}

main .contents-2 .l-ul .l-li.-green .wrapper h4::after {
	background-image: url(/common/images/icon-04.png);
}

main .contents-2 .l-ul .l-li.-purple .wrapper h4::after {
	background-image: url(/common/images/icon-01.png);
}

main .contents-2 .l-ul .l-li:first-child .wrapper.-two,
main .contents-2 .l-ul .l-li:nth-child(2n+1) .wrapper.-two {
	margin-right: 0;
}

main .contents-2 .l-ul .l-li .wrapper .desc {
	color: #4b5563;
	text-align: left;
	font-size: 1rem;
}

main .contents-2 .l-ul .l-li .wrapper .s-ul {
	color: #4b5563;
	margin: 20px 0 0;
}

main .contents-2 .l-ul .l-li .wrapper .s-ul li {
	position: relative;
	margin-left: 2.25rem;
}

main .contents-2 .l-ul .l-li .wrapper .s-ul li::before {
	content: "";
	display: block;
	position: absolute;
	width: 1rem;
	height: 0.5rem;
	border-left: 2px solid #2563eb;
	border-bottom: 2px solid #2563eb;
	top: .5rem;
	left: -2rem;
	transform: rotate(-45deg);
}

main .contents-2 .l-ul .l-li .wrapper .s-ul.-green li::before {
	border-left: 2px solid #059669;
	border-bottom: 2px solid #059669;
}

main .contents-2 .l-ul .l-li .wrapper .s-ul.-purple li::before {
	border-left: 2px solid #7c3aed;
	border-bottom: 2px solid #7c3aed;
}

main .contents-2 .l-ul .l-li .wrapper.-center {
	background: #eff6ff;
	text-align: center;
	padding: 30px;
	margin-top: 20px;
	margin-bottom: 20px;
	border-radius: 10px;
}

main .contents-2 .l-ul .l-li .wrapper.-center .texts {
	width: 100%;
}

main .contents-2 .l-ul .l-li .wrapper.-center h5 {
	color: #1e40af;
	font-size: 1.25rem;
	font-weight: 600;
	position: relative;
	margin-top: 50px;
}

main .contents-2 .l-ul .l-li .wrapper.-center h5::before {
	position: absolute;
	content: "";
	display: block;
	background-image: url(/common/images/icon-14.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 50px;
	height: 50px;
	top: -35px;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .contents-2 .l-ul .l-li .wrapper.-center.-green h5::before {
	background-image: url(/common/images/icon-22.png);
}

main .contents-2 .l-ul .l-li .wrapper.-center.-purple h5::before {
	background-image: url(/common/images/icon-12.png);
}

main .contents-2 .l-ul .l-li .wrapper.-center .desc-s {
	color: #2563eb;
}

main .contents-2 .l-ul .l-li .wrapper.-center.-green {
	background: #d1fae5;
}

main .contents-2 .l-ul .l-li .wrapper.-center.-green h5 {
	color: #065f46;
}

main .contents-2 .l-ul .l-li .wrapper.-center.-green .desc-s {
	color: #065f46;
}

main .contents-2 .l-ul .l-li .wrapper.-center.-purple {
	background: #f5f3ff;
}

main .contents-2 .l-ul .l-li .wrapper.-center.-purple h5 {
	color: #5b21b6;
}

main .contents-2 .l-ul .l-li .wrapper.-center.-purple .desc-s {
	color: #7c3aed;
}

main .contents-2 .l-ul .l-li:nth-child(2n) .wrapper.-one {
	order: 2;
	margin-right: 0;
}

main .contents-2 .l-ul .l-li:nth-child(2n) .wrapper.-two {
	order: 1;
}

@media (max-width: 1024px) {
	main .contents-2 {
		padding: 30px 20px;
	}

	main .contents-2 .l-ul .l-li {
		margin-bottom: 20px;
		padding: 20px;
	}

	main .contents-2 .l-ul .l-li:last-child {
		margin-bottom: 0;
	}
}

@media (max-width:768px) {
	main .contents-2 .l-ul .l-li {
		flex-direction: column;
		align-items: center;
		max-width: 500px;
	}

	main .contents-2 .l-ul .l-li .wrapper {
		width: 100%;
		margin-right: 0px;
		margin-bottom: 10px;
	}

	main .contents-2 .l-ul .l-li .wrapper.-center {
		margin-bottom: 0;
		padding: 40px;
	}

	main .contents-2 .l-ul .l-li:nth-child(2n) .wrapper.-one {
		order: 1;
	}

	main .contents-2 .l-ul .l-li:nth-child(2n) .wrapper.-two {
		order: 2;
	}
}

@media (max-width: 599px) {
	main .contents-2 .l-ul {
		margin: 20px auto;
	}

	main .contents-2 .l-ul .l-li .wrapper h4 {
		font-size: 1.25rem;
	}

	main .contents-2 .l-ul .l-li .wrapper .s-ul li::before {
		width: .875rem;
		height: .5rem;
		top: .4rem;
		left: -1.875rem;
	}
}

main .contents-3 {
	padding: 50px;
	margin: 0 auto;
	width: 100%;
	background: #f3f4f6;
	color: #1f2937;
}

main .contents-3 .l-ul {
	display: flex;
	justify-content: center;
	align-items: stretch;
	margin: 40px auto;
	padding: 0;
	width: 100%;
	max-width: 1500px;
}

main .contents-3 .l-ul li {
	width: calc(33.333% - 20px);
	margin-right: 30px;
	background: #f9fafb;
	padding: 30px;
	border-radius: 20px;
	box-shadow: -5px 0px 0px 0px rgba(102, 126, 234, 1);
	text-align: center;
}

main .contents-3 .l-ul li:last-child {
	margin-right: 0;
}

main .contents-3 .l-ul li h4 {
	font-weight: 600;
	font-size: 1.25rem;
	position: relative;
	margin-top: 80px;
}

main .contents-3 .l-ul li h4::before {
	position: absolute;
	content: "";
	display: block;
	background: #dbeafe;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	top: -45px;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .contents-3 .l-ul li.-green h4::before {
	background: #d1fae5;
}

main .contents-3 .l-ul li.-purple h4::before {
	background: #ede9fe;
}

main .contents-3 .l-ul li h4::after {
	position: absolute;
	content: "";
	display: block;
	background-image: url(/common/images/icon-13.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 50px;
	height: 50px;
	top: -45px;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .contents-3 .l-ul li.-green h4::after {
	background-image: url(/common/images/icon-11.png);
}

main .contents-3 .l-ul li.-purple h4::after {
	background-image: url(/common/images/icon-15.png);
}

main .contents-3 .l-ul li p {
	margin: 10px 0;
}

main .contents-3 .l-ul li .m0 {
	background: #dbeafe;
	padding: 0 10px;
	border-radius: 25px;
	color: #1e40af;
	display: inline-block;
}

main .contents-3 .l-ul li .m0.-green {
	background: #d1fae5;
	color: #065f46;
}

main .contents-3 .l-ul li .m0.-purple {
	background: #ede9fe;
	color: #5b21b6;
}

main .contents-3 .s-cont {
	width: 100%;
	max-width: 1500px;
	padding: 30px;
	margin: 0 auto;
	border-radius: 20px;
	background: linear-gradient(-225deg, #2663eb 0%, #504fec 50%, #7a3aed 100%);
	color: #fff;
	text-align: center;
	margin-bottom: 40px;
}

main .contents-3 .s-cont h5 {
	padding: 0 0 10px;
	font-size: 1.75rem;
	font-weight: 600;
	letter-spacing: 3px;
	line-height: 1.5;
}

main .contents-3 .s-cont .s-ul {
	display: flex;
	margin: 20px auto 0;
	padding: 0;
	width: 100%;
}

main .contents-3 .s-cont .s-ul li {
	width: calc(33.333% - 20px);
	margin-right: 30px;
}

main .contents-3 .s-cont .s-ul li:last-child {
	margin-right: 0;
}

main .contents-3 .s-cont .s-ul li .percent {
	font-size: 2rem;
	font-weight: 600;
}

@media (max-width:1024px) {
	main .contents-3 {
		padding: 30px 20px;
	}

	main .contents-3 .l-ul li {
		width: calc(33.333% - 13.3px);
		margin-right: 20px;
		padding: 20px;
		border-radius: 20px;
	}
}

@media (max-width:768px) {
	main .contents-3 .l-ul {
		flex-direction: column;
		align-items: center;
	}

	main .contents-3 .l-ul li {
		width: 100%;
		max-width: 500px;
		margin-right: 0;
		margin-bottom: 20px;
	}

	main .contents-3 .l-ul li:last-child {
		margin-bottom: 0;
	}

	main .contents-3 .s-cont {
		max-width: 500px;
		padding: 20px;
		margin-bottom: 20px;
	}
}

@media (max-width:599px) {
	main .contents-3 .l-ul {
		margin: 20px auto;
	}

	main .contents-3 .l-ul li h4 {
		font-size: 1rem;
	}

	main .contents-3 .s-cont h5 {
		font-size: 1.375rem;
		letter-spacing: 2px;
	}

	main .contents-3 .s-cont .s-ul li .percent {
		font-size: 1.5rem;
	}
}

@media (max-width:399px) {
	main .contents-3 .s-cont .s-ul {
		flex-direction: column;
		align-items: center;
	}

	main .contents-3 .s-cont .s-ul li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}

	main .contents-3 .s-cont .s-ul li:last-child {
		margin-bottom: 0;
	}
}

main .contents-4 {
	padding: 50px;
	margin: 0 auto;
	width: 100%;
	background: #f3f4f6;
	color: #1f2937;
}

main .contents-4 ul {
	display: flex;
	margin: 40px auto;
	max-width: 1000px;
}

main .contents-4 ul li.form {
	width: calc(50% - 15px);
	margin-right: 30px;
	padding: 30px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
}

main .contents-4 ul li.form h4 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 20px;
}

dl {
	margin-bottom: 20px;
}

dt {
	font-weight: 600;
}

i {
	font-style: normal;
}

.required {
	color: #ef4444;
}

input::placeholder {
	color: #9ca3af;
	font-size: .85rem;
	font-weight: bold;
}

textarea {
	border: none;
	width: 100%;
	height: 200px;
	padding: 10px;
	border: 1px solid #d1d5db;
	resize: vertical;
	/* 横方向のみサイズを固定する */
	border-radius: 5px;
}

textarea::placeholder {
	color: #9ca3af;
	font-size: .85rem;
	font-weight: bold;
}

input[type="text"],
input[type="email"] {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 40px;
	padding: 10px;
	border: 1px solid #d1d5db;
	border-radius: 5px;
}

#form_submit {
	position: relative;
}

#form_submit::before {
	position: absolute;
	content: "";
	display: block;
	background-image: url(/common/images/icon-02.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	top: 31px;
	right: 20px;
	transform: translate(0%, -50%);
}

.submit-button {
	box-sizing: border-box;
	display: block;
	margin: 20px auto;
	cursor: pointer;
	background: linear-gradient(-225deg, #fd6964 0%, #f05c2d 100%);
	color: #fff;
	text-align: center;
	text-decoration: none;
	outline: none;
	-webkit-transition: all .3s;
	transition: all .5s;
	padding: 20px;
	font-size: 1rem;
	font-weight: 600;
	width: 100%;
	border: none;
	border-radius: 5px;
}

.submit-button:hover {
	opacity: .5;
}

/* -- error message -- */

form#mail_form dl dd span.error_blank,
form#mail_form dl dd span.error_format,
form#mail_form dl dd span.error_match {
	display: block;
	color: #ef4444;
	margin-top: 5px;
}

main .contents-4 ul li.other {
	width: calc(50% - 15px);
}

main .contents-4 ul li.other .wrapper {
	width: 100%;
	background: #fff;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
	margin-bottom: 30px;
}

main .contents-4 ul li.other .wrapper h4 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 20px;
}

main .contents-4 ul li.other .wrapper h4::before {
	content: "";
	display: inline-block;
	background-size: cover;
	background-repeat: no-repeat;
	width: 25px;
	height: 25px;
	vertical-align: -4.5px;
	margin-right: 10px;
}

main .contents-4 ul li.other .wrapper.-tel h4::before {
	background-image: url(/common/images/icon-09.png);
}

main .contents-4 ul li.other .wrapper.-schedule h4::before {
	background-image: url(/common/images/icon-08.png);
}

main .contents-4 ul li.other .wrapper .tel-num {
	font-size: 1.75rem;
	font-weight: 600;
	color: #2563eb
}

main .contents-4 ul li.other .wrapper ol {
	counter-reset: my-counter;
	list-style: none;
	padding: 0;
	margin: 0;
}

main .contents-4 ul li.other .wrapper ol li {
	padding-left: 50px;
	position: relative;
	line-height: 1.5;
	margin-bottom: 15px;
	font-size: 1.25rem;
}

main .contents-4 ul li.other .wrapper ol li:last-child {
	margin-bottom: 0;
}

main .contents-4 ul li.other .wrapper ol li:before {
	content: counter(my-counter);
	counter-increment: my-counter;
	background-color: #dbeafe;
	border-radius: 50%;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 30px;
	width: 30px;
	color: #1e40af;
	font-size: 85%;
	line-height: 1;
	position: absolute;
	top: 0;
	left: 0;
}

main .contents-4 ul li.other .wrapper h5 {
	font-size: 1rem;
	font-weight: 600;
	text-align: left;
}

main .contents-4 ul li.other .wrapper p {
	text-align: left;
}

main .contents-4 ul li.other .wrapper-2 {
	width: 100%;
	background: linear-gradient(90deg, #f7be2a 0%, #d4ba79 50%, #fff 100%);
	padding: 30px;
	border-radius: 20px;
	color: #fff;
	text-align: center;
}

main .contents-4 ul li.other .wrapper-2 h4 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 10px;
	margin-top: 40px;
	position: relative;
}

main .contents-4 ul li.other .wrapper-2 h4::before {
	position: absolute;
	content: "";
	display: block;
	background-image: url(/common/images/icon-10.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	top: -25px;
	left: 50%;
	transform: translate(-50%, -50%);
}


@media (max-width:1024px) {
	main .contents-4 {
		padding: 30px 20px;
	}

	main .contents-4 ul li.form {
		width: calc(50% - 10px);
		margin-right: 20px;
		padding: 20px;
	}

	main .contents-4 ul li.other {
		width: calc(50% - 10px);
	}

	main .contents-4 ul li.other .wrapper {
		padding: 20px;
		margin-bottom: 20px;
	}
}

@media (max-width:768px) {
	main .contents-4 ul {
		flex-direction: column;
		align-items: center;
		max-width: 500px;
	}

	main .contents-4 ul li.form {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}

	main .contents-4 ul li.other {
		width: 100%;
	}

	main .contents-4 ul li.other .wrapper h4 {
		text-align: center;
	}

	main .contents-4 ul li.other .wrapper.-tel {
		text-align: center;
	}

	main .contents-4 ul li.other .wrapper.-tel h4 {
		margin-bottom: 0;
	}

}

@media(max-width:599px) {
	main .contents-4 ul {
		margin: 20px auto;
	}

	main .contents-4 ul li.form h4 {
		font-size: 1.25rem;
	}

	main .contents-4 ul li.other .wrapper h4 {
		font-size: 1rem;
	}

	main .contents-4 ul li.other .wrapper h5 {
		font-size: .875rem;
	}

	main .contents-4 ul li.other .wrapper .tel-num {
		font-size: 1.5rem;
	}

	main .contents-4 ul li.other .wrapper ol li {
		padding-left: 30px;
		font-size: 1rem;
		line-height: 1.2;
	}

	main .contents-4 ul li.other .wrapper ol li:before {
		height: 20px;
		width: 20px;
	}

}

main .contents-thanks {
	padding: 100px 50px 50px;
	width: 100%;
	background: #f3f4f6;
	color: #1f2937;
}

main .contents-thanks .wrapper {
	margin: 20px auto;
	width: 100%;
	max-width: 600px;
}

main .contents-thanks .wrapper .-tel {
	width: 100%;
	max-width: 500px;
	background: #fff;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
	margin: 30px auto;
	text-align: center;
}

main .contents-thanks .wrapper .-tel h4 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0;
}

main .contents-thanks .wrapper .-tel h4::before {
	content: "";
	display: inline-block;
	background-size: cover;
	background-repeat: no-repeat;
	width: 25px;
	height: 25px;
	vertical-align: -4.5px;
	margin-right: 10px;
}

main .contents-thanks .wrapper .-tel h4::before {
	background-image: url(/common/images/icon-09.png);
}

main .contents-thanks .wrapper .-tel .tel-num {
	font-size: 1.75rem;
	font-weight: 600;
	color: #2563eb;
}

main .contents-thanks .wrapper .-tel h5 {
	font-size: 1rem;
	font-weight: 600;
	text-align: left;
}

main .contents-thanks .wrapper .-tel p {
	text-align: left;
}

@media (max-width: 1024px) {
	main .contents-thanks {
		padding: 80px 20px 20px;
	}
}

@media (max-width: 599px) {
	main .contents-thanks .wrapper .-tel h4 {
		font-size: 1rem;
	}

	main .contents-thanks .wrapper .-tel h5 {
		font-size: .875rem;
	}

	main .contents-thanks .wrapper .-tel h4 {
		font-size: 1rem;
	}
}

/* reCAPTCHAバッジを非表示にする */
.grecaptcha-badge {
	visibility: hidden;
}

@media (max-width:1024px) {}

@media (max-width:768px) {}

@media (max-width:599px) {}

.top-back-btn {
	position: fixed;
	z-index: 99;
	bottom: 0px;
	right: 0px;
}

.top-back-btn a {
	width: 80px;
	height: 80px;
	text-decoration: none;
	text-align: center;
	display: inline-block;
	background-color: #fff;
	color: #131313;
	font-size: 2rem;
	padding: 10px;
}

.top-back-btn a:hover {
	opacity: .5;
}

footer {
	background-color: #1f2937;
	color: #9ca3af;
	clear: both;
	width: 100%;
	display: block;
	padding: 30px 50px;
	margin: 0 auto;
	text-align: center;
}

footer .wrapper {
	display: flex;
}

footer .wrapper .logo {
	margin: 0 auto;
}

footer .wrapper .logo .title {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 600;
}

footer .wrapper .logo .title::before {
	content: "";
	display: inline-block;
	background-image: url(/common/images/icon-07.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 25px;
	height: 25px;
	vertical-align: -3.5px;
	margin-right: 10px;
}

footer #copyright {
	margin: 50px auto 0;
	text-align: center;
}

@media (max-width:1024px) {
footer {
	padding: 30px 50px 90px;
}
}

@media (max-width:768px) {
	footer .logo img {
		width: 150px;
	}

	footer #copyright {
		margin: 20px auto 0;
	}
}

@media (max-width:599px) {
	footer {
		padding: 20px 20px 80px;
	}

	footer nav .flex {
		margin-top: 25px;
		flex-direction: column;
	}

	footer .wrapper {
		flex-direction: column;
	}

	footer .wrapper .logo .title {
		font-size: 1.25rem;
	}
}

main .contents-15 {
	padding: 50px;
	margin: 0 auto;
	width: 100%;
	background: #f3f4f6;
	color: #1f2937;
}

main .contents-15 ul {
	margin: 40px auto 20px;
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

main .contents-15 ul li {
	width: 100%;
	margin-bottom: 30px;
	background: #fff;
	padding: 30px;
	border-radius: 20px;
	text-align: left;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
}

main .contents-15 ul li:last-child {
	margin-bottom: 0;
}

main .contents-15 ul li h4 {
	font-size: 1.5rem;
	position: relative;
	margin-left: 50px;
	margin-bottom: 10px;
}

main .contents-15 ul li h4::before {
	position: absolute;
	content: "";
	display: block;
	background: #dbeafe;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	top: 50%;
	left: 0;
	transform: translate(-50px, -50%);
}

main .contents-15 ul li.-green h4::before {
	background: #d1fae5;
}

main .contents-15 ul li.-purple h4::before {
	background: #ede9fe;
}

main .contents-15 ul li h4::after {
	position: absolute;
	content: "";
	display: block;
	background-image: url(/common/images/icon-06.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	top: 50%;
	left: 0;
	transform: translate(-45px, -50%);
}

main .contents-15 ul li.-green h4::after {
	background-image: url(/common/images/icon-04.png);
}

main .contents-15 ul li.-purple h4::after {
	background-image: url(/common/images/icon-01.png);
}

main .contents-15 ul li .image {
	width: 100%;
	max-width: 1000px;
	margin: 30px auto 0;
	text-align: center;
}

main .contents-15 ul li .image p {
	margin: 10px auto 0;
	font-size: .875rem;
}

main .contents-15 ul li .thumbnail {
	width: 100%;
	height: 500px;
	display: inline-block;
	background-color: #dbeafe;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

main .contents-15 ul li.-green .thumbnail {
	background-color: #d1fae5;
}

main .contents-15 ul li.-purple .thumbnail {
	background-color: #ede9fe;
}

@media (max-width:1024px) {
	main .contents-15 {
		padding: 30px 20px;
	}

	main .contents-15 ul li {
		padding: 20px;
		margin-bottom: 20px;
	}

	main .contents-15 ul li .image {
		margin: 20px auto 0;
	}
}

@media (max-width:768px) {
	main .contents-15 ul li {
		width: 100%;
		max-width: 500px;
		margin-right: 0;
		margin-bottom: 20px;
	}

	main .contents-15 ul li:last-child {
		margin-bottom: 0;
	}

	main .contents-15 ul li .thumbnail {
		height: 250px;
	}
}

@media (max-width:599px) {
	main .contents-15 ul {
		margin: 20px auto;
	}

	main .contents-15 ul li h4 {
		font-size: 1.25rem;
	}

	main .contents-15 ul li .thumbnail {
		height: 150px;
	}

	main .contents-15 ul li .image p {
		margin: 10px auto 0;
		font-size: .75rem;
	}
}

main .contents-35 {
	padding: 50px;
	margin: 0 auto;
	width: 100%;
	background: #fff;
	color: #333;
}

main .contents-35 .l-ul {
	display: flex;
	justify-content: center;
	align-items: stretch;
	margin: 40px auto;
	padding: 0;
	width: 100%;
	max-width: 1500px;
}

main .contents-35 .l-ul li {
	width: calc(33.333% - 20px);
	margin-right: 30px;
	background: #f9fafb;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
	text-align: left;
}

main .contents-35 .l-ul li:last-child {
	margin-right: 0;
}

main .contents-35 .l-ul li h4 {
	font-size: 1.5rem;
	position: relative;
	margin-left: 50px;
	margin-bottom: 10px;
}

main .contents-35 .l-ul li h4::before {
	position: absolute;
	content: "";
	display: block;
	background: #dbeafe;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	top: 50%;
	left: 0;
	transform: translate(-50px, -50%);
}

main .contents-35 .l-ul li.-green h4::before {
	background: #d1fae5;
}

main .contents-35 .l-ul li.-purple h4::before {
	background: #ede9fe;
}

main .contents-35 .l-ul li h4::after {
	position: absolute;
	content: "";
	display: block;
	background-image: url(/common/images/icon-06.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	top: 50%;
	left: 0;
	transform: translate(-45px, -50%);
}

main .contents-35 .l-ul li.-green h4::after {
	background-image: url(/common/images/icon-04.png);
}

main .contents-35 .l-ul li.-purple h4::after {
	background-image: url(/common/images/icon-01.png);
}

main .contents-35 .l-ul li table {
	width: 100%;
	border-collapse: collapse;
}

main .contents-35 .l-ul li table tr {
	border: solid 1px #d1d5db;
	border-left: none;
	border-right: none;
}

main .contents-35 .l-ul li table td {
	text-align: right;
	padding: 10px 0 10px 10px;
}

main .contents-35 .l-ul li table th {
	padding: 10px 10px 10px 0;
}

main .contents-35 .l-ul li .price {
	font-size: 1.5rem;
	font-weight: 600;
	color: #1e40af;
	text-align: right;
}

main .contents-35 .l-ul li.-green .price {
	color: #065f46;
}

main .contents-35 .l-ul li.-purple .price {
	color: #5b21b6;
}

main .contents-35 .l-ul li .price span {
	font-size: .875rem;
	color: #333;
	margin-left: 10px;
}

@media (max-width:1024px) {
	main .contents-35 {
		padding: 30px 20px;
	}

	main .contents-35 .l-ul li {
		width: calc(33.333% - 13.3px);
		margin-right: 20px;
		padding: 20px;
		border-radius: 20px;
	}
}

@media (max-width:768px) {
	main .contents-35 .l-ul {
		flex-direction: column;
		align-items: center;
	}

	main .contents-35 .l-ul li {
		width: 100%;
		max-width: 500px;
		margin-right: 0;
		margin-bottom: 20px;
	}

	main .contents-35 .l-ul li:last-child {
		margin-bottom: 0;
	}
}

@media (max-width:599px) {
	main .contents-35 .l-ul {
		margin: 20px auto;
	}

	main .contents-35 .l-ul li h4 {
		font-size: 1rem;
	}

	main .contents-35 .s-cont h5 {
		font-size: 1.375rem;
		letter-spacing: 2px;
	}

	main .contents-35 .s-cont .s-ul li .percent {
		font-size: 1.5rem;
	}
}

@media (max-width:399px) {
	main .contents-35 .s-cont .s-ul {
		flex-direction: column;
		align-items: center;
	}

	main .contents-35 .s-cont .s-ul li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}

	main .contents-35 .s-cont .s-ul li:last-child {
		margin-bottom: 0;
	}
}

.btn-basic a {
	color: #fff;
	background: linear-gradient(-225deg, #667de9 0%, #6d68cb 50%, #764ca4 100%);
	margin: 20px auto;
	padding: 10px 30px;
	clear: both;
	display: block;
	text-align: center;
	text-decoration: none;
	width: 100%;
	font-size: 1rem;
	border-radius: 5px;
	font-weight: 600;
}

.btn-basic a:hover {
	opacity: .8;
}

.cta-btn a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: fixed;
	color: #fff;
	text-align: center;
	bottom: 0;
	margin: 0;
	width: 100%;
	height: 60px;
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: 3%;
	background: linear-gradient(-225deg, #2663eb 0%, #504fec 50%, #7a3aed 100%);
	;
}

.cta-btn a:hover {
	opacity: .8;
}

@media (min-width: 1025px) {
	.cta-btn a {
		display: none;
	}
}

@media (min-width: 600px) {
	.sp {
		display: none;
	}
}

@media (max-width: 1024px) {
	body.fixed {
		overflow: hidden;
	}

	.pc {
		display: none;
	}

	.top-back-btn {
		display: none;
	}
}

@media (max-width: 599px) {
	.btn-basic a {
		font-size: .875rem;
	}
}

/*
エフェクト
-------------------------------------------*/
.fuwa {
	opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha( opacity=0 )";
	transform: translateY(20px);
	-webkit-transform: translateY(20px);
	-moz-transform: translateY(20px);
	-webkit-transition: 1.0s ease-out;
	-moz-transition: 1.0s ease-out;
	transition: 1.0s ease-out;
}

.fuwa.delay-02 {
	transition-delay: .2s;
	-webkit-transition-delay: .2s;
}

.fuwa.delay-04 {
	transition-delay: .4s;
	-webkit-transition-delay: .4s;
}

.fuwa.delay-06 {
	transition-delay: .6s;
	-webkit-transition-delay: .6s;
}

.fuwa.delay-08 {
	transition-delay: .8s;
	-webkit-transition-delay: .8s;
}

.fuwa.delay-10 {
	transition-delay: 1s;
	-webkit-transition-delay: 1s;
}

.fuwa.delay-12 {
	transition-delay: 1.2s;
	-webkit-transition-delay: 1.2s;
}

.fuwa.delay-16 {
	transition-delay: 1.6s;
	-webkit-transition-delay: 1.6s;
}

.fuwa.delay-18 {
	transition-delay: 1.8s;
	-webkit-transition-delay: 1.8s;
}

.fuwa.delay-20 {
	transition-delay: 2s;
	-webkit-transition-delay: 2s;
}

.fuwa.delay-24 {
	transition-delay: 2.4s;
	-webkit-transition-delay: 2.4s;
}

.fuwa.start {
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
	transform: translateY(0px);
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
}

.lr-move {
	opacity: 0;
	filter: alpha(opacity=0);
	transform: translateX(-200px);
	-webkit-transform: translateX(-200px);
	-moz-transform: translateX(-200px);
	-webkit-transition: 1.0s ease-out;
	-moz-transition: 1.0s ease-out;
	transition: 1.0s ease-out;
}

.lr-move.delay-04 {
	transition-delay: .4s;
	-webkit-transition-delay: .4s;
}

.lr-move.delay-08 {
	transition-delay: .8s;
	-webkit-transition-delay: .8s;
}

.lr-move.delay-12 {
	transition-delay: 1.2s;
	-webkit-transition-delay: 1.2s;
}

.lr-move.start {
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
	transform: translateX(0px);
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
}

/*------------------------------*/