@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;700&family=Roboto:wght@400;700&display=swap');
/* --------------------------------------------------
	CSS Reset
-------------------------------------------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-weight: normal;
	font-family: 'Noto Serif JP', serif;
	color: #333;
	letter-spacing: 0.02em;
	vertical-align: baseline;
	background: transparent;
}
body {
	position: relative;
	line-height: 1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display: block;
}
ul,ol {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	transition: all 0.2s linear;
}
a:link,
a:visited {
	color: #333;
	text-decoration: none;
}
a:hover,
a:active {
	color: #333;
	text-decoration: underline;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}
input, select {
	vertical-align: middle;
}
img {
	vertical-align: top;
	width: 100%;
}

/* --------------------------------------------------
	Clearfix
-------------------------------------------------- */
.clearfix:after {
	content: '';
	display: block;
	clear: both;
}
.clearfix { *zoom: 1; }

/* --------------------------------------------------
	.pagetop
-------------------------------------------------- */
.pagetop {
	position: fixed;
	right: 50px;
	bottom: 0;
	z-index: 100;
	width: 70px;
}
.pagetop a { transition: 0.2s linear; }
.pagetop a:hover { opacity: 0.7; }
@media screen and (max-width: 768px) {
	.pagetop {
		right: 0;
		width: 10.6667vw;
	}
}

/* --------------------------------------------------
	.anchor
-------------------------------------------------- */
.anchor { transform: translate(0,-70px); }
@media screen and (max-width: 768px) {
	.anchor { transform: translate(0,-20vw); }
}
/* --------------------------------------------------
	.inner
-------------------------------------------------- */
.inner {
	position: relative;
	margin: 0 auto;
	padding: 0 40px;
	max-width: 1280px;
	box-sizing: border-box;
}
@media screen and (max-width: 768px) {
	.inner {
		padding: 0;
	}
}

/* --------------------------------------------------
	br,span
-------------------------------------------------- */
br.sp,
span.sp { display: none; }
@media screen and (max-width: 768px) {
	br.pc,
	span.pc { display: none; }
	br.sp,
	span.sp { display: inline-block; }
}

/* --------------------------------------------------
	#header
-------------------------------------------------- */
#header {
	position: absolute;
	left: 0;
	top: 600px;
	z-index: 1000;
	width: 100%;
	height: 80px;
	background: #fff;
	transition: height 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
#header.fixed {
	position: fixed;
	top: 0;
}
#header .logo {
	position: absolute;
	left: 40px;
	top: 28px;
	z-index: 2;
	width: 200px;
	transition: top 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
#header .menuBtn {
	display: none;
	cursor: pointer;
}
#header nav {
	margin-left: 222px;
	width: 816px;
}
#header nav ul {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
#header nav ul li {
	width: 20%;
	height: 80px;
	box-sizing: border-box;
	transition: height 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
#header nav ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	line-height: 1;
	color: #004DA0;
	text-decoration: none;
}
#header nav ul li a:hover {
	background-color: #004DA0;
	color: #FFF;
}
@media screen and (max-width: 1080px) {
	#header .logo {
		left: 20px;
	}
	#header nav {
		margin-left: 202px;
		width: 74%;
	}
}
@media screen and (max-width: 768px) {
	body { padding-top: 20vw; }
	#header,
	#header.fixed {
		position: fixed;
		top: 0;
		height: 20vw;
	}
	#header .inner { height: 20vw; }
	#header .logo,
	#header.fixed .logo {
		left: 4.5334vw;
		top: 7.6vw;
		width: 44vw;
	}
	#header .menuBtn {
		position: absolute;
		right: 0;
		top: 0;
		display: block;
		width: 20vw;
		height: 20vw;
		transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	}
	#header .menuBtn span {
		position: absolute;
		left: 50%;
		top: 50%;
		width: 9.3334vw;
		height: 0.8vw;
		background: #004DA0;
		transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	}
	#header .menuBtn span:nth-child(1) { transform: translate(-50%,-2.4vw); }
	#header .menuBtn span:nth-child(2) { transform: translate(-50%,0); }
	#header .menuBtn span:nth-child(3) { transform: translate(-50%,2.4vw); }
	#header.close .menuBtn { background: #fff; }
	#header.close .menuBtn span { background: #004DA0; }
	#header.close .menuBtn span:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); }
	#header.close .menuBtn span:nth-child(2) { opacity: 0; }
	#header.close .menuBtn span:nth-child(3) { transform: translate(-50%,-50%) rotate(-45deg); }
	#header nav {
		padding-top: 20vw;
		width: 100%;
		overflow: hidden;
		pointer-events: none;
	}
	#header.close nav {
		margin-left: 0;
		pointer-events: auto;
	}
	#header nav ul {
		display: block;
		padding: 13.3334vw 0;
		width: 100%;
		background: rgba(0,174,235,0.95);
		transform: translate(100%,0);
		transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	}
	#header.close nav ul {
		transform: translate(0,0);
	}
	#header nav ul li {
		width: 100%;
		height: 16vw;
	}
	#header nav ul li a {
		font-size: 4.2667vw;
		color: #FFF;
		text-align: center;
	}
}

