@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@600&display=swap');

/* ==========================================================================
   Foundation
========================================================================== */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote::before, blockquote::after {
	content: '';
	content: none;
}
q::before, q::after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
select {
	-moz-appearance: none;
	-webkit-appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	appearance: none;
	border-radius: 0;
	border: 0;
	margin: 0;
	padding: 0;
	background: none transparent;
	vertical-align: middle;
	color: inherit;
	box-sizing: content-box;
}
select::-ms-expand {
	display: none;
}
em {
	font-style: normal;
}
main {
	display: block;
}
html, body {
	height: 100%;
	width: 100%;
}
html {
	font-size: 62.5%;
}
body {
	background: #fff;
	font-size: 1.4rem;
	font-family: "ヒラギノ角ゴ Pro W3", sans-serif;
	font-weight: 400;
	color: #78828a;
	line-height: 1.8;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	word-wrap: break-word;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
}
a {
	text-decoration: none;
}
* {
	box-sizing: border-box;
}
*:focus {
	outline: none;
}
img {
	vertical-align: bottom;
	max-width: 100%;
	width: 100%;
	height: auto;
}

/* ==========================================================================
   Base
========================================================================== */
body {
	height: 100vh;
}

/* Safari用のハックは、Chromeに適用されないようにする */
@supports (-webkit-touch-callout: none) {
	body {
		/* Safari用のハック */
		height: -webkit-fill-available;
	}
}

/* --- img for PC/SP --- */
.img_pc {
	display: none;
}
.img_sp {
	display: block;
}
@media screen and (min-width: 768px) {
	.img_pc {
		display: block;
	}
	.img_sp {
		display: none;
	}
}

/* --- br for PC/SP --- */
.br_pc {
	display: none !important;
}
.br_sp {
	display: inline !important;
}
@media screen and (min-width: 768px) {
	.br_pc {
		display: inline !important;
	}
	.br_sp {
		display: none !important;
	}
}

.wrap {
	width: 100%;
	margin: 0 auto;
	position: relative;
}

/* ==========================================================================
   Top
========================================================================== */
#top {
	position: relative;
	width: 100%;
	height: 100%;
}
#top::before {
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100vh;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-image: url(../images/top_bg_sp.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	animation: fadeIn 1.5s ease 0s 1 normal;
}
@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
.top-bg01,
.top-bg02 {
	display: none;
}
.top-wrap1 {
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
}
.firstview-contents {
	margin: -80px 0 0;
}
.top-title {
	width: 34.66vw;
	max-width: 130px;
	margin: 0 auto;
}
.top-copy {
	font-size: 1.9rem;
	font-weight: 600;
	font-family: 'Shippori Mincho', serif;
	line-height: 2;
	color: #5c6871;
	text-align: center;
	margin: 50px auto 0;
}
.top-wrap2 {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.top-wrap2::after {
	content: '';
	position: absolute;
	bottom: -5vw;
	left: -10%;
	transform: rotate(-5deg);
	z-index: -1;
	width: 120%;
	height: 10vw;
	background: #fff;
}
.top-txt {
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 2.4;
	color: #5c6871;
	text-align: center;
	padding: 30px 0 80px;
}
.top-bubble {
	position: relative;
	padding: 150px 0 220px;
}
.top-bubble::before {
	position: absolute;
	left: 50%;
	top: 0;
	content: "";
	width: 1px;
	height: 80px;
	background: #5c6871;
	transform: rotate(55deg);
}
.top-bubble h3 {
	font-size: 1.7rem;
	font-weight: 600;
	line-height: 1.6;
	color: #5c6871;
	text-align: center;
}
.top-bubble ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 6.66vw;
}
.top-bubble li {
	width: 48.5%;
	height: 29vw;
	margin: 20px 0 0;
	background-image: url(../images/top_bubble.svg);
	background-size: contain;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
}
.top-bubble li:nth-child(5) {
	margin-left: 25.75%;
}
.top-bubble li p {
	font-size: 4vw;
	font-weight: 600;
	line-height: 1.4;
	display: inline-block;
	text-align: center;
	margin: -4vw 0 0;
}

