@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&family=Zen+Old+Mincho:wght@500;700&display=swap');

/* ---------------------------------------
  基本情報
-----------------------------------------*/
html,
body {
	height: 100%;
}

html {
	font-size: 62.5%;
	overflow-y: scroll;
}

@media screen and (max-width: 767px) {
	html {
		font-size: calc(1000vw / 750);
	}
}

*,
*:after,
*:before {
	box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
time,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
figure,
figcaption,
form,
input,
button,
textarea,
select {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: 700;
	font-family: 'Zen Old Mincho', serif;
	word-wrap: break-word;
	overflow-wrap: break-word;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	border-radius: 0;
	resize: none;
	outline: none;
	background: none;
}

select::-ms-expand {
	display: none;
}

button:hover {
	cursor: pointer;
}

img,
object {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

@media screen and (max-width: 767px) {
	img {
		width: 100%;
	}
}


/* responsive
--------------------------------*/

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

@media screen and (max-width: 767px) {
	.pc {
		display: none !important;
	}
}


/* base
--------------------------------*/

body {
	color: #000;
	font-size: 1.0rem;
	text-align: left;
}

main {
	display: block;
	overflow: hidden;
	padding-top: 80px;
}

section {
	position: relative;
}

.wrap {
	width: 1100px;
	margin: 0 auto;
	position: relative;
}

p,
th,
td,
dt,
dd,
li,
input,
button,
textarea {
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 0.1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.5;
	letter-spacing: 0.1em;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.flex.reverse {
	flex-direction: row-reverse;
}

.left {
	float: left;
}

.right {
	float: right;
}

.tal {
	text-align: left;
}

.tar {
	text-align: right;
}

.tac {
	text-align: center;
}

.center {
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.bold,
strong {
	font-weight: bold;
	font-weight: 700;
}

.link_txt {
	text-decoration: underline;
}

.fixed {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

/*font*/

.gothic {
	font-weight: 500;
	font-family: 'Zen Kaku Gothic New', sans-serif;
}

@media screen and (min-width: 768px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}

	.fade {
		transition: opacity 0.3s ease;
	}

	.fade:hover {
		opacity: 0.7;
		cursor: pointer;
	}
}

@media screen and (max-width: 767px) {
	body {
		min-width: inherit;
	}

	main {
		padding-top: 50px;
	}

	.wrap {
		width: 84%;
	}

	p,
	th,
	td,
	dt,
	dd,
	li,
	input,
	button,
	textarea {
		font-size: 2.4rem;
	}

	.sp_block {
		display: block;
	}

	.disable-tap {
		text-decoration: none;
		pointer-events: none;
	}
}

/* ---------------------------------------
  scroll-animation
-----------------------------------------*/
.fadeup {
	opacity: 0;
	transform: translateY(30px);
	transition: 1s;
}

.is-show.fadeup,
.is-show .fadeup {
	opacity: 1;
	transform: translate(0, 0);
}

.fadein {
	opacity: 0;
	transition: opacity 1s;
}

.scroll.is-show.fadein,
.scroll.is-show .fadein {
	opacity: 1;
}

.blur {
	filter: blur(7px);
}

.is-show .blur {
	filter: blur(0);
}

.passing_img {
	position: relative;
}

.passing_img:before {
	content: '';
	display: inline-block;
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #82cdd9;
	z-index: 1;
}

.passing_img._p::before {
	background-color: #f29b8c;
}

.is-show .passing_img:before {
	-webkit-animation: passing-img 1s ease 0s 1 normal forwards;
	animation: passing-img 1s ease 0s 1 normal forwards;
}

.passing_img img {
	opacity: 0;
	transition: opacity .3s ease .4s, transform .5s ease;
	will-change: transform;
}

.is-show .passing_img img {
	opacity: 1;
}

.delay1 {
	transition-delay: .5s !important;
}

.delay2 {
	transition-delay: 1s !important;
}

.delay3 {
	transition-delay: 1.5s !important;
}

.delay4 {
	transition-delay: 2s !important;
}

.delay5 {
	transition-delay: 2.5s !important;
}

.delay6 {
	transition-delay: 3s !important;
}

.delay7 {
	transition-delay: 3.5s !important;
}

.delay8 {
	transition-delay: 4s !important;
}

.delay9 {
	transition-delay: 4.5s !important;
}

.delay10 {
	transition-delay: 5s !important;
}

@keyframes passing-img {
	0% {
		left: 0;
		width: 0;
	}

	50% {
		left: 0;
		width: 101%;
	}

	51% {
		left: 0;
		width: 101%;
	}

	100% {
		left: 100%;
		width: 0;
	}
}

/* ---------------------------------------
  header
-----------------------------------------*/
#header {
	width: 100%;
	height: 80px;
	background-color: #ffffff;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
}

#header .wrap {
	height: 100%;
	padding: 14px 0;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

#header .logo {
	width: 340px;
	margin-bottom: 7px;
}

#header .logo a {
	display: block;
}

#header .logo img {
	width: 100%;
}