/* --------------------------------------------------
	#register
-------------------------------------------------- */
#register {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1000;
	width: 200px;
	height: 163x;
}
#register .registerBase {
	margin: 0 0 0 auto;
	padding: 25px 0 28px;
	width: 100%;
	height: 100%;
	background: #004DA0;
	box-sizing: border-box;
}
#register .registerBase p {
	margin: 0 auto 10px;
	width: 143px;
}
#register .registerBase .btn {
	margin: 0 auto;
	width: 180px;
	height: 60px;
}
#register .registerBase .btn a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 16px 0.1em 0;
	width: 100%;
	height: 100%;
	background: #fff;
	box-sizing: border-box;
	box-shadow: 2px 2px 0 rgba(0,0,0,0.4);
	font-size: 13px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	line-height: 1;
	color: #004DA0;
}
#register .registerBase .btn a:after {
	content: '';
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translate(0,-50%);
	display: block;
	width: 16px;
	height: 16px;
	background: url("../img/icon_arrow_r_n.svg") no-repeat;
	background-size: contain;
}
#register .registerBase .btn a:hover {
	opacity: 0.7;
	text-decoration: none;
}
@media screen and (max-width: 1050px) {
	#register {
		top: 0;
	}
	#register.fixed {
		top: 80px;
	}
}
@media screen and (max-width: 768px) {
	#register,
	#register.fixed {
		left: 53.3334vw;
		top: 0;
		width: 26.6667vw;
		height: 20vw;
	}
	#register .registerBase {
		padding: 0;
		width: 100%;
		height: 100%;
	}
	#register .registerBase p { display: none; }
	#register .registerBase .btn {
		width: 100%;
		height: 100%;
	}
	#register .registerBase .btn a {
		padding: 0;
		background-color: #004DA0;
		box-shadow: none;
		font-size: 2.9334vw;
		line-height: 1.8;
		color: #fff;
		text-align: center;
	}
	#register .registerBase .btn a:after {
		display: none;
	}
}

/* --------------------------------------------------
	#mainContents
-------------------------------------------------- */
#mainContents {
	max-width: 100%;
	overflow: hidden;
}
@media screen and (max-width: 768px) {
	#mainContents {
		max-width: 100vw;
	}
}

/* --------------------------------------------------
	.main
-------------------------------------------------- */
.main {
	margin-bottom: 180px;
	height: 600px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
}
.main .inner { padding-top: 165px; }
.main h1 {
	margin-left: 40px;
	font-size: 36px;
	font-weight: 500;
	line-height: 1.6;
	color: #000;
	opacity: 0;
	transform: translate(5%,0);
	transition: all 1s cubic-bezier(.21,1.05,.8,.98) 1s;
}
.main h1 small {
	display: block;
	margin-top: 1em;
	font-size: 17px;
	line-height: 2;
	color: #333;
	opacity: 0;
	transform: translate(5%,0);
	transition: all 1s cubic-bezier(.21,1.05,.8,.98) 1.5s;
}
.main h1 small strong {
	font-weight: 700;
}
.main.delighter.started h1,
.main.delighter.started h1 small {
	opacity: 1;
	transform: none;
}
@media screen and (min-width: 769px) {
	.main {
		background-image: url("../img/main_bg.jpg");
	}
}
@media screen and (max-width: 1440px) {
	.main { background-size: 1440px auto; }
}
@media screen and (max-width: 768px) {
	.main {
		margin-bottom: 10.6667vw;
		height: auto;
		background-image: url("../img/sp_main_bg.jpg");
		background-position: center top;
		background-size: 100% auto;
	}
	.main .inner { padding-top: 81.3334vw; }
	.main h1 {
		margin-left: 8.6667vw;
		font-size: 7.8667vw;
		line-height: 1.35;
	}
	.main h1 small {
		margin-top: 2em;
		font-size: 3.7334vw;
	}
}