@media screen and (min-width: 768px) {
	#top::before {
		content: none;
		display: none;
	}
	.top-bg01 {
		content: "";
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -1;
		width: 100%;
		height: 100vh;
		background-repeat: no-repeat;
		background-position: 50% 50%;
		background-image: url(../images/top_bg01.jpg);
		background-size: cover;
		background-repeat: no-repeat;
	}
	.top-bg02 {
		content: "";
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -1;
		width: 100%;
		height: 100vh;
		background-repeat: no-repeat;
		background-position: 50% 50%;
		background-image: url(../images/top_bg02.jpg);
		background-size: cover;
		background-repeat: no-repeat;
	}
	.firstview-contents {
		margin: 0;
	}
	.top-title {
		width: 170px;
		max-width: 170px;
	}
	.top-copy {
		font-size: 2.5rem;
		margin: 40px auto 0;
	}
	.top-txt {
		font-size: 1.8rem;
		font-weight: 400;
		line-height: 2.7;
		padding: 30px 0 110px;
	}
	.top-bubble {
		padding: 200px 0 280px;
	}
	.top-bubble::before {
		transform: rotate(50deg);
	}
	.top-bubble h3 {
		font-size: 2.3rem;
	}
	.top-bubble ul {
		padding: 5px 0 0;
		margin: 0 auto;
		width: 670px;
	}
	.top-bubble li {
		width: 210px;
		height: 140px;
		margin: 25px 0 0;
	}
	.top-bubble li:nth-child(4) {
		margin-left: 115px;
	}
	.top-bubble li:nth-child(5) {
		margin-right: 115px;
		margin-left: 0;
	}
	.top-bubble li p {
		font-size: 1.6rem;
		line-height: 1.6;
		margin: -18px 0 0;
	}
}

/* ==========================================================================
   Advantage
========================================================================== */
#advantage {
	position: relative;
	background: #fff;
	overflow: hidden;
}
#advantage::after {
	content: '';
	position: absolute;
	bottom: -5vw;
	left: -10%;
	transform: rotate(-5deg);
	width: 120%;
	height: 10vw;
	background: #ebebee;
}
.advantage-inner {
	padding: 100px 6.66vw 180px;
}
.advantage-title {
	width: 192px;
	margin: 0 auto 45px;
}
.advantage-copy {
	font-size: 1.9rem;
	font-weight: 600;
	font-family: 'Shippori Mincho', serif;
	line-height: 1.6;
	text-align: center;
	margin: 0 auto 25px;
}
.advantage-txt {
	font-size: 1.2rem;
	line-height: 2;
	text-align: center;
}
.advantage-counseling {
	margin: 110px auto 0;
}
.advantage-hrd {
	margin: 90px auto 0;
}
.advantage-inner h3 {
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	border-bottom: 1px solid #bcc1c5;
	margin: 0 auto;
	padding: 0 0 2px;
}
.advantage-inner ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 3.33vw;
}
.advantage-inner li {
	width: 35vw;
	margin: 25px 0 0;
}
.advantage-inner li:nth-child(3) {
	margin-top: 30px;
	margin-left: calc(50% - 17.5vw);
}
.advantage-inner dt {
	width: 35vw;
	height: 35vw;
	background-image: url(../images/advantage_circle.svg);
	background-size: contain;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
}
.advantage-inner dt p {
	color: #fff;
	font-size: 4vw;
		;
	line-height: 1.4;
	display: inline-block;
	text-align: center;
}
.advantage-inner dd {
	margin: 10px 0 0;
}
.advantage-inner dd p {
	font-size: 1.2rem;
	line-height: 1.6;
}