#header .gnavi {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#header .gnavi li {
	letter-spacing: 0.025em;
}

#header .gnavi li + li {
	margin-left: 33px;
}

#header .gnavi li a {
	position: relative;
	display: block;
	padding: 0 0 .75em 0;
}

#header .gnavi li a::after {
	content: "";
	width: 0;
	height: 4px;
	background: linear-gradient(90deg, rgba(242, 155, 140, 1) 0%, rgba(130, 205, 217, 1) 100%);
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	transition: .3s ease;
}


#header .gnavi li.recruit {
	margin-left: 30px;
	margin-left: 18px;
	margin-top: -1.4rem;
}

#header .gnavi li.recruit a {
	position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 11rem;
    color: #fff;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    padding: .75em .25em .75em .25em;
    background: linear-gradient(90deg, rgba(48, 74, 181, 1), rgba(39, 38, 118, 1), rgba(48, 74, 181, 1));
    background-size: 200% 100%;
    transition: .3s ease;
	height: 40px;
}

#header .gnavi .recruit a:hover {
    background-position: right center;
}

#header .gnavi .recruit a:hover::after {
	display: none;
}

@media screen and (min-width: 768px) {

	#header .gnavi li a:hover::after,
	#header .gnavi li.current a::after {
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	#header {
		height: 50px;
	}

	#header .wrap {
		width: 100%;
		padding: 0;
		align-items: center;
		justify-content: center;
	}

	#header .logo {
		width: calc(100% - (100px + 4rem));
		max-width: 232px;
		margin-bottom: 0;
	}

	#header .menu-trigger {
		display: block;
		width: 50px;
		height: 50px;
		position: fixed;
		right: .5rem;
		top: 0;
		z-index: 101;
	}

	#header .menu-trigger span {
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 33px;
		height: 1px;
		background-color: #000;
	}

	#header .menu-trigger span:nth-of-type(1) {
		top: 14px;
	}

	#header .menu-trigger span:nth-of-type(2) {
		top: 22px;
	}

	#header.navOpen .menu-trigger span:nth-of-type(1) {
		top: 18px;
		transform: rotate(-26deg);
	}

	#header.navOpen .menu-trigger span:nth-of-type(2) {
		top: 18px;
		transform: rotate(26deg);
	}

	#header .menu-trigger::before {
		content: "メニュー";
		position: absolute;
		top: 33px;
		left: 0;
		width: 100%;
		text-align: center;
		font-weight: 500;
		font-family: 'Zen Kaku Gothic New', sans-serif;
		font-size: 10px;
		line-height: 1;
		letter-spacing: -0.1em;
		transition: .3s ease;
	}

	#header.navOpen .menu-trigger::before {
		content: "とじる";
	}

	#header nav#menu {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		max-height: 100%;
		background-color: #fff;
		padding: 0;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}

	#header nav#menu .menuwrap {
		display: block;
		width: 100%;
		height: auto;
		padding: 6.8rem 6rem 6rem;
	}

	#header nav#menu .menuwrap .logo2 {
		width: 46.2rem;
		margin: 0 auto;
	}

	#header .gnavi {
		display: block;
		margin-top: 1.5rem;
	}

	#header .gnavi li {
		text-align: center;
		font-size: 3.6rem;
		border-bottom: .2rem solid #000;
	}

	#header .gnavi li + li {
		margin-left: 0;
	}

	#header .gnavi li a {
		padding: .5em 1em;
	}

	#header .gnavi li a::before {
		content: "";
		width: 2rem;
		height: 3rem;
		background: url(../img/common/ico_arw.svg) no-repeat center / 100% auto;
		position: absolute;
		right: 1rem;
		top: 50%;
		margin-top: -1.5rem;
	}

	#header nav#menu .menuwrap .office {
		margin-top: 5rem;
	}

	#header nav#menu .menuwrap .office .box {
		width: 100%;
		text-align: center;
		padding: 3.2rem;
		background-color: #f1f3ef;
		border-radius: 2rem;
	}

	#header nav#menu .menuwrap .office .box + .box {
		margin-top: 2rem;
	}

	#header nav#menu .menuwrap .office .box .ttl {
		font-size: 2.6rem;
	}

	#header nav#menu .menuwrap .office .box .tel {
		font-size: 4rem;
		line-height: 1.5;
		margin-top: .5rem;
	}

	#header nav#menu .menuwrap .sns {
		margin-top: 4.8rem;
		text-align: center;
	}

	#header nav#menu .menuwrap .sns a img {
		width: 5rem;
	}
	
	#header .gnavi li.recruit {
		margin-left: auto;
		margin-top: auto;
		border-bottom: none;
		width: 100%;
	}

	#header .gnavi li.recruit a {
		width: 100%;
		font-size: 3.6rem;
		height: auto;
		margin-top: 5rem;
	}
	
	#header .gnavi li.recruit a::before {
		display: none;
	}
}