/* --------------------------------------------------
	section h2,.lead
-------------------------------------------------- */
section h2 {
	margin-bottom: 36px;
	padding-bottom: 8px;
	border-bottom: #004DA0 1px solid;
	font-size: 10px;
	line-height: 1;
}
section .lead {
	font-size: 43px;
	line-height: 1.6;
	color: #004DA0;
}
@media screen and (max-width: 768px) {
	section h2 {
		margin-left: 6.6667vw;
		margin-bottom: 5.3334vw;
		padding-bottom: 1.3334vw;
	}
	section .lead {
		margin-left: 6.6667vw;
		font-size: 6.5334vw;
	}
}

/* --------------------------------------------------
	.vision
-------------------------------------------------- */
.vision {
	margin-bottom: 190px;
	min-height: 1220px;
}
.vision h2 {
	width: 222px;
}
.vision .lead {
	margin-bottom: 50px;
}
.vision .textArea p {
	font-size: 15px;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 2.4;
}
.vision .textArea p strong {
	font-size: 24px;
	line-height: 2;
	color: #004DA0;
}
.vision .textArea p + p { margin-top: 2em; }
.vision .pic1,
.vision .pic2,
.vision .pic3 {
	position: absolute;
	right: 0;
}
.vision .pic1 {
	right: -160px;
	top: 65px;
	width: 650px;
}
.vision .pic2 {
	right: 204px;
	top: 471px;
	width: 400px;
}
.vision .pic3 {
	right: -160px;
	top: 848px;
	width: 580px;
}
.vision.delighter h2 {
	opacity: 0;
	transform: translate(20%,0);
	transition: all .5s cubic-bezier(.21,1.05,.8,.98) 0s;
}
.vision.delighter .lead {
	opacity: 0;
	transform: translate(5%,0);
	transition: all .5s cubic-bezier(.21,1.05,.8,.98) 0s;
}
.vision .textArea .delighter {
	opacity: 0;
	transform: translate(0,30%);
	transition: all .5s cubic-bezier(.21,1.05,.8,.98) 0s;
}
.vision .pic1.delighter,
.vision .pic2.delighter,
.vision .pic3.delighter {
	opacity: 0;
	transform: translate(20%,0);
	transition: all .5s cubic-bezier(.21,1.05,.8,.98) 0s;
}
.vision.delighter.started h2,
.vision.delighter.started .lead,
.vision .textArea .delighter.started,
.vision .pic1.delighter.started,
.vision .pic2.delighter.started,
.vision .pic3.delighter.started {
	opacity: 1;
	transform: none;
}
@media screen and (max-width: 1100px) {
	.vision .pic1 {
		right: auto;
		left: 610px;
	}
	.vision .pic2 {
		right: auto;
		left: 496px;
	}
	.vision .pic3 {
		right: auto;
		left: 680px;
	}
}
@media screen and (max-width: 768px) {
	.vision {
		margin-bottom: 26.6667vw;
		min-height: auto;
	}
	.vision h2 {
		width: 41.3334vw;
	}
	.vision .lead {
		margin-bottom: 9.3334vw;
	}
	.vision .textArea {
		margin: 0 6.6667vw 18.6667vw;
	}
	.vision .textArea p {
		font-size: 3.7334vw;
		line-height: 2;
	}
	.vision .textArea p strong {
		font-size: 4.8vw;
		line-height: 1.8;
	}
	.vision .pic1,
	.vision .pic2,
	.vision .pic3 {
		position: relative;
		right: 0;
		left: 0;
		top: 0;
	}
	.vision .pic1 {
		margin-bottom: 12.6667vw;
		width: 100%;
	}
	.vision .pic2 {
		margin-bottom: 10.6667vw;
		width: 69.3334vw;
	}
	.vision .pic3 {
		width: 100%;
	}
}