@media screen and (min-width: 768px) {
	.advantage-inner {
		padding: 100px 0 220px;
	}
	.advantage-title {
		width: 240px;
		margin: 0 auto 80px;
	}
	.advantage-copy {
		font-size: 3.2rem;
		line-height: 1.5;
		margin: 0 auto 30px;
	}
	.advantage-txt {
		font-size: 1.5rem;
		line-height: 2;
	}
	.advantage-counseling {
		text-align: center;
	}
	.advantage-hrd {
		margin: 140px auto 0;
		text-align: center;
	}
	.advantage-inner h3 {
		font-size: 2.1rem;
		border-bottom: 2px solid #bcc1c5;
		padding: 0 10px 10px;
		display: inline-block;
	}
	.advantage-inner ul {
		padding: 0;
		margin: 0 auto;
	}
	.advantage-inner .advantage-counseling ul {
		width: 430px;
	}
	.advantage-inner .advantage-hrd ul {
		width: 655px;
	}
	.advantage-inner li {
		width: 185px;
		margin: 30px 0 0;
	}
	.advantage-inner li:nth-child(3) {
		margin: 30px 0 0;
	}
	.advantage-inner dt {
		width: 185px;
		height: 185px;
	}
	.advantage-inner dt p {
		font-size: 1.9rem;
	}
	.advantage-inner dd {
		margin: 18px 0 0;
	}
	.advantage-inner dd p {
		font-size: 1.4rem;
		text-align: left;
		letter-spacing: 1px;
		padding: 0 0 0 5px;
	}
}

/* ==========================================================================
   Service
========================================================================== */
#service {
	position: relative;
	background: #ebebee;
	overflow: hidden;
}
#service::after {
	content: '';
	position: absolute;
	bottom: -5vw;
	left: -10%;
	transform: rotate(-5deg);
	width: 120%;
	height: 10vw;
	background: #fff;
}
.service-inner {
	padding: 100px 6.66vw 120px;
}
.service-title {
	width: 150px;
	margin: 0 auto 45px;
}
.service-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.service-list li {
	width: 50%;
	margin: 0 0 30px;
	text-align: center;
	border-left: 1px solid #959ca4;
}
.service-list li:nth-child(2n) {
	border-right: 1px solid #959ca4;
}
.service-list li:nth-child(5) {
	border-right: 1px solid #959ca4;
	margin-left: 25%;
}
.service-list li img {
	width: 41%;
}
.service-list li p {
	font-size: 1.5rem;
	line-height: 1.6;
	padding: 5px 0 0;
}
.service-list li p span {
	display: block;
	font-size: 1rem;
}

@media screen and (min-width: 768px) {
	.service-inner {
		padding: 100px 40px 200px;
	}
	.service-title {
		width: 184px;
		margin: 0 auto 80px;
	}
	.service-list {
		max-width: 800px;
		margin: 0 auto;
	}
	.service-list li {
		width: 33.33%;
		margin: 0 0 50px;
		border-left: 2px solid #b2b7bd;
	}
	.service-list li:nth-child(2n) {
		border-right: none;
	}
	.service-list li:nth-child(3) {
		border-right: 2px solid #b2b7bd;
	}
	.service-list li:nth-child(4) {
		margin-left: 16.665%;
	}
	.service-list li:nth-child(5) {
		border-right: 2px solid #b2b7bd;
		margin-left: 0;
		margin-right: 16.665%;
	}
	.service-list li img {
		width: 40%;
	}
	.service-list li p {
		font-size: 2.2rem;
		line-height: 1.6;
		padding: 7px 0 0;
	}
	.service-list li p span {
		font-size: 1.4rem;
		line-height: 1.4;
		padding: 5px 0 0;
	}
}