/* ---------------------------------------
  main common
-----------------------------------------*/

/* pagettl
----------------*/
#pagettl {
	width: 100%;
	max-width: 1400px;
	height: 300px;
	margin: 0 auto;
	background-size: cover;
	background-position: center;
	border-radius: 0px 0px 40px 0px;
	overflow: hidden;
}

#pagettl .wrap {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

#pagettl .ttl {
	color: #fff;
	font-weight: 700;
	font-size: 3.73rem;
	line-height: 1.5;
	letter-spacing: 0.38em;
}

/* secttl
----------------*/
.secttl {
	font-size: 3.3rem;
	line-height: 1.1;
	letter-spacing: 0.15em;
	margin-bottom: 80px;
}

.secttl span {
	position: relative;
	display: inline-block;
	padding: 0 1em;
}

.secttl span::before,
.secttl span::after {
	content: "";
	width: 15px;
	height: 19px;
	background-repeat: no-repeat;
	position: absolute;
}

.secttl span::before {
	background-image: url(../img/common/secttl_kakko_l.svg);
	left: 0;
	top: 0.05em;
}

.secttl span::after {
	background-image: url(../img/common/secttl_kakko_r.svg);
	right: 0.15em;
	bottom: 0.05em;
}

/* slick
----------------*/
.slider {
	display: none;
}

.slider.slick-initialized {
	display: block;
}

/* btn
----------------*/
.btn a {
	display: inline-block;
	position: relative;
	min-width: 196px;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.5;
	letter-spacing: 0.05em;
	padding: .75em 2.5em .75em 2em;
	background-color: #fff;
	border-radius: 24px;
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
	transition: .3s ease;
}

.btn a::before {
	content: "";
	width: 10px;
	height: 15px;
	background: url(../img/common/ico_arw.svg) no-repeat center / 100% auto;
	position: absolute;
	right: 19px;
	top: 50%;
	margin-top: -7px;
	transition: .3s ease;
	will-change: transform;
}

.btn._back a {
	padding: .75em 2em .75em 2.5em;
}

.btn._back a::before {
	background: url(../img/common/ico_arw_back.svg) no-repeat center / 100% auto;
	right: auto;
	left: 19px;
}

/* pagetop
----------------*/
#pagetop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 10;
}

#pagetop a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
	transition: 0.3s ease;
}

#pagetop a::before {
	content: "";
	width: 25px;
	height: 18px;
	background: url(../img/common/pagetop.svg) no-repeat center / 100% auto;
	position: absolute;
	transform: translateY(2px);
	transition: 0.3s ease;
}

@media screen and (min-width: 768px) {
	.btn a:hover {
		box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
	}

	.btn a:hover::before {
		transform: translateX(5px);
	}

	.btn._back a:hover::before {
		transform: translateX(-5px);
	}

	#pagetop a:hover {
		box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
	}

	#pagetop a:hover::before {
		transform: translateY(-1px);
	}

}