/* --------------------------------------------------
	.withmd
-------------------------------------------------- */
.withmd {
	margin-bottom: -580px;
}
.withmd h2 {
	margin-bottom: 30px;
	width: 273px;
}
.withmd .lead {
	float: left;
	margin-bottom: 50px;
}
.withmd .text,
.withmd ul {
	margin-left: 456px;
}
.withmd .text {
	padding-top: 0.3em;
	font-size: 19px;
	line-height: 2;
}
.withmd ul {
	margin-top: 1em;
	margin-bottom: 120px;
}
.withmd ul li {
	font-size: 12px;
}
.withmd .subBoxWrap {
	margin: 0 auto;
	width: 700px;
}
.withmd .subBoxWrap .accd-wrap {
	position: relative;
	padding-bottom: 50px;
	width: 100%;
	background: #F2F5F7;
	box-sizing: border-box;
}
.withmd .subBoxWrap .accd-wrap + .accd-wrap { margin-top: 50px; }
.withmd .subBoxWrap .accd-head {
	position: relative;
	z-index: 2;
	padding: 60px 70px 40px;
	cursor: pointer;
}
.withmd .subBoxWrap .accd-head:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%,20px);
	display: block;
	width: 71px;
	height: 32px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	background-image: url("../img/btn_open.svg");
	transition: all 0.2s linear;
}
.withmd .subBoxWrap .close .accd-head:before {
	opacity: 0;
}
.withmd .subBoxWrap .accd-body {
	padding: 0 70px;
}
.withmd .subBoxWrap .btn-close {
	margin: 30px auto 0;
	width: 71px;
	height: 32px;
	background-repeat: no-repeat;
	background-position: center 0;
	background-size: contain;
	background-image: url("../img/btn_close.svg");
	text-indent: -9999px;
	cursor: pointer;
}
.withmd .subBoxWrap .category {
	position: absolute;
	right: 30px;
	top: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0 0.1em;
	width: 66px;
	height: 24px;
	box-sizing: border-box;
	border: #004DA0 1px solid;
	border-radius: 2px;
	font-size: 11px;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1;
	color: #004DA0;
}
.withmd .subBoxWrap .detailHead {
	display: flex;
	align-items: center;
}
.withmd .subBoxWrap .detailHead .pic {
	margin-right: 25px;
	width: 100px;
}
.withmd .subBoxWrap .detailHead h3 {
	font-size: 22px;
	font-weight: 700;
	color: #004DA0;
	line-height: 1.8;
}
.withmd .subBoxWrap p {
	font-size: 15px;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 2.3;
	letter-spacing: 0;
	color: #545454;
}
.withmd .subBoxWrap p + p {
	margin-top: 2em;
}
.withmd .bg {
	margin-top: -150px;
	width: 100%;
	height: 843px;
	background-repeat: no-repeat;
	background-position: center 0;
	background-size: 100% auto;
}
.withmd.delighter h2 {
	opacity: 0;
	transform: translate(20%,0);
	transition: all .5s cubic-bezier(.21,1.05,.8,.98) 0s;
}
.withmd.delighter .lead,
.withmd.delighter .text,
.withmd.delighter ul {
	opacity: 0;
	transform: translate(5%,0);
}
.withmd.delighter .lead {
	transition: all .5s cubic-bezier(.21,1.05,.8,.98) 0s;
}
.withmd.delighter .text {
	transition: all .5s cubic-bezier(.21,1.05,.8,.98) 0.3s;
}
.withmd.delighter ul {
	transition: all .5s cubic-bezier(.21,1.05,.8,.98) 0.6s;
}
.withmd .subBoxWrap .accd-wrap.delighter {
	opacity: 0;
	transform: translate(0,30%);
	transition: all .5s cubic-bezier(.21,1.05,.8,.98) 0s;
}
.withmd.delighter.started h2,
.withmd.delighter.started .lead,
.withmd.delighter.started .text,
.withmd.delighter.started ul,
.withmd .subBoxWrap .accd-wrap.delighter.started {
	opacity: 1;
	transform: none;
}
@media screen and (min-width: 769px) {
	.withmd .bg {
		background-image: url("../img/withmd_bg.jpg");
	}
}
@media screen and (max-width: 1440px) {
	.withmd .bg { background-size: 1440px auto; }
}
@media screen and (max-width: 768px) {
	.withmd {
		margin-bottom: -92.6667vw;
	}
	.withmd h2 {
		margin-bottom: 5.3334vw;
		width: 50.8vw;
	}
	.withmd .lead {
		float: none;
		margin-bottom: 10vw;
	}
	.withmd .text,
	.withmd ul {
		margin-left: 6.6667vw;
	}
	.withmd .text {
		padding-top: 0;
		font-size: 4.2667vw;
		line-height: 1.9;
	}
	.withmd ul {
		margin-bottom: 16.6667vw;
	}
	.withmd ul li {
		font-size: 2.6667vw;
	}
	.withmd .subBoxWrap {
		width: 86.6667vw;
	}
	.withmd .subBoxWrap .accd-wrap {
		padding-bottom: 14.6667vw;
	}
	.withmd .subBoxWrap .accd-wrap.close {
		padding-bottom: 6.6667vw;
	}
	.withmd .subBoxWrap .accd-wrap + .accd-wrap { margin-top: 6.6667vw; }
	.withmd .subBoxWrap .accd-head {
		padding: 6vw 5.3334vw 6.6667vw;
	}
	.withmd .subBoxWrap .accd-head:before {
		transform: translate(-50%,8vw);
		width: 15.2vw;
		height: 7.6vw;
	}
	.withmd .subBoxWrap .close .accd-head:before {
		opacity: 0;
	}
	.withmd .subBoxWrap .accd-body {
		padding: 0 6.6667vw;
	}
	.withmd .subBoxWrap .btn-close {
		margin-top: 5.3334vw;
		width: 15.2vw;
		height: 7.6vw;
	}
	.withmd .subBoxWrap .category {
		right: 2.6667vw;
		top: 2.6667vw;
		width: 11.3334vw;
		height: 4.5334vw;
		font-size: 2.4vw;
	}
	.withmd .subBoxWrap .detailHead .pic {
		margin-right: 3.3334vw;
		width: 22vw;
		flex-shrink: 0;
	}
	.withmd .subBoxWrap .detailHead h3 {
		width: 55vw;
		flex-shrink: 0;
		font-size: 4.5334vw;
		line-height: 1.75;
		letter-spacing: 0;
	}
	.withmd .subBoxWrap p {
		font-size: 3.7334vw;
		line-height: 2;
		letter-spacing: 0;
	}
	.withmd .bg {
		margin-top: -10.6667vw;
		height: 120vw;
		background-image: url("../img/sp_withmd_bg.jpg");
		background-size: 100% auto;
	}
}