/* ==========================================================================
   Profile
========================================================================== */
#profile {
	background: #fff;
}
.profile-inner {
	padding: 80px 6.66vw 0;
}
.profile-title {
	font-size: 1.7rem;
	font-weight: 400;
	letter-spacing: 2px;
	margin: 0 auto 30px;
	padding: 0 0 10px;
	border-bottom: 1px solid #eaeaea;
}
.profile-title span {
	font-size: 1rem;
	padding: 0 1.2em 0 0;
}
.profile-born {
	font-size: 1.2rem;
	padding: 0 0 2px;
}
.profile-inner dl {
	padding: 0 0 35px;
	border-bottom: 1px solid #eaeaea;
}
.profile-inner dl p {
	font-size: 1.2rem;
}
.profile-inner dt {
	display: inline-block;
	width: 55px;
	vertical-align: top;
	padding: 2px 0 0;
}
.profile-inner dd {
	display: inline-block;
	width: calc(100% - 55px);
	vertical-align: top;
	padding: 2px 0 0;
}
.profile-inner dt span {
	margin: 0 0 0 7px;
}

@media screen and (min-width: 768px) {
	.profile-inner {
		padding: 80px 0 0;
		margin: 0 auto;
		width: 680px;
	}
	.profile-title {
		font-size: 1.8rem;
		border-bottom: 2px solid #eaeaea;
	}
	.profile-title span {
		font-size: 1.2rem;
	}
	.profile-inner dl {
		border-bottom: 2px solid #eaeaea;
	}
}

/* ==========================================================================
   Footer
========================================================================== */
#footer {
	background-color: #fff;
}
.footer-inner {
	padding: 85px 6.66vw 20px;
	text-align: center;
}
.footer-info {
	padding: 0 0 35px;
}
.footer-info p {
	font-size: 1.2rem;
	line-height: 2;
}
.footer-btn {
	max-width: 250px;
	margin: 0 auto;
}
.footer-btn > a {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #78828a;
	border: 1px solid #78828a;
	width: 100%;
	height: 55px;
	padding: 0 12% 0 6%;
	color: #fff;
	font-size: 1.4rem;
	text-decoration: none;
	position: relative;
	transition-duration: .2s;
}
.footer-btn > a:hover {
	opacity: 0.7;
}
.footer-btn > a::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 12px;
	position: absolute;
	top: 50%;
	right: 16%;
	margin-top: -6px;
	background: url(../images/icon_mail.svg) no-repeat;
}
.copyright {
	font-size: 1rem;
	padding: 100px 0 0;
}

@media screen and (min-width: 768px) {
	.footer-inner {
		padding: 80px 0 30px;
		margin: 0 auto;
	}
	.footer-info {
		padding: 0 0 25px;
	}
	.footer-info p {
		font-size: 1.3rem;
	}
	.footer-btn {
		width: 310px;
		max-width: none;
	}
	.footer-btn > a {
		width: 100%;
		height: 65px;
		padding: 0 12% 0 6%;
		font-size: 1.7rem;
	}
	.footer-btn > a::after {
		width: 24px;
		height: 15px;
		margin-top: -8px;
	}
	.copyright {
		font-size: 1.2rem;
		padding: 90px 0 0;
	}
}

/* ==========================================================================
   Backtotop
========================================================================== */
#backtotop {
	background-color: #78828a;
	cursor: pointer;
	opacity: 1;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 998;
}
#backtotop::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	margin: -3px 0 0 -7px;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
#backtotop:hover {
	opacity: 0.7;
}
#backtotop.ended {
	bottom: 350px;
	position: absolute;
}

@media screen and (min-width: 768px) {
	#backtotop {
		width: 70px;
		height: 70px;
		right: 50px;
		bottom: 50px;
		transition: .2s;
	}
	#backtotop::after {
		width: 15px;
		height: 15px;
		margin: -5px 0 0 -9px;
		border-top: 2px solid #fff;
		border-left: 2px solid #fff;
	}
	#backtotop.ended {
		bottom: 50px;
		position: fixed;
	}
}

/*---*/