@media screen and (max-width: 767px) {
	#pagettl {
		max-width: inherit;
		height: 30rem;
		border-radius: 0px 0px 3rem 0px;
	}

	#pagettl .ttl {
		font-size: 5rem;
	}

	.secttl {
		font-size: 4rem;
		margin-bottom: 8rem;
	}

	.secttl span::before,
	.secttl span::after {
		width: 1.8rem;
		height: 2.28rem;
		background-size: contain;
	}

	.secttl span::before {
		top: 0.05em;
	}

	.secttl span::after {
		bottom: 0.05em;
	}

	.btn a {
		min-width: 29.4rem;
		font-size: 2.4rem;
		border-radius: 3.6rem;
		box-shadow: .45rem .45rem 1.5rem rgba(0, 0, 0, 0.2);
	}

	.btn a::before {
		width: 1.5rem;
		height: 2.25rem;
		right: 2.8rem;
		margin-top: -1.1rem;
	}

	.btn._back a::before {
		left: 2.8rem;
	}

	#pagetop {
		right: 2rem;
		bottom: 2rem;
	}

	#pagetop a {
		width: 9rem;
		height: 9rem;
		box-shadow: .45rem .45rem .9rem rgba(0, 0, 0, 0.2);
	}

	#pagetop a::before {
		width: 3.75rem;
		height: 2.7rem;
		transform: translateY(.3rem);
	}
}

/* ---------------------------------------
  フッター
-----------------------------------------*/
#footer {
	text-align: center;
}

#footer .wrap {
	padding: 94px 0 60px;
}

#footer .logo {
	width: 420px;
	margin: 0 auto;
}

#footer .logo a {
	display: block;
}

#footer .logo img {
	width: 100%;
}

#footer .fnavi {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 35px;
}

#footer .fnavi li.sns {
	width: 29px;
	height: 29px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 0;
	top: 1px;
}

#footer .fnavi li a {
	display: block;
	transition: .3s ease;
}

#footer .copyright {
	color: #fff;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0;
	padding: 13px;
	background-color: #82cdd9;
}

#footer .recruit-link {
	
}

#footer .recruit-link a {
	position: relative;
	font-size: 3.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 11.2rem;
    color: #fff;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.1em;
    padding: 1.1em .5em;
    background: linear-gradient(90deg, rgba(48, 74, 181, 1), rgba(39, 38, 118, 1), rgba(48, 74, 181, 1));
    background-size: 200% 100%;
    transition: .3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#footer .recruit-link a .en {
	font-size: 2.6rem;
    letter-spacing: 0.24em;
    margin-top: 1.4rem;
}

@media screen and (min-width: 768px) {

	#footer .fnavi li + li {
		margin-left: 50px;
	}

	#footer .fnavi li a:hover {
		opacity: .7;
	}

	#footer .recruit-link {
		margin-bottom: 77px;
	}

	#footer .recruit-link a {
		width: 536px;
		margin-left: auto;
		margin-right: auto;
		font-size: 2.6rem;
		letter-spacing: normal;
	}

	#footer .recruit-link a:hover {
		background-position: right center;
	}

	#footer .recruit-link a span.en {
		font-size: 1.9rem;
		margin-top: .85rem;
	}
}

@media screen and (max-width: 767px) {

	#footer .wrap {
		padding: 9rem 0;
	}

	#footer .logo {
		width: 55.9rem;
	}


	#footer .fnavi {
		flex-wrap: wrap;
		justify-content: flex-start;
		margin-top: 7rem;
	}

	#footer .fnavi li {
		min-width: 28%;
		text-align: left;
		font-size: 2.6rem;
		letter-spacing: -0.025em;
		/*		white-space: nowrap;*/
	}

	#footer .fnavi li:nth-child(1),
	#footer .fnavi li:nth-child(4) {
		min-width: 22%;
	}

	#footer .fnavi li + li:not(:nth-child(3n + 1)) {
		margin-left: auto;
	}

	#footer .fnavi li:nth-child(n + 4) {
		margin-top: 3.5rem;
	}

	#footer .fnavi li.sns {
		width: 7.8em;
		height: 4.5rem;
		position: static;
		justify-content: flex-end;
	}

	#footer .fnavi li.sns img {
		width: 4.5rem;
	}

	#footer .copyright {
		font-size: 2.2rem;
		padding: 2.35rem;
	}

	#footer .recruit-link {
    	margin-bottom: 15vw;
	}
}


/* ---------------------------------------
  clearfix
-----------------------------------------*/

.cf:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}

.cf {
	display: inline-block;
}


/* Hides from IE Mac */

* html .cf {
	height: 1%;
}

.cf {
	display: block;
}


/* End Hack */