/* --------------------------------------------------
	.voices
-------------------------------------------------- */
.voices {
	margin-bottom: 200px;
}
.voices h2 {
	margin-bottom: 20px;
	width: 241px;
	border-color: #FFF;
}
.voices .lead {
	font-size: 32px;
	line-height: 1.85;
	color: #FFF;
}
.voices ul {
	margin-top: 1.5em;
	margin-bottom: 1em;
}
.voices ul li {
	font-size: 12px;
	color: #FFF;
}
.swiper-container {
	padding-left: calc( ( 100vw - 1200px ) / 2 - 10px );
	padding-right: calc( ( 100vw - 1200px ) / 2 - 10px );
}
.voicesSwiper {
	position: relative;
}
.swiper-nav {
	position: relative;
	top: -60px;
	margin-left: 574px;
	max-width: 250px;
	height: 11px;
}
.swiper-button-next,
.swiper-button-prev {
	width: 100px;
	height: 11px;
	background-repeat: no-repeat;
	background-size: contain;
	text-indent: -9999px;
}
.swiper-button-next {
	right: 0;
	background-image: url("../img/btn_next.svg");
}
.swiper-button-prev {
	left: 0;
	background-image: url("../img/btn_prev.svg");
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	opacity: 0;
}
.swiper-button-next::after,
.swiper-button-prev::after {
	display: none;
}
.swiper-slide {
	position: relative;
	margin-right: 4px;
	padding: 40px 45px;
	width: 500px;
	height: auto;
	box-sizing: border-box;
	background: #E8F1F9;
}
.swiper-slide:last-child {
	margin-right: 0 !important;
}
.swiper-slide.blank {
	background-color: #FFF;
}
.swiper-slide h3 {
	margin-bottom: 1em;
	font-size: 24px;
	font-weight: bold;
	color: #004DA0;
	line-height: 1.5;
	letter-spacing: 0;
}
.swiper-slide p {
	font-size: 14px;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 2.2;
	text-align: justify;
	color: #545454;
}
.voices.delighter h2 {
	opacity: 0;
	transform: translate(20%,0);
	transition: all .5s cubic-bezier(.21,1.05,.8,.98) 0s;
}
.voices.delighter .lead,
.voices.delighter ul {
	opacity: 0;
	transform: translate(5%,0);
}
.voices.delighter .lead {
	transition: all .5s cubic-bezier(.21,1.05,.8,.98) 0s;
}
.voices.delighter ul {
	transition: all .5s cubic-bezier(.21,1.05,.8,.98) 0.3s;
}
.voices .swiper-container.delighter {
	opacity: 0;
	transform: translate(0,20%);
	transition: all .5s cubic-bezier(.21,1.05,.8,.98) 0s;
}
.voices.delighter.started h2,
.voices.delighter.started .lead,
.voices.delighter.started .text,
.voices.delighter.started ul,
.voices .swiper-container.delighter.started {
	opacity: 1;
	transform: none;
}
@media screen and (max-width: 1280px) {
	.swiper-container {
		padding-left: 40px;
		padding-right: 40px;
	}
}
@media screen and (max-width: 768px) {
	.voices {
		margin-bottom: 25.3334vw;
	}
	.voices h2 {
		margin-bottom: 6vw;
		width: 44.8001vw;
	}
	.voices .lead {
		font-size: 4.8vw;
		line-height: 1.7;
	}
	.voices ul {
		margin-left: 6.6667vw;
		margin-bottom: 20vw;
	}
	.voices ul li {
		font-size: 2.6667vw;
	}
	.swiper-container {
		padding-left: 6.6667vw;
		padding-right: 6.6667vw;
	}
	.swiper-nav {
		top: 0;
		margin-left: 0;
		max-width: 86.6667vw;
		height: 3.2vw;
	}
	.swiper-button-next,
	.swiper-button-prev {
		width: 27.0667vw;
		height: 3.2vw;
	}
	.swiper-slide {
		margin-right: 1.3334vw;
		padding: 8vw 6.6667vw;
		width: 74.6667vw;
		height: auto;
		box-sizing: border-box;
		background: #E8F1F9;
	}
	.swiper-slide h3 {
		display: block;
		margin-bottom: 0.8em;
		min-height: 4.5em;
		font-size: 5.8667vw;
	}
	.swiper-slide p {
		font-size: 3.4667vw;
		line-height: 1.9;
	}
}

/* --------------------------------------------------
	.aboutus
-------------------------------------------------- */
.aboutus {
	margin-bottom: 230px;
}
.aboutus h2 {
	margin-bottom: 30px;
	width: 331px;
}
.aboutus h3 {
	margin-bottom: 130px;
	font-size: 43px;
	line-height: 1.6;
	color: #004DA0;
}
.aboutus .consultation {
	margin-bottom: 190px;
}
.aboutus .consultation .subBox {
	display: flex;
	align-items: center;
	width: 100%;
}
.aboutus .consultation .subBox + .subBox { margin-top: 140px; }
.aboutus .consultation .subBox h4 {
	flex-shrink: 0;
	padding-right: 20px;
	width: 31.7858%;
	box-sizing: border-box;
	font-size: 28px;
	line-height: 1.85;
	color: #004DA0;
}
.aboutus .consultation .subBox .textArea {
	padding-left: 35px;
	border-left: #004DA0 1px solid;
}
.aboutus .consultation .subBox .textArea p {
	margin-top: -0.5em;
	font-size: 19px;
	line-height: 2;
}
.aboutus .consultation .subBox .textArea ul {
	margin-top: 2em;
}
.aboutus .consultation .subBox .textArea li {
	padding-left: 1em;
	text-indent: -1em;
	font-size: 14px;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.8;
}
.aboutus .consultation .subBox .textArea li + li {
	margin-top: 0.5em;
}
.aboutus .consultation .subBox .textArea li:before {
	content: '・';
	display: inline-block;
	width: 1em;
	text-indent: 0;
}
.aboutus .workstyle {
	margin-bottom: 190px;
}
.aboutus .workstyle h3 {
	margin-bottom: 40px;
}
.aboutus .workstyle .subBox {
	position: relative;
	display: flex;
	align-items: center;
	padding: 20px 0;
	width: 100%;
	background-color: #F2F5F7;
}
.aboutus .workstyle .subBox + .subBox { margin-top: 10px; }
.aboutus .workstyle .subBox:after {
	content: '';
	position: absolute;
	left: 100%;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #F2F5F7;
}
.aboutus .workstyle .subBox h4 {
	width: 16.5179%;
	text-align: center;
}
.aboutus .workstyle .subBox h4 img {
	max-width: 100px;
}
.aboutus .workstyle .subBox p {
	padding: 0 20px;
	width: 67.4108%;
	border-left: #3E3A39 1px solid;
	font-size: 16px;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 2;
}
.aboutus .membership {
	padding: 0 75px;
}
.aboutus .membership h3 {
	margin-bottom: 70px;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.75;
}
.aboutus .membership li {
	padding-left: 1em;
	text-indent: -1em;
	font-size: 17px;
	line-height: 1.8;
}
.aboutus .membership li + li {
	margin-top: 2em;
}
.aboutus .membership li span {
	padding-left: 0;
	text-indent: 0;
	background-image:-webkit-linear-gradient(0deg, #E3F4FF, #E3F4FF 40%, transparent 40.1%, transparent);
	background-image:-moz-linear-gradient(0deg, #E3F4FF, #E3F4FF 40%, transparent 40.1%, transparent);
	background-image:linear-gradient(0deg, #E3F4FF,#E3F4FF 40%,transparent 40.1%,transparent);
	font-family: 'Noto Sans JP', sans-serif;
}
.aboutus .membership li span:before {
	content: '・';
	display: inline-block;
	width: 1em;
}
.aboutus .bg1,
.aboutus .bg2 {
	width: 100%;
	height: 500px;
	background-repeat: no-repeat;
	background-position: center 0;
	background-size: 100% auto;
}
.aboutus.delighter h2 {
	opacity: 0;
	transform: translate(20%,0);
	transition: all .5s cubic-bezier(.21,1.05,.8,.98) 0s;
}
.aboutus .delighter h3 {
	opacity: 0;
	transform: translate(5%,0);
	transition: all .5s cubic-bezier(.21,1.05,.8,.98) 0s;
}
.aboutus .subBox.delighter {
	opacity: 0;
	transform: translate(0,20%);
	transition: all .5s cubic-bezier(.21,1.05,.8,.98) 0s;
}
.aboutus ul.delighter li {
	opacity: 0;
	transform: translate(0,20%);
	transition: all .5s cubic-bezier(.21,1.05,.8,.98) 0s;
}
.aboutus ul.delighter li:nth-child(1) { transition-delay: 0s; }
.aboutus ul.delighter li:nth-child(2) { transition-delay: 0.2s; }
.aboutus ul.delighter li:nth-child(3) { transition-delay: 0.4s; }
.aboutus ul.delighter li:nth-child(4) { transition-delay: 0.6s; }
.aboutus ul.delighter li:nth-child(5) { transition-delay: 0.8s; }
.aboutus ul.delighter li:nth-child(6) { transition-delay: 1.0s; }
.aboutus.delighter.started h2,
.aboutus .delighter.started h3,
.aboutus .subBox.delighter.started,
.aboutus ul.delighter.started li {
	opacity: 1;
	transform: none;
}
@media screen and (min-width: 769px) {
	.aboutus .bg1 {
		margin-bottom: 200px;
		background-image: url("../img/aboutus_bg1.jpg");
	}
	.aboutus .bg2 {
		margin-bottom: 190px;
		background-image: url("../img/aboutus_bg2.jpg");
	}
}
@media screen and (max-width: 1440px) {
	.aboutus .bg1,
	.aboutus .bg2 { background-size: 1440px auto; }
}
@media screen and (max-width: 1050px) {
	.aboutus .consultation .subBox h4 br {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.aboutus {
		margin-bottom: 25.3334vw;
	}
	.aboutus h2 {
		margin-bottom: 5.3334vw;
		width: 61.6vw;
	}
	.aboutus h3 {
		margin-bottom: 9.3334vw;
		font-size: 6.5334vw;
	}
	.aboutus .consultation {
		margin-bottom: 18vw;
		margin-left: 6.6667vw;
		margin-right: 6.6667vw;
	}
	.aboutus .consultation .subBox {
		display: block;
	}
	.aboutus .consultation .subBox + .subBox { margin-top: 16vw; }
	.aboutus .consultation .subBox h4 {
		margin-bottom: 1.8667vw;
		width: 100%;
		font-size: 5.3334vw;
		line-height: 1.65;
	}
	.aboutus .consultation .subBox h4 br:not(.pc) {
		display: block;
	}
	.aboutus .consultation .subBox .textArea {
		padding-top: 8vw;
		padding-left: 0;
		border-top: #004DA0 1px solid;
		border-left: none;
	}
	.aboutus .consultation .subBox .textArea p {
		margin-top: 0;
		font-size: 4.2667vw;
	}
	.aboutus .consultation .subBox .textArea ul {
		margin-top: 1.5em;
	}
	.aboutus .consultation .subBox .textArea li {
		font-size: 3.7334vw;
		line-height: 1.5;
	}
	.aboutus .consultation .subBox .textArea li + li {
		margin-top: 1.5em;
	}
	.aboutus .workstyle {
		margin-bottom: 18vw;
		margin-left: 6.6667vw;
		margin-right: 6.6667vw;
	}
	.aboutus .workstyle h3 {
		margin-bottom: 5.3334vw;
	}
	.aboutus .workstyle .subBox {
		display: block;
		padding: 4vw 2.6667vw 5.3334vw;
		box-sizing: border-box;
	}
	.aboutus .workstyle .subBox + .subBox { margin-top: 4vw; }
	.aboutus .workstyle .subBox:after {
		display: none;
	}
	.aboutus .workstyle .subBox h4 {
		margin-bottom: 3.4667vw;
		width: 100%;
	}
	.aboutus .workstyle .subBox h4 img {
		max-width: 22.6667vw;
	}
	.aboutus .workstyle .subBox p {
		padding: 4vw 0 0;
		width: 100%;
		border-top: #004DA0 1px solid;
		border-left: none;
		font-size: 3.4667vw;
		color: #545454;
	}
	.aboutus .membership {
		margin-bottom: 18vw;
		margin-left: 8vw;
		margin-right: 8vw;
		padding: 0;
	}
	.aboutus .membership h3 {
		margin-bottom: 10.6667vw;
		font-size: 6.5334vw;
		line-height: 1.65;
	}
	.aboutus .membership li {
		font-size: 3.7334vw;
		line-height: 1.6;
	}
	.aboutus .membership li + li {
		margin-top: 1em;
	}
	.aboutus .bg1,
	.aboutus .bg2 {
		height: 66.6667vw;
	}
	.aboutus .bg1 {
		margin-bottom: 25.3334vw ;
		background-image: url("../img/sp_aboutus_bg1.jpg");
		background-size: 100% auto;
	}
	.aboutus .bg2 {
		margin-bottom: 17.3334vw;
		background-image: url("../img/sp_aboutus_bg2.jpg");
		background-size: 100% auto;
	}
}

/* --------------------------------------------------
	.contactArea
-------------------------------------------------- */
.contactArea { padding: 100px 75px 40px; }
.contactArea p {
	margin-bottom: 2em;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.16em;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1;
	color: #fff;
}
.contactArea .btn-contact {
	width: 500px;
	height: 130px;
}
.contactArea .btn-contact a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: #fff;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.15em;
	color: #004DA0;
}
.contactArea .btn-contact a:hover {
	opacity: 0.7;
	text-decoration: none;
}
.contactArea .btn-contact a:after {
	content: '';
	position: absolute;
	right: 42px;
	top: 50%;
	transform: translate(0,-50%);
	display: block;
	width: 16px;
	height: 32px;
	background: url("../img/icon_arrow_r_n2.svg") no-repeat;
	background-size: contain;
}
@media screen and (max-width: 768px) {
	.contactArea { padding: 12vw 10vw; }
	.contactArea p {
		font-size: 3.4667vw;
	}
	.contactArea .btn-contact {
		width: 80vw;
		height: 20.8vw;
	}
	.contactArea .btn-contact a {
		font-size: 4vw;
	}
	.contactArea .btn-contact a:after {
		right: 6.9334vw;
		width: 2.6667vw;
		height: 5.3334vw;
	}
}

/* --------------------------------------------------
	#footer
-------------------------------------------------- */
.footer-bg {
	background: #004DA0;
}
#footer .footerArea {
	padding: 0 75px 35px;
}
#footer nav { margin-bottom: 80px; }
#footer nav ul {
	width: 100%;
	font-size: 0;
}
#footer nav ul li {
	font-size: 14px;
}
#footer nav ul li + li {
	margin-top: 1.5em;
}
#footer nav ul li a {
	color: #fff;
	transition: opacity 0.2s linear;
}
#footer nav ul li a:before {
	content: '＞';
	display: inline-block;
	padding-right: 0.5em;
	transform: scale(0.7,0.7);
}
#footer nav ul li a:hover {
	opacity: 0.7;
	text-decoration: none;
}
#footer p {
	font-size: 12px;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 768px) {
	#footer .footerArea {
		padding: 0 10vw 5.3334vw;
	}
	#footer nav { margin-bottom: 11.3334vw; }
	#footer nav ul li {
		font-size: 3.2vw;
	}
	#footer p {
		font-size: 2.1334vw;
	}
